{
"cells": [
{
"cell_type": "markdown",
"id": "cf5a938a",
"metadata": {
"originalKey": "e23719d9-8a24-4208-8439-34e7b8270c79",
"papermill": {
"duration": 0.003436,
"end_time": "2024-11-13T05:15:20.840816",
"exception": false,
"start_time": "2024-11-13T05:15:20.837380",
"status": "completed"
},
"tags": []
},
"source": [
"# Visualizations\n",
"\n",
"This tutorial illustrates the core visualization utilities available in Ax."
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "511670d5",
"metadata": {
"code_folding": [],
"execution": {
"iopub.execute_input": "2024-11-13T05:15:20.848213Z",
"iopub.status.busy": "2024-11-13T05:15:20.847694Z",
"iopub.status.idle": "2024-11-13T05:15:23.642401Z",
"shell.execute_reply": "2024-11-13T05:15:23.641653Z"
},
"executionStartTime": 1627652821316,
"executionStopTime": 1627652822868,
"hidden_ranges": [],
"originalKey": "101b0e96-5b3d-48c5-bf3c-677b4ddf90c7",
"papermill": {
"duration": 2.816072,
"end_time": "2024-11-13T05:15:23.659964",
"exception": false,
"start_time": "2024-11-13T05:15:20.843892",
"status": "completed"
},
"requestMsgId": "c0dd9aaf-896d-4ea9-912f-1e58d301d114",
"tags": []
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[ERROR 11-13 05:15:23] ax.storage.sqa_store.encoder: ATTENTION: The Ax team is considering deprecating SQLAlchemy storage. If you are currently using SQLAlchemy storage, please reach out to us via GitHub Issues here: https://github.com/facebook/Ax/issues/2975\n"
]
},
{
"data": {
"text/html": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:23] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:23] ax.utils.notebook.plotting: Please see\n",
" (https://ax.dev/tutorials/visualizations.html#Fix-for-plots-that-are-not-rendering)\n",
" if visualizations are not rendering.\n"
]
},
{
"data": {
"text/html": [
" \n",
" "
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"import numpy as np\n",
"\n",
"from ax.modelbridge.cross_validation import cross_validate\n",
"from ax.plot.contour import interact_contour\n",
"from ax.plot.diagnostic import interact_cross_validation\n",
"from ax.plot.scatter import interact_fitted, plot_objective_vs_constraints, tile_fitted\n",
"from ax.plot.slice import plot_slice\n",
"from ax.service.ax_client import AxClient, ObjectiveProperties\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": "a15c0006",
"metadata": {
"code_folding": [],
"hidden_ranges": [],
"originalKey": "8449378f-890e-4e76-8d73-ce2aa4120a69",
"papermill": {
"duration": 0.040659,
"end_time": "2024-11-13T05:15:23.740798",
"exception": false,
"start_time": "2024-11-13T05:15:23.700139",
"status": "completed"
},
"showInput": true,
"tags": []
},
"source": [
"## 1. Create experiment and run optimization\n",
"\n",
"The vizualizations require an experiment object and a model fit on the evaluated data. The routine below is a copy of the Service API tutorial, so the explanation here is omitted. Retrieving the experiment and model objects for each API paradigm is shown in the respective tutorials"
]
},
{
"cell_type": "markdown",
"id": "d592eba5",
"metadata": {
"originalKey": "f7544e06-6c6a-4841-b659-3be6a198a948",
"papermill": {
"duration": 0.04017,
"end_time": "2024-11-13T05:15:23.821234",
"exception": false,
"start_time": "2024-11-13T05:15:23.781064",
"status": "completed"
},
"tags": []
},
"source": [
"#### 1a. Define search space and evaluation function"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "9f16dd5c",
"metadata": {
"code_folding": [],
"execution": {
"iopub.execute_input": "2024-11-13T05:15:23.903834Z",
"iopub.status.busy": "2024-11-13T05:15:23.903240Z",
"iopub.status.idle": "2024-11-13T05:15:23.907781Z",
"shell.execute_reply": "2024-11-13T05:15:23.907186Z"
},
"executionStartTime": 1627652824829,
"executionStopTime": 1627652824877,
"hidden_ranges": [],
"originalKey": "28f6cb76-828f-445d-bdda-ba057c87dcd0",
"papermill": {
"duration": 0.047393,
"end_time": "2024-11-13T05:15:23.909095",
"exception": false,
"start_time": "2024-11-13T05:15:23.861702",
"status": "completed"
},
"requestMsgId": "7495e7e2-1025-4292-b3aa-e953739cef3e",
"tags": []
},
"outputs": [],
"source": [
"noise_sd = 0.1\n",
"param_names = [f\"x{i+1}\" for i in range(6)] # x1, x2, ..., x6\n",
"\n",
"\n",
"def noisy_hartmann_evaluation_function(parameterization):\n",
" x = np.array([parameterization.get(p_name) for p_name in param_names])\n",
" noise1, noise2 = np.random.normal(0, noise_sd, 2)\n",
"\n",
" return {\n",
" \"hartmann6\": (hartmann6(x) + noise1, noise_sd),\n",
" \"l2norm\": (np.sqrt((x**2).sum()) + noise2, noise_sd),\n",
" }"
]
},
{
"cell_type": "markdown",
"id": "d6ee82a7",
"metadata": {
"originalKey": "17a51543-298e-47d4-bcd9-33459fe1169e",
"papermill": {
"duration": 0.040374,
"end_time": "2024-11-13T05:15:23.989661",
"exception": false,
"start_time": "2024-11-13T05:15:23.949287",
"status": "completed"
},
"tags": []
},
"source": [
"#### 1b. Create Experiment"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "66eba786",
"metadata": {
"code_folding": [],
"execution": {
"iopub.execute_input": "2024-11-13T05:15:24.072518Z",
"iopub.status.busy": "2024-11-13T05:15:24.072197Z",
"iopub.status.idle": "2024-11-13T05:15:24.088411Z",
"shell.execute_reply": "2024-11-13T05:15:24.087791Z"
},
"executionStartTime": 1627654956712,
"executionStopTime": 1627654956823,
"hidden_ranges": [],
"originalKey": "6fca889c-a4ff-42ef-a669-6eb8803de89c",
"papermill": {
"duration": 0.059338,
"end_time": "2024-11-13T05:15:24.089730",
"exception": false,
"start_time": "2024-11-13T05:15:24.030392",
"status": "completed"
},
"requestMsgId": "905eff52-e649-4bd5-abf0-ff69c1549852",
"tags": []
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:24] ax.service.ax_client: Starting optimization with verbose logging. To disable logging, set the `verbose_logging` argument to `False`. Note that float values in the logs are rounded to 6 decimal points.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:24] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x1. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:24] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x2. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:24] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x3. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:24] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x4. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:24] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x5. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:24] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x6. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:24] 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=[]).\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:24] ax.modelbridge.dispatch_utils: Using Models.BOTORCH_MODULAR since there is at least one ordered parameter and there are no unordered categorical parameters.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:24] ax.modelbridge.dispatch_utils: Calculating the number of remaining initialization trials based on num_initialization_trials=None max_initialization_trials=None num_tunable_parameters=6 num_trials=None use_batch_trials=False\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:24] ax.modelbridge.dispatch_utils: calculated num_initialization_trials=12\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:24] ax.modelbridge.dispatch_utils: num_completed_initialization_trials=0 num_remaining_initialization_trials=12\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:24] ax.modelbridge.dispatch_utils: `verbose`, `disable_progbar`, and `jit_compile` are not yet supported when using `choose_generation_strategy` with ModularBoTorchModel, dropping these arguments.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:24] 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"
]
}
],
"source": [
"ax_client = AxClient()\n",
"ax_client.create_experiment(\n",
" name=\"test_visualizations\",\n",
" parameters=[\n",
" {\n",
" \"name\": p_name,\n",
" \"type\": \"range\",\n",
" \"bounds\": [0.0, 1.0],\n",
" }\n",
" for p_name in param_names\n",
" ],\n",
" objectives={\"hartmann6\": ObjectiveProperties(minimize=True)},\n",
" outcome_constraints=[\"l2norm <= 1.25\"],\n",
")"
]
},
{
"cell_type": "markdown",
"id": "8ed89dab",
"metadata": {
"code_folding": [],
"hidden_ranges": [],
"originalKey": "ab892f7c-4830-4c1d-b476-ec1078ec3faf",
"papermill": {
"duration": 0.041715,
"end_time": "2024-11-13T05:15:24.172882",
"exception": false,
"start_time": "2024-11-13T05:15:24.131167",
"status": "completed"
},
"showInput": false,
"tags": []
},
"source": [
"#### 1c. Run the optimization and fit a GP on all data"
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "7861c1ba",
"metadata": {
"code_folding": [],
"execution": {
"iopub.execute_input": "2024-11-13T05:15:24.257575Z",
"iopub.status.busy": "2024-11-13T05:15:24.256927Z",
"iopub.status.idle": "2024-11-13T05:16:29.420325Z",
"shell.execute_reply": "2024-11-13T05:16:29.419651Z"
},
"executionStartTime": 1627654642967,
"executionStopTime": 1627654862819,
"hidden_ranges": [],
"originalKey": "7269a5ba-45c8-4acf-ac83-a5ea8a52d6c1",
"papermill": {
"duration": 65.243784,
"end_time": "2024-11-13T05:16:29.458161",
"exception": false,
"start_time": "2024-11-13T05:15:24.214377",
"status": "completed"
},
"requestMsgId": "c7a4dea8-fd6d-4e1a-84de-ad973ede0cd7",
"tags": []
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 11-13 05:15:24] ax.service.ax_client: Generated new trial 0 with parameters {'x1': 0.32258, 'x2': 0.860162, 'x3': 0.941987, 'x4': 0.847485, 'x5': 0.589424, 'x6': 0.467366} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:24] ax.service.ax_client: Completed trial 0 with data: {'hartmann6': (-0.289996, 0.1), 'l2norm': (1.830424, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 11-13 05:15:24] ax.service.ax_client: Generated new trial 1 with parameters {'x1': 0.535038, 'x2': 0.492588, 'x3': 0.214804, 'x4': 0.498385, 'x5': 0.101773, 'x6': 0.834754} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:24] ax.service.ax_client: Completed trial 1 with data: {'hartmann6': (-0.296554, 0.1), 'l2norm': (1.361296, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 11-13 05:15:24] ax.service.ax_client: Generated new trial 2 with parameters {'x1': 0.781111, 'x2': 0.52478, 'x3': 0.64435, 'x4': 0.699243, 'x5': 0.495303, 'x6': 0.682004} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:24] ax.service.ax_client: Completed trial 2 with data: {'hartmann6': (-0.090606, 0.1), 'l2norm': (1.282694, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 11-13 05:15:24] ax.service.ax_client: Generated new trial 3 with parameters {'x1': 0.115632, 'x2': 0.142553, 'x3': 0.38744, 'x4': 0.079643, 'x5': 0.945886, 'x6': 0.048842} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:24] ax.service.ax_client: Completed trial 3 with data: {'hartmann6': (-0.089207, 0.1), 'l2norm': (1.026607, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 11-13 05:15:24] ax.service.ax_client: Generated new trial 4 with parameters {'x1': 0.153482, 'x2': 0.680642, 'x3': 0.028476, 'x4': 0.225479, 'x5': 0.828344, 'x6': 0.332626} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:24] ax.service.ax_client: Completed trial 4 with data: {'hartmann6': (-0.11413, 0.1), 'l2norm': (1.128938, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 11-13 05:15:24] ax.service.ax_client: Generated new trial 5 with parameters {'x1': 0.988866, 'x2': 0.047228, 'x3': 0.752218, 'x4': 0.620516, 'x5': 0.347288, 'x6': 0.965604} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:24] ax.service.ax_client: Completed trial 5 with data: {'hartmann6': (-0.033261, 0.1), 'l2norm': (1.72209, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 11-13 05:15:24] ax.service.ax_client: Generated new trial 6 with parameters {'x1': 0.695935, 'x2': 0.954512, 'x3': 0.322634, 'x4': 0.321497, 'x5': 0.234956, 'x6': 0.547187} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:24] ax.service.ax_client: Completed trial 6 with data: {'hartmann6': (-0.0768, 0.1), 'l2norm': (1.320479, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 11-13 05:15:24] ax.service.ax_client: Generated new trial 7 with parameters {'x1': 0.407288, 'x2': 0.337697, 'x3': 0.583061, 'x4': 0.957753, 'x5': 0.690669, 'x6': 0.179738} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:24] ax.service.ax_client: Completed trial 7 with data: {'hartmann6': (-0.028314, 0.1), 'l2norm': (1.746991, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 11-13 05:15:24] ax.service.ax_client: Generated new trial 8 with parameters {'x1': 0.489464, 'x2': 0.624292, 'x3': 0.263571, 'x4': 0.535867, 'x5': 0.006377, 'x6': 0.120232} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:24] ax.service.ax_client: Completed trial 8 with data: {'hartmann6': (-1.441806, 0.1), 'l2norm': (0.925363, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 11-13 05:15:24] ax.service.ax_client: Generated new trial 9 with parameters {'x1': 0.652852, 'x2': 0.242066, 'x3': 0.518098, 'x4': 0.180854, 'x5': 0.551885, 'x6': 0.73756} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:24] ax.service.ax_client: Completed trial 9 with data: {'hartmann6': (-0.476061, 0.1), 'l2norm': (1.338895, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 11-13 05:15:24] ax.service.ax_client: Generated new trial 10 with parameters {'x1': 0.906979, 'x2': 0.772305, 'x3': 0.088551, 'x4': 0.886166, 'x5': 0.912256, 'x6': 0.781084} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:24] ax.service.ax_client: Completed trial 10 with data: {'hartmann6': (-0.002224, 0.1), 'l2norm': (1.903786, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 11-13 05:15:24] ax.service.ax_client: Generated new trial 11 with parameters {'x1': 0.196336, 'x2': 0.40473, 'x3': 0.818117, 'x4': 0.272357, 'x5': 0.395998, 'x6': 0.397982} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:24] ax.service.ax_client: Completed trial 11 with data: {'hartmann6': (-0.840343, 0.1), 'l2norm': (1.283196, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:37] ax.service.ax_client: Generated new trial 12 with parameters {'x1': 0.440903, 'x2': 0.369174, 'x3': 0.388924, 'x4': 0.462979, 'x5': 0.0, 'x6': 0.067009} using model BoTorch.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:37] ax.service.ax_client: Completed trial 12 with data: {'hartmann6': (-0.272835, 0.1), 'l2norm': (0.995956, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:43] ax.service.ax_client: Generated new trial 13 with parameters {'x1': 0.444001, 'x2': 0.636952, 'x3': 0.444504, 'x4': 0.450684, 'x5': 0.013502, 'x6': 0.134684} using model BoTorch.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:43] ax.service.ax_client: Completed trial 13 with data: {'hartmann6': (-1.583432, 0.1), 'l2norm': (0.962306, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:51] ax.service.ax_client: Generated new trial 14 with parameters {'x1': 0.444838, 'x2': 0.689076, 'x3': 0.587226, 'x4': 0.443133, 'x5': 0.0, 'x6': 0.045937} using model BoTorch.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:51] ax.service.ax_client: Completed trial 14 with data: {'hartmann6': (-1.715079, 0.1), 'l2norm': (1.141092, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:56] ax.service.ax_client: Generated new trial 15 with parameters {'x1': 0.224982, 'x2': 0.677578, 'x3': 0.57727, 'x4': 0.187769, 'x5': 0.0, 'x6': 0.057943} using model BoTorch.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:15:56] ax.service.ax_client: Completed trial 15 with data: {'hartmann6': (-0.311039, 0.1), 'l2norm': (0.991609, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:16:01] ax.service.ax_client: Generated new trial 16 with parameters {'x1': 0.469436, 'x2': 0.690199, 'x3': 0.430384, 'x4': 0.147157, 'x5': 0.0, 'x6': 0.0} using model BoTorch.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:16:01] ax.service.ax_client: Completed trial 16 with data: {'hartmann6': (-0.177642, 0.1), 'l2norm': (0.957635, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:16:07] ax.service.ax_client: Generated new trial 17 with parameters {'x1': 0.418802, 'x2': 0.709348, 'x3': 0.546385, 'x4': 0.503416, 'x5': 0.0, 'x6': 0.0} using model BoTorch.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:16:07] ax.service.ax_client: Completed trial 17 with data: {'hartmann6': (-2.267456, 0.1), 'l2norm': (1.228191, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:16:14] ax.service.ax_client: Generated new trial 18 with parameters {'x1': 0.437804, 'x2': 0.77066, 'x3': 0.455527, 'x4': 0.538772, 'x5': 0.0, 'x6': 0.002496} using model BoTorch.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:16:14] ax.service.ax_client: Completed trial 18 with data: {'hartmann6': (-2.613806, 0.1), 'l2norm': (1.344416, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:16:29] ax.service.ax_client: Generated new trial 19 with parameters {'x1': 0.474746, 'x2': 0.783261, 'x3': 0.343669, 'x4': 0.530149, 'x5': 0.0, 'x6': 0.175634} using model BoTorch.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:16:29] ax.service.ax_client: Completed trial 19 with data: {'hartmann6': (-2.015509, 0.1), 'l2norm': (1.110386, 0.1)}.\n"
]
}
],
"source": [
"for i in range(20):\n",
" parameters, trial_index = ax_client.get_next_trial()\n",
" # Local evaluation here can be replaced with deployment to external system.\n",
" ax_client.complete_trial(\n",
" trial_index=trial_index, raw_data=noisy_hartmann_evaluation_function(parameters)\n",
" )"
]
},
{
"cell_type": "markdown",
"id": "d0d0b813",
"metadata": {
"originalKey": "72f4d3e7-fa04-43d0-8451-ded292e705df",
"papermill": {
"duration": 0.04214,
"end_time": "2024-11-13T05:16:29.542931",
"exception": false,
"start_time": "2024-11-13T05:16:29.500791",
"status": "completed"
},
"tags": []
},
"source": [
"## 2. Contour plots\n",
"\n",
"The plot below shows the response surface for `hartmann6` metric as a function of the `x1`, `x2` parameters.\n",
"\n",
"The other parameters are fixed in the middle of their respective ranges, which in this example is 0.5 for all of them."
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "41e63543",
"metadata": {
"code_folding": [],
"execution": {
"iopub.execute_input": "2024-11-13T05:16:29.629283Z",
"iopub.status.busy": "2024-11-13T05:16:29.628675Z",
"iopub.status.idle": "2024-11-13T05:16:30.299480Z",
"shell.execute_reply": "2024-11-13T05:16:30.298771Z"
},
"executionStartTime": 1627654870209,
"executionStopTime": 1627654871972,
"hidden_ranges": [],
"originalKey": "843df85c-965d-4a83-9fe1-696225d81c0f",
"papermill": {
"duration": 0.718785,
"end_time": "2024-11-13T05:16:30.303995",
"exception": false,
"start_time": "2024-11-13T05:16:29.585210",
"status": "completed"
},
"requestMsgId": "4a643541-867c-46b6-868d-64337920c2a3",
"tags": []
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:16:29] ax.service.ax_client: Retrieving contour plot with parameter 'x1' on X-axis and 'x2' on Y-axis, for metric 'hartmann6'. Remaining parameters are affixed to the middle of their range.\n"
]
},
{
"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": [
[
-0.21508066731733838,
-0.21440726927913417,
-0.2137410660473344,
-0.21308227012185993,
-0.21243109259086823,
-0.21178774301840503,
-0.2111524293323343,
-0.21052535771263076,
-0.2099067324801187,
-0.20929675598574304,
-0.2086956285004517,
-0.20810354810577808,
-0.20752071058520388,
-0.20694730931638772,
-0.20638353516433972,
-0.20582957637562832,
-0.20528561847369808,
-0.2047518441553811,
-0.20422843318868417,
-0.2037155623119284,
-0.20321340513432484,
-0.20272213203805917,
-0.20224191008196934,
-0.20177290290688432,
-0.20131527064270682,
-0.2008691698173089,
-0.20043475326731464,
-0.20001217005084015,
-0.19960156536226376,
-0.19920308044908858,
-0.1988168525309721,
-0.19844301472097886,
-0.19808169594912778,
-0.19773302088829048,
-0.1973971098825003,
-0.19707407887773365,
-0.1967640393552147,
-0.19646709826729974,
-0.1961833579759928,
-0.1959129161941418,
-0.19565586592936018,
-0.19541229543072408,
-0.1951822881382822,
-0.19496592263542395,
-0.194763272604138,
-0.19457440678320492,
-0.19439938892934822,
-0.1942382777813813,
-0.1940911270273754,
-0.19395798527487496
],
[
-0.21571163991098385,
-0.21500834375164785,
-0.21431201608978923,
-0.2136228792816689,
-0.21294115439698147,
-0.2122670611010417,
-0.21160081753715504,
-0.21094264020925785,
-0.21029274386491892,
-0.20965134137878633,
-0.2090186436365713,
-0.2083948594196559,
-0.20778019529041353,
-0.20717485547832942,
-0.20657904176700925,
-0.20599295338216528,
-0.20541678688066256,
-0.20485073604071596,
-0.20429499175332255,
-0.20374974191501288,
-0.20321517132200684,
-0.20269146156585915,
-0.2021787909306726,
-0.20167733429196533,
-0.20118726301726836,
-0.20070874486853613,
-0.2002419439064445,
-0.1997870203966547,
-0.1993441307181183,
-0.19891342727349492,
-0.19849505840175585,
-0.1980891682930448,
-0.19769589690585965,
-0.19731537988662928,
-0.19694774849174262,
-0.196593129512097,
-0.19625164520022564,
-0.19592341320006218,
-0.1956085464794003,
-0.1953071532651005,
-0.19501933698109736,
-0.19474519618925823,
-0.1944848245331372,
-0.1942383106846733,
-0.1940057382938723,
-0.19378718594151434,
-0.19358272709492208,
-0.1933924300668276,
-0.19321635797736797,
-0.19305456871923932
],
[
-0.216939559407536,
-0.2162061125978379,
-0.2154793459114474,
-0.21475949176330755,
-0.2140467814266358,
-0.21334144490946788,
-0.21264371083128059,
-0.21195380629978194,
-0.21127195678796423,
-0.21059838601151204,
-0.20993331580665636,
-0.20927696600857082,
-0.20862955433040314,
-0.2079912962430317,
-0.20736240485564356,
-0.2067430907972257,
-0.20613356209906009,
-0.20553402407831556,
-0.2049446792228286,
-0.204365727077161,
-0.20379736413002664,
-0.20323978370317453,
-0.20269317584181706,
-0.20215772720668973,
-0.20163362096782872,
-0.20112103670015113,
-0.2006201502809195,
-0.20013113378917535,
-0.1996541554072196,
-0.19918937932422032,
-0.19873696564202514,
-0.19829707028325272,
-0.1978698449017396,
-0.19745543679541055,
-0.1970539888216467,
-0.19666563931521752,
-0.19629052200884062,
-0.19592876595643866,
-0.19558049545914868,
-0.1952458299941479,
-0.1949248841463515,
-0.19461776754303567,
-0.19432458479144066,
-0.19404543541940145,
-0.19378041381905453,
-0.19352960919366524,
-0.19329310550761564,
-0.19307098143959545,
-0.19286331033902993,
-0.19267016018577876
],
[
-0.21854947507793288,
-0.21778467668794366,
-0.21702622995509369,
-0.21627437787027604,
-0.21552936244037219,
-0.2147914245588034,
-0.21406080387604404,
-0.21333773867019618,
-0.21262246571772236,
-0.21191522016443376,
-0.21121623539683249,
-0.21052574291390647,
-0.20984397219947631,
-0.2091711505951891,
-0.2085075031742632,
-0.20785325261607734,
-0.20720861908170168,
-0.20657382009047276,
-0.20594907039770588,
-0.2053345818736384,
-0.20473056338370643,
-0.20413722067024392,
-0.2035547562356998,
-0.20298336922746568,
-0.20242325532440736,
-0.20187460662518797,
-0.20133761153847363,
-0.20081245467510994,
-0.2002993167423539,
-0.19979837444024728,
-0.19930980036021612,
-0.19883376288597332,
-0.1983704260968085,
-0.19791994967334148,
-0.19748248880581404,
-0.1970581941049947,
-0.19664721151576808,
-0.19624968223347833,
-0.19586574262309275,
-0.1954955241412516,
-0.19513915326126746,
-0.19479675140112884,
-0.1944684348545736,
-0.19415431472527928,
-0.1938544968642275,
-0.19356908181028942,
-0.19329816473407846,
-0.1930418353851176,
-0.19280017804235827,
-0.19257327146808983
],
[
-0.22028615929788636,
-0.21948771702522768,
-0.21869528368511115,
-0.21790911372030392,
-0.2171294607522783,
-0.21635657744521708,
-0.21559071536986796,
-0.21483212486734676,
-0.21408105491299012,
-0.21333775298036872,
-0.21260246490555423,
-0.21187543475175563,
-0.2111569046744175,
-0.2104471147868952,
-0.2097463030268028,
-0.20905470502314483,
-0.20837255396432802,
-0.2077000804671641,
-0.20703751244696172,
-0.20638507498881203,
-0.2057429902201684,
-0.20511147718482198,
-0.20449075171837422,
-0.20388102632530336,
-0.2032825100577229,
-0.20269540839593264,
-0.20211992313085264,
-0.20155625224843682,
-0.20100458981616143,
-0.20046512587167292,
-0.19993804631369083,
-0.1994235327952517,
-0.19892176261937772,
-0.1984329086372557,
-0.19795713914900825,
-0.19749461780713773,
-0.19704550352271732,
-0.19660995037440931,
-0.19618810752037713,
-0.1957801191131704,
-0.19538612421763968,
-0.1950062567319591,
-0.1946406453118077,
-0.19428941329777843,
-0.1939526786460664,
-0.19363055386249556,
-0.19332314593993033,
-0.19303055629912574,
-0.19275288073305852,
-0.19249020935478317
],
[
-0.22187290408351373,
-0.22103736081782505,
-0.22020749721452582,
-0.2193835804236111,
-0.2185658769331516,
-0.21775465242600045,
-0.21695017163622915,
-0.2161526982054075,
-0.21536249453882628,
-0.21457982166178496,
-0.21380493907604292,
-0.21303810461655237,
-0.21227957430857913,
-0.2115296022253254,
-0.21078844034616173,
-0.21005633841558213,
-0.20933354380299074,
-0.20862030136343118,
-0.207916853299368,
-0.20722343902362855,
-0.2065402950236176,
-0.20586765472690494,
-0.20520574836830358,
-0.20455480285853272,
-0.20391504165458063,
-0.20328668463186428,
-0.20266994795829135,
-0.2020650439703255,
-0.2014721810511516,
-0.20089156351104337,
-0.20032339147002554,
-0.19976786074292674,
-0.19922516272691448,
-0.19869548429160516,
-0.19817900767183405,
-0.1976759103631729,
-0.1971863650202798,
-0.1967105393581629,
-0.1962485960564334,
-0.19580069266662986,
-0.1953669815226841,
-0.19494760965459967,
-0.19454271870541434,
-0.1941524448515085,
-0.1937769187263258,
-0.1934162653475625,
-0.19307060404788529,
-0.19274004840922832,
-0.19242470620072272,
-0.1921246793203042
],
[
-0.22303667643478026,
-0.22215942660440374,
-0.2212875675664756,
-0.22042138080429835,
-0.21956114728730358,
-0.21870714731949603,
-0.21785966038752763,
-0.21701896500849988,
-0.21618533857762484,
-0.2153590572158504,
-0.2145403956175751,
-0.21372962689856329,
-0.21292702244418416,
-0.21213285175808783,
-0.21134738231143863,
-0.21057087939282632,
-0.20980360595896558,
-0.20904582248631154,
-0.20829778682370004,
-0.20755975404613197,
-0.20683197630982048,
-0.20611470270861276,
-0.205408179131903,
-0.2047126481241492,
-0.20402834874610365,
-0.2033555164378762,
-0.20269438288392966,
-0.2020451758801225,
-0.2014081192029058,
-0.20078343248077452,
-0.200171331068082,
-0.1995720259213163,
-0.19898572347793753,
-0.19841262553787653,
-0.19785292914778613,
-0.1973068264881399,
-0.19677450476327102,
-0.19625614609443554,
-0.19575192741598757,
-0.19526202037474844,
-0.19478659123265107,
-0.1943258007727371,
-0.19387980420857842,
-0.19344875109719673,
-0.19303278525555095,
-0.19263204468065248,
-0.19224666147337655,
-0.19187676176602514,
-0.1915224656536959,
-0.1911838871295125
],
[
-0.2235389413426262,
-0.2226143542139985,
-0.22169493234509596,
-0.2207809735056644,
-0.2198727750817328,
-0.21897063391467247,
-0.21807484613977718,
-0.21718570702448098,
-0.21630351080634846,
-0.21542855053094956,
-0.21456111788975213,
-0.21370150305815638,
-0.21284999453379216,
-0.21200687897521353,
-0.21117244104110766,
-0.21034696323015056,
-0.2095307257216354,
-0.20872400621699505,
-0.2079270797823496,
-0.20714021869219784,
-0.20636369227438484,
-0.20559776675646252,
-0.20484270511356645,
-0.2040987669179372,
-0.20336620819019652,
-0.20264528125250725,
-0.20193623458372872,
-0.20123931267668632,
-0.2005547558976694,
-0.19988280034827238,
-0.19922367772968663,
-0.19857761520955508,
-0.19794483529149814,
-0.1973255556874084,
-0.19671998919262984,
-0.1961283435641053,
-0.1955508214016038,
-0.19498762003211867,
-0.19443893139752028,
-0.19390494194557006,
-0.19338583252436242,
-0.19288177828029707,
-0.19239294855964845,
-0.1919195068138152,
-0.19146161050832522,
-0.1910194110356645,
-0.1905930536319959,
-0.19018267729783755,
-0.18978841472275731,
-0.18941039221413553
],
[
-0.22321084695695953,
-0.22223250913077303,
-0.22125918959581242,
-0.2202912046059115,
-0.2193288701394544,
-0.21837250172778622,
-0.21742241428305242,
-0.21647892192559365,
-0.2155423378110376,
-0.21461297395721113,
-0.2136911410710125,
-0.2127771483753758,
-0.2118713034364662,
-0.2109739119912331,
-0.21008527777546498,
-0.20920570235247654,
-0.20833548494256487,
-0.20747492225336966,
-0.20662430831127138,
-0.2057839342939624,
-0.2049540883643246,
-0.20413505550574235,
-0.20332711735899273,
-0.20253055206082937,
-0.20174563408440332,
-0.20097263408163873,
-0.200211818727694,
-0.19946345056763848,
-0.19872778786545703,
-0.19800508445551412,
-0.19729558959659332,
-0.1965995478286271,
-0.19591719883223746,
-0.19524877729119577,
-0.19459451275791462,
-0.19395462952207965,
-0.19332934648252592,
-0.19271887702245982,
-0.19212342888813044,
-0.19154320407104064,
-0.19097839869379912,
-0.1904292028996954,
-0.18989580074609064,
-0.18937837010170638,
-0.18887708254788976,
-0.1883921032839343,
-0.18792359103652734,
-0.18747169797339275,
-0.18703656962120158,
-0.1866183447877971
],
[
-0.22199084265322816,
-0.22095192530770952,
-0.21991796140803216,
-0.2188892880111673,
-0.21786624198485954,
-0.216849159824071,
-0.21583837746676837,
-0.2148342301092016,
-0.2138370520208075,
-0.21284717635888606,
-0.21186493498319292,
-0.2108906582705904,
-0.2099246749299048,
-0.20896731181713318,
-0.20801889375114324,
-0.20707974333001705,
-0.20615018074817965,
-0.2052305236144591,
-0.20432108677122085,
-0.20342218211472446,
-0.20253411841684482,
-0.201657201148296,
-0.2007917323035044,
-0.19993801022727553,
-0.19909632944338096,
-0.19826698048521474,
-0.1974502497286531,
-0.19664641922724935,
-0.19585576654989767,
-0.19507856462109774,
-0.19431508156394878,
-0.19356558054599932,
-0.19283031962807456,
-0.19210955161620663,
-0.19140352391678417,
-0.19071247839503758,
-0.19003665123697333,
-0.18937627281487152,
-0.18873156755644316,
-0.18810275381776814,
-0.1874900437600952,
-0.1868936432306167,
-0.18631375164730524,
-0.18575056188790146,
-0.18520426018314073,
-0.18467502601430508,
-0.18416303201517065,
-0.18366844387843512,
-0.1831914202666876,
-0.18273211272799467
],
[
-0.2199622216932524,
-0.2188559699045441,
-0.2177546767808065,
-0.21665870245990038,
-0.21556840695957813,
-0.21448414998067544,
-0.21340629070956957,
-0.2123351876200616,
-0.21127119827483404,
-0.21021467912663294,
-0.20916598531933472,
-0.208125470489053,
-0.20709348656543464,
-0.20607038357330915,
-0.2050565094348465,
-0.20405220977237365,
-0.20305782771201453,
-0.20207370368830357,
-0.20110017524993246,
-0.20013757686678302,
-0.19918623973840127,
-0.19824649160406588,
-0.19731865655460523,
-0.1964030548461117,
-0.19550000271570517,
-0.1946098121994933,
-0.1937327909528747,
-0.19286924207333145,
-0.19201946392585345,
-0.19118374997113302,
-0.19036238859667126,
-0.18955566295093035,
-0.18876385078066826,
-0.187987224271582,
-0.18722604989239056,
-0.18648058824248032,
-0.18575109390324251,
-0.1850378152932065,
-0.1843409945270989,
-0.18366086727893544,
-0.18299766264924533,
-0.18235160303655412,
-0.18172290401319646,
-0.1811117742055836,
-0.18051841517900208,
-0.17994302132703688,
-0.17938577976570508,
-0.17884687023237705,
-0.17832646498956917,
-0.17782472873366723
],
[
-0.2173876059423529,
-0.21620793806710614,
-0.21503327284141238,
-0.21386399552219715,
-0.21270049130948282,
-0.2115431451351772,
-0.21039234145106245,
-0.20924846401613673,
-0.20811189568347466,
-0.2069830181867811,
-0.20586221192679072,
-0.2047498557576931,
-0.20364632677374522,
-0.2025520000962393,
-0.20146724866099325,
-0.20039244300654158,
-0.19932795106318152,
-0.19827413794305265,
-0.1972313657314126,
-0.19619999327927595,
-0.19518037599759308,
-0.1941728656531097,
-0.19317781016610297,
-0.1921955534101305,
-0.19122643501396708,
-0.19027079016588633,
-0.18932894942044504,
-0.18840123850792384,
-0.18748797814657986,
-0.18658948385786683,
-0.18570606578476134,
-0.1848380285133565,
-0.18398567089784512,
-0.18314928588906282,
-0.18232916036669877,
-0.18152557497532834,
-0.18073880396439262,
-0.17996911503224833,
-0.17921676917442103,
-0.17848202053617496,
-0.17776511626952118,
-0.17706629639476618,
-0.17638579366672952,
-0.17572383344570708,
-0.1750806335733115,
-0.17445640425325354,
-0.17385134793718449,
-0.17326565921566256,
-0.17269952471434075,
-0.1721531229954455
],
[
-0.21473708188520785,
-0.2134792770754566,
-0.21222650418146394,
-0.21097917515121517,
-0.20973770195145008,
-0.20850249634117185,
-0.20727396964427325,
-0.2060525325214348,
-0.20483859474148675,
-0.20363256495240378,
-0.20243485045211929,
-0.20124585695933062,
-0.20006598838448358,
-0.19889564660111303,
-0.19773523121771958,
-0.19658513935036548,
-0.1954457653961772,
-0.19431750080791982,
-0.19320073386984093,
-0.1920958494749509,
-0.19100322890392646,
-0.18992324960581192,
-0.1888562849806923,
-0.18780270416452155,
-0.18676287181626822,
-0.18573714790756363,
-0.1847258875150054,
-0.1837294406153041,
-0.1827481518834212,
-0.18178236049387475,
-0.1808323999253582,
-0.1798985977688462,
-0.17898127553933274,
-0.17808074849134903,
-0.17719732543842498,
-0.17633130857661888,
-0.17548299331227324,
-0.17465266809412394,
-0.17384061424990122,
-0.1730471058275515,
-0.17227240944119943,
-0.17151678412198612,
-0.17078048117387862,
-0.17006374403458324,
-0.16936680814166094,
-0.16868990080394397,
-0.1680332410783585,
-0.16739703965224995,
-0.16678149873128345,
-0.16618681193301876
],
[
-0.21270661143139075,
-0.21136805354943478,
-0.2100344645598774,
-0.20870628396308033,
-0.20738395139240878,
-0.20606790637198985,
-0.20475858807345987,
-0.20345643507189926,
-0.20216188510113214,
-0.2008753748085882,
-0.19959733950992276,
-0.19832821294357617,
-0.19706842702548133,
-0.1958184116040977,
-0.1945785942159805,
-0.19334939984207006,
-0.19213125066489983,
-0.19092456582692036,
-0.18972976119011925,
-0.18854724909715148,
-0.18737743813415403,
-0.1862207328954445,
-0.185077533750291,
-0.1839482366119416,
-0.18283323270909924,
-0.1817329083600332,
-0.18064764474949746,
-0.17957781770864528,
-0.17852379749812058,
-0.17748594859448846,
-0.1764646294801896,
-0.1754601924371889,
-0.1744729833444676,
-0.1735033414795441,
-0.17255159932417047,
-0.17161808237435883,
-0.17070310895489554,
-0.16980699003849142,
-0.1689300290697039,
-0.16807252179378174,
-0.16723475609055594,
-0.16641701181351798,
-0.16561956063420424,
-0.1648426658920077,
-0.164086582449538,
-0.16335155655363576,
-0.16263782570215102,
-0.16194561851657885,
-0.161275154620662,
-0.16062664452502962
],
[
-0.2122235230148733,
-0.2108044602989359,
-0.20939010898798155,
-0.20798093603632833,
-0.20657740871820002,
-0.2051799943697868,
-0.20378916013013276,
-0.2024053726810695,
-0.20102909798637797,
-0.19966080103039646,
-0.19830094555627809,
-0.19694999380409328,
-0.19560840624899972,
-0.1942766413396757,
-0.19295515523723172,
-0.1916444015548064,
-0.19034483109804756,
-0.18905689160670364,
-0.1877810274975137,
-0.18651767960861515,
-0.1852672849456699,
-0.18403027642991893,
-0.18280708264835543,
-0.18159812760623634,
-0.18040383048211994,
-0.17922460538563084,
-0.178060861118151,
-0.1769130009366246,
-0.17578142232067412,
-0.17466651674321132,
-0.17356866944473404,
-0.1724882592114797,
-0.17142565815763017,
-0.17038123151173118,
-0.16935533740749753,
-0.16834832667918476,
-0.16736054266167621,
-0.16639232099545054,
-0.16544398943658767,
-0.16451586767196114,
-0.16360826713975973,
-0.1627214908554837,
-0.1618558332435518,
-0.1610115799746461,
-0.1601890078089202,
-0.15938838444519898,
-0.15860996837627328,
-0.15785400875040412,
-0.1571207452391481,
-0.15641040791157712
],
[
-0.2144363660777941,
-0.2129406386878226,
-0.21144904513900065,
-0.20996207854350513,
-0.20848023263454457,
-0.2070040014934385,
-0.20553387927531352,
-0.20407035993360823,
-0.2026139369436301,
-0.20116510302534618,
-0.19972434986566467,
-0.1982921678403834,
-0.19686904573606562,
-0.19545547047203604,
-0.19405192682273253,
-0.192658897140628,
-0.19127686107995062,
-0.18990629532141523,
-0.18854767329819921,
-0.1872014649233683,
-0.18586813631898746,
-0.18454814954712195,
-0.1832419623429592,
-0.18195002785025227,
-0.18067279435931177,
-0.1794107050477517,
-0.17816419772420589,
-0.17693370457520352,
-0.17571965191544425,
-0.17452245994163096,
-0.17334254249009623,
-0.17218030679839957,
-0.171036153271091,
-0.16991047524982317,
-0.16880365878802117,
-0.16771608243025582,
-0.16664811699652204,
-0.1656001253715882,
-0.16457246229957945,
-0.16356547418395861,
-0.1625794988930741,
-0.16161486557140292,
-0.16067189445666752,
-0.15975089670293974,
-0.15885217420988618,
-0.15797601945828565,
-0.15712271535192746,
-0.15629253506603036,
-0.15548574190228304,
-0.15470258915061397
],
[
-0.22068718995913406,
-0.21912287279105697,
-0.21756164583204624,
-0.21600402564875215,
-0.21445052989225816,
-0.2129016770116936,
-0.21135798596613764,
-0.20981997593502894,
-0.2082881660273087,
-0.20676307498954033,
-0.20524522091320957,
-0.20373512094146673,
-0.20223329097550619,
-0.2007402453808575,
-0.19925649669378903,
-0.19778255532807465,
-0.19631892928236,
-0.19486612384835056,
-0.1934246413200693,
-0.19199498070441307,
-0.19057763743324058,
-0.1891731030772193,
-0.18778186506168038,
-0.18640440638469008,
-0.18504120533757407,
-0.1836927352281359,
-0.18235946410676218,
-0.18104185449566856,
-0.17974036312148656,
-0.17845544065141283,
-0.17718753143313404,
-0.17593707323874008,
-0.17470449701283036,
-0.1734902266250088,
-0.17229467862698483,
-0.17111826201445374,
-0.16996137799396083,
-0.16882441975493323,
-0.16770777224705813,
-0.16661181196318153,
-0.165536906727903,
-0.16448341549203727,
-0.16345168813308864,
-0.16244206526190952,
-0.16145487803567682,
-0.16049044797734857,
-0.15954908680171598,
-0.1586310962482047,
-0.1577367679205255,
-0.15686638313332213
],
[
-0.23246536418875363,
-0.23084527077423644,
-0.2292265965464863,
-0.22760987725236165,
-0.2259956504017132,
-0.2243844549699135,
-0.22277683109820495,
-0.2211733197921465,
-0.21957446261835195,
-0.21798080139978332,
-0.21639287790983575,
-0.21481123356544968,
-0.21323640911949154,
-0.21166894435266487,
-0.2101093777651707,
-0.20855824626838643,
-0.207016084876802,
-0.20548342640045764,
-0.20396080113813758,
-0.20244873657155865,
-0.20094775706081264,
-0.19945838354129092,
-0.19798113322236038,
-0.1965165192880094,
-0.19506505059972667,
-0.1936272314018403,
-0.19220356102956176,
-0.19079453361997578,
-0.18940063782620137,
-0.18802235653495564,
-0.18666016658776385,
-0.1853145385060176,
-0.18398593622012333,
-0.18267481680295083,
-0.18138163020778775,
-0.18010681901104197,
-0.17885081815984272,
-0.17761405472480485,
-0.17639694765810404,
-0.17519990755708048,
-0.17402333643354795,
-0.17286762748899376,
-0.17173316489584423,
-0.17062032358496232,
-0.16952946903954524,
-0.16846095709558295,
-0.16741513374902628,
-0.16639233496980177,
-0.16539288652283624,
-0.16441710379619567
],
[
-0.2513433400131237,
-0.24968533544406696,
-0.24802628199650556,
-0.2463667286517881,
-0.24470722710337717,
-0.2430483314515668,
-0.2413905978954548,
-0.2397345844223746,
-0.2380808504950776,
-0.2364299567368675,
-0.23478246461496388,
-0.23313893612232978,
-0.23149993345821834,
-0.22986601870769408,
-0.2282377535203991,
-0.22661569878878274,
-0.2250004143260978,
-0.22339245854439033,
-0.22179238813275992,
-0.22020075773613823,
-0.218618119634852,
-0.21704502342523335,
-0.2154820157015217,
-0.21392963973932888,
-0.21238843518092643,
-0.2108589377225888,
-0.20934167880427257,
-0.20783718530186274,
-0.2063459792222575,
-0.20486857740150405,
-0.20340549120627205,
-0.20195722623887336,
-0.20052428204607897,
-0.1991071518319712,
-0.19770632217505424,
-0.19632227274985437,
-0.19495547605323504,
-0.19360639713563477,
-0.1922754933374632,
-0.19096321403083466,
-0.18967000036687381,
-0.18839628502876876,
-0.18714249199077881,
-0.18590903628337552,
-0.1846963237647064,
-0.18350475089855772,
-0.18233470453896766,
-0.18118656172168712,
-0.18006068946261455,
-0.17895744456335827
],
[
-0.27889618340621464,
-0.27722326033114864,
-0.2755458540387544,
-0.273864519105159,
-0.27217981409328496,
-0.2704923012440071,
-0.2688025461637697,
-0.26711111750890104,
-0.2654185866668861,
-0.2637255274348227,
-0.26203251569534947,
-0.2603401290902587,
-0.25864894669209654,
-0.2569595486739803,
-0.2552725159779055,
-0.2535884299818232,
-0.2519078721657187,
-0.25023142377701085,
-0.2485596654954867,
-0.24689317709809377,
-0.2452325371238137,
-0.24357832253892225,
-0.24193110840289617,
-0.2402914675352325,
-0.2386599701834558,
-0.2370371836925792,
-0.23542367217630045,
-0.23381999619017402,
-0.23222671240705145,
-0.23064437329503407,
-0.2290735267982149,
-0.22751471602044704,
-0.22596847891241345,
-0.22443534796224662,
-0.222915849889936,
-0.22141050534578027,
-0.21991982861311926,
-0.218444327315597,
-0.2169845021291606,
-0.2155408464990589,
-0.21411384636203307,
-0.21270397987394113,
-0.2113117171430171,
-0.20993751996898052,
-0.20858184158817972,
-0.20724512642501303,
-0.2059278098497439,
-0.20463031794296738,
-0.20335306726686936,
-0.20209646464343356
],
[
-0.3166081844221088,
-0.31494826626282607,
-0.3132793056150018,
-0.31160185338290997,
-0.3099164661091867,
-0.30822370566754426,
-0.3065241389509568,
-0.3048183375555538,
-0.3031068774604671,
-0.3013903387038696,
-0.2996693050554876,
-0.2979443636858194,
-0.29621610483233185,
-0.2944851214629134,
-0.2927520089368276,
-0.2910173646634537,
-0.28928178775909175,
-0.2875458787020996,
-0.2858102389866376,
-0.2840754707753095,
-0.28234217655097643,
-0.28061095876802106,
-0.2788824195033552,
-0.27715716010744706,
-0.2754357808556379,
-0.27371888060007066,
-0.2720070564224645,
-0.27030090328805007,
-0.26860101370093636,
-0.26690797736118943,
-0.26522238082389404,
-0.26354480716048967,
-0.2618758356226314,
-0.26021604130888065,
-0.2585659948344505,
-0.2569262620043186,
-0.255297403489927,
-0.2536799745097535,
-0.25207452451400997,
-0.25048159687369614,
-0.24890172857428222,
-0.24733544991423967,
-0.24578328420867213,
-0.24424574749827177,
-0.24272334826382747,
-0.2412165871465014,
-0.23972595667410435,
-0.23825194099355518,
-0.2367950156097573,
-0.23535564713104518
],
[
-0.36577124576157516,
-0.3641566950816249,
-0.36252728065845463,
-0.3608835389948678,
-0.3592260143044287,
-0.35755525821168443,
-0.35587182944662593,
-0.35417629353360586,
-0.3524692224749798,
-0.35075119442969444,
-0.3490227933870947,
-0.34728460883619416,
-0.3455372354306856,
-0.3437812726499284,
-0.342017324456227,
-0.34024599894863705,
-0.33846790801359494,
-0.336683666972647,
-0.3348938942275626,
-0.33309921090312494,
-0.3313002404878692,
-0.3294976084730801,
-0.32769194199033824,
-0.325883869447892,
-0.32407402016616166,
-0.32226302401269136,
-0.32045151103680164,
-0.3186401111042791,
-0.3168294535323752,
-0.31502016672543404,
-0.3132128778114131,
-0.3114082122796133,
-0.30960679361991117,
-0.3078092429637814,
-0.3060161787273811,
-0.304228216257017,
-0.30244596747725494,
-0.30067004054194696,
-0.29890103948850205,
-0.29713956389560425,
-0.2953862085447098,
-0.29364156308555195,
-0.2919062117059555,
-0.29018073280616885,
-0.28846569867801214,
-0.28676167518906975,
-0.2850692214721771,
-0.28338888962042497,
-0.28172122438794084,
-0.2800667628966455
],
[
-0.4273809462255395,
-0.42584777300643506,
-0.4242925486444486,
-0.42271578331061344,
-0.4211179974129053,
-0.41949972131055313,
-0.4178614950211209,
-0.4162038679205409,
-0.414527398436364,
-0.41283265373445005,
-0.4111202093993544,
-0.4093906491086543,
-0.4076445643014739,
-0.405882553841481,
-0.4041052236746092,
-0.40231318648179426,
-0.40050706132698627,
-0.3986874733007502,
-0.3968550531596899,
-0.39501043696205945,
-0.3931542656997779,
-0.3912871849272192,
-0.38940984438700516,
-0.3875228976331834,
-0.3856270016520234,
-0.3837228164807895,
-0.38181100482477387,
-0.3798922316729113,
-0.37796716391228863,
-0.37603646994185175,
-0.3741008192856349,
-0.3721608822058217,
-0.3702173293159485,
-0.36827083119455406,
-0.3663220579996251,
-0.36437167908408513,
-0.3624203626126959,
-0.3604687751806454,
-0.3585175814341288,
-0.3565674436932381,
-0.3546190215774452,
-0.3526729716339974,
-0.3507299469694759,
-0.34879059688486297,
-0.346855566514346,
-0.34492549646818776,
-0.3430010224799076,
-0.3410827750580595,
-0.33917137914286116,
-0.33726745376795614
],
[
-0.502037037241204,
-0.5006238207357279,
-0.4991799390623068,
-0.49770586328545063,
-0.4962020777049045,
-0.49466907959111583,
-0.49310737891171874,
-0.49151749804923006,
-0.4898999715101534,
-0.48825534562575607,
-0.48658417824472994,
-0.484887038417963,
-0.4831645060757305,
-0.48141717169747333,
-0.4796456359745127,
-0.47785050946591756,
-0.47603241224780923,
-0.47419197355641274,
-0.47232983142510154,
-0.47044663231576056,
-0.4685430307447479,
-0.4666196889037765,
-0.4646772762759936,
-0.46271646924760423,
-0.46073795071532553,
-0.45874240969000907,
-0.45673054089674214,
-0.45470304437176357,
-0.45266062505650906,
-0.4506039923891284,
-0.4485338598937896,
-0.44645094476812786,
-0.44435596746914463,
-0.44224965129790783,
-0.4401327219833938,
-0.43800590726578614,
-0.435869936479587,
-0.433725540136866,
-0.4315734495109671,
-0.42941439622104105,
-0.42724911181769076,
-0.4250783273700934,
-0.42290277305490037,
-0.42072317774725165,
-0.4185402686142302,
-0.41635477071104726,
-0.41416740658031254,
-0.41197889585464953,
-0.40978995486302233,
-0.4076012962410049
],
[
-0.5898555537359422,
-0.5886021113550209,
-0.5873079558748103,
-0.5859735060731235,
-0.584599197434037,
-0.58318548191181,
-0.581732827683798,
-0.5802417188925434,
-0.5787126553772428,
-0.5771461523947893,
-0.5755427403306298,
-0.573902964399636,
-0.5722273843372584,
-0.5705165740811635,
-0.5687711214436575,
-0.5669916277751234,
-0.5651787076187486,
-0.5633329883568399,
-0.5614551098489725,
-0.5595457240623025,
-0.5576054946943266,
-0.5556350967883927,
-0.5536352163422711,
-0.5516065499101119,
-0.5495498041981178,
-0.5474656956542285,
-0.5453549500522035,
-0.5432183020703851,
-0.5410564948655217,
-0.5388702796419889,
-0.5366604152167505,
-0.5344276675804049,
-0.5321728094547126,
-0.5298966198469006,
-0.5275998836011628,
-0.5252833909476787,
-0.5229479370495299,
-0.5205943215478712,
-0.5182233481057335,
-0.5158358239507963,
-0.5134325594175317,
-0.511014367489044,
-0.508582063338993,
-0.5061364638739552,
-0.503678387276583,
-0.5012086525499172,
-0.4987280790631983,
-0.49623748609955687,
-0.4937376924059026,
-0.4912295157453707
],
[
-0.6903996232425145,
-0.689345479191126,
-0.688239193593561,
-0.68708111985984,
-0.6858716320305129,
-0.6846111245762458,
-0.683300012184152,
-0.6819387295310081,
-0.6805277310435223,
-0.6790674906458574,
-0.6775585014946092,
-0.6760012757014077,
-0.6743963440434101,
-0.6727442556618806,
-0.6710455777491154,
-0.6693008952239411,
-0.6675108103960684,
-0.6656759426195744,
-0.6637969279357504,
-0.6618744187056674,
-0.6599090832326919,
-0.6579016053753164,
-0.6558526841505677,
-0.6537630333283491,
-0.6516333810170403,
-0.64946446924067,
-0.6472570535080401,
-0.6450119023741181,
-0.6427297969940766,
-0.6404115306703365,
-0.6380579083929697,
-0.6356697463738642,
-0.6332478715749774,
-0.6307931212311271,
-0.628306342367646,
-0.62578839131331,
-0.6232401332089568,
-0.6206624415121402,
-0.6180561974982658,
-0.615422289758574,
-0.612761613695382,
-0.6100750710149926,
-0.6073635692186552,
-0.6046280210920008,
-0.6018693441933335,
-0.5990884603411999,
-0.5962862951016145,
-0.593463777275359,
-0.5906218383857417,
-0.5877614121672112
],
[
-0.8026353968621275,
-0.8018181204833348,
-0.8009360123822726,
-0.7999893481661755,
-0.7989784284091046,
-0.7979035784940921,
-0.7967651484395224,
-0.7955635127098918,
-0.7942990700110711,
-0.7929722430702426,
-0.7915834784006703,
-0.7901332460514942,
-0.7886220393427449,
-0.7870503745857762,
-0.7854187907893531,
-0.7837278493516171,
-0.7819781337381861,
-0.7801702491466344,
-0.7783048221576285,
-0.7763825003730151,
-0.7744039520411198,
-0.7723698656695934,
-0.7702809496261154,
-0.7681379317272413,
-0.7659415588157886,
-0.7636925963270542,
-0.7613918278442409,
-0.7590400546434468,
-0.7566380952285926,
-0.7541867848566615,
-0.7516869750536254,
-0.749139533121479,
-0.7465453416367583,
-0.7439052979409481,
-0.7412203136231981,
-0.7384913139957847,
-0.7357192375626863,
-0.7329050354817677,
-0.7300496710209482,
-0.7271541190088224,
-0.7242193652801528,
-0.7212464061167019,
-0.7182362476838063,
-0.7151899054631784,
-0.7121084036823653,
-0.7089927747413044,
-0.7058440586364552,
-0.7026633023829131,
-0.6994515594349989,
-0.6962098891057337
],
[
-0.9249183066449638,
-0.9243718042062173,
-0.9237467037288304,
-0.9230431917903681,
-0.9222614846202466,
-0.921401827990661,
-0.9204644970890297,
-0.9194497963721144,
-0.9183580594019232,
-0.9171896486634552,
-0.9159449553645043,
-0.91462439921763,
-0.9132284282044799,
-0.9117575183226437,
-0.9102121733152394,
-0.9085929243834614,
-0.9069003298822884,
-0.9051349749996273,
-0.9032974714191437,
-0.9013884569670226,
-0.8994085952429901,
-0.8973585752358648,
-0.8952391109239526,
-0.8930509408606278,
-0.8907948277454085,
-0.8884715579809015,
-0.8860819412159749,
-0.8836268098754974,
-0.8811070186770735,
-0.8785234441351292,
-0.8758769840527868,
-0.8731685570018973,
-0.8703991017916831,
-0.8675695769264284,
-0.8646809600526237,
-0.8617342473960321,
-0.8587304531891304,
-0.8556706090893955,
-0.8525557635888522,
-0.849386981415442,
-0.8461653429266045,
-0.842891943495609,
-0.839567892891119,
-0.8361943146504403,
-0.8327723454470091,
-0.8293031344525706,
-0.8257878426945714,
-0.8222276424092587,
-0.8186237163909968,
-0.8149772573383014
],
[
-1.0550131304121844,
-1.0547659830821996,
-1.0544256453576872,
-1.0539922053143609,
-1.0534657856289449,
-1.0528465435240713,
-1.052134670691942,
-1.0513303931967628,
-1.0504339713560606,
-1.0494456996009283,
-1.0483659063153432,
-1.0471949536546592,
-1.0459332373433943,
-1.0445811864525112,
-1.043139263156353,
-1.0416079624694,
-1.0399878119630945,
-1.0382793714629324,
-1.0364832327260984,
-1.034600019099845,
-1.0326303851609748,
-1.030575016336635,
-1.0284346285067902,
-1.0262099675886758,
-1.0239018091035545,
-1.0215109577261543,
-1.0190382468171437,
-1.0164845379390175,
-1.0138507203557996,
-1.0111377105169586,
-1.008346451525962,
-1.0054779125938937,
-1.0025330884785988,
-0.9995129989097693,
-0.9964186880004788,
-0.993251223645617,
-0.990011696907718,
-0.9867012213906727,
-0.9833209326018248,
-0.979871987302985,
-0.9763555628508268,
-0.9727728565272917,
-0.9691250848603973,
-0.9654134829361274,
-0.9616393037018507,
-0.9578038172618557,
-0.9539083101655625,
-0.9499540846889554,
-0.9459424581098006,
-0.9418747619771988
],
[
-1.1901492208108575,
-1.1902231648208206,
-1.1901888085166243,
-1.1900461342543762,
-1.1897951641005546,
-1.1894359598349311,
-1.188968622929333,
-1.188393294502244,
-1.1877101552493032,
-1.1869194253496942,
-1.186021364348536,
-1.1850162710153604,
-1.1839044831787398,
-1.182686377537256,
-1.1813623694469122,
-1.1799329126851696,
-1.1783984991918128,
-1.1767596587868026,
-1.1750169588654131,
-1.1731710040708436,
-1.1712224359445815,
-1.169171932554827,
-1.1670202081032275,
-1.1647680125102977,
-1.162416130979837,
-1.159965383542679,
-1.1574166245801907,
-1.154770742327849,
-1.152028658359369,
-1.149191327051731,
-1.1462597350316086,
-1.1432349006035871,
-1.1401178731606718,
-1.1369097325775783,
-1.1336115885872362,
-1.1302245801410677,
-1.1267498747535438,
-1.123188667831527,
-1.1195421819889528,
-1.1158116663474051,
-1.111998395823135,
-1.1081036704011022,
-1.1041288143966037,
-1.100075175705104,
-1.0959441250408184,
-1.0917370551646914,
-1.0874553801023665,
-1.0831005343527431,
-1.0786739720877772,
-1.0741771663441
],
[
-1.3271098777812735,
-1.3275185196257069,
-1.327803590652456,
-1.3279649629570116,
-1.3280025534949829,
-1.327916324145566,
-1.327706281747946,
-1.3273724781105642,
-1.3269150099932778,
-1.3263340190623687,
-1.325629691818449,
-1.324802259497324,
-1.3238519979438772,
-1.322779227459062,
-1.321584312620121,
-1.320267662074217,
-1.3188297283055581,
-1.3172710073762817,
-1.3155920386412565,
-1.3137934044370592,
-1.3118757297453398,
-1.3098396818309075,
-1.307685969854767,
-1.3054153444624732,
-1.303028597348086,
-1.3005265607941352,
-1.2979101071879304,
-1.2951801485146102,
-1.2923376358273835,
-1.2893835586953393,
-1.2863189446293029,
-1.2831448584862155,
-1.2798624018524893,
-1.276472712406865,
-1.2729769632632792,
-1.2693763622942524,
-1.2656721514353997,
-1.2618656059715423,
-1.2579580338050769,
-1.2539507747071394,
-1.2498451995521696,
-1.2456427095365112,
-1.2413447353816487,
-1.2369527365227175,
-1.2324682002829441,
-1.227892641034659,
-1.2232275993475512,
-1.21847464112482,
-1.2136353567279206,
-1.2087113600905866
],
[
-1.4623523927636737,
-1.463100242631957,
-1.463709482854409,
-1.4641798737194058,
-1.4645112254341712,
-1.46470339824968,
-1.464756302555648,
-1.4646698989455103,
-1.4644441982512737,
-1.464079261548291,
-1.4635752001298477,
-1.4629321754516695,
-1.46215039904631,
-1.4612301324075303,
-1.4601716868447274,
-1.4589754233075656,
-1.4576417521808906,
-1.4561711330501435,
-1.4545640744374306,
-1.4528211335084802,
-1.4509429157507125,
-1.4489300746226617,
-1.446783311175095,
-1.4445033736440664,
-1.442091057016286,
-1.4395472025671303,
-1.4368726973716859,
-1.43406847378921,
-1.4311355089214373,
-1.4280748240451773,
-1.424887484019652,
-1.4215745966690543,
-1.4181373121408527,
-1.4145768222403223,
-1.4108943597418753,
-1.4070911976777492,
-1.403168648604578,
-1.399128063848518,
-1.3949708327294557,
-1.3906983817649814,
-1.3863121738547233,
-1.381813707445743,
-1.3772045156795953,
-1.3724861655217988,
-1.3676602568743488,
-1.3627284216720343,
-1.3576923229632234,
-1.352553653975857,
-1.3473141371694148,
-1.341975523273538
],
[
-1.5921529670219634,
-1.5932348578352953,
-1.594163743445856,
-1.594939273973964,
-1.5955611542888295,
-1.5960291441940873,
-1.5963430585806453,
-1.596502767546756,
-1.596508196485166,
-1.5963593261373101,
-1.5960561926144414,
-1.5955988873857259,
-1.59498755723325,
-1.594222404174031,
-1.5933036853490383,
-1.5922317128793249,
-1.5910068536894095,
-1.5896295292979925,
-1.5881002155762394,
-1.5864194424737563,
-1.584587793712553,
-1.582605906449175,
-1.5804744709053138,
-1.578194229967175,
-1.575765978753982,
-1.5731905641558628,
-1.5704688843416252,
-1.567601888236699,
-1.5645905749717604,
-1.5614359933024395,
-1.5581392410005974,
-1.554701464217674,
-1.551123856820588,
-1.547407659700797,
-1.543554160056998,
-1.5395646906521052,
-1.5354406290450762,
-1.5311833967982356,
-1.5267944586606912,
-1.5222753217285372,
-1.517627534582504,
-1.5128526864037455,
-1.507952406068474,
-1.5029283612221416,
-1.4977822573339705,
-1.492515836732479,
-1.487130877622873,
-1.4816291930869967,
-1.476012630066682,
-1.4702830683312653
],
[
-1.7127687039155899,
-1.7141696422649417,
-1.7154042362519255,
-1.7164720307025938,
-1.7173726296553316,
-1.7181056966043635,
-1.7186709547080543,
-1.7190681869618736,
-1.7192972363358634,
-1.71935800587648,
-1.7192504587727147,
-1.7189746183864565,
-1.7185305682470355,
-1.7179184520099544,
-1.7171384733798627,
-1.7161908959977747,
-1.7150760432926746,
-1.713794298297596,
-1.71234610343032,
-1.7107319602388937,
-1.7089524291121414,
-1.7070081289554162,
-1.7048997368318735,
-1.7026279875695116,
-1.7001936733343639,
-1.697597643170111,
-1.694840802504566,
-1.6919241126233704,
-1.6888485901113746,
-1.6856153062621275,
-1.6822253864559746,
-1.67868000950725,
-1.6749804069811232,
-1.6711278624806218,
-1.6671237109044235,
-1.6629693376760302,
-1.6586661779449106,
-1.6542157157603117,
-1.6496194832183386,
-1.6448790595830451,
-1.6399960703822218,
-1.6349721864785898,
-1.629809123117152,
-1.6245086389495045,
-1.6190725350357886,
-1.6135026538251895,
-1.6078008781156954,
-1.6019691299940089,
-1.5960093697563844,
-1.5899235948112889
],
[
-1.8206073758621284,
-1.8223028461539292,
-1.8238200853273838,
-1.8251585409231965,
-1.8263177236591615,
-1.827297207727265,
-1.8280966310533895,
-1.8287156955193975,
-1.82915416714743,
-1.8294118762462097,
-1.8294887175192804,
-1.8293846501350486,
-1.829099697758568,
-1.8286339485450607,
-1.8279875550951132,
-1.8271607343716694,
-1.8261537675788069,
-1.824967000002406,
-1.8236008408128828,
-1.822055762830078,
-1.8203323022505549,
-1.8184310583374619,
-1.8163526930732745,
-1.8140979307756426,
-1.811667557676706,
-1.8090624214661757,
-1.8062834307985778,
-1.8033315547650566,
-1.8002078223301616,
-1.7969133217340914,
-1.7934491998608526,
-1.7898166615728703,
-1.7860169690126053,
-1.7820514408716832,
-1.7779214516281998,
-1.7736284307527859,
-1.7691738618840627,
-1.7645592819741869,
-1.7597862804051303,
-1.7548564980764527,
-1.7497716264652725,
-1.7445334066591824,
-1.7391436283629118,
-1.7336041288795077,
-1.7279167920668401,
-1.7220835472703113,
-1.7161063682325115,
-1.7099872719808187,
-1.7037283176937046,
-1.6973316055466907
],
[
-1.9123948146892875,
-1.914351530631266,
-1.9161199416076533,
-1.9176994087713668,
-1.9190893597983671,
-1.9202892892324246,
-1.92129875879065,
-1.9221173976294605,
-1.9227449025708507,
-1.9231810382886816,
-1.9234256374548844,
-1.9234786008454505,
-1.923339897406085,
-1.9230095642774883,
-1.9224877067802417,
-1.9217744983592757,
-1.9208701804879977,
-1.9197750625321377,
-1.9184895215733837,
-1.9170140021930497,
-1.9153490162158042,
-1.9134951424137974,
-1.9114530261713578,
-1.9092233791105424,
-1.9068069786778463,
-1.9042046676924125,
-1.9014173538561154,
-1.898446009225875,
-1.895291669648718,
-1.8919554341599336,
-1.8884384643449112,
-1.8847419836651138,
-1.880867276748777,
-1.8768156886468854,
-1.8725886240550258,
-1.8681875465017739,
-1.8636139775042495,
-1.8588694956915095,
-1.853955735896541,
-1.8488743882175083,
-1.8436271970490665,
-1.8382159600845158,
-1.8326425272895426,
-1.826908799848443,
-1.8210167290835981,
-1.8149683153491267,
-1.8087656068995321,
-1.802410698734274,
-1.7959057314191775,
-1.7892528898855895
],
[
-1.9853296609280653,
-1.9875067310865426,
-1.9894875433578312,
-1.991271385910772,
-1.9928576160619298,
-1.9942456606607437,
-1.995435016433936,
-1.996425250288909,
-1.9972159995758951,
-1.9978069723086032,
-1.9981979473431961,
-1.9983887745154392,
-1.9983793747359004,
-1.9981697400431333,
-1.99775993361476,
-1.997150089736476,
-1.996340413728979,
-1.995331181832881,
-1.994122741051683,
-1.9927155089529642,
-1.9911099734279265,
-1.989306692409472,
-1.9873062935490706,
-1.9851094738526878,
-1.9827169992760143,
-1.9801297042793835,
-1.97734849134272,
-1.9743743304408907,
-1.9712082584799324,
-1.9678513786945553,
-1.9643048600074824,
-1.9605699363510714,
-1.9566479059518422,
-1.9525401305784214,
-1.9482480347535787,
-1.9437731049309357,
-1.9391168886370607,
-1.9342809935796121,
-1.9292670867222665,
-1.924076893327154,
-1.9187121959656137,
-1.9131748334980117,
-1.9074667000234666,
-1.901589743800348,
-1.895545966138322,
-1.8893374202629563,
-1.8829662101536506,
-1.876434489355911,
-1.8697444597688646,
-1.8628983704089617
],
[
-2.0372158627421393,
-2.0395663113065634,
-2.0417149109771318,
-2.043660892349355,
-2.0454035569898994,
-2.046942277853656,
-2.04827649965909,
-2.0494057392215637,
-2.050329585744328,
-2.0510477010669663,
-2.0515598198710645,
-2.05186574984294,
-2.0519653717932704,
-2.0518586397335565,
-2.0515455809093215,
-2.0510262957900136,
-2.050300958015631,
-2.0493698143001087,
-2.048233184291523,
-2.0468914603892476,
-2.0453451075181817,
-2.043594662860275,
-2.0416407355435067,
-2.039484006288625,
-2.0371252270139,
-2.0345652203982434,
-2.0318048794029906,
-2.0288451667528125,
-2.025687114376126,
-2.022331822805475,
-2.018780460538354,
-2.0150342633590324,
-2.0110945336218853,
-2.006962639496856,
-2.0026400141776044,
-1.9981281550530565,
-1.9934286228429596,
-1.988543040698186,
-1.9834730932664804,
-1.9782205257244296,
-1.9727871427764097,
-1.967174807621345,
-1.9613854408880562,
-1.95542101954012,
-1.9492835757510427,
-1.942975195750689,
-1.9364980186438707,
-1.9298542352020265,
-1.9230460866289563,
-1.9160758633015615
],
[
-2.0665647007558556,
-2.0690372627855713,
-2.0713049096012974,
-2.0733668310537308,
-2.0752222889330314,
-2.0768706174086184,
-2.0783112234267507,
-2.079543587065527,
-2.0805672618470132,
-2.0813818750062794,
-2.0819871277170265,
-2.0823827952737215,
-2.0825687272300004,
-2.082544847493263,
-2.0823111543753776,
-2.081867720599416,
-2.081214693262452,
-2.080352293754412,
-2.079280817633076,
-2.0780006344552855,
-2.0765121875645356,
-2.0748159938350907,
-2.0729126433728546,
-2.070802799173208,
-2.0684871967361276,
-2.065966643638869,
-2.063242019066574,
-2.0603142733011883,
-2.057184427169092,
-2.0538535714479105,
-2.0503228662329613,
-2.0465935402638964,
-2.0426668902120264,
-2.0385442799289737,
-2.034227139657185,
-2.029716965203045,
-2.0250153170731484,
-2.0201238195745046,
-2.0150441598793907,
-2.0097780870555737,
-2.004327411062715,
-1.9986940017157497,
-1.9928797876160766,
-1.986886755051402,
-1.9807169468651349,
-1.9743724612962215,
-1.9678554507903336,
-1.9611681207833884,
-1.9543127284583108,
-1.9472915814760503
],
[
-2.072660127787668,
-2.075201221746446,
-2.077536936251776,
-2.0796664380082204,
-2.081588965747688,
-2.083303830682347,
-2.0848104169152895,
-2.086108181808582,
-2.0871966563084516,
-2.0880754452272683,
-2.088744227482138,
-2.089202756289862,
-2.089450859318152,
-2.089488438792913,
-2.0893154715615356,
-2.0889320091121446,
-2.0883381775487546,
-2.0875341775223757,
-2.086520284118109,
-2.085296846698335,
-2.083864288702095,
-2.0822231074008446,
-2.080373873610773,
-2.078317231361938,
-2.0760538975244285,
-2.0735846613919486,
-2.0709103842230596,
-2.068031998740556,
-2.064950508589282,
-2.061666987752928,
-2.0581825799301843,
-2.0544984978708523,
-2.0506160226723784,
-2.0465365030374176,
-2.042261354493048,
-2.037792058572199,
-2.03313016195804,
-2.0282772755919685,
-2.0232350737459286,
-2.0180052930598142,
-2.012589731544732,
-2.0069902475529173,
-2.001208758715123,
-1.9952472408463677,
-1.9891077268208703,
-1.9827923054170862,
-1.9763031201337795,
-1.969642367978055,
-1.962812298226297,
-1.95581521115902
],
[
-2.0555836923913677,
-2.058139462929539,
-2.060491981151755,
-2.0626404083145062,
-2.06458397691324,
-2.0663219911386967,
-2.0678538272914535,
-2.069178934154363,
-2.070296833322585,
-2.071207119490898,
-2.0719094606980724,
-2.072403598528119,
-2.072689348268187,
-2.0727665990230393,
-2.0726353137859665,
-2.0722955294660808,
-2.071747356871985,
-2.070990980651791,
-2.0700266591895815,
-2.0688547244583337,
-2.0674755818294805,
-2.065889709839223,
-2.0640976599118077,
-2.0621000560399776,
-2.0598975944228535,
-2.0574910430615603,
-2.0548812413129047,
-2.0520690994014776,
-2.0490555978905847,
-2.0458417871124093,
-2.042428786557918,
-2.0388177842269486,
-2.0350100359390626,
-2.03100686460567,
-2.026809659464068,
-2.022419875273977,
-2.0178390314772345,
-2.013068711321337,
-2.0081105609475287,
-2.00296628844417,
-1.9976376628661483,
-1.9921265132211294,
-1.9864347274234513,
-1.9805642512165011,
-1.9745170870644357,
-1.9682952930141404,
-1.9619009815283013,
-1.9553363182905512,
-1.9486035209836272,
-1.9417048580414762
],
[
-2.016198059913059,
-2.018716381333163,
-2.021036071977425,
-2.023156304793667,
-2.025076322336983,
-2.0267954372200734,
-2.028313032522792,
-2.0296285621605157,
-2.0307415512111024,
-2.031651596200088,
-2.032358365343933,
-2.0328615987511096,
-2.0331611085808023,
-2.0332567791591942,
-2.033148567053128,
-2.0328365011011535,
-2.0323206824018767,
-2.0316012842596707,
-2.030678552087747,
-2.0295528032686665,
-2.0282244269724337,
-2.026693883932281,
-2.024961706178345,
-2.0230284967294483,
-2.0208949292432274,
-2.0185617476249136,
-2.0160297655950443,
-2.013299866216501,
-2.0103730013812453,
-2.0072501912571306,
-2.00393252369531,
-2.0004211535986687,
-1.9967173022518123,
-1.9928222566131457,
-1.9887373685696574,
-1.9844640541549268,
-1.9800037927311012,
-1.9753581261354047,
-1.9705286577919146,
-1.9655170517893379,
-1.960325031925481,
-1.9549543807192227,
-1.9494069383907542,
-1.9436846018109533,
-1.9377893234206311,
-1.9317231101206556,
-1.9254880221336768,
-1.9190861718385146,
-1.9125197225779953,
-1.905790887441261
],
[
-1.956090929107972,
-1.9585232648475461,
-1.9607639086869963,
-1.9628120612352786,
-1.964666990293341,
-1.966328031289727,
-1.9677945876767873,
-1.9690661312871485,
-1.9701422026501718,
-1.9710224112681227,
-1.971706435851797,
-1.9721940245154537,
-1.9724849949308436,
-1.9725792344402286,
-1.9724767001282824,
-1.9721774188528172,
-1.9716814872342927,
-1.9709890716041332,
-1.9701004079118696,
-1.9690158015911994,
-1.9677356273850393,
-1.96626032912976,
-1.9645904194987258,
-1.9627264797053776,
-1.960669159166096,
-1.9584191751231033,
-1.9559773122277329,
-1.9533444220843812,
-1.9505214227555494,
-1.947509298228315,
-1.944309097842746,
-1.940921935682662,
-1.9373489899292609,
-1.9335915021781296,
-1.9296507767202131,
-1.9255281797872925,
-1.9212251387626011,
-1.9167431413572196,
-1.9120837347529158,
-1.9072485247121036,
-1.9022391746556604,
-1.897057404709321,
-1.891704990719445,
-1.8861837632389111,
-1.8804956064839753,
-1.8746424572628948,
-1.8686263038772206,
-1.8624491849965796,
-1.8561131885078526,
-1.8496204503396894
],
[
-1.8774837392641883,
-1.8797867645447255,
-1.8819071070238422,
-1.883844009238374,
-1.8855967778014406,
-1.8871647838154915,
-1.8885474632477415,
-1.8897443172677275,
-1.8907549125466354,
-1.8915788815182313,
-1.892215922601121,
-1.8926658003821388,
-1.8929283457607786,
-1.8930034560544629,
-1.8928910950646243,
-1.89259129310348,
-1.8921041469815352,
-1.8914298199557815,
-1.890568541638625,
-1.8895206078676385,
-1.8882863805362504,
-1.886866287385438,
-1.8852608217566997,
-1.8834705423064055,
-1.8814960726818133,
-1.8793381011590018,
-1.8769973802430249,
-1.8744747262305665,
-1.871771018735525,
-1.8688872001778476,
-1.8658242752360765,
-1.8625833102640028,
-1.8591654326719738,
-1.855571830273285,
-1.8518037505962126,
-1.8478625001622713,
-1.8437494437312587,
-1.8394660035136643,
-1.8350136583511447,
-1.830393942865693,
-1.8256084465781681,
-1.8206588129969319,
-1.815546738677293,
-1.8102739722525376,
-1.804842313437303,
-1.7992536120040894,
-1.7935097667337359,
-1.7876127243406899,
-1.7815644783739093,
-1.775367068094297
],
[
-1.783111765391304,
-1.7852486778596712,
-1.7872136828832001,
-1.7890060770590837,
-1.7906252173468578,
-1.7920705214521853,
-1.793341468175242,
-1.794437597723316,
-1.7953585119874322,
-1.796103874782749,
-1.7966734120525127,
-1.7970669120353957,
-1.7972842253961039,
-1.7973252653191065,
-1.797190007565432,
-1.79687849049246,
-1.796390815036704,
-1.7957271446595833,
-1.7948877052562295,
-1.793872785027402,
-1.7926827343146097,
-1.7913179653985662,
-1.789778952261158,
-1.7880662303110961,
-1.7861803960734788,
-1.7841221068435473,
-1.7818920803048592,
-1.7794910941122506,
-1.7769199854398692,
-1.7741796504947045,
-1.7712710439959554,
-1.7681951786206955,
-1.764953124416277,
-1.761546008179943,
-1.7579750128061598,
-1.7542413766021943,
-1.7503463925725016,
-1.7462914076724703,
-1.7420778220321789,
-1.737707088150744,
-1.7331807100619292,
-1.7285002424716813,
-1.7236672898683025,
-1.7186835056059344,
-1.7135505909621194,
-1.708270294170196,
-1.7028444094272488,
-1.6972747758784714,
-1.6915632765786888,
-1.6857118374318856
],
[
-1.676083840034635,
-1.6780253052575715,
-1.6798070592688092,
-1.6814284624125846,
-1.6828889311993245,
-1.6841879386549001,
-1.685325014636835,
-1.6862997461172329,
-1.6871117774321736,
-1.6877608104973767,
-1.6882466049899318,
-1.6885689784959599,
-1.688727806624076,
-1.688723023084537,
-1.6885546197340426,
-1.6882226465860994,
-1.687727211786965,
-1.6870684815571981,
-1.6862466800988303,
-1.6852620894682393,
-1.6841150494148405,
-1.6828059571857126,
-1.68133526729632,
-1.6797034912675004,
-1.6779111973289602,
-1.6759590100895085,
-1.6738476101742599,
-1.67157773382917,
-1.6691501724931732,
-1.666565772338275,
-1.663825433778007,
-1.660930110944601,
-1.6578808111353442,
-1.6546785942285318,
-1.6513245720695187,
-1.6478199078273652,
-1.644165815322566,
-1.6403635583264546,
-1.636414449832811,
-1.6323198513022783,
-1.6280811718801944,
-1.6236998675884697,
-1.619177440492138,
-1.6145154378412951,
-1.6097154511890661,
-1.6047791154863098,
-1.5997081081538234,
-1.5945041481327298,
-1.5891689949138268,
-1.5837044475466735
],
[
-1.5597309069560077,
-1.561455610211288,
-1.5630338492374294,
-1.5644650551840795,
-1.5657487108131698,
-1.5668843508096832,
-1.567871562062045,
-1.5687099839118739,
-1.5693993083728834,
-1.569939280318743,
-1.570329697639759,
-1.57057041136822,
-1.5706613257723103,
-1.5706023984185085,
-1.5703936402024006,
-1.5700351153479082,
-1.569526941374893,
-1.568869289035183,
-1.5680623822170614,
-1.56710649781829,
-1.5660019655877828,
-1.5647491679360264,
-1.5633485397144375,
-1.5618005679638058,
-1.560105791632034,
-1.5582648012614242,
-1.5562782386457208,
-1.5541467964572449,
-1.5518712178443663,
-1.5494522959996941,
-1.5468908736992812,
-1.5441878428132803,
-1.5413441437883906,
-1.5383607651025537,
-1.5352387426923333,
-1.5319791593534138,
-1.5285831441147693,
-1.5250518715869252,
-1.521386561284917,
-1.5175884769264365,
-1.5136589257057653,
-1.5095992575440516,
-1.5054108643165673,
-1.5010951790575255,
-1.4966536751431274,
-1.492087865453458,
-1.4873993015139493,
-1.482589572617016,
-1.4776603049246364,
-1.4726131605525477
],
[
-1.4374528552617898,
-1.4389476562587165,
-1.4403099127539942,
-1.441539131080508,
-1.4426348643988256,
-1.4435967129670892,
-1.4444243243832826,
-1.4451173937996367,
-1.4456756641090047,
-1.4460989261030495,
-1.4463870186021293,
-1.4465398285566964,
-1.4465572911202216,
-1.4464393896935044,
-1.4461861559403406,
-1.4457976697745696,
-1.4452740593184552,
-1.4446155008324562,
-1.4438222186164407,
-1.442894484882431,
-1.4418326195989373,
-1.4406369903070622,
-1.439308011908481,
-1.4378461464254984,
-1.4362519027333405,
-1.4345258362649402,
-1.432668548688434,
-1.4306806875576221,
-1.4285629459356979,
-1.426316061992549,
-1.4239408185759368,
-1.4214380427569313,
-1.4188086053499576,
-1.416053420407831,
-1.4131734446922213,
-1.410169677119947,
-1.4070431581855654,
-1.4037949693607121,
-1.4004262324706924,
-1.3969381090488153,
-1.3933317996689878,
-1.3896085432571137,
-1.3857696163818658,
-1.381816332525338,
-1.3777500413342605,
-1.373572127852278,
-1.3692840117339533,
-1.3648871464411225,
-1.3603830184222172,
-1.355773146275209
],
[
-1.3125726194904344,
-1.3138323305480788,
-1.3149737197757332,
-1.3159963704580135,
-1.3168999078164245,
-1.3176839992373632,
-1.3183483544753156,
-1.3188927258310514,
-1.3193169083046574,
-1.3196207397233173,
-1.319804100843667,
-1.3198669154287037,
-1.3198091502991134,
-1.3196308153590246,
-1.3193319635961305,
-1.318912691056182,
-1.3183731367918687,
-1.3177134827861292,
-1.316933953849948,
-1.316034817494717,
-1.3150163837792541,
-1.3138790051316316,
-1.3126230761459212,
-1.3112490333540403,
-1.3097573549728867,
-1.30814856062694,
-1.3064232110466087,
-1.304581907742501,
-1.3026252926559339,
-1.3005540477859494,
-1.2983688947931387,
-1.2960705945805908,
-1.2936599468523236,
-1.2911377896495457,
-1.288504998865114,
-1.2857624877366103,
-1.2829112063184143,
-1.2799521409332328,
-1.2768863136034891,
-1.2737147814630798,
-1.2704386361499234,
-1.2670590031798339,
-1.263577041302183,
-1.2599939418378958,
-1.256310928000305,
-1.252529254199378,
-1.2486502053299198,
-1.2446750960442685,
-1.2406052700100836,
-1.2364420991538247
],
[
-1.1882054399619688,
-1.1892322690859243,
-1.1901549548258186,
-1.1909731567584194,
-1.1916865715173826,
-1.1922949329797037,
-1.1927980124301665,
-1.1931956187036385,
-1.1934875983050874,
-1.1936738355072392,
-1.1937542524257556,
-1.1937288090718892,
-1.1935975033825623,
-1.1933603712278371,
-1.193017486395752,
-1.1925689605545675,
-1.1920149431924114,
-1.1913556215343866,
-1.190591220437207,
-1.18972200226144,
-1.1887482667214506,
-1.187670350713181,
-1.1864886281199007,
-1.1852035095960685,
-1.1838154423295046,
-1.1823249097820552,
-1.180732431408944,
-1.179038562357078,
-1.1772438931425055,
-1.1753490493073322,
-1.1733546910563333,
-1.1712615128736064,
-1.1690702431195183,
-1.166781643608325,
-1.1643965091667778,
-1.1619156671740807,
-1.1593399770835828,
-1.1566703299265622,
-1.1539076477985575,
-1.1510528833285907,
-1.148107019131768,
-1.1450710672456768,
-1.141946068551016,
-1.1387330921769563,
-1.1354332348916771,
-1.132047620478587,
-1.128577399098706,
-1.1250237466397324,
-1.1213878640523016,
-1.1176709766739559
]
],
"zauto": true,
"zmax": 2.089488438792913,
"zmin": -2.089488438792913
},
{
"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.6846509650155709,
0.6830144893145744,
0.6813936769948757,
0.6797895851080521,
0.6782032751197006,
0.6766358117816493,
0.6750882619669355,
0.6735616934686729,
0.6720571737641081,
0.670575768745346,
0.6691185414183962,
0.6676865505723715,
0.6662808494208734,
0.6649024842177688,
0.6635524928497565,
0.6622319034083205,
0.6609417327438332,
0.6596829850047771,
0.6584566501652076,
0.6572637025437879,
0.6561050993178417,
0.6549817790360801,
0.6538946601337664,
0.6528446394542217,
0.6518325907807166,
0.6508593633828647,
0.6499257805817468,
0.6490326383380481,
0.648180703867545,
0.6473707142883092,
0.6466033753039888,
0.6458793599275293,
0.6451993072496377,
0.6445638212562289,
0.6439734696990217,
0.6434287830233041,
0.6429302533567801,
0.6424783335632133,
0.6420734363644177,
0.641715933533919,
0.6414061551653744,
0.6411443890185865,
0.640930879945668,
0.6407658293996206,
0.6406493950272689,
0.6405816903481885,
0.640562784520908,
0.6405927021973288,
0.6406714234659507,
0.640798883884144
],
[
0.6717831428056535,
0.6700305929216667,
0.6682957788251577,
0.6665798538625445,
0.6648839759698907,
0.6632093064127784,
0.6615570084827479,
0.6599282461515311,
0.6583241826845294,
0.6567459792151934,
0.6551947932821921,
0.6536717773314753,
0.6521780771855729,
0.6507148304827151,
0.6492831650885739,
0.6478841974836862,
0.646519031129835,
0.6451887548189066,
0.6438944410079606,
0.6426371441444778,
0.641417898985939,
0.6402377189181171,
0.6390975942766134,
0.6379984906763587,
0.6369413473539496,
0.6359270755277999,
0.6349565567812225,
0.6340306414736129,
0.6331501471849804,
0.6323158571991002,
0.6315285190305437,
0.6307888430008454,
0.6300975008689693,
0.6294551245211616,
0.6288623047251647,
0.6283195899535663,
0.6278274852809206,
0.6273864513590052,
0.6269969034743633,
0.6266592106919683,
0.6263736950885547,
0.6261406310788092,
0.6259602448372608,
0.6258327138183212,
0.6257581663765197,
0.6257366814885713,
0.6257682885784639,
0.6258529674463308,
0.6259906483014118,
0.6261812118989677
],
[
0.6585389858087419,
0.6566822970528771,
0.6548458356006834,
0.6530308510323501,
0.6512385972597046,
0.649470331114686,
0.6477273108879693,
0.646010794819139,
0.6443220395400981,
0.6426622984736295,
0.6410328201893428,
0.6394348467194738,
0.6378696118373369,
0.636338339301479,
0.6348422410689144,
0.63338251548108,
0.6319603454264638,
0.6305768964841351,
0.6292333150526784,
0.6279307264693205,
0.6266702331242634,
0.625452912575518,
0.6242798156697158,
0.6231519646745938,
0.6220703514290424,
0.621035935516709,
0.6200496424693202,
0.6191123620059458,
0.6182249463144759,
0.617388208381631,
0.6166029203777608,
0.6158698121026719,
0.6151895694985845,
0.6145628332361921,
0.6139901973796299,
0.6134722081358867,
0.613009362693978,
0.6126021081588556,
0.6122508405846925,
0.6119559041118081,
0.6117175902110698,
0.6115361370391693,
0.6114117289076821,
0.6113444958683457,
0.611334513416437,
0.6113818023136302,
0.6114863285311338,
0.6116480033133896,
0.6118666833620167,
0.6121421711391772
],
[
0.6445479759271481,
0.6425973619167201,
0.6406700112134575,
0.6387672727916454,
0.6368904991524947,
0.6350410447304053,
0.633220264242563,
0.6314295109835784,
0.6296701350672025,
0.6279434816174814,
0.6262508889120512,
0.6245936864806323,
0.6229731931621247,
0.6213907151240743,
0.6198475438486437,
0.6183449540895748,
0.6168842018049889,
0.6154665220712286,
0.6140931269832601,
0.6127652035475117,
0.6114839115732936,
0.6102503815692591,
0.609065712651599,
0.6079309704709083,
0.6068471851648456,
0.6058153493438737,
0.6048364161174744,
0.6039112971683217,
0.6030408608819112,
0.6022259305391242,
0.6014672825791526,
0.6007656449400536,
0.6001216954840631,
0.5995360605145411,
0.5990093133911569,
0.5985419732495711,
0.5981345038315035,
0.5977873124306289,
0.5975007489592636,
0.5972751051402904,
0.5971106138281985,
0.5970074484625297,
0.5969657226563835,
0.5969854899220022,
0.597066743534775,
0.5972094165363321,
0.5974133818767055,
0.5976784526948659,
0.5980043827362382,
0.5983908669051683
],
[
0.6293395041199036,
0.6273014175456643,
0.6252903065043605,
0.6233076277834922,
0.621354840260607,
0.6194334030797386,
0.6175447737634925,
0.6156904062629889,
0.613871748948275,
0.6120902425422381,
0.6103473180014761,
0.6086443943480276,
0.6069828764563119,
0.6053641528000729,
0.6037895931645766,
0.6022605463297563,
0.6007783377304393,
0.5993442671002046,
0.5979596061058484,
0.5966255959797846,
0.5953434451581053,
0.5941143269323107,
0.5929393771230306,
0.5918196917842897,
0.5907563249470629,
0.5897502864110212,
0.5888025395934399,
0.5879139994442749,
0.5870855304363884,
0.5863179446397734,
0.58561199988849,
0.5849683980487693,
0.5843877833964343,
0.5838707411114268,
0.5834177958967618,
0.5830294107287617,
0.5827059857448134,
0.5824478572743002,
0.5822552970176662,
0.5821285113778555,
0.5820676409475944,
0.5820727601552043,
0.5821438770707941,
0.5822809333738506,
0.5824838044823881,
0.582752299842976,
0.5830861633801048,
0.5834850741025355,
0.58394864686346,
0.5844764332705301
],
[
0.6123910523382224,
0.6102663603772954,
0.6081731639897205,
0.606113043726751,
0.6040875801124841,
0.6020983515188426,
0.6001469319667164,
0.5982348888562707,
0.596363780629939,
0.5945351543721747,
0.5927505433505945,
0.5910114645037052,
0.5893194158809985,
0.5876758740417536,
0.5860822914194781,
0.5845400936594599,
0.5830506769374599,
0.5816154052680856,
0.5802356078118783,
0.5789125761905994,
0.5776475618206051,
0.5764417732745571,
0.5752963736820154,
0.5742124781796882,
0.5731911514222846,
0.5722334051649913,
0.5713401959286089,
0.5705124227583012,
0.5697509250867365,
0.5690564807121574,
0.5684298039015442,
0.5678715436286216,
0.5673822819559042,
0.5669625325693853,
0.5666127394737491,
0.5663332758552289,
0.5661244431183806,
0.5659864701021233,
0.565919512479442,
0.5659236523441356,
0.5659988979869337,
0.5661451838622588,
0.5663623707457989,
0.5666502460819957,
0.5670085245194569,
0.5674368486312596,
0.5679347898160851,
0.5685018493751414,
0.5691374597589061,
0.5698409859768568
],
[
0.5931900577736788,
0.5909725877166367,
0.5887920659832351,
0.586650223013915,
0.5845487864276995,
0.582489478489025,
0.5804740134877081,
0.5785040950362915,
0.5765814132897247,
0.5747076420930755,
0.5728844360637364,
0.5711134276153343,
0.569396223931343,
0.5677344038971402,
0.5661295150000042,
0.5645830702072736,
0.5630965448335685,
0.5616713734086334,
0.560308946557939,
0.5590106079087233,
0.5577776510345948,
0.5566113164521995,
0.5555127886837289,
0.5544831933992249,
0.5535235946527046,
0.5526349922260793,
0.5518183190946785,
0.551074439027896,
0.5504041443380518,
0.5498081537900233,
0.5492871106835314,
0.5488415811191683,
0.5484720524583435,
0.5481789319863251,
0.5479625457864075,
0.5478231378320565,
0.5477608693025853,
0.5477758181265708,
0.5478679787558324,
0.5480372621713594,
0.5482834961211402,
0.5486064255884004,
0.5490057134873314,
0.549480941582012,
0.5500316116228656,
0.5506571466937413,
0.5513568927614922,
0.5521301204188225,
0.5529760268101669,
0.5538937377294693
],
[
0.5713024552772997,
0.5689779621196164,
0.5666969129075577,
0.5644612275724635,
0.562272819840237,
0.5601335941308135,
0.5580454423509636,
0.5560102405866085,
0.5540298457018622,
0.5521060918530633,
0.5502407869271575,
0.5484357089148616,
0.5466926022301145,
0.5450131739883898,
0.5433990902574535,
0.5418519722951319,
0.5403733927895573,
0.5389648721181888,
0.537627874642638,
0.5363638050569388,
0.5351740048074048,
0.5340597486025497,
0.5330222410317547,
0.5320626133113858,
0.5311819201769196,
0.5303811369393039,
0.5296611567232676,
0.5290227879045862,
0.5284667517624162,
0.5279936803617423,
0.5276041146797306,
0.5272985029883642,
0.5270771995041889,
0.5269404633142811,
0.526888457585765,
0.5269212490642837,
0.5270388078648732,
0.5272410075566727,
0.5275276255408634,
0.5278983437192217,
0.5283527494486614,
0.5288903367752302,
0.5295105079391624,
0.5302125751408521,
0.5309957625559966,
0.5318592085866864,
0.5328019683338976,
0.5338230162757032,
0.5349212491345586,
0.5360954889162254
],
[
0.5464409774108494,
0.5439864946181453,
0.5415830775131749,
0.5392328929940019,
0.5369380980277872,
0.5347008357436436,
0.5325232313860229,
0.5304073881378422,
0.5283553828241232,
0.5263692615085533,
0.5244510349970102,
0.5226026742637352,
0.5208261058174561,
0.5191232070263156,
0.5174958014219716,
0.5159456540046136,
0.5144744665719202,
0.5130838730960834,
0.5117754351739593,
0.510550637576137,
0.5094108839211996,
0.508357492501693,
0.5073916922882955,
0.506514619138345,
0.5057273122342916,
0.5050307107766944,
0.5044256509551946,
0.5039128632193567,
0.5034929698694736,
0.503166482985372,
0.5029338027089152,
0.5027952158933854,
0.5027508951301889,
0.5028008981604695,
0.5029451676762203,
0.5031835315124523,
0.5035157032288943,
0.5039412830766621,
0.5044597593423464,
0.5050705100590996,
0.5057728050715794,
0.5065658084390677,
0.5074485811587641,
0.5084200841891866,
0.5094791817517963,
0.5106246448874618,
0.5118551552431359,
0.5131693090632224,
0.5145656213594746,
0.516042530232956
],
[
0.5185276324369369,
0.5159111245087079,
0.5133544658698064,
0.5108601517709911,
0.5084306640443372,
0.506068466028082,
0.5037759972938117,
0.5015556681898444,
0.49940985421726525,
0.49734089025774125,
0.4953510646749502,
0.49344261331412326,
0.49161771342685195,
0.48987847755082176,
0.4882269473765161,
0.48666508763511784,
0.48519478004373623,
0.4838178173457262,
0.48253589748510667,
0.48135061795495027,
0.48026347036003536,
0.4792758352339696,
0.47838897715044565,
0.47760404016716973,
0.4769220436393893,
0.47634387843777115,
0.47587030360271015,
0.4755019434639764,
0.47523928525097164,
0.4750826772148567,
0.47503232727941197,
0.4750883022328494,
0.47525052746793567,
0.475518787272791,
0.4758927256697177,
0.4763718477944222,
0.47695552180315254,
0.4776429812906235,
0.4784333281972454,
0.479325536180163,
0.4803184544190082,
0.48141081182412615,
0.48260122161238084,
0.4838881862135214,
0.48527010246846847,
0.48674526707984267,
0.4883118822744836,
0.4899680616376893,
0.49171183607934305,
0.49354115989296515
],
[
0.4877466701673831,
0.4849269407156035,
0.48217695849775255,
0.47949966053862636,
0.4768979684581384,
0.4743747816851915,
0.4719329703648482,
0.46957536797951466,
0.46730476370945356,
0.46512389456271086,
0.46303543730937324,
0.4610420002598688,
0.45914611493176166,
0.45735022765398564,
0.4556566911616652,
0.454067756238479,
0.45258556346676354,
0.4512121351482017,
0.4499493674598193,
0.44879902291108736,
0.44776272316807003,
0.44684194230973806,
0.44603800057972803,
0.4453520586939422,
0.4447851127604788,
0.44433798986345496,
0.44401134435643724,
0.4438056549044688,
0.4437212223062152,
0.4437581681196834,
0.4439164341064069,
0.4441957825001656,
0.4445957970973369,
0.4451158851570754,
0.445755280090847,
0.4465130449125855,
0.44738807641302597,
0.4483791100147944,
0.4494847252586248,
0.450703351865851,
0.45203327631801477,
0.45347264889120303,
0.4550194910805016,
0.45667170334879337,
0.45842707313390685,
0.4602832830489118,
0.4622379192119255,
0.46428847964420394,
0.46643238267832754,
0.46866697532191426
],
[
0.4545860158362757,
0.45151297673236573,
0.4485205055706909,
0.44561213657538973,
0.4427913907286252,
0.4400617664819505,
0.43742672994821297,
0.43488970460339477,
0.43245406053654073,
0.43012310329507175,
0.42790006238218775,
0.42578807947255326,
0.42379019642178645,
0.4219093431542945,
0.4201483255223412,
0.4185098132367988,
0.4169963279763986,
0.4156102317873217,
0.4143537158883562,
0.41322878999837737,
0.4122372723024381,
0.41138078017012464,
0.41066072173494206,
0.4100782884364293,
0.4096344486173833,
0.4093299422572497,
0.409165276909541,
0.40914072489636477,
0.4092563217971005,
0.40951186625132874,
0.4099069210786831,
0.41044081570081636,
0.41111264983352697,
0.41192129840074226,
0.4128654176068391,
0.41394345209008054,
0.41515364306800484,
0.4164940373756731,
0.41796249728989243,
0.41955671102697556,
0.4212742037982888,
0.4231123493067048,
0.4250683815680101,
0.42713940694417135,
0.4293224162798926,
0.43161429703990023,
0.4340118453516014,
0.4365117778659119,
0.4391107433578868,
0.44180533399806143
],
[
0.4198657023282658,
0.41648144618940597,
0.4131890689620061,
0.40999290876446093,
0.40689730208424235,
0.403906570928565,
0.4010250090311498,
0.39825686714992414,
0.39560633750790375,
0.39307753744816226,
0.39067449239349117,
0.3884011182216087,
0.386261203187176,
0.38425838954180624,
0.38239615502209795,
0.38067779439282967,
0.3791064012470648,
0.37768485027640647,
0.376415780232262,
0.37530157780223505,
0.3743443626240965,
0.37354597365293835,
0.37290795708484853,
0.372431556022895,
0.3721177020485287,
0.37196700883425915,
0.3719797679022203,
0.3721559465989046,
0.3724951883199112,
0.372996814981055,
0.3736598316948225,
0.3744829335750264,
0.3754645145587128,
0.37660267810382314,
0.37789524959470144,
0.3793397902658059,
0.38093361243743296,
0.3826737958460488,
0.384557204845981,
0.3865805062585399,
0.38874018764877394,
0.3910325758184947,
0.3934538553163378,
0.3960000867807933,
0.39866722494964363,
0.4014511361883416,
0.4043476154099713,
0.4073524022798222,
0.41046119661782643,
0.41366967293163065
],
[
0.38474977924473025,
0.3809915141766422,
0.3773361235821165,
0.3737890076798466,
0.3703555959817675,
0.3670413297761835,
0.36385164282620935,
0.36079194029840234,
0.35786757597109814,
0.35508382781095177,
0.352445872049002,
0.34995875593337045,
0.3476273693833968,
0.3454564158181171,
0.3434503824788812,
0.3416135106096048,
0.33994976589665143,
0.33846280960144354,
0.3371559708406266,
0.33603222047898607,
0.3350941470979511,
0.334343935486204,
0.3337833480683469,
0.33341370964281897,
0.33323589574240386,
0.33325032486121137,
0.3334569547134371,
0.33385528260420116,
0.33444434990467103,
0.3352227505358837,
0.33618864328157366,
0.3373397676731256,
0.3386734631222037,
0.34018669092092835,
0.34187605868716,
0.34373784680436875,
0.345768036391753,
0.34796233834021845,
0.3503162229623355,
0.3528249498278886,
0.35548359738921875,
0.3582870920401143,
0.36123023629644074,
0.364307735833949,
0.36751422516686505,
0.37084429179833767,
0.37429249871917836,
0.37785340517355004,
0.38152158564852684,
0.3852916470782855
],
[
0.3507308191639405,
0.34653762968544805,
0.3424567009659526,
0.33849477715500237,
0.3346586979623028,
0.33095537621299476,
0.3273917720435168,
0.3239748636362966,
0.3207116144550308,
0.31760893701975373,
0.31467365335200675,
0.3119124523240024,
0.3093318442596158,
0.30693811325600373,
0.30473726781823607,
0.3027349905200882,
0.30093658751559205,
0.2993469388211594,
0.29797045035997966,
0.2968110088021041,
0.29587194023955393,
0.2951559737017048,
0.29466521044019883,
0.2944010997952386,
0.29436442229980114,
0.29455528049102625,
0.2949730976873924,
0.29561662476646644,
0.29648395475247846,
0.29757254480707596,
0.2988792450211471,
0.3004003332396805,
0.30213155502205985,
0.30406816775126844,
0.30620498785860767,
0.3085364401244723,
0.3110566080470251,
0.31375928433388584,
0.3166380206607777,
0.31968617594831644,
0.32289696252676026,
0.32626348968192614,
0.3297788041977958,
0.3334359276278739,
0.3372278901344282,
0.341147760829884,
0.34518867463637376,
0.34934385574724897,
0.35360663782839324,
0.3579704811382341
],
[
0.3195599822090416,
0.31488605038381895,
0.3103304602778801,
0.3059015209435114,
0.301607758014874,
0.29745788903829373,
0.29346079287481464,
0.2896254726912542,
0.28596101214444275,
0.28247652449056815,
0.27918109452119927,
0.2760837134411515,
0.2731932070596609,
0.2705181579602482,
0.2680668226368901,
0.2658470449204286,
0.2638661673508169,
0.26213094245503255,
0.26064744614194757,
0.25942099559844267,
0.2584560741420321,
0.257756265435911,
0.25732419929232103,
0.25716151097942014,
0.257268815516869,
0.25764569791886954,
0.25829071975290296,
0.25920144176691523,
0.2603744617390242,
0.26180546616180994,
0.26348929392202713,
0.26542000980096686,
0.26759098541445325,
0.26999498513677006,
0.272624254601211,
0.27547060952453245,
0.2785255228405566,
0.28178020842404833,
0.2852257000141852,
0.28885292428401915,
0.2926527673286529,
0.29661613414532134,
0.3007340009428728,
0.30499746034042624,
0.3093977596933028,
0.313926332919741,
0.31857482629767986,
0.3233351187617098,
0.32819933726151934,
0.3331598677503995
],
[
0.2930724089971351,
0.2879077865334337,
0.2828628133211837,
0.27794737776137063,
0.2731717686558982,
0.26854665652646764,
0.2640830658345469,
0.2597923367406493,
0.2556860750761935,
0.25177608931879425,
0.24807431358248766,
0.24459271597647889,
0.2413431921632767,
0.23833744456423814,
0.2355868484097245,
0.23310230668742365,
0.23089409696166954,
0.2289717139544862,
0.227343712613645,
0.22601755705148394,
0.22499948112707283,
0.22429436648275228,
0.2239056434805525,
0.2238352197004301,
0.22408343949448686,
0.22464907662070976,
0.22552936032869195,
0.22672003358488454,
0.2282154405581576,
0.23000863917291456,
0.2320915335775908,
0.23445502082626224,
0.23708914593660008,
0.23998325973102178,
0.24312617441906803,
0.24650631264800357,
0.2501118466409423,
0.25393082496955016,
0.25795128539910206,
0.2621613530440834,
0.2665493237496487,
0.27110373315301384,
0.2758134122791107,
0.28066753079675566,
0.28565562922195953,
0.29076764142378675,
0.2959939087856974,
0.30132518732077435,
0.30675264894928383,
0.31226787803568273
],
[
0.2728531973650459,
0.267246082674706,
0.26175519718545226,
0.25639170496130226,
0.25116738895047147,
0.246094650431997,
0.24118649712780652,
0.23645651727194497,
0.23191883671189883,
0.22758805601362925,
0.22347916461002978,
0.21960742933778635,
0.215988255317023,
0.21263701810040347,
0.20956886739009967,
0.20679850438960803,
0.20433993696367006,
0.20220621909395567,
0.20040918343559289,
0.1989591778294273,
0.19786481809935075,
0.19713277006509744,
0.19676757319971636,
0.19677151665613188,
0.19714457554789927,
0.1978844116452047,
0.1989864384402629,
0.2004439463347679,
0.20224827999312966,
0.20438905708820726,
0.2068544159871088,
0.209631279448595,
0.21270562202611643,
0.21606273036053655,
0.21968744760522943,
0.22356439554629312,
0.2276781702923901,
0.23201350950894134,
0.23655543093180906,
0.24128934325871426,
0.2462011314806265,
0.25127721931765956,
0.2565046117234156,
0.26187092048556604,
0.26736437584407075,
0.2729738268298314,
0.27868873274302125,
0.2844991478783513,
0.29039570129016495,
0.29636957309111667
],
[
0.25976750873213983,
0.2538305800582728,
0.24800415764314193,
0.24230015545542863,
0.23673129434534515,
0.23131112616194677,
0.22605404653688962,
0.22097529238048014,
0.21609091950033005,
0.21141775519724493,
0.20697332031598267,
0.20277571515935874,
0.1988434640685851,
0.1951953144994336,
0.19184998823956037,
0.18882588512318355,
0.18614074321046145,
0.18381126376157372,
0.181852714104468,
0.18027852611932665,
0.1790999118269083,
0.17832551969910637,
0.1779611551401411,
0.17800958573569622,
0.17847044639508303,
0.17934025197679276,
0.18061251637786233,
0.18227796860353035,
0.1843248492047285,
0.18673926557775505,
0.18950558240679743,
0.19260682394355985,
0.19602506739647443,
0.19974181073547412,
0.20373830293517353,
0.20799582939532324,
0.21249594948798087,
0.21722068658887522,
0.22215267344765452,
0.22727525737144172,
0.2325725705605391,
0.23802957120661755,
0.24363206080984537,
0.24936668274236062,
0.2552209065035686,
0.2611830014696566,
0.2672420032988125,
0.27338767555501314,
0.2796104685788941,
0.28590147717334685
],
[
0.25356409646084815,
0.24744798507657007,
0.24143777527070165,
0.23554565085494197,
0.2297847062042945,
0.2241689883684808,
0.21871352905607977,
0.21343436192387613,
0.208348519643855,
0.20347400427347964,
0.19882972363751267,
0.19443538590894344,
0.19031134457354704,
0.1864783867418595,
0.18295745961421744,
0.1797693330520087,
0.1769342007882673,
0.17447122873671347,
0.1723980657364835,
0.17073033914476102,
0.16948116387331244,
0.16866069748468407,
0.16827577462851895,
0.16832965063633532,
0.1688218764544272,
0.16974831609895208,
0.171101305055696,
0.1728699355374914,
0.17504044421114578,
0.1775966713396595,
0.18052055786184415,
0.18379264850358823,
0.18739257367804182,
0.19129948944549,
0.19549246191923167,
0.1999507892056062,
0.20465425958816882,
0.2095833488959756,
0.21471936280857276,
0.2200445314091934,
0.22554206386110198,
0.2311961709304294,
0.23699206246794313,
0.24291592610018084,
0.24895489242167926,
0.2550969910292631,
0.2613311008604648,
0.26764689752424825,
0.2740347996554551,
0.280485915783067
],
[
0.25286384306057963,
0.24670754037588244,
0.24065532276935123,
0.2347193490511551,
0.22891270453376858,
0.22324944744010652,
0.21774464582214528,
0.21241440039106751,
0.20727584763497872,
0.2023471365644757,
0.19764737149405576,
0.19319651260862075,
0.18901522590877526,
0.18512467475906977,
0.18154624698891894,
0.17830121459922568,
0.17541032778150198,
0.17289335111683643,
0.1707685571200591,
0.16905219996320942,
0.1677579991015682,
0.16689666724639507,
0.16647551833689905,
0.166498187935106,
0.16696449064766028,
0.16787042757739928,
0.16920834311423305,
0.17096721679449497,
0.17313306466689166,
0.17568941721644193,
0.17861783812788304,
0.18189844977546357,
0.18551043632333825,
0.18943250234580125,
0.19364327255352318,
0.1981216254245903,
0.20284695956091195,
0.20779939608871226,
0.2129599233788725,
0.21831049196699806,
0.22383406809255701,
0.2295146540596435,
0.23533728292722683,
0.2412879940879326,
0.24735379525563736,
0.2535226153628739,
0.2597832519348349,
0.26612531569025943,
0.27253917443133513,
0.27901589772130975
],
[
0.25560746284845576,
0.24949967695729497,
0.24349620371383096,
0.237609019842029,
0.23185098877237922,
0.22623590150385633,
0.2207785078797858,
0.21549453396896748,
0.21040068033979598,
0.20551459512005607,
0.2008548149537758,
0.19644066645136404,
0.19229212068165996,
0.18842959391753822,
0.1848736894805194,
0.18164487836578821,
0.17876312049951376,
0.1762474339315507,
0.1741154256704134,
0.17238280456630328,
0.1710629026687547,
0.1701662356592827,
0.1697001341504702,
0.1696684750525976,
0.17007153566397715,
0.1709059832601446,
0.17216500110240568,
0.17383853978716918,
0.17591367257794818,
0.1783750262572188,
0.18120525584408415,
0.18438553218569137,
0.18789601522373783,
0.19171629155718264,
0.19582576158730325,
0.200203968028836,
0.2048308631930267,
0.2096870168198657,
0.21475376926785314,
0.2200133366705638,
0.22544887546158054,
0.2310445137123321,
0.236785356268632,
0.24265746991974008,
0.2486478539482449,
0.2547444005019267,
0.2609358483713272,
0.2672117329889343,
0.2735623348051641,
0.2799786276450965
],
[
0.2596719895090339,
0.2536432472075078,
0.24771956850268761,
0.24191268100162852,
0.23623514135688287,
0.23070036798863086,
0.22532266403956874,
0.22011722665051223,
0.21510013790557975,
0.21028833209084138,
0.20569953333265575,
0.20135215736079265,
0.1972651712421699,
0.19345790564591872,
0.1899498157278289,
0.18676018922816784,
0.183907803941995,
0.1814105412753445,
0.17928496786153725,
0.17754590264926434,
0.17620599172602658,
0.17527531650652253,
0.17476106192478838,
0.17466726930154725,
0.17499469345608423,
0.17574077582473557,
0.17689973583166185,
0.17846277290833504,
0.1804183628282661,
0.18275262561216316,
0.1854497388636619,
0.18849237011599276,
0.19186210417085048,
0.19553984570637198,
0.19950618270942944,
0.2037417017077245,
0.20822725069881695,
0.21294414970395548,
0.2178743518552772,
0.22300055987659692,
0.22830630387556028,
0.2337759867179843,
0.23939490310211786,
0.24514923797064683,
0.25102604923733585,
0.2570132390724107,
0.263099517261126,
0.26927435947030104,
0.2755279626533971,
0.2818511993060788
],
[
0.26332808987330203,
0.25736484361177375,
0.2515069595094699,
0.24576593105112327,
0.2401540327464139,
0.23468434678320807,
0.2293707799478316,
0.22422806723859043,
0.2192717579809422,
0.2145181796828564,
0.20998437442939086,
0.20568800241741741,
0.20164720741287873,
0.19788043963054705,
0.1944062329463763,
0.19124293558023903,
0.18840839648316127,
0.18591961355511455,
0.18379235426436905,
0.18204076380004486,
0.18067697995027268,
0.17971077673739946,
0.17914925976121515,
0.1789966346953778,
0.1792540662997775,
0.17991963895704297,
0.1809884218694272,
0.18245263373792356,
0.1843018941596921,
0.18652354313621639,
0.18910300663302593,
0.19202418525932202,
0.19526984458998853,
0.19882198886348657,
0.20266220403853083,
0.2067719607748229,
0.2111328722429679,
0.2157269053775956,
0.22053654706877107,
0.22554492880247948,
0.23073591448530065,
0.2360941567577435,
0.2416051271738279,
0.2472551253547246,
0.25303127174339396,
0.25892148799901543,
0.2649144684502301,
0.270999645425507,
0.2771671507279788,
0.2834077750366163
],
[
0.2654431324152717,
0.2595074205420015,
0.2536766193954391,
0.2479620677144365,
0.24237586087708843,
0.23693087520384964,
0.23164078273480238,
0.22652005309639886,
0.22158393850780084,
0.21684843746149512,
0.21233023222322595,
0.2080465951339804,
0.20401525888710598,
0.2002542466373263,
0.1967816591152569,
0.1936154179815685,
0.19077296750347014,
0.1882709402064939,
0.18612479623007422,
0.18434845030741773,
0.18295390405071887,
0.18195090390659882,
0.18134664612317758,
0.18114554886945441,
0.1813491081050071,
0.18195584814829474,
0.18296137077456417,
0.18435849902986257,
0.18613750482843028,
0.18828640374748368,
0.1907912968861759,
0.1936367384500669,
0.19680610869464868,
0.20028197454182115,
0.20404642394156206,
0.2080813642418447,
0.21236877890530168,
0.21689094048199473,
0.22163058059725452,
0.22657101977541694,
0.23169626123836654,
0.23699105350276906,
0.24244092679118012,
0.24803220811081592,
0.2537520194647423,
0.2595882631452514,
0.2655295974943614,
0.2715654059545109,
0.27768576170726134,
0.2838813897277168
],
[
0.2655024494534253,
0.2595485058961254,
0.25369832403735204,
0.24796319833628627,
0.24235518326996053,
0.2368871191936085,
0.23157264897617194,
0.22642622204162144,
0.22146308186549626,
0.2166992324366638,
0.21215137877171844,
0.20783683636479142,
0.20377340459487522,
0.19997919974010908,
0.19647244450916185,
0.19327121301384406,
0.19039313293034105,
0.18785505017663867,
0.18567266556663178,
0.1838601572061381,
0.18242980632314992,
0.18139164711461242,
0.1807531623869256,
0.18051904575969416,
0.18069104778751957,
0.18126791773598383,
0.18224544555121794,
0.18361660073752273,
0.1853717574886334,
0.18749898949177915,
0.18998441402729674,
0.19281256359342902,
0.19596676415234143,
0.19942950175109544,
0.20318276307607283,
0.2072083397831337,
0.21148809063624116,
0.21600415917437296,
0.22073914757879576,
0.22567624955583768,
0.23079934642577588,
0.2360930713287649,
0.24154284666716871,
0.24713489974579766,
0.252856261177001,
0.25869475009165466,
0.2646389496188369,
0.27067817552125034,
0.2768024403349961,
0.2830024148805221
],
[
0.2635391948054618,
0.2575257457354743,
0.25161438540458647,
0.24581647258031486,
0.24014415546906123,
0.23461040278633444,
0.22922902600081443,
0.2240146892389423,
0.21898290267429762,
0.21414999458768313,
0.2095330567476913,
0.20514985743619685,
0.20101871646875918,
0.1971583371009411,
0.1935875909416818,
0.1903252540666883,
0.18738969552709034,
0.18479852335233798,
0.18256819775090935,
0.18071362610839098,
0.17924775895306994,
0.17818120954061303,
0.17752192131781067,
0.17727490663455964,
0.17744207640261664,
0.17802217414990829,
0.17901081979939734,
0.18040065961826351,
0.18218161041095635,
0.1843411793303428,
0.186864836457047,
0.18973641585370313,
0.1929385219461897,
0.1964529212474578,
0.20026090385368195,
0.20434360402742252,
0.20868227388478572,
0.2132585082705121,
0.21805442209556955,
0.22305278366701145,
0.22823710892880186,
0.23359172219876642,
0.23910178910275853,
0.24475332714082138,
0.25053319881707053,
0.25642909164051275,
0.26242948864184157,
0.2685236324079395,
0.2747014850453511,
0.28095368596399267
],
[
0.26002301731545074,
0.25392253392971403,
0.2479222084776456,
0.24203354819988207,
0.2362688994884005,
0.23064148724659808,
0.225165445971821,
0.21985583878127762,
0.2147286597991782,
0.20980081451364682,
0.205090071980464,
0.20061498221996882,
0.1963947519886454,
0.19244907251156781,
0.18879789396101337,
0.1854611436734759,
0.18245838845993015,
0.1798084458945414,
0.1775289549651848,
0.17563592246382936,
0.17414326723138,
0.17306238887877767,
0.17240178985636162,
0.17216677889142928,
0.17235927945564944,
0.1729777592924598,
0.17401728704296437,
0.17546971110089785,
0.1773239456599951,
0.17956634097492172,
0.18218111012080307,
0.18515078331399346,
0.18845666280554063,
0.19207925566923537,
0.19599866745786293,
0.20019494570781363,
0.20464836785079135,
0.20933967273962426,
0.2142502384860978,
0.21936221163513775,
0.2246585939982749,
0.23012329394918354,
0.23574114887097078,
0.24149792494547606,
0.24738029975892067,
0.25337583239312744,
0.25947292486515144,
0.2656607780254248,
0.27192934435526533,
0.27826927953093317
],
[
0.25572404107350405,
0.24952980376910094,
0.24343397989489593,
0.2374482771603949,
0.23158530298392924,
0.2258586139291695,
0.22028275754127744,
0.21487330246786696,
0.2096468517625043,
0.20462103323223058,
0.19981445969651365,
0.1952466512143505,
0.19093791090865594,
0.18690914622996654,
0.18318162865416424,
0.1797766872032324,
0.1767153350503195,
0.17401783389530356,
0.17170320757656868,
0.16978872395342734,
0.16828937148469783,
0.16721736285116126,
0.1665817010235254,
0.16638784219343583,
0.16663748439975928,
0.1673285008242251,
0.16845502387865965,
0.17000767236015862,
0.17197390135756582,
0.17433844518824657,
0.1770838186017095,
0.18019084102111624,
0.18363915205251083,
0.1874076926583062,
0.1914751338639691,
0.1958202423836794,
0.20042217919117908,
0.2052607323073636,
0.21031648876612613,
0.2155709529538424,
0.22100661954416131,
0.22660700937283573,
0.2323566761129404,
0.23824119077001366,
0.24424711001192673,
0.25036193331448187,
0.2565740529264593,
0.26287269978456557,
0.2692478877598349,
0.2756903579952345
],
[
0.25155521436016004,
0.24528556251529382,
0.23911344698164516,
0.23305080256559982,
0.22711052255954362,
0.22130651760343212,
0.21565376750480078,
0.2101683615441007,
0.20486752161297173,
0.1997696012601839,
0.1948940524519878,
0.19026135075205935,
0.18589286892956444,
0.18181068903055195,
0.1780373440815942,
0.17459548323823298,
0.17150745868017908,
0.16879483903152048,
0.16647786234012926,
0.16457485099216412,
0.16310162012713506,
0.16207091847007576,
0.16149194417113077,
0.16136997671757536,
0.1617061585785766,
0.1624974475015518,
0.1637367441156933,
0.16541318243155748,
0.16751255588672176,
0.17001784114944993,
0.17290977720482495,
0.17616745826076902,
0.17976890459624778,
0.18369158389746243,
0.18791286507221136,
0.19241039549386924,
0.19716240011624583,
0.20214790646284111,
0.2073469031010988,
0.21274044111300616,
0.21831068864783162,
0.22404094829291446,
0.22991564608142784,
0.23592029975386652,
0.2420414726045385,
0.24826671800614103,
0.2545845185889867,
0.26098422309087266,
0.2674559830960654,
0.2739906912389254
],
[
0.2484004983750823,
0.24209834555635862,
0.235894512275668,
0.22980117205328304,
0.22383149967302354,
0.21799973541096304,
0.21232124216694595,
0.2068125506751276,
0.20149138664876853,
0.1963766722765908,
0.1914884930422209,
0.18684801956801272,
0.18247737336407757,
0.17839942536291473,
0.17463751738921449,
0.1712150997266246,
0.1681552830918004,
0.16548031076793762,
0.16321096611829666,
0.16136594134010013,
0.1599612036261765,
0.15900940285878962,
0.1585193684204451,
0.15849573998277328,
0.1589387676265211,
0.15984430125440074,
0.16120397036114967,
0.16300553613789376,
0.1652333819790187,
0.16786909824216545,
0.17089211365687781,
0.17428032863359602,
0.1780107132935301,
0.18205984319399193,
0.1864043564092178,
0.1910213252730817,
0.19588854377250314,
0.2009847369751246,
0.2062897021022471,
0.21178439229385737,
0.2174509542276804,
0.22327273000376427,
0.22923423247047184,
0.23532110173139095,
0.24152004912808794,
0.24781879365712023,
0.254205994610587,
0.26067118324834815,
0.2672046955130067,
0.273797607168997
],
[
0.246953259061714,
0.24067916623133448,
0.2345063756389239,
0.22844728950359502,
0.22251532451579437,
0.21672497417172967,
0.21109186289376453,
0.2056327868194845,
0.20036573479657221,
0.19530988168209248,
0.1904855446387082,
0.18591409195001887,
0.18161779323841518,
0.17761960025046647,
0.17394284903359078,
0.17061087782275025,
0.1676465606317008,
0.1650717644657918,
0.16290674784446066,
0.16116952893464895,
0.159875261417266,
0.15903566316929169,
0.15865854487835565,
0.15874748136028635,
0.15930165737096827,
0.1603159033599427,
0.16178091754282448,
0.16368365224618336,
0.16600782789870103,
0.1687345294818221,
0.17184283840013556,
0.1753104568264237,
0.17911428986013747,
0.18323096117944776,
0.18763724832225384,
0.1923104328919741,
0.19722856808192074,
0.2023706707441203,
0.20771684798627524,
0.21324836936847263,
0.21894769565805458,
0.22479847422327429,
0.23078550985903384,
0.23689471840120666,
0.24311306907186722,
0.24942852020705,
0.25582995190053814,
0.26230709816552844,
0.2688504804637025,
0.2754513438596874
],
[
0.247606178204336,
0.24142580525786536,
0.23535179492969607,
0.22939671696323988,
0.22357412924232153,
0.21789862975868132,
0.21238589828508048,
0.2070527225299142,
0.20191700234259963,
0.19699772431488635,
0.19231489802174503,
0.18788944437653776,
0.183743026424808,
0.17989781372115315,
0.17637617360682037,
0.1732002865729669,
0.1703916886446376,
0.16797075124898822,
0.16595611780366207,
0.1643641252334482,
0.1632082462907904,
0.16249859317906232,
0.16224152298794675,
0.16243937994019939,
0.1630903985869869,
0.164188777265281,
0.16572491472474676,
0.16768578763406833,
0.17005543516313307,
0.1728155105565811,
0.17594585890050848,
0.17942508435741034,
0.18323107749704595,
0.1873414822401137,
0.19173409080299367,
0.19638716277209695,
0.20127967044376152,
0.206391476684431,
0.2117034539531053,
0.21719755411129735,
0.22285683860685077,
0.2286654779158273,
0.23460872805725771,
0.24067289077907086,
0.24684526279896682,
0.25311407836152605,
0.25946844838887656,
0.2658982986727485,
0.2723943088781715,
0.2789478535897681
],
[
0.25043124419022683,
0.24440148419119598,
0.23848435637613427,
0.23269246205490507,
0.22703932272360922,
0.2215394151103284,
0.21620819366433405,
0.2110620955036315,
0.2061185219153565,
0.2013957896606428,
0.19691304470993076,
0.19269013081632258,
0.18874740576013,
0.1851054994307644,
0.1817850104038115,
0.17880614149527202,
0.17618827994281755,
0.17394953413158407,
0.17210624557973653,
0.17067250132119077,
0.16965967671599455,
0.16907604088684167,
0.16892645547912719,
0.1692121918922212,
0.16993088293139733,
0.17107661318106399,
0.17264014007367673,
0.17460922656193217,
0.1769690581284305,
0.1797027125529279,
0.18279165055141086,
0.1862161985211378,
0.18995600011635114,
0.19399042002926312,
0.19829889006656326,
0.20286119358606938,
0.20765768912625868,
0.21266947746658357,
0.21787851846971978,
0.22326770508389707,
0.2288209020847941,
0.23452295677065718,
0.24035968811469544,
0.24631786000006073,
0.2523851432396713,
0.25855007019725823,
0.26480198502438196,
0.2711309918329933,
0.2775279025397719,
0.28398418564200095
],
[
0.25525647784582045,
0.24941581416386216,
0.243694007197696,
0.23810349481204443,
0.23265753400450037,
0.22737021672261815,
0.22225647162980516,
0.21733204745165946,
0.21261347295999036,
0.20811798822512587,
0.20386344160708905,
0.19986814720952026,
0.19615069835053323,
0.19272973417169864,
0.18962365893157995,
0.1868503168501455,
0.1844266294848631,
0.18236820724490238,
0.18068895130058768,
0.1794006661571124,
0.17851270577951403,
0.17803167667889663,
0.1779612193288226,
0.17830188460146654,
0.17905111500439316,
0.1802033322214342,
0.18175012396972723,
0.18368051568098315,
0.1859813069856392,
0.1886374500005168,
0.19163244608393457,
0.19494873967960286,
0.19856809148167906,
0.20247191766261613,
0.20664158660451187,
0.21105866890943809,
0.21570514008104827,
0.2205635380088528,
0.2256170792426405,
0.23084973911508674,
0.23624630120661208,
0.2417923816132741,
0.24747443313020692,
0.2532797339289408,
0.25919636468647467,
0.2652131774878349,
0.2713197592183678,
0.2775063916139343,
0.28376400965928644,
0.2900841596202394
],
[
0.26180373151330605,
0.2561698906608847,
0.25065996335730156,
0.24528601778103212,
0.24006082296664644,
0.2349978473432876,
0.23011124297136337,
0.225415811958545,
0.22092695126650236,
0.21666057202237435,
0.21263298961082458,
0.20886078134028055,
0.205360609446141,
0.20214900869077312,
0.19924213987930586,
0.19665551319568983,
0.19440368824359722,
0.19249996080762066,
0.19095604927903143,
0.18978179598665768,
0.1889848998916303,
0.188570696872008,
0.18854200193398826,
0.1888990241786606,
0.1896393605387538,
0.19075806873081205,
0.19224781424271775,
0.1940990812034207,
0.19630043324363203,
0.1988388083060292,
0.2016998308811348,
0.20486812615877964,
0.20832762274185684,
0.21206183342860155,
0.21605410669422312,
0.22028784452469652,
0.22474668491330366,
0.22941464947568332,
0.23427625822264936,
0.23931661457690326,
0.24452146430175117,
0.2498772322207276,
0.2553710405440063,
0.2609907123696449,
0.2667247635694492,
0.2725623858582702,
0.2784934234236569,
0.2845083450879662,
0.29059821360424265,
0.29675465335923457
],
[
0.2698307409891779,
0.2644048180364534,
0.2591060168423318,
0.2539458616924511,
0.24893645806979262,
0.2440904783091252,
0.23942113382314803,
0.23494213126002525,
0.23066760989259724,
0.22661205763971726,
0.22279020343601283,
0.21921688425380928,
0.21590688598702656,
0.21287475865802605,
0.2101346079966023,
0.20769986730889117,
0.20558305558693568,
0.20379552982888405,
0.20234724131396337,
0.20124650684540565,
0.20049980648818724,
0.20011161889476797,
0.200084303844933,
0.2004180391798274,
0.20111081608974793,
0.20215849305284492,
0.20355490502577694,
0.2052920211722903,
0.20736014182989798,
0.20974812378546034,
0.21244362233574568,
0.21543333898342695,
0.2187032647840538,
0.22223891107116286,
0.2260255212833495,
0.23004825966096398,
0.23429237448377924,
0.2387433351584067,
0.2433869437702135,
0.24820942267397367,
0.25319748033252765,
0.2583383579679085,
0.26361985971997587,
0.2690303689698859,
0.27455885333175034,
0.28019486058921445,
0.2859285075894974,
0.29175046383135517,
0.2976519312137895,
0.3036246211606112
],
[
0.27923092894997054,
0.27400487496332926,
0.2689070782510349,
0.26394839325300584,
0.2591401449873495,
0.25449410665992195,
0.25002246543168677,
0.24573777447161546,
0.24165288947958316,
0.23778088804937772,
0.23413497058908567,
0.23072834205370368,
0.22757407449182723,
0.22468495136750158,
0.22207329576822443,
0.21975078589909022,
0.21772826260534286,
0.21601553494287076,
0.21462119088541068,
0.21355242096652935,
0.2128148628647296,
0.21241247455063936,
0.21234744258799404,
0.21262013055497692,
0.21322907045174103,
0.2141709975755008,
0.2154409269119099,
0.21703226685346835,
0.21893696422517303,
0.22114567332650478,
0.22364794105973076,
0.22643240019855404,
0.22948696337960808,
0.23279901134514788,
0.23635557017871883,
0.24014347360789562,
0.24414950776995065,
0.2483605370486383,
0.252763610628227,
0.2573460502419156,
0.2620955202098967,
0.2670000812811029,
0.2720482300378859,
0.2772289257263,
0.2825316063690097,
0.2879461959340002,
0.29346310419673155,
0.29907322076796394,
0.3047679045811096,
0.310538969953824
],
[
0.2900703492916107,
0.2850346777870471,
0.2801264152011504,
0.275355662323938,
0.27073289318562765,
0.26626892871861835,
0.26197490047429106,
0.25786220312949515,
0.2539424346223348,
0.2502273229564195,
0.24672863902468123,
0.24345809524105136,
0.24042723033646954,
0.23764728136862018,
0.23512904479159208,
0.23288272929345658,
0.23091780397932232,
0.22924284628068767,
0.2278653946239504,
0.22679181130419407,
0.2260271611073204,
0.22557511094921368,
0.2254378551347232,
0.22561606980455357,
0.22610889880183233,
0.22691397165894303,
0.22802745281170547,
0.22944411963384506,
0.23115746558015504,
0.23315982373434507,
0.23544250543906525,
0.23799594845837557,
0.2408098692618848,
0.24387341446657235,
0.24717530714736333,
0.25070398454318,
0.2544477245572883,
0.25839475930723477,
0.26253337476533106,
0.2668519962091256,
0.2713392597534066,
0.27598407065672764,
0.2807756493928396,
0.28570356666438246,
0.2907577686307481,
0.29592859364283847,
0.3012067817431068,
0.3065834781159673,
0.31205023157559747,
0.3175989890663009
],
[
0.3025642415735239,
0.29771387435182356,
0.29298832824059845,
0.28839689578522765,
0.283949158910138,
0.27965496162981446,
0.27552437474459557,
0.27156765170802266,
0.267795174964703,
0.2642173922347448,
0.26084474247137723,
0.25768757154715766,
0.25475603813116704,
0.25206001069709516,
0.2496089571341569,
0.24741182899318104,
0.24547694295339495,
0.24381186259728746,
0.24242328398254193,
0.2413169287520376,
0.2404974485818511,
0.23996834460212746,
0.23973190502388717,
0.23978916357654007,
0.24013988054002816,
0.24078254719803258,
0.24171441351664463,
0.2429315378462921,
0.24442885653141813,
0.246200270559405,
0.2482387458353871,
0.2505364233580652,
0.25308473549432303,
0.2558745246873675,
0.25889616124751313,
0.2621396573203696,
0.2655947746540621,
0.26925112434775017,
0.2730982573168751,
0.2771257447243295,
0.28132324807870895,
0.2856805790784401,
0.2901877495792443,
0.2948350122841923,
0.2996128929068329,
0.30451221464799827,
0.3095241158662997,
0.3146400618218083,
0.31985185134200006,
0.3251516192076233
],
[
0.31700990538262575,
0.31234720860597504,
0.3078052969394932,
0.3033926204766271,
0.29911784699521843,
0.29498983570657933,
0.29101760478727956,
0.28721029220280636,
0.28357710943155984,
0.28012728783867663,
0.27687001763548497,
0.2738143795929367,
0.2709692699543638,
0.2683433193078479,
0.2659448065206885,
0.2637815691915576,
0.261860912419108,
0.26018951799410067,
0.2587733563683538,
0.25761760391086425,
0.2567265680055906,
0.25610362245889656,
0.255751155459267,
0.25567053197077577,
0.25586207196039,
0.256325045284754,
0.25705768343159485,
0.25805720766686563,
0.25931987252558425,
0.2608410230429038,
0.26261516368553667,
0.26463603663524354,
0.26689670690602674,
0.26938965174356333,
0.272106851846774,
0.2750398821468971,
0.2781800001535448,
0.2815182302024232,
0.2850454422892246,
0.2887524245252101,
0.29262994858288194,
0.29666882780110254,
0.30085996787876235,
0.30519441030040645,
0.30966336880518025,
0.3142582593345079,
0.31897072397795784,
0.3237926494864542,
0.3287161809429889,
0.3337337311791742
],
[
0.3336997551959218,
0.3292347286281282,
0.32488528327378097,
0.3206590108983436,
0.31656366022527266,
0.3126071129347843,
0.3087973550193663,
0.30514244322509204,
0.30165046638666554,
0.2983295015681362,
0.29518756505142124,
0.29223255837074696,
0.289472209770822,
0.2869140116654615,
0.28456515488473544,
0.2824324607131811,
0.2805223119274831,
0.2788405842258916,
0.2773925795891358,
0.2761829632093374,
0.2752157056569251,
0.27449403191598454,
0.27402037880069846,
0.273796362069609,
0.2738227542866807,
0.2740994741507587,
0.2746255876453989,
0.27539932097053366,
0.2764180848292348,
0.2776785092799826,
0.2791764880478888,
0.28090723093395836,
0.28286532278063525,
0.28504478734956856,
0.2874391544429535,
0.2900415286465473,
0.2928446581802306,
0.29584100249771367,
0.2990227974662773,
0.3023821171659195,
0.30591093156195964,
0.30960115951466016,
0.31344471678496144,
0.31743355887070135,
0.32155971865867666,
0.32581533900292664,
0.3301927004384867,
0.33468424431410915,
0.339282591679094,
0.3439805582914071
],
[
0.3528397386315427,
0.3485880279619955,
0.3444457747985724,
0.3404197169188017,
0.33651669868435424,
0.332743649936471,
0.3291075615529058,
0.3256154575366803,
0.3222743635648768,
0.31909127199778387,
0.31607310343495687,
0.3132266650044235,
0.310558605682726,
0.30807536906377286,
0.305783144119825,
0.3036878146229712,
0.3017949080143032,
0.3001095446134934,
0.298636388146496,
0.2973795986264971,
0.29634278864643304,
0.29552898412555473,
0.29494059049445104,
0.2945793652020127,
0.294446397286267,
0.29454209457379565,
0.29486617886726574,
0.2954176892571515,
0.2961949934633821,
0.2971958068871164,
0.2984172188435302,
0.29985572526361853,
0.30150726700450037,
0.30336727279919934,
0.30543070581100157,
0.30769211273410213,
0.310145674398708,
0.312785256890381,
0.31560446227387534,
0.3185966781140605,
0.3217551251033722,
0.3250729022296759,
0.3285430290440198,
0.33215848470928483,
0.3359122436240118,
0.3397973075176024,
0.34380673400185047,
0.3479336616384029,
0.35217133164221603,
0.3565131063878815
],
[
0.37449312434608095,
0.3704729458705202,
0.3665553986064369,
0.36274639251115387,
0.35905190378013346,
0.3554779568771534,
0.3520306042517017,
0.34871590369733296,
0.34553989334465834,
0.34250856433001237,
0.3396278312353255,
0.3369035004557507,
0.33434123671786475,
0.33194652804118774,
0.3297246495072239,
0.3276806262703252,
0.32581919631061435,
0.3241447734872568,
0.32266141149732325,
0.3213727693776643,
0.3202820792016619,
0.3193921166169589,
0.3187051748425337,
0.31822304269334983,
0.317946987128838,
0.31787774072950886,
0.31801549439732635,
0.3183598954541364,
0.3189100511836392,
0.31966453773157094,
0.3206214141516767,
0.3217782412671099,
0.3231321049129503,
0.32467964303943453,
0.3264170760900782,
0.328340240025598,
0.33044462134364627,
0.33272539344503893,
0.33517745371730595,
0.3377954607434486,
0.340573871094502,
0.34350697522530554,
0.3465889320604372,
0.3498138019280646,
0.35317557757068124,
0.3566682130306848,
0.3602856502735584,
0.36402184347049227,
0.36787078091461767,
0.37182650459012817
],
[
0.39855885864449236,
0.3947879272715497,
0.3911122953548855,
0.38753709165200145,
0.38406748032606747,
0.3807086460544067,
0.3774657775900164,
0.3743440497737568,
0.371348604020894,
0.36848452733545173,
0.3657568299388665,
0.36317042163537766,
0.3607300870746269,
0.35844046011119624,
0.35630599750014136,
0.3543309522055612,
0.35251934663445783,
0.3508749461389573,
0.3494012331546414,
0.3481013823598726,
0.3469782372490022,
0.3460342885101477,
0.3452716545849937,
0.3446920647634389,
0.3442968451300274,
0.3440869076326735,
0.344062742488414,
0.3442244140775201,
0.3445715604084823,
0.34510339616448577,
0.3458187192697724,
0.34671592084426733,
0.34779299834964306,
0.3490475716718327,
0.35047690183563496,
0.3520779120080684,
0.35384721041914335,
0.3557811148121687,
0.357875678030387,
0.3601267143518392,
0.36252982619893426,
0.3650804308718818,
0.3677737869842696,
0.3706050203131853,
0.37356914881357944,
0.3766611065856575,
0.3798757666234429,
0.3832079622111649,
0.3866525068707154,
0.3902042127973872
],
[
0.42478162201862085,
0.42127480461982303,
0.41785563525299235,
0.41452852391283407,
0.4112978937174712,
0.40816816884086976,
0.4051437614432873,
0.4022290576165791,
0.39942840237751387,
0.3967460837602064,
0.39418631607817545,
0.3917532224470239,
0.3894508166799551,
0.38728298468975186,
0.3852534655518791,
0.38336583240336797,
0.3816234733703973,
0.38002957273322885,
0.378587092549675,
0.3772987549668499,
0.37616702545492414,
0.3751940971955095,
0.3743818768506654,
0.3737319719263206,
0.3732456799259455,
0.3729239794670487,
0.3727675235048552,
0.37277663477504747,
0.37295130353164885,
0.3732911876180383,
0.37379561486973634,
0.3744635878084231,
0.3752937905486271,
0.3762845978028918,
0.37743408583910076,
0.37874004521567556,
0.38019999509748825,
0.3818111989377717,
0.3835706812994807,
0.3854752455833231,
0.38752149242894157,
0.3897058385600289,
0.392024535853028,
0.39447369042181,
0.397049281526661,
0.3997471801343162,
0.40256316697582456,
0.4054929499701199,
0.40853218090258353,
0.41167647126902523
],
[
0.45278270343652216,
0.449550628683811,
0.4463984066288203,
0.4433298003217834,
0.4403485708437368,
0.4374584676980542,
0.43466321857164414,
0.4319665184881986,
0.4293720183857279,
0.4268833131611001,
0.4245039292354407,
0.4222373117055901,
0.4200868111584223,
0.4180556702362197,
0.416147010052343,
0.41436381656667165,
0.41270892703956136,
0.41118501669085344,
0.4097945856965707,
0.4085399466600024,
0.4074232126955816,
0.40644628626319235,
0.40561084888698273,
0.40491835188646547,
0.4043700082386065,
0.40396678567773514,
0.4037094011258228,
0.40359831652908923,
0.4036337361584177,
0.4038156054111805,
0.40414361113117986,
0.40461718344215153,
0.40523549906905576,
0.40599748610090136,
0.4069018301295107,
0.40794698168089166,
0.4091311648403061,
0.4104523869588009,
0.41190844931831017,
0.41349695862457203,
0.4152153391919462,
0.4170608456819342,
0.4190305762574576,
0.42112148601779015,
0.42333040058391036,
0.4256540297109876,
0.42808898081314833,
0.43063177229537364,
0.4332788465980211,
0.43602658287069124
],
[
0.4820991624718144,
0.47914765712284474,
0.47626822630351545,
0.47346406095003823,
0.47073834059606684,
0.46809422582110133,
0.4655348503129868,
0.4630633125658836,
0.4606826672408566,
0.45839591622226933,
0.45620599940933937,
0.454115785288462,
0.45212806133809164,
0.4502455243239578,
0.4484707705480675,
0.44680628612012874,
0.4452544373245878,
0.4438174611602522,
0.4424974561323198,
0.44129637337841104,
0.4402160082108261,
0.4392579921565496,
0.43842378557451933,
0.43771467092627225,
0.4371317467712835,
0.4366759225521772,
0.4363479142275782,
0.43614824080180437,
0.4360772217910141,
0.4361349756549992,
0.43632141921284245,
0.43663626804915356,
0.43707903790612995,
0.437649047045188,
0.43834541955078027,
0.43916708953856226,
0.44011280622025506,
0.44118113976885553,
0.4423704879202174,
0.4436790832406534,
0.44510500098521305,
0.4466461674676383,
0.4483003688607532,
0.4500652603451427,
0.45193837552438076,
0.45391713602664996,
0.45599886121527405,
0.45818077793431833,
0.46046003021984405,
0.4628336889124816
],
[
0.5122218682850597,
0.5095519489510977,
0.5069464835760341,
0.5044081638116087,
0.5019396646662345,
0.4995436386225335,
0.497222709524936,
0.4949794662552545,
0.49281645621745473,
0.49073617865624064,
0.48874107783745124,
0.486833536121675,
0.4850158669657076,
0.483290307889612,
0.48165901345000794,
0.48012404826278066,
0.4786873801206171,
0.47735087325253867,
0.4761162817738606,
0.4749852433757149,
0.47395927330338605,
0.47303975867210685,
0.4722279531677896,
0.47152497217818323,
0.47093178839735156,
0.470449227943081,
0.4700779670228539,
0.4698185291795071,
0.46967128314264456,
0.4696364413063107,
0.46971405884759454,
0.4699040334946762,
0.47020610594653667,
0.47061986094022396,
0.47114472895530857,
0.4717799885391035,
0.4725247692304134,
0.4733780550542292,
0.47433868855483635,
0.4754053753304624,
0.4765766890288286,
0.47785107675989474,
0.47922686487963784,
0.4807022650970248,
0.48227538085529736,
0.4839442139383103,
0.4857066712529849,
0.4875605717397973,
0.4895036533646258,
0.491533580147232
],
[
0.5426276536192199,
0.5402358256208318,
0.5379011046691101,
0.5356257507486216,
0.533412004897938,
0.5312620846525445,
0.5291781793548813,
0.5271624453455138,
0.5252170010512989,
0.5233439219883296,
0.5215452356992676,
0.5198229166464532,
0.518178881083931,
0.5166149819330826,
0.5151330036880035,
0.5137346573780142,
0.5124215756157485,
0.511195307760018,
0.5100573152232002,
0.5090089669531118,
0.5080515351191945,
0.5071861910324472,
0.5064140013277132,
0.5057359244357954,
0.5051528073714032,
0.5046653828610557,
0.5042742668329354,
0.5039799562882007,
0.5037828275705042,
0.503683135047499,
0.5036810102148858,
0.5037764612302466,
0.5039693728804027,
0.5042595069825588,
0.5046465032159692,
0.5051298803773602,
0.5057090380500421,
0.5063832586733438,
0.5071517099960506,
0.5080134478947111,
0.5089674195351545,
0.5100124668533903,
0.5111473303301406,
0.5123706530317335,
0.5136809848888961,
0.5150767871841468,
0.5165564372179876,
0.5181182331239721,
0.5197603988028782,
0.5214810889467
]
]
},
{
"hoverinfo": "text",
"legendgroup": "In-sample",
"marker": {
"color": "black",
"opacity": 0.5,
"symbol": 1
},
"mode": "markers",
"name": "In-sample",
"text": [
"Arm 0_0
hartmann6: -0.289996 (SEM: 0.1)
x1: 0.32258
x2: 0.860162
x3: 0.941987
x4: 0.847485
x5: 0.589424
x6: 0.467366",
"Arm 10_0
hartmann6: -0.00222435 (SEM: 0.1)
x1: 0.906979
x2: 0.772305
x3: 0.088551
x4: 0.886166
x5: 0.912256
x6: 0.781084",
"Arm 11_0
hartmann6: -0.840343 (SEM: 0.1)
x1: 0.196336
x2: 0.40473
x3: 0.818117
x4: 0.272357
x5: 0.395998
x6: 0.397982",
"Arm 12_0
hartmann6: -0.272835 (SEM: 0.1)
x1: 0.440903
x2: 0.369174
x3: 0.388924
x4: 0.462979
x5: 0
x6: 0.0670093",
"Arm 13_0
hartmann6: -1.58343 (SEM: 0.1)
x1: 0.444001
x2: 0.636952
x3: 0.444504
x4: 0.450684
x5: 0.0135021
x6: 0.134684",
"Arm 14_0
hartmann6: -1.71508 (SEM: 0.1)
x1: 0.444838
x2: 0.689076
x3: 0.587226
x4: 0.443133
x5: 0
x6: 0.0459372",
"Arm 15_0
hartmann6: -0.311039 (SEM: 0.1)
x1: 0.224982
x2: 0.677578
x3: 0.57727
x4: 0.187769
x5: 0
x6: 0.0579427",
"Arm 16_0
hartmann6: -0.177642 (SEM: 0.1)
x1: 0.469436
x2: 0.690199
x3: 0.430384
x4: 0.147157
x5: 0
x6: 0",
"Arm 17_0
hartmann6: -2.26746 (SEM: 0.1)
x1: 0.418802
x2: 0.709348
x3: 0.546385
x4: 0.503416
x5: 0
x6: 0",
"Arm 18_0
hartmann6: -2.61381 (SEM: 0.1)
x1: 0.437804
x2: 0.77066
x3: 0.455527
x4: 0.538772
x5: 0
x6: 0.00249593",
"Arm 1_0
hartmann6: -0.296554 (SEM: 0.1)
x1: 0.535038
x2: 0.492588
x3: 0.214804
x4: 0.498385
x5: 0.101773
x6: 0.834754",
"Arm 2_0
hartmann6: -0.0906059 (SEM: 0.1)
x1: 0.781111
x2: 0.52478
x3: 0.64435
x4: 0.699243
x5: 0.495303
x6: 0.682004",
"Arm 3_0
hartmann6: -0.0892068 (SEM: 0.1)
x1: 0.115632
x2: 0.142553
x3: 0.38744
x4: 0.0796428
x5: 0.945886
x6: 0.048842",
"Arm 4_0
hartmann6: -0.11413 (SEM: 0.1)
x1: 0.153482
x2: 0.680642
x3: 0.0284758
x4: 0.225479
x5: 0.828344
x6: 0.332626",
"Arm 5_0
hartmann6: -0.0332608 (SEM: 0.1)
x1: 0.988866
x2: 0.047228
x3: 0.752218
x4: 0.620516
x5: 0.347288
x6: 0.965604",
"Arm 6_0
hartmann6: -0.0768001 (SEM: 0.1)
x1: 0.695935
x2: 0.954512
x3: 0.322634
x4: 0.321497
x5: 0.234956
x6: 0.547187",
"Arm 7_0
hartmann6: -0.0283138 (SEM: 0.1)
x1: 0.407288
x2: 0.337697
x3: 0.583061
x4: 0.957753
x5: 0.690669
x6: 0.179738",
"Arm 8_0
hartmann6: -1.44181 (SEM: 0.1)
x1: 0.489464
x2: 0.624292
x3: 0.263571
x4: 0.535867
x5: 0.00637698
x6: 0.120232",
"Arm 9_0
hartmann6: -0.476061 (SEM: 0.1)
x1: 0.652852
x2: 0.242066
x3: 0.518098
x4: 0.180854
x5: 0.551885
x6: 0.73756"
],
"type": "scatter",
"x": [
0.3225795328617096,
0.9069793401286006,
0.1963364752009511,
0.44090277204490175,
0.44400066127410764,
0.4448380326257411,
0.224981762442647,
0.46943645181287313,
0.418802493945338,
0.43780413768200993,
0.5350383212789893,
0.7811105474829674,
0.11563177965581417,
0.15348224341869354,
0.9888656120747328,
0.6959354216232896,
0.4072879469022155,
0.48946394957602024,
0.6528523750603199
],
"xaxis": "x",
"y": [
0.8601621389389038,
0.7723050154745579,
0.4047299362719059,
0.3691743812817937,
0.6369520645263401,
0.6890757886378736,
0.677578310762021,
0.6901991683270795,
0.7093479244146099,
0.7706601415452137,
0.49258803576231003,
0.5247802138328552,
0.14255276322364807,
0.6806416790932417,
0.047227976843714714,
0.9545117076486349,
0.33769658766686916,
0.6242924593389034,
0.24206596240401268
],
"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.289996 (SEM: 0.1)
x1: 0.32258
x2: 0.860162
x3: 0.941987
x4: 0.847485
x5: 0.589424
x6: 0.467366",
"Arm 10_0
hartmann6: -0.00222435 (SEM: 0.1)
x1: 0.906979
x2: 0.772305
x3: 0.088551
x4: 0.886166
x5: 0.912256
x6: 0.781084",
"Arm 11_0
hartmann6: -0.840343 (SEM: 0.1)
x1: 0.196336
x2: 0.40473
x3: 0.818117
x4: 0.272357
x5: 0.395998
x6: 0.397982",
"Arm 12_0
hartmann6: -0.272835 (SEM: 0.1)
x1: 0.440903
x2: 0.369174
x3: 0.388924
x4: 0.462979
x5: 0
x6: 0.0670093",
"Arm 13_0
hartmann6: -1.58343 (SEM: 0.1)
x1: 0.444001
x2: 0.636952
x3: 0.444504
x4: 0.450684
x5: 0.0135021
x6: 0.134684",
"Arm 14_0
hartmann6: -1.71508 (SEM: 0.1)
x1: 0.444838
x2: 0.689076
x3: 0.587226
x4: 0.443133
x5: 0
x6: 0.0459372",
"Arm 15_0
hartmann6: -0.311039 (SEM: 0.1)
x1: 0.224982
x2: 0.677578
x3: 0.57727
x4: 0.187769
x5: 0
x6: 0.0579427",
"Arm 16_0
hartmann6: -0.177642 (SEM: 0.1)
x1: 0.469436
x2: 0.690199
x3: 0.430384
x4: 0.147157
x5: 0
x6: 0",
"Arm 17_0
hartmann6: -2.26746 (SEM: 0.1)
x1: 0.418802
x2: 0.709348
x3: 0.546385
x4: 0.503416
x5: 0
x6: 0",
"Arm 18_0
hartmann6: -2.61381 (SEM: 0.1)
x1: 0.437804
x2: 0.77066
x3: 0.455527
x4: 0.538772
x5: 0
x6: 0.00249593",
"Arm 1_0
hartmann6: -0.296554 (SEM: 0.1)
x1: 0.535038
x2: 0.492588
x3: 0.214804
x4: 0.498385
x5: 0.101773
x6: 0.834754",
"Arm 2_0
hartmann6: -0.0906059 (SEM: 0.1)
x1: 0.781111
x2: 0.52478
x3: 0.64435
x4: 0.699243
x5: 0.495303
x6: 0.682004",
"Arm 3_0
hartmann6: -0.0892068 (SEM: 0.1)
x1: 0.115632
x2: 0.142553
x3: 0.38744
x4: 0.0796428
x5: 0.945886
x6: 0.048842",
"Arm 4_0
hartmann6: -0.11413 (SEM: 0.1)
x1: 0.153482
x2: 0.680642
x3: 0.0284758
x4: 0.225479
x5: 0.828344
x6: 0.332626",
"Arm 5_0
hartmann6: -0.0332608 (SEM: 0.1)
x1: 0.988866
x2: 0.047228
x3: 0.752218
x4: 0.620516
x5: 0.347288
x6: 0.965604",
"Arm 6_0
hartmann6: -0.0768001 (SEM: 0.1)
x1: 0.695935
x2: 0.954512
x3: 0.322634
x4: 0.321497
x5: 0.234956
x6: 0.547187",
"Arm 7_0
hartmann6: -0.0283138 (SEM: 0.1)
x1: 0.407288
x2: 0.337697
x3: 0.583061
x4: 0.957753
x5: 0.690669
x6: 0.179738",
"Arm 8_0
hartmann6: -1.44181 (SEM: 0.1)
x1: 0.489464
x2: 0.624292
x3: 0.263571
x4: 0.535867
x5: 0.00637698
x6: 0.120232",
"Arm 9_0
hartmann6: -0.476061 (SEM: 0.1)
x1: 0.652852
x2: 0.242066
x3: 0.518098
x4: 0.180854
x5: 0.551885
x6: 0.73756"
],
"type": "scatter",
"x": [
0.3225795328617096,
0.9069793401286006,
0.1963364752009511,
0.44090277204490175,
0.44400066127410764,
0.4448380326257411,
0.224981762442647,
0.46943645181287313,
0.418802493945338,
0.43780413768200993,
0.5350383212789893,
0.7811105474829674,
0.11563177965581417,
0.15348224341869354,
0.9888656120747328,
0.6959354216232896,
0.4072879469022155,
0.48946394957602024,
0.6528523750603199
],
"xaxis": "x2",
"y": [
0.8601621389389038,
0.7723050154745579,
0.4047299362719059,
0.3691743812817937,
0.6369520645263401,
0.6890757886378736,
0.677578310762021,
0.6901991683270795,
0.7093479244146099,
0.7706601415452137,
0.49258803576231003,
0.5247802138328552,
0.14255276322364807,
0.6806416790932417,
0.047227976843714714,
0.9545117076486349,
0.33769658766686916,
0.6242924593389034,
0.24206596240401268
],
"yaxis": "y2"
}
],
"layout": {
"annotations": [
{
"font": {
"size": 14
},
"showarrow": false,
"text": "Mean",
"x": 0.25,
"xanchor": "center",
"xref": "paper",
"y": 1,
"yanchor": "bottom",
"yref": "paper"
},
{
"font": {
"size": 14
},
"showarrow": false,
"text": "Standard Error",
"x": 0.8,
"xanchor": "center",
"xref": "paper",
"y": 1,
"yanchor": "bottom",
"yref": "paper"
}
],
"autosize": false,
"height": 450,
"hovermode": "closest",
"legend": {
"orientation": "h",
"x": 0,
"y": -0.25
},
"margin": {
"b": 100,
"l": 35,
"pad": 0,
"r": 35,
"t": 35
},
"template": {
"data": {
"bar": [
{
"error_x": {
"color": "#2a3f5f"
},
"error_y": {
"color": "#2a3f5f"
},
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
},
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "bar"
}
],
"barpolar": [
{
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
},
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "barpolar"
}
],
"carpet": [
{
"aaxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"baxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"type": "carpet"
}
],
"choropleth": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "choropleth"
}
],
"contour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "contour"
}
],
"contourcarpet": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "contourcarpet"
}
],
"heatmap": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "heatmap"
}
],
"heatmapgl": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "heatmapgl"
}
],
"histogram": [
{
"marker": {
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "histogram"
}
],
"histogram2d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "histogram2d"
}
],
"histogram2dcontour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "histogram2dcontour"
}
],
"mesh3d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "mesh3d"
}
],
"parcoords": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "parcoords"
}
],
"pie": [
{
"automargin": true,
"type": "pie"
}
],
"scatter": [
{
"fillpattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
},
"type": "scatter"
}
],
"scatter3d": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter3d"
}
],
"scattercarpet": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattercarpet"
}
],
"scattergeo": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergeo"
}
],
"scattergl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergl"
}
],
"scattermapbox": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattermapbox"
}
],
"scatterpolar": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolar"
}
],
"scatterpolargl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolargl"
}
],
"scatterternary": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterternary"
}
],
"surface": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "surface"
}
],
"table": [
{
"cells": {
"fill": {
"color": "#EBF0F8"
},
"line": {
"color": "white"
}
},
"header": {
"fill": {
"color": "#C8D4E3"
},
"line": {
"color": "white"
}
},
"type": "table"
}
]
},
"layout": {
"annotationdefaults": {
"arrowcolor": "#2a3f5f",
"arrowhead": 0,
"arrowwidth": 1
},
"autotypenumbers": "strict",
"coloraxis": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"colorscale": {
"diverging": [
[
0,
"#8e0152"
],
[
0.1,
"#c51b7d"
],
[
0.2,
"#de77ae"
],
[
0.3,
"#f1b6da"
],
[
0.4,
"#fde0ef"
],
[
0.5,
"#f7f7f7"
],
[
0.6,
"#e6f5d0"
],
[
0.7,
"#b8e186"
],
[
0.8,
"#7fbc41"
],
[
0.9,
"#4d9221"
],
[
1,
"#276419"
]
],
"sequential": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"sequentialminus": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
]
},
"colorway": [
"#636efa",
"#EF553B",
"#00cc96",
"#ab63fa",
"#FFA15A",
"#19d3f3",
"#FF6692",
"#B6E880",
"#FF97FF",
"#FECB52"
],
"font": {
"color": "#2a3f5f"
},
"geo": {
"bgcolor": "white",
"lakecolor": "white",
"landcolor": "#E5ECF6",
"showlakes": true,
"showland": true,
"subunitcolor": "white"
},
"hoverlabel": {
"align": "left"
},
"hovermode": "closest",
"mapbox": {
"style": "light"
},
"paper_bgcolor": "white",
"plot_bgcolor": "#E5ECF6",
"polar": {
"angularaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"radialaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"scene": {
"xaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"yaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"zaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
}
},
"shapedefaults": {
"line": {
"color": "#2a3f5f"
}
},
"ternary": {
"aaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"baxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"caxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"title": {
"x": 0.05
},
"xaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
},
"yaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
}
}
},
"title": {
"text": "hartmann6"
},
"width": 950,
"xaxis": {
"anchor": "y",
"autorange": false,
"domain": [
0.05,
0.45
],
"exponentformat": "e",
"range": [
0.0,
1.0
],
"tickfont": {
"size": 11
},
"tickmode": "auto",
"title": {
"text": "x1"
},
"type": "linear"
},
"xaxis2": {
"anchor": "y2",
"autorange": false,
"domain": [
0.6,
1
],
"exponentformat": "e",
"range": [
0.0,
1.0
],
"tickfont": {
"size": 11
},
"tickmode": "auto",
"title": {
"text": "x1"
},
"type": "linear"
},
"yaxis": {
"anchor": "x",
"autorange": false,
"domain": [
0,
1
],
"exponentformat": "e",
"range": [
0.0,
1.0
],
"tickfont": {
"size": 11
},
"tickmode": "auto",
"title": {
"text": "x2"
},
"type": "linear"
},
"yaxis2": {
"anchor": "x2",
"autorange": false,
"domain": [
0,
1
],
"exponentformat": "e",
"range": [
0.0,
1.0
],
"tickfont": {
"size": 11
},
"tickmode": "auto",
"type": "linear"
}
}
},
"text/html": [
"