{
"cells": [
{
"cell_type": "markdown",
"id": "db840fed",
"metadata": {
"originalKey": "e23719d9-8a24-4208-8439-34e7b8270c79",
"papermill": {
"duration": 0.003269,
"end_time": "2024-09-23T20:30:48.786019",
"exception": false,
"start_time": "2024-09-23T20:30:48.782750",
"status": "completed"
},
"tags": []
},
"source": [
"# Visualizations\n",
"\n",
"This tutorial illustrates the core visualization utilities available in Ax."
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "a718d1ae",
"metadata": {
"code_folding": [],
"execution": {
"iopub.execute_input": "2024-09-23T20:30:48.793674Z",
"iopub.status.busy": "2024-09-23T20:30:48.793206Z",
"iopub.status.idle": "2024-09-23T20:30:52.467487Z",
"shell.execute_reply": "2024-09-23T20:30:52.466581Z"
},
"executionStartTime": 1627652821316,
"executionStopTime": 1627652822868,
"hidden_ranges": [],
"originalKey": "101b0e96-5b3d-48c5-bf3c-677b4ddf90c7",
"papermill": {
"duration": 3.696166,
"end_time": "2024-09-23T20:30:52.485323",
"exception": false,
"start_time": "2024-09-23T20:30:48.789157",
"status": "completed"
},
"requestMsgId": "c0dd9aaf-896d-4ea9-912f-1e58d301d114",
"tags": []
},
"outputs": [
{
"data": {
"text/html": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:30:52] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:30:52] 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": "1a5990f5",
"metadata": {
"code_folding": [],
"hidden_ranges": [],
"originalKey": "8449378f-890e-4e76-8d73-ce2aa4120a69",
"papermill": {
"duration": 0.038838,
"end_time": "2024-09-23T20:30:52.563966",
"exception": false,
"start_time": "2024-09-23T20:30:52.525128",
"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": "4354610f",
"metadata": {
"originalKey": "f7544e06-6c6a-4841-b659-3be6a198a948",
"papermill": {
"duration": 0.038687,
"end_time": "2024-09-23T20:30:52.641885",
"exception": false,
"start_time": "2024-09-23T20:30:52.603198",
"status": "completed"
},
"tags": []
},
"source": [
"#### 1a. Define search space and evaluation function"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "3607bbee",
"metadata": {
"code_folding": [],
"execution": {
"iopub.execute_input": "2024-09-23T20:30:52.721965Z",
"iopub.status.busy": "2024-09-23T20:30:52.721448Z",
"iopub.status.idle": "2024-09-23T20:30:52.726024Z",
"shell.execute_reply": "2024-09-23T20:30:52.725456Z"
},
"executionStartTime": 1627652824829,
"executionStopTime": 1627652824877,
"hidden_ranges": [],
"originalKey": "28f6cb76-828f-445d-bdda-ba057c87dcd0",
"papermill": {
"duration": 0.046378,
"end_time": "2024-09-23T20:30:52.727368",
"exception": false,
"start_time": "2024-09-23T20:30:52.680990",
"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": "91c998b1",
"metadata": {
"originalKey": "17a51543-298e-47d4-bcd9-33459fe1169e",
"papermill": {
"duration": 0.038954,
"end_time": "2024-09-23T20:30:52.805082",
"exception": false,
"start_time": "2024-09-23T20:30:52.766128",
"status": "completed"
},
"tags": []
},
"source": [
"#### 1b. Create Experiment"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "3412ff56",
"metadata": {
"code_folding": [],
"execution": {
"iopub.execute_input": "2024-09-23T20:30:52.884677Z",
"iopub.status.busy": "2024-09-23T20:30:52.884400Z",
"iopub.status.idle": "2024-09-23T20:30:52.897448Z",
"shell.execute_reply": "2024-09-23T20:30:52.896672Z"
},
"executionStartTime": 1627654956712,
"executionStopTime": 1627654956823,
"hidden_ranges": [],
"originalKey": "6fca889c-a4ff-42ef-a669-6eb8803de89c",
"papermill": {
"duration": 0.055637,
"end_time": "2024-09-23T20:30:52.900046",
"exception": false,
"start_time": "2024-09-23T20:30:52.844409",
"status": "completed"
},
"requestMsgId": "905eff52-e649-4bd5-abf0-ff69c1549852",
"tags": []
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:30:52] 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 09-23 20:30:52] 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 09-23 20:30:52] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x2. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:30:52] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x3. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:30:52] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x4. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:30:52] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x5. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:30:52] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x6. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:30:52] 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 09-23 20:30:52] ax.modelbridge.dispatch_utils: Using Models.BOTORCH_MODULAR since there is at least one ordered parameter and there are no unordered categorical parameters.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:30:52] ax.modelbridge.dispatch_utils: Calculating the number of remaining initialization trials based on num_initialization_trials=None max_initialization_trials=None num_tunable_parameters=6 num_trials=None use_batch_trials=False\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:30:52] ax.modelbridge.dispatch_utils: calculated num_initialization_trials=12\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:30:52] ax.modelbridge.dispatch_utils: num_completed_initialization_trials=0 num_remaining_initialization_trials=12\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:30:52] ax.modelbridge.dispatch_utils: `verbose`, `disable_progbar`, and `jit_compile` are not yet supported when using `choose_generation_strategy` with ModularBoTorchModel, dropping these arguments.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:30:52] 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": "b1dc8707",
"metadata": {
"code_folding": [],
"hidden_ranges": [],
"originalKey": "ab892f7c-4830-4c1d-b476-ec1078ec3faf",
"papermill": {
"duration": 0.039597,
"end_time": "2024-09-23T20:30:52.980020",
"exception": false,
"start_time": "2024-09-23T20:30:52.940423",
"status": "completed"
},
"showInput": false,
"tags": []
},
"source": [
"#### 1c. Run the optimization and fit a GP on all data"
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "b7164bf6",
"metadata": {
"code_folding": [],
"execution": {
"iopub.execute_input": "2024-09-23T20:30:53.061400Z",
"iopub.status.busy": "2024-09-23T20:30:53.060744Z",
"iopub.status.idle": "2024-09-23T20:31:37.923085Z",
"shell.execute_reply": "2024-09-23T20:31:37.922402Z"
},
"executionStartTime": 1627654642967,
"executionStopTime": 1627654862819,
"hidden_ranges": [],
"originalKey": "7269a5ba-45c8-4acf-ac83-a5ea8a52d6c1",
"papermill": {
"duration": 44.904794,
"end_time": "2024-09-23T20:31:37.924552",
"exception": false,
"start_time": "2024-09-23T20:30:53.019758",
"status": "completed"
},
"requestMsgId": "c7a4dea8-fd6d-4e1a-84de-ad973ede0cd7",
"tags": []
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.QqcA7fo0ui/Ax-main/ax/modelbridge/cross_validation.py:463: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 09-23 20:30:53] ax.service.ax_client: Generated new trial 0 with parameters {'x1': 0.301966, 'x2': 0.115237, 'x3': 0.662966, 'x4': 0.787345, 'x5': 0.514551, 'x6': 0.35244} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:30:53] ax.service.ax_client: Completed trial 0 with data: {'hartmann6': (0.007817, 0.1), 'l2norm': (1.20666, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.QqcA7fo0ui/Ax-main/ax/modelbridge/cross_validation.py:463: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 09-23 20:30:53] ax.service.ax_client: Generated new trial 1 with parameters {'x1': 0.690867, 'x2': 0.848207, 'x3': 0.003923, 'x4': 0.416611, 'x5': 0.060394, 'x6': 0.503174} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:30:53] ax.service.ax_client: Completed trial 1 with data: {'hartmann6': (-0.086721, 0.1), 'l2norm': (1.156036, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.QqcA7fo0ui/Ax-main/ax/modelbridge/cross_validation.py:463: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 09-23 20:30:53] ax.service.ax_client: Generated new trial 2 with parameters {'x1': 0.802228, 'x2': 0.481028, 'x3': 0.78, 'x4': 0.746598, 'x5': 0.473398, 'x6': 0.981709} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:30:53] ax.service.ax_client: Completed trial 2 with data: {'hartmann6': (-0.262696, 0.1), 'l2norm': (1.868653, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.QqcA7fo0ui/Ax-main/ax/modelbridge/cross_validation.py:463: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 09-23 20:30:53] ax.service.ax_client: Generated new trial 3 with parameters {'x1': 0.190671, 'x2': 0.748055, 'x3': 0.433947, 'x4': 0.109519, 'x5': 0.960888, 'x6': 0.131726} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:30:53] ax.service.ax_client: Completed trial 3 with data: {'hartmann6': (-0.331837, 0.1), 'l2norm': (1.280234, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.QqcA7fo0ui/Ax-main/ax/modelbridge/cross_validation.py:463: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 09-23 20:30:53] ax.service.ax_client: Generated new trial 4 with parameters {'x1': 0.084531, 'x2': 0.327964, 'x3': 0.187647, 'x4': 0.239736, 'x5': 0.808278, 'x6': 0.40264} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:30:53] ax.service.ax_client: Completed trial 4 with data: {'hartmann6': (-0.024598, 0.1), 'l2norm': (0.981802, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.QqcA7fo0ui/Ax-main/ax/modelbridge/cross_validation.py:463: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 09-23 20:30:53] ax.service.ax_client: Generated new trial 5 with parameters {'x1': 0.907026, 'x2': 0.591085, 'x3': 0.596445, 'x4': 0.619006, 'x5': 0.258409, 'x6': 0.74211} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:30:53] ax.service.ax_client: Completed trial 5 with data: {'hartmann6': (-0.239878, 0.1), 'l2norm': (1.579705, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.QqcA7fo0ui/Ax-main/ax/modelbridge/cross_validation.py:463: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 09-23 20:30:53] ax.service.ax_client: Generated new trial 6 with parameters {'x1': 0.584728, 'x2': 0.208281, 'x3': 0.36767, 'x4': 0.29665, 'x5': 0.204627, 'x6': 0.775324} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:30:53] ax.service.ax_client: Completed trial 6 with data: {'hartmann6': (-1.572804, 0.1), 'l2norm': (1.037927, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.QqcA7fo0ui/Ax-main/ax/modelbridge/cross_validation.py:463: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 09-23 20:30:53] ax.service.ax_client: Generated new trial 7 with parameters {'x1': 0.406765, 'x2': 0.945157, 'x3': 0.963481, 'x4': 0.909565, 'x5': 0.721408, 'x6': 0.111605} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:30:53] ax.service.ax_client: Completed trial 7 with data: {'hartmann6': (-1.027357, 0.1), 'l2norm': (1.942456, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.QqcA7fo0ui/Ax-main/ax/modelbridge/cross_validation.py:463: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 09-23 20:30:53] ax.service.ax_client: Generated new trial 8 with parameters {'x1': 0.47679, 'x2': 0.379172, 'x3': 0.25488, 'x4': 0.508789, 'x5': 0.11077, 'x6': 0.247573} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:30:53] ax.service.ax_client: Completed trial 8 with data: {'hartmann6': (-0.460301, 0.1), 'l2norm': (0.912411, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.QqcA7fo0ui/Ax-main/ax/modelbridge/cross_validation.py:463: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 09-23 20:30:53] ax.service.ax_client: Generated new trial 9 with parameters {'x1': 0.529784, 'x2': 0.647298, 'x3': 0.912214, 'x4': 0.1305, 'x5': 0.564808, 'x6': 0.896629} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:30:53] ax.service.ax_client: Completed trial 9 with data: {'hartmann6': (-0.060766, 0.1), 'l2norm': (1.820705, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.QqcA7fo0ui/Ax-main/ax/modelbridge/cross_validation.py:463: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 09-23 20:30:53] ax.service.ax_client: Generated new trial 10 with parameters {'x1': 0.977014, 'x2': 0.03012, 'x3': 0.184233, 'x4': 0.956763, 'x5': 0.901647, 'x6': 0.617313} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:30:53] ax.service.ax_client: Completed trial 10 with data: {'hartmann6': (0.029059, 0.1), 'l2norm': (1.650103, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.QqcA7fo0ui/Ax-main/ax/modelbridge/cross_validation.py:463: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 09-23 20:30:53] ax.service.ax_client: Generated new trial 11 with parameters {'x1': 0.029488, 'x2': 0.761991, 'x3': 0.529554, 'x4': 0.342866, 'x5': 0.41452, 'x6': 0.269069} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:30:53] ax.service.ax_client: Completed trial 11 with data: {'hartmann6': (-0.221124, 0.1), 'l2norm': (1.341961, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:30:57] ax.service.ax_client: Generated new trial 12 with parameters {'x1': 0.515304, 'x2': 0.147016, 'x3': 0.270404, 'x4': 0.252918, 'x5': 0.125455, 'x6': 0.866776} using model BoTorch.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:30:57] ax.service.ax_client: Completed trial 12 with data: {'hartmann6': (-1.096015, 0.1), 'l2norm': (1.124111, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:31:03] ax.service.ax_client: Generated new trial 13 with parameters {'x1': 0.616218, 'x2': 0.22177, 'x3': 0.398197, 'x4': 0.193171, 'x5': 0.17117, 'x6': 0.686749} using model BoTorch.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:31:03] ax.service.ax_client: Completed trial 13 with data: {'hartmann6': (-1.235589, 0.1), 'l2norm': (1.208472, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:31:12] ax.service.ax_client: Generated new trial 14 with parameters {'x1': 0.517555, 'x2': 0.184403, 'x3': 0.334269, 'x4': 0.30403, 'x5': 0.282924, 'x6': 0.776514} using model BoTorch.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:31:12] ax.service.ax_client: Completed trial 14 with data: {'hartmann6': (-1.975216, 0.1), 'l2norm': (1.019098, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:31:17] ax.service.ax_client: Generated new trial 15 with parameters {'x1': 0.466466, 'x2': 0.105748, 'x3': 0.196728, 'x4': 0.196277, 'x5': 0.289378, 'x6': 1.0} using model BoTorch.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:31:17] ax.service.ax_client: Completed trial 15 with data: {'hartmann6': (-0.711773, 0.1), 'l2norm': (1.124486, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:31:26] ax.service.ax_client: Generated new trial 16 with parameters {'x1': 0.432326, 'x2': 0.144975, 'x3': 0.298308, 'x4': 0.391652, 'x5': 0.344003, 'x6': 0.753454} using model BoTorch.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:31:26] ax.service.ax_client: Completed trial 16 with data: {'hartmann6': (-2.17812, 0.1), 'l2norm': (1.165593, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:31:31] ax.service.ax_client: Generated new trial 17 with parameters {'x1': 0.325259, 'x2': 0.10506, 'x3': 0.309941, 'x4': 0.051872, 'x5': 0.386782, 'x6': 0.757427} using model BoTorch.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:31:31] ax.service.ax_client: Completed trial 17 with data: {'hartmann6': (-1.606619, 0.1), 'l2norm': (0.995786, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:31:35] ax.service.ax_client: Generated new trial 18 with parameters {'x1': 0.479433, 'x2': 0.190328, 'x3': 0.13175, 'x4': 0.471527, 'x5': 0.368483, 'x6': 0.745157} using model BoTorch.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:31:35] ax.service.ax_client: Completed trial 18 with data: {'hartmann6': (-1.508482, 0.1), 'l2norm': (0.977963, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:31:37] ax.service.ax_client: Generated new trial 19 with parameters {'x1': 0.425636, 'x2': 0.021245, 'x3': 0.328259, 'x4': 0.532462, 'x5': 0.35233, 'x6': 0.736052} using model BoTorch.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:31:37] ax.service.ax_client: Completed trial 19 with data: {'hartmann6': (-1.303175, 0.1), 'l2norm': (1.042761, 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": "d4ea6f62",
"metadata": {
"originalKey": "72f4d3e7-fa04-43d0-8451-ded292e705df",
"papermill": {
"duration": 0.041193,
"end_time": "2024-09-23T20:31:38.006965",
"exception": false,
"start_time": "2024-09-23T20:31:37.965772",
"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": "856bcd4a",
"metadata": {
"code_folding": [],
"execution": {
"iopub.execute_input": "2024-09-23T20:31:38.092040Z",
"iopub.status.busy": "2024-09-23T20:31:38.091305Z",
"iopub.status.idle": "2024-09-23T20:31:38.757763Z",
"shell.execute_reply": "2024-09-23T20:31:38.757110Z"
},
"executionStartTime": 1627654870209,
"executionStopTime": 1627654871972,
"hidden_ranges": [],
"originalKey": "843df85c-965d-4a83-9fe1-696225d81c0f",
"papermill": {
"duration": 0.713744,
"end_time": "2024-09-23T20:31:38.762305",
"exception": false,
"start_time": "2024-09-23T20:31:38.048561",
"status": "completed"
},
"requestMsgId": "4a643541-867c-46b6-868d-64337920c2a3",
"tags": []
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:31:38] 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": [
[
-1.2841714027780924,
-1.3076749089143447,
-1.3305901682028343,
-1.3528509582464054,
-1.3743917646833412,
-1.3951480931511466,
-1.4150567824034437,
-1.4340563165048228,
-1.4520871339919776,
-1.4690919318709488,
-1.485015962320276,
-1.499807319988724,
-1.5134172178141068,
-1.5258002493465779,
-1.5369146356352612,
-1.546722454830828,
-1.5551898527679053,
-1.5622872329191106,
-1.5679894242559957,
-1.5722758257099934,
-1.575130526097148,
-1.5765423985524243,
-1.576505168710951,
-1.5750174560729273,
-1.5720827881940742,
-1.567709587552527,
-1.5619111311538232,
-1.5547054831461493,
-1.546115400926113,
-1.536168215419,
-1.5248956864147942,
-1.51233383403016,
-1.4985227475454037,
-1.4835063730323252,
-1.4673322813423528,
-1.4500514181629582,
-1.4317178379728475,
-1.4123884238317452,
-1.3921225950279095,
-1.3709820046750902,
-1.3490302294001517,
-1.326332453292624,
-1.3029551482981814,
-1.278965753229488,
-1.2544323535405355,
-1.2294233639649947,
-1.2040072160561022,
-1.1782520525860478,
-1.1522254306679085,
-1.1259940353541034
],
[
-1.2935549528770967,
-1.317257825905633,
-1.340364336227129,
-1.3628075849460837,
-1.3845213978457922,
-1.4054406409344407,
-1.4255015371074151,
-1.4446419818249119,
-1.4628018556673739,
-1.4799233316129097,
-1.495951174881257,
-1.510833033208336,
-1.524519715454196,
-1.536965456505088,
-1.5481281665072635,
-1.5579696625653656,
-1.5664558811513172,
-1.5735570695994539,
-1.5792479552092666,
-1.5835078906371676,
-1.586320974431795,
-1.5876761457518578,
-1.5875672524997038,
-1.5859930923057504,
-1.5829574260067971,
-1.5784689634728628,
-1.572541321850659,
-1.5651929565048603,
-1.5564470651489932,
-1.5463314658638714,
-1.5348784499010812,
-1.52212461036014,
-1.5081106480086826,
-1.4928811556837358,
-1.4764843828671914,
-1.4589719821685168,
-1.4403987395713822,
-1.4208222904070555,
-1.4003028231053498,
-1.3789027728428631,
-1.3566865072578214,
-1.3337200064307824,
-1.3100705393407308,
-1.2858063389969359,
-1.2609962784187163,
-1.2357095495885788,
-1.210015347439864,
-1.1839825608589916,
-1.1576794725858166,
-1.131173469784693
],
[
-1.3014257634811663,
-1.3252903168169219,
-1.348551187111657,
-1.3711408989992537,
-1.3929927177865475,
-1.4140409681313493,
-1.4342213537959811,
-1.4534712763525814,
-1.471730150679832,
-1.488939715072632,
-1.5050443337870423,
-1.5199912898629497,
-1.533731066106497,
-1.546217612173312,
-1.557408595771666,
-1.5672656361014083,
-1.5757545177591754,
-1.5828453834719816,
-1.5885129041688573,
-1.5927364250622944,
-1.595500086586533,
-1.5967929192264518,
-1.596608911467353,
-1.5949470503002336,
-1.5918113339274054,
-1.5872107565273574,
-1.5811592651535435,
-1.5736756890571573,
-1.5647836419368382,
-1.5545113978264824,
-1.5428917415339427,
-1.5299617947363449,
-1.515762819020242,
-1.5003399973250389,
-1.4837421954045018,
-1.4660217050622824,
-1.4472339710418816,
-1.4274373035584262,
-1.406692578547974,
-1.3850629277793045,
-1.3626134210227154,
-1.339410742500081,
-1.3155228638502485,
-1.2910187158340527,
-1.2659678609741056,
-1.2404401692768108,
-1.2145054991184405,
-1.188233385294696,
-1.1616927361349945,
-1.134951541470159
],
[
-1.3077429003573044,
-1.331730544530553,
-1.35510801212506,
-1.3778073541527314,
-1.3997613775858788,
-1.4209039667025096,
-1.441170405462754,
-1.4604976987728198,
-1.4788248904563495,
-1.4960933757351518,
-1.51224720602253,
-1.5272333838531575,
-1.541002145813875,
-1.5535072313997285,
-1.5647061357988286,
-1.5745603447076524,
-1.5830355493945067,
-1.5901018403621263,
-1.5957338781096135,
-1.5999110396579312,
-1.6026175396802942,
-1.6038425252676098,
-1.6035801435576187,
-1.6018295816628703,
-1.5985950785449417,
-1.5938859086985049,
-1.5877163377266341,
-1.5801055501061754,
-1.5710775496567533,
-1.5606610334371105,
-1.548889239995764,
-1.5357997730975241,
-1.52143440223134,
-1.5058388413764356,
-1.4890625076612103,
-1.471158261691375,
-1.4521821314490815,
-1.4321930217722176,
-1.4112524115117724,
-1.3894240405345015,
-1.3667735887876185,
-1.3433683496717,
-1.3192768999773126,
-1.294568768630423,
-1.2693141064616744,
-1.2435833591658694,
-1.2174469455512473,
-1.1909749430943615,
-1.1642367827167845,
-1.1373009545857071
],
[
-1.3124724864125685,
-1.336543907905678,
-1.3599995139382077,
-1.3827709871097253,
-1.4047907805053237,
-1.4259924412312932,
-1.4463109349339671,
-1.4656829691413817,
-1.4840473132309757,
-1.501345112808949,
-1.5175201962886045,
-1.5325193714763297,
-1.5462927100150483,
-1.5587938175958391,
-1.5699800879287422,
-1.5798129385629878,
-1.5882580267643158,
-1.595285443791718,
-1.6008698860667328,
-1.6049908018939962,
-1.6076325125706403,
-1.6087843069126007,
-1.608440508426262,
-1.6066005145620612,
-1.603268807700828,
-1.598454937741548,
-1.592173476378819,
-1.5844439433773478,
-1.5752907053672476,
-1.5647428478955074,
-1.552834021673737,
-1.5396022641581628,
-1.525089797782916,
-1.509342806340205,
-1.4924111911593232,
-1.4743483088791653,
-1.4552106927347332,
-1.4350577593858977,
-1.4139515034055856,
-1.3919561816139159,
-1.3691379894940918,
-1.3455647319550113,
-1.3213054907143371,
-1.296430290564652,
-1.2710097667545117,
-1.2451148356664985,
-1.2188163709065147,
-1.192184886833559,
-1.1652902314583102,
-1.1382012905232972
],
[
-1.3155879863903193,
-1.3397033328893828,
-1.363198103950409,
-1.3860037208523175,
-1.4080523890689602,
-1.4292774235081342,
-1.4496135746824117,
-1.4689973536377718,
-1.4873673534298746,
-1.50466456492051,
-1.520832684668898,
-1.5358184127144847,
-1.5495717380897296,
-1.5620462099631105,
-1.5731991923938282,
-1.582992100779992,
-1.59139061820064,
-1.5983648899878744,
-1.6038896950175057,
-1.60794459237357,
-1.6105140422224,
-1.6115874999238922,
-1.6111594826094573,
-1.6092296076658443,
-1.6058026027796917,
-1.6008882874170014,
-1.5945015258327793,
-1.5866621519265127,
-1.5773948664768676,
-1.5667291075018324,
-1.5546988946963722,
-1.5413426490965487,
-1.5267029893050128,
-1.5108265057861028,
-1.4937635148977566,
-1.4755677944706522,
-1.4562963028711433,
-1.436008883592525,
-1.4147679575081051,
-1.3926382049887758,
-1.3696862401368437,
-1.3459802794165547,
-1.3215898069700485,
-1.2965852388956125,
-1.271037588733543,
-1.2450181363542372,
-1.2185981023742842,
-1.1918483301401859,
-1.164838977217233,
-1.1376392182042425
],
[
-1.3170704362658014,
-1.3411895069136779,
-1.364684141513618,
-1.3874856085032692,
-1.4095259733580652,
-1.4307384250386226,
-1.4510576033153044,
-1.4704199247855607,
-1.4887639053637503,
-1.506030477006185,
-1.5221632964368328,
-1.537109043661554,
-1.55081770810134,
-1.563242860237489,
-1.574341906743756,
-1.5840763271817417,
-1.5924118904553661,
-1.5993188493572479,
-1.6047721116930376,
-1.6087513866378993,
-1.6112413051607906,
-1.6122315135454026,
-1.6117167392396379,
-1.6096968284764306,
-1.6061767553255342,
-1.6011666020564173,
-1.5946815109145347,
-1.5867416076347223,
-1.5773718972341748,
-1.5666021328411694,
-1.5544666585223914,
-1.54100422726928,
-1.5262577954904222,
-1.5102742955307955,
-1.493104387898056,
-1.4748021950195136,
-1.4554250184797326,
-1.435033041796673,
-1.4136890208831105,
-1.3914579644090628,
-1.3684068063296517,
-1.3446040728710358,
-1.3201195462747535,
-1.2950239275882915,
-1.269388500757307,
-1.2432848002234174,
-1.2167842841616343,
-1.1899580154043965,
-1.162876351995962,
-1.1356086492029829
],
[
-1.3169086146902063,
-1.3409910538671215,
-1.36444611228478,
-1.3872050149005708,
-1.4091997956380096,
-1.4303636245418536,
-1.4506311357526687,
-1.4699387541093274,
-1.4882250181523282,
-1.50543089728431,
-1.5215001008472395,
-1.5363793768988114,
-1.550018798513777,
-1.5623720354990631,
-1.573396609494403,
-1.5830541305322035,
-1.5913105132508014,
-1.5981361710930801,
-1.603506186976583,
-1.6074004590902673,
-1.609803820655476,
-1.6107061326827958,
-1.6101023489604207,
-1.6079925527214542,
-1.604381964655262,
-1.5992809221493314,
-1.592704829870987,
-1.5846740820205252,
-1.575213956806671,
-1.564354483909562,
-1.5521302859036452,
-1.5385803948108625,
-1.523748045141414,
-1.5076804449534098,
-1.4904285266222366,
-1.4720466791539581,
-1.4525924640032781,
-1.4321263164644222,
-1.4107112347918616,
-1.3884124592764113,
-1.3652971435505052,
-1.3414340204241202,
-1.3168930645599073,
-1.2917451542828724,
-1.26606173478681,
-1.2399144849473616,
-1.2133749898808814,
-1.1865144213002357,
-1.1594032276145674,
-1.1321108356011487
],
[
-1.3150991544442479,
-1.3391046475573876,
-1.3624807435794075,
-1.3851587337162403,
-1.4070707291089821,
-1.4281499881926583,
-1.4483312448138659,
-1.4675510349119172,
-1.4857480195329429,
-1.5028633019303137,
-1.5188407365083507,
-1.533627227389875,
-1.5471730144318898,
-1.5594319445774487,
-1.5703617265152237,
-1.5799241667209736,
-1.5880853850761656,
-1.5948160083975442,
-1.600091340366232,
-1.603891506514658,
-1.6062015731126995,
-1.6070116389891327,
-1.6063168995290882,
-1.604117682300556,
-1.6004194539812522,
-1.5952327984789598,
-1.5885733663618213,
-1.580461795937625,
-1.5709236065408367,
-1.5599890648006318,
-1.5476930248706007,
-1.5340747437988553,
-1.5191776734042537,
-1.5030492301984157,
-1.4857405450526127,
-1.4673061944519123,
-1.4478039153049038,
-1.4272943053848066,
-1.4058405115659376,
-1.383507908087624,
-1.3603637671254094,
-1.3364769239764374,
-1.3119174391723871,
-1.2867562598193802,
-1.261064882430456,
-1.2349150194631036,
-1.208378271702868,
-1.1815258085452256,
-1.1544280581230033,
-1.1271544091069219
],
[
-1.3116465925041538,
-1.3355350622393656,
-1.3587930552738046,
-1.3813520386408893,
-1.4031443092775782,
-1.4241033210816525,
-1.4441640126646447,
-1.4632631336045137,
-1.4813395669674425,
-1.4983346458525306,
-1.5141924617172398,
-1.528860162265553,
-1.5422882367250539,
-1.554430786403398,
-1.5652457784986544,
-1.574695281241151,
-1.5827456785660268,
-1.589367862654701,
-1.5945374028387134,
-1.598234689529547,
-1.6004450520214717,
-1.6011588492095974,
-1.6003715324701435,
-1.598083680162631,
-1.5943010034321303,
-1.5890343232116924,
-1.582299518548554,
-1.5741174466003374,
-1.5645138348671246,
-1.5535191464397933,
-1.5411684192522075,
-1.5275010805227858,
-1.5125607377576626,
-1.4963949478613432,
-1.479054966059762,
-1.4605954764835616,
-1.4410743063848623,
-1.4205521260677834,
-1.3990921367005535,
-1.3767597482446063,
-1.3536222497831565,
-1.3297484745581736,
-1.3052084620304485,
-1.2800731192628483,
-1.2544138838923078,
-1.2283023909023247,
-1.2018101453355636,
-1.175008202996662,
-1.1479668610897735,
-1.1207553606150424
],
[
-1.3065633579861151,
-1.330295159463312,
-1.353396345499843,
-1.3757986678682452,
-1.3974347171746662,
-1.4182382491107814,
-1.4381445113357179,
-1.4570905687948716,
-1.4750156252483007,
-1.4918613387662605,
-1.5075721289540496,
-1.522095473692921,
-1.5353821932284808,
-1.547386719502743,
-1.5580673487103691,
-1.5673864751631483,
-1.5753108046686901,
-1.5818115457685415,
-1.58686457733645,
-1.590450591207805,
-1.5925552086948698,
-1.5931690700375838,
-1.5922878960446147,
-1.58991252139193,
-1.586048899264513,
-1.580708077248662,
-1.5739061446055584,
-1.5656641512791278,
-1.5560079992105427,
-1.5449683067458397,
-1.532580247129852,
-1.5188833622771418,
-1.5039213531967421,
-1.487741848620618,
-1.470396153544197,
-1.4519389795295208,
-1.4324281587464194,
-1.4119243438333613,
-1.3904906957465348,
-1.3681925618325645,
-1.345097146406641,
-1.3212731761435736,
-1.2967905625943534,
-1.2717200641255255,
-1.246132949543485,
-1.2201006656113862,
-1.1936945105935934,
-1.166985315872561,
-1.1400431375769116,
-1.112936960038726
],
[
-1.2998696979104873,
-1.323405811189918,
-1.346312111085243,
-1.3685207418392347,
-1.3899646943863448,
-1.4105781312989305,
-1.430296712295711,
-1.4490579181254302,
-1.466801370605024,
-1.483469146577089,
-1.4990060835564978,
-1.513360074861048,
-1.5264823520661328,
-1.5383277526884638,
-1.5488549710885482,
-1.5580267906853473,
-1.5658102956986153,
-1.572177060773733,
-1.5771033169993491,
-1.5805700929984101,
-1.5825633299565705,
-1.583073969646943,
-1.5820980147147412,
-1.5796365606976153,
-1.5756957994753915,
-1.5702869940642508,
-1.5634264248930712,
-1.5551353079213783,
-1.5454396851770147,
-1.5343702885050245,
-1.5219623775252564,
-1.5082555529928428,
-1.4932935469410435,
-1.4771239911581848,
-1.4597981657080141,
-1.4413707293441305,
-1.4218994337931292,
-1.4014448239864945,
-1.3800699264073417,
-1.357839927784128,
-1.3348218464090382,
-1.3110841983837258,
-1.2866966610994375,
-1.2617297362426216,
-1.2362544145812768,
-1.2103418447323449,
-1.1840630080371728,
-1.1574884015815925,
-1.1306877312906858,
-1.1037296169072344
],
[
-1.291593541405085,
-1.3148957598142474,
-1.3375699034041282,
-1.3595486149333942,
-1.3807653906088828,
-1.401154903231696,
-1.4206533258358747,
-1.4391986536419608,
-1.4567310221147405,
-1.473193018900493,
-1.4885299874246434,
-1.5026903199561732,
-1.5156257379905744,
-1.5272915578684407,
-1.5376469396316055,
-1.5466551172225567,
-1.5542836082548628,
-1.5605044017215706,
-1.5652941221638053,
-1.5686341689917294,
-1.5705108298330583,
-1.5709153669787606,
-1.5698440761995907,
-1.567298317418682,
-1.5632845169425624,
-1.5578141411734927,
-1.5509036419477922,
-1.5425743738656228,
-1.5328524841953595,
-1.5217687761480136,
-1.5093585465221615,
-1.4956613989153333,
-1.480721033882098,
-1.464585017590208,
-1.4473045306826278,
-1.428934099193572,
-1.4095313094895703,
-1.3891565093109595,
-1.3678724970742877,
-1.3457442016612051,
-1.3228383549641287,
-1.2992231594831356,
-1.274967953272161,
-1.2501428745159666,
-1.2248185279829578,
-1.199065655543445,
-1.1729548128692937,
-1.1465560543400939,
-1.1199386280742902,
-1.0931706828824905
],
[
-1.2817703036382992,
-1.3048014164286639,
-1.3272071210072878,
-1.3489206625161145,
-1.369876145174949,
-1.390008853141083,
-1.4092555717902688,
-1.4275549072538967,
-1.4448476020149257,
-1.461076844351752,
-1.4761885694252403,
-1.4901317498300264,
-1.502858673476874,
-1.5143252067383668,
-1.524491040875053,
-1.5333199198629193,
-1.540779847864861,
-1.5468432747277179,
-1.551487258041292,
-1.5546936004650815,
-1.5564489612108943,
-1.5567449407630845,
-1.5555781381213416,
-1.5529501800615226,
-1.5488677221261082,
-1.5433424212752431,
-1.5363908803498765,
-1.528034564718051,
-1.5182996916917404,
-1.5072170935126135,
-1.4948220549087248,
-1.48115412641826,
-1.4662569148593567,
-1.4501778524947917,
-1.432967946595471,
-1.4146815112456284,
-1.3953758833543177,
-1.3751111249409713,
-1.3539497138467556,
-1.331956225087536,
-1.3091970051079966,
-1.2857398412198024,
-1.2616536285095472,
-1.2370080364849776,
-1.2118731776910623,
-1.1863192804715743,
-1.1604163679778803,
-1.1342339454356543,
-1.1078406975734232,
-1.081304197995722
],
[
-1.2704426314281434,
-1.2931665993266175,
-1.3152687410892692,
-1.3366830054535739,
-1.3573442047169975,
-1.3771883328341432,
-1.3961528838626938,
-1.4141771686087528,
-1.431202627290602,
-1.4471731360271323,
-1.4620353049637764,
-1.4757387658749712,
-1.488236447128103,
-1.4994848339594258,
-1.5094442120972351,
-1.5180788928710887,
-1.5253574180672906,
-1.5312527429292482,
-1.535742395855455,
-1.538808613516438,
-1.5404384502933903,
-1.5406238611338585,
-1.5393617571217377,
-1.5366540332681884,
-1.5325075682447644,
-1.5269341959979439,
-1.519950649403316,
-1.5115784763355882,
-1.5018439287453016,
-1.4907778255424982,
-1.4784153902894768,
-1.4647960648973064,
-1.4499633007019594,
-1.433964328464111,
-1.416849908990232,
-1.398674066210058,
-1.3794938046657808,
-1.3593688134701496,
-1.3383611588733788,
-1.3165349676417164,
-1.2939561034932372,
-1.2706918388588664,
-1.246810524238735,
-1.2223812574060973,
-1.197473554673608,
-1.172157026380521,
-1.1465010586851918,
-1.1205745036561925,
-1.0944453795486586,
-1.0681805830314977
],
[
-1.2576600931036654,
-1.2800422153950488,
-1.3018069925106523,
-1.3228891748833147,
-1.3432243798242922,
-1.362749406394319,
-1.3814025505499217,
-1.3991239184344222,
-1.4158557356522525,
-1.4315426503530921,
-1.4461320279593886,
-1.459574235397358,
-1.4718229127376228,
-1.482835230217178,
-1.4925721286989666,
-1.5009985417284837,
-1.5080835974677123,
-1.5138007989243665,
-1.518128181047686,
-1.5210484434295524,
-1.5225490575299045,
-1.5226223475367302,
-1.5212655441713259,
-1.5184808109573111,
-1.5142752426848434,
-1.5086608360176483,
-1.5016544324076415,
-1.493277633697986,
-1.4835566910081734,
-1.4725223677021284,
-1.460209777440285,
-1.4466581985071452,
-1.431910865785147,
-1.416014741911973,
-1.3990202693102398,
-1.3809811049142584,
-1.3619538395372055,
-1.3419977039224023,
-1.3211742636037553,
-1.2995471047620992,
-1.2771815133058513,
-1.254144149425868,
-1.230502719875729,
-1.2063256502101747,
-1.1816817591765796,
-1.1566399373977954,
-1.1312688324104374,
-1.1056365420316465,
-1.079810317920907,
-1.0538562810828525
],
[
-1.2434788157916605,
-1.2654858876543995,
-1.2868809737194322,
-1.3075997206680712,
-1.3275786442033235,
-1.3467554402456927,
-1.3650692963300108,
-1.382461201094571,
-1.3988742497238338,
-1.414253943194552,
-1.428548479182672,
-1.4417090325151887,
-1.4536900230972991,
-1.4644493693106093,
-1.4739487249624312,
-1.482153697968835,
-1.489034049074291,
-1.4945638690474965,
-1.4987217329451585,
-1.5014908302017507,
-1.5028590694820294,
-1.5028191574227705,
-1.5013686505888937,
-1.4985099801750104,
-1.4942504491944573,
-1.4886022021119305,
-1.4815821670908678,
-1.4732119712405771,
-1.4635178294586295,
-1.4525304076691854,
-1.4402846614556415,
-1.4268196512743254,
-1.4121783356131434,
-1.3964073436232727,
-1.3795567289018122,
-1.3616797062371682,
-1.3428323732457974,
-1.323073418927686,
-1.3024638212477946,
-1.2810665359110653,
-1.2589461785391216,
-1.236168702477286,
-1.2128010744611109,
-1.1889109503525292,
-1.1645663531174768,
-1.1398353551601095,
-1.11478576705445,
-1.089484834623452,
-1.0639989462093515,
-1.0383933518590949
],
[
-1.2279610738562505,
-1.249561532773377,
-1.270556219496862,
-1.2908817675547648,
-1.3104756804582736,
-1.3292766387894221,
-1.3472248074152526,
-1.3642621407444062,
-1.3803326839130519,
-1.3953828677762732,
-1.4093617955890325,
-1.4222215192878997,
-1.4339173033309178,
-1.4444078741182032,
-1.4536556530997227,
-1.4616269717786674,
-1.4682922669381349,
-1.4736262545544925,
-1.47760808101168,
-1.4802214503954252,
-1.481454726823449,
-1.4813010109555336,
-1.4797581900240142,
-1.4768289609289795,
-1.4725208261511957,
-1.4668460624474728,
-1.4598216625057718,
-1.4514692499486859,
-1.441814968281966,
-1.4308893445873263,
-1.418727128954026,
-1.4053671108295545,
-1.3908519136445334,
-1.3752277692288466,
-1.3585442736835538,
-1.3408541265050173,
-1.3222128548724938,
-1.3026785251074982,
-1.282311443391439,
-1.2611738478870531,
-1.2393295944484266,
-1.2168438381239404,
-1.193782712656238,
-1.170213010163667,
-1.1462018631490418,
-1.121816430924733,
-1.0971235924688656,
-1.072189647636888,
-1.0470800285471296,
-1.0218590228396098
],
[
-1.2111748327240743,
-1.2323388929030534,
-1.2529042209825183,
-1.2728085236016828,
-1.291990377160571,
-1.3103895303849713,
-1.3279472069431792,
-1.3446064060580425,
-1.3603121990296787,
-1.3750120195741213,
-1.3886559458916063,
-1.4011969724054985,
-1.412591269159001,
-1.422798426921729,
-1.4317816861415351,
-1.4395081479781555,
-1.4459489657735136,
-1.4510795154478702,
-1.4548795434604316,
-1.457333291135962,
-1.4584295943341836,
-1.4581619576243625,
-1.4565286023219426,
-1.453532487945341,
-1.449181306857224,
-1.4434874520636098,
-1.4364679583540136,
-1.4281444171743973,
-1.4185428658299029,
-1.4076936518141616,
-1.3956312732543883,
-1.3823941966446593,
-1.3680246532118603,
-1.3525684154181934,
-1.3360745552492603,
-1.318595186066342,
-1.300185189914263,
-1.2809019322713389,
-1.2608049663044374,
-1.2399557287497003,
-1.2184172295774884,
-1.196253737618639,
-1.1735304643280864,
-1.1503132478417388,
-1.1266682394435816,
-1.102661594503092,
-1.0783591698690274,
-1.0538262296155165,
-1.0291271609314303,
-1.0043252018254474
],
[
-1.1931932527769713,
-1.2138930266348114,
-1.2340019039037982,
-1.2534587459175182,
-1.2722032823671783,
-1.2901764089489105,
-1.307320484988445,
-1.323579629016911,
-1.3389000102442783,
-1.3532301338675556,
-1.366521118159788,
-1.378726961313296,
-1.3898047960567113,
-1.3997151301298656,
-1.4084220707833026,
-1.4158935315693864,
-1.4221014198090853,
-1.427021803251411,
-1.4306350545901654,
-1.4329259726637247,
-1.4338838793365714,
-1.4335026912446347,
-1.4317809657783527,
-1.4287219208759914,
-1.4243334284030809,
-1.418627981099985,
-1.4116226332864539,
-1.4033389157175096,
-1.3938027251871825,
-1.3830441896733396,
-1.371097510006276,
-1.358000779223946,
-1.343795780945967,
-1.3285277682551648,
-1.3122452247180039,
-1.294999609302376,
-1.276845087061816,
-1.2578382475482426,
-1.2380378129901095,
-1.2175043383287585,
-1.1962999052425356,
-1.174487812305659,
-1.1521322634270466,
-1.1292980566936208,
-1.106050275703459,
-1.0824539854172888,
-1.0585739344830847,
-1.0344742658989503,
-1.0102182377752569,
-0.9858679558395066
],
[
-1.1740941583813636,
-1.194303764283104,
-1.2139310703404347,
-1.2329161691700241,
-1.2512000191697257,
-1.2687247368746464,
-1.2854338892167338,
-1.3012727836944136,
-1.3161887544325248,
-1.3301314421041366,
-1.3430530656951296,
-1.3549086841200195,
-1.3656564457434128,
-1.3752578239255433,
-1.3836778367922773,
-1.3908852495291493,
-1.3968527576147145,
-1.4015571495398138,
-1.4049794477051116,
-1.4071050263481886,
-1.4079237055221052,
-1.407429820328081,
-1.4056222647940344,
-1.4025045099863747,
-1.3980845961427437,
-1.3923750988163035,
-1.3853930692257899,
-1.3771599492077433,
-1.3677014613661362,
-1.3570474752080866,
-1.345231850240478,
-1.3322922571793683,
-1.3182699785902283,
-1.303209690430787,
-1.2871592261080425,
-1.2701693247855639,
-1.2522933657854303,
-1.2335870910200577,
-1.214108317462046,
-1.1939166417144966,
-1.1730731387796265,
-1.1516400571399148,
-1.1296805122634395,
-1.1072581806238992,
-1.0844369962864686,
-1.0612808520538861,
-1.0378533070937914,
-1.0142173028794161,
-0.9904348891724452,
-0.9665669616605032
],
[
-1.153959477444262,
-1.1736551330221638,
-1.192777809690043,
-1.2112689026644585,
-1.2290706692057924,
-1.2461265153321461,
-1.2623812823637974,
-1.2777815313398877,
-1.292275823323794,
-1.3058149936056298,
-1.3183524178200616,
-1.3298442680253095,
-1.3402497568348757,
-1.3495313677570873,
-1.3576550699785837,
-1.3645905159259004,
-1.370311220053513,
-1.3747947174362447,
-1.3780227008876125,
-1.3799811354822924,
-1.3806603495289114,
-1.3800551012173012,
-1.3781646203504367,
-1.3749926247637658,
-1.3705473112315845,
-1.3648413208596264,
-1.3578916791631301,
-1.3497197112282748,
-1.3403509325501668,
-1.3298149163304416,
-1.3181451382002525,
-1.3053787995080364,
-1.291556630474407,
-1.2767226746670797,
-1.2609240563856483,
-1.2442107326678302,
-1.2266352317345526,
-1.2082523797799107,
-1.189119018082943,
-1.1692937124707985,
-1.148836457196884,
-1.1278083753128936,
-1.1062714176102852,
-1.084288062185173,
-1.0619210166411093,
-1.039232924887654,
-1.0162860804197376,
-0.9931421478746605,
-0.9698618945613418,
-0.9465049335413644
],
[
-1.1328746571362736,
-1.1520347576618946,
-1.1706318847622357,
-1.1886088020588055,
-1.205909130335534,
-1.2224776282834409,
-1.2382604730040556,
-1.2532055383507006,
-1.2672626691625273,
-1.280383949438936,
-1.292523962512103,
-1.3036400413031097,
-1.3136925067925374,
-1.3226448928993089,
-1.3304641560416672,
-1.3371208677508575,
-1.3425893888206977,
-1.3468480236037994,
-1.3498791532066412,
-1.3516693464897567,
-1.3522094479445719,
-1.3514946416932987,
-1.349524491041186,
-1.3463029531994883,
-1.341838368990913,
-1.3361434275451858,
-1.3292351061886882,
-1.3211345859270174,
-1.311867143110793,
-1.301462018061189,
-1.28995226161067,
-1.2773745606844824,
-1.2637690442079133,
-1.2491790707716681,
-1.2336509996214824,
-1.2172339466570936,
-1.1999795272287916,
-1.1819415876061328,
-1.1631759270622473,
-1.1437400125680919,
-1.1236926881235818,
-1.103093880766765,
-1.0820043052981478,
-1.0604851697352096,
-1.0385978834726426,
-1.0164037700674642,
-0.9939637864958584,
-0.9713382506413148,
-0.9485865786725597,
-0.9257670338561556
],
[
-1.110928061599606,
-1.1295332430295209,
-1.1475860991138438,
-1.165030821971217,
-1.1818124548786182,
-1.19787716674463,
-1.2131725262711095,
-1.2276477739219114,
-1.2412540897941176,
-1.2539448554807004,
-1.2656759080239939,
-1.2764057840871248,
-1.2860959525156037,
-1.2947110335234888,
-1.3022190028175482,
-1.3085913790681534,
-1.313803393246477,
-1.3178341384730268,
-1.320666699161635,
-1.3222882583943298,
-1.322690182624847,
-1.3218680829801912,
-1.3198218526091108,
-1.3165556797118025,
-1.3120780360748072,
-1.3064016411270418,
-1.2995434017252991,
-1.2915243280684374,
-1.2823694263269751,
-1.2721075687569927,
-1.2607713422424032,
-1.2483968763759146,
-1.2350236523448956,
-1.2206942940322367,
-1.205454342872857,
-1.1893520181225279,
-1.1724379642960858,
-1.1547649876160344,
-1.136387783379299,
-1.11736265619902,
-1.0977472351094333,
-1.0776001855350197,
-1.0569809201203126,
-1.0359493103943236,
-1.0145654012039893,
-0.9928891297950067,
-0.9709800513467689,
-0.9488970726818238,
-0.9266981957704736,
-0.9044402725391254
],
[
-1.0882103575624058,
-1.1062435440287945,
-1.1237356518447341,
-1.1406323558437474,
-1.1568801749165882,
-1.1724267399366808,
-1.1872210613053564,
-1.2012137942769976,
-1.2143575002020943,
-1.2266069018203514,
-1.2379191307468116,
-1.248253965321709,
-1.2575740570393865,
-1.2658451438330927,
-1.2730362485702895,
-1.2791198612069108,
-1.2840721031579492,
-1.2878728725650026,
-1.2905059692779042,
-1.2919591985160406,
-1.2922244523341195,
-1.2912977681854163,
-1.2891793640513542,
-1.2858736497879235,
-1.2813892145251238,
-1.275738790143529,
-1.268939191040301,
-1.2610112305836927,
-1.2519796148383877,
-1.241872814322086,
-1.2307229147248262,
-1.2185654476848988,
-1.2054392028673144,
-1.1913860227310833,
-1.176450581498797,
-1.1606801499549335,
-1.1441243477968892,
-1.126834885344202,
-1.108865296476018,
-1.0902706647141653,
-1.071107344398903,
-1.0514326789164652,
-1.031304717932008,
-1.0107819355587973,
-0.989922951354955,
-0.9687862559834275,
-0.9474299432999476,
-0.925911450548531,
-0.9042873082456788,
-0.882612901224133
],
[
-1.0648138938095384,
-1.082260329477322,
-1.0991774861024068,
-1.1155125694549684,
-1.1312136211940702,
-1.1462297799952852,
-1.160511542231494,
-1.1740110204102474,
-1.18668219754999,
-1.1984811756722948,
-1.209366416598415,
-1.2192989732661204,
-1.228242709826978,
-1.2361645088448396,
-1.2430344639928999,
-1.248826056738848,
-1.2535163156145832,
-1.257085956787861,
-1.2595195047870116,
-1.2608053923753662,
-1.2609360387278412,
-1.259907905226851,
-1.2577215283667538,
-1.2543815294336733,
-1.249896600809098,
-1.2442794689293089,
-1.237546834116575,
-1.2297192876804228,
-1.2208212068662094,
-1.2108806284020224,
-1.1999291015617664,
-1.1880015218206155,
-1.1751359463271671,
-1.161373392553287,
-1.1467576216063589,
-1.1313349077984234,
-1.1151537961613998,
-1.0982648496764629,
-1.0807203880480556,
-1.0625742198984567,
-1.0438813702870817,
-1.0246978054696523,
-1.0050801568061667,
-0.9850854457035371,
-0.9647708114393132,
-0.9441932436577378,
-0.9234093212592935,
-0.9024749593208843,
-0.8814451655869053,
-0.8603738079629792
],
[
-1.0408320804150886,
-1.0576793457758171,
-1.0740096374948669,
-1.0897717344234046,
-1.104915242099612,
-1.1193908468554208,
-1.133150569412075,
-1.1461480162127633,
-1.1583386267205311,
-1.1696799149052344,
-1.1801317031547365,
-1.189656346873124,
-1.198218948072393,
-1.2057875563237288,
-1.2123333555098041,
-1.2178308349099316,
-1.222257943254763,
-1.2255962245056216,
-1.2278309342445355,
-1.228951135703322,
-1.2289497746124793,
-1.2278237322116217,
-1.2255738559312543,
-1.222204967429196,
-1.217725847842202,
-1.2121492002925436,
-1.205491589868723,
-1.1977733614773192,
-1.189018536137383,
-1.1792546864581332,
-1.1685127922031975,
-1.1568270769987297,
-1.1442348273868956,
-1.1307761955590143,
-1.1164939872228672,
-1.101433436165142,
-1.0856419671617652,
-1.069168948965135,
-1.0520654391574225,
-1.0343839227026916,
-1.0161780460573602,
-0.997502348708416,
-0.9784119940019246,
-0.9589625011010434,
-0.9392094798734476,
-0.9192083704534193,
-0.8990141891547007,
-0.8786812823274416,
-0.8582630896573283,
-0.8378119182984246
],
[
-1.0163587735252562,
-1.0325967863428311,
-1.0483305884873348,
-1.0635105679161556,
-1.0780879290756884,
-1.092014939791379,
-1.1052451775847543,
-1.1177337737119393,
-1.1294376531992323,
-1.1403157691475123,
-1.1503293295889838,
-1.1594420152071814,
-1.1676201862742785,
-1.1748330772184326,
-1.1810529773077914,
-1.186255396026396,
-1.1904192118198418,
-1.193526803004396,
-1.1955641597612507,
-1.1965209762766413,
-1.1963907222373296,
-1.1951706930480948,
-1.1928620383018138,
-1.1894697682019504,
-1.1850027378100214,
-1.1794736091652722,
-1.1728987914985591,
-1.1652983599355728,
-1.1566959532543257,
-1.1471186514265554,
-1.1365968338307206,
-1.12516401917402,
-1.1128566883008746,
-1.099714091194234,
-1.0857780395926162,
-1.0710926867489328,
-1.0557042959459122,
-1.0396609994565416,
-1.0230125496958322,
-1.0058100643518968,
-0.9881057673096381,
-0.969952727189168,
-0.9514045953135668,
-0.93251534489704,
-0.9133390132054187,
-0.8939294483868951,
-0.8743400626027149,
-0.8546235930061474,
-0.8348318720245249,
-0.8150156082946269
],
[
-0.9914876712951404,
-1.0071086725579097,
-1.0222386346623773,
-1.0368295845757263,
-1.0508343546008327,
-1.064206821881246,
-1.0769021472740183,
-1.0888770119324154,
-1.1000898499226694,
-1.1105010751958124,
-1.120073301247593,
-1.128771551826724,
-1.1365634610942184,
-1.1434194616942073,
-1.149312959269059,
-1.1542204920383319,
-1.1581218741614203,
-1.1610003217168847,
-1.1628425602564019,
-1.1636389130268898,
-1.1633833690994528,
-1.1620736307969077,
-1.1597111399713955,
-1.1563010828483566,
-1.151852373321333,
-1.1463776147520013,
-1.1398930404998349,
-1.1324184335741387,
-1.1239770259662123,
-1.1145953783794174,
-1.1043032412283624,
-1.0931333979237432,
-1.0811214915951637,
-1.0683058365291749,
-1.054727215712632,
-1.0404286659711905,
-1.0254552522784868,
-1.0098538328824438,
-0.9936728169507458,
-0.9769619164773106,
-0.9597718942154199,
-0.942154309410953,
-0.9241612631010425,
-0.9058451447197441,
-0.8872583817134347,
-0.8684531938152775,
-0.8494813535609659,
-0.8303939545480143,
-0.8112411888491435,
-0.7920721348879187
],
[
-0.9663117263330282,
-0.9813102516992401,
-0.995831268459225,
-1.0098284664074428,
-1.0232563286094325,
-1.0360703633807602,
-1.048227335577595,
-1.0596854955895432,
-1.0704048044085783,
-1.0803471531454036,
-1.0894765753767839,
-1.097759450734404,
-1.1051646981876573,
-1.111663957529319,
-1.1172317576439186,
-1.1218456702233897,
-1.1254864476925124,
-1.1281381442170029,
-1.1297882187889061,
-1.1304276195160519,
-1.1300508483836031,
-1.1286560059047521,
-1.1262448152330045,
-1.1228226254687186,
-1.1183983940560598,
-1.1129846483316335,
-1.1065974264511775,
-1.0992561980841347,
-1.0909837654260515,
-1.0818061452339751,
-1.0717524327387722,
-1.0608546484290968,
-1.0491475688332306,
-1.0366685425458604,
-1.0234572928559564,
-1.0095557084282032,
-0.9950076235730329,
-0.9798585897085372,
-0.9641556396707812,
-0.9479470465669546,
-0.9312820788881642,
-0.9142107536054217,
-0.8967835889636901,
-0.8790513586649631,
-0.8610648490928061,
-0.8428746211780934,
-0.8245307784397135,
-0.8060827426555794,
-0.7875790385294447,
-0.7690670886188892
],
[
-0.9409225796962286,
-0.9552954170438048,
-0.9692045856816122,
-0.9826054560351297,
-0.9954541788718952,
-1.007707909640682,
-1.0193250320691678,
-1.0302653794602468,
-1.040490452111365,
-1.0499636292794003,
-1.0586503741259956,
-1.0665184301050152,
-1.073538007294944,
-1.0796819572344403,
-1.0849259348885136,
-1.089248546455528,
-1.092631481820696,
-1.0950596305692286,
-1.0965211805908364,
-1.0970076984358046,
-1.0965141907202214,
-1.0950391460227475,
-1.0925845568662784,
-1.089155921533424,
-1.0847622256234029,
-1.0794159034181678,
-1.0731327792856842,
-1.0659319895067418,
-1.0578358850668363,
-1.0488699161049888,
-1.0390624988553918,
-1.0284448660539556,
-1.0170509019089837,
-1.0049169628519274,
-0.9920816853894585,
-0.9785857824709108,
-0.9644718298646124,
-0.9497840441021349,
-0.9345680536004064,
-0.9188706646076632,
-0.902739623640135,
-0.8862233780820986,
-0.8693708366127169,
-0.8522311310990707,
-0.834853381556618,
-0.8172864657263765,
-0.7995787947533801,
-0.7817780963741113,
-0.7639312069327295,
-0.7460838734481275
],
[
-0.9154100211188807,
-0.9291561549246311,
-0.9424527196803636,
-0.9552567783400825,
-0.9675261604559162,
-0.9792196787906569,
-0.9902973451389303,
-1.0007205838473643,
-1.0104524415094038,
-1.0194577913091651,
-1.0277035305012738,
-1.0351587695400895,
-1.041795011412154,
-1.0475863197798412,
-1.052509474611849,
-1.0565441140567429,
-1.0596728614087592,
-1.0618814361196007,
-1.0631587479251765,
-1.0634969732811264,
-1.062891613434275,
-1.0613415335977494,
-1.0588489828438863,
-1.05541959447992,
-1.0510623668252403,
-1.0457896244641953,
-1.039616960203506,
-1.032563158116703,
-1.0246500982081614,
-1.0159026433746519,
-1.006348509481545,
-0.9960181195023754,
-0.9849444427931728,
-0.9731628206855779,
-0.9607107796841919,
-0.9476278336429111,
-0.9339552763713524,
-0.9197359661852271,
-0.9050141039631353,
-0.8898350063064021,
-0.8742448754180535,
-0.8582905673218232,
-0.8420193600323189,
-0.8254787232634525,
-0.8087160912244158,
-0.7917786400014282,
-0.7747130709599572,
-0.7575654015269427,
-0.7403807646267139,
-0.723203217948864
],
[
-0.8898614797409026,
-0.9029820231175245,
-0.9156673076839544,
-0.9278760950547552,
-0.9395678989355225,
-0.9507031939483375,
-0.9612436236193659,
-0.9711522060697699,
-0.9803935359373714,
-0.9889339810558466,
-0.9967418724309132,
-1.0037876860791126,
-1.0100442153344216,
-1.015486732280849,
-1.0200931370350967,
-1.0238440936818254,
-1.0267231517544253,
-1.028716852255785,
-1.0298148173253454,
-1.0300098227798906,
-1.029297852884786,
-1.0276781368485945,
-1.0251531666758147,
-1.0217286961585565,
-1.0174137209368026,
-1.012220439707055,
-1.0061641968091088,
-0.9992634065689497,
-0.9915394599207982,
-0.9830166139717293,
-0.9737218653066011,
-0.9636848079579556,
-0.9529374770838019,
-0.9415141795046273,
-0.9294513123485594,
-0.9167871711393853,
-0.9035617487353537,
-0.8898165265867034,
-0.8755942598261719,
-0.8609387577390218,
-0.8458946611771978,
-0.8305072184860746,
-0.8148220615020192,
-0.7988849831549589,
-0.7827417181727586,
-0.7664377283340525,
-0.7500179936539637,
-0.7335268108136772,
-0.717007600061126,
-0.7005027217170332
],
[
-0.8643615491552801,
-0.8768596644657549,
-0.8889369932746065,
-0.9005539963953595,
-0.9116718715160614,
-0.922252754202949,
-0.9322599180232973,
-0.9416579723797833,
-0.9504130566359709,
-0.9584930291124225,
-0.9658676495457217,
-0.9725087536284858,
-0.9783904182872579,
-0.9834891164067908,
-0.9877838597734263,
-0.9912563290865257,
-0.9938909899746491,
-0.9956751940517109,
-0.9965992641567318,
-0.9966565630381521,
-0.9958435448688394,
-0.9941597891097326,
-0.9916080163772426,
-0.9881940861107517,
-0.9839269759803835,
-0.9788187431202755,
-0.9728844674173523,
-0.9661421772286919,
-0.9586127580404826,
-0.9503198447169395,
-0.941289698116975,
-0.9315510669786436,
-0.9211350360851777,
-0.9100748618306816,
-0.8984057963972559,
-0.8861649018375974,
-0.873390855427221,
-0.8601237477077192,
-0.8464048746865258,
-0.8322765256890745,
-0.8177817683759525,
-0.8029642324405791,
-0.7878678934922767,
-0.7725368586055803,
-0.7570151549797624,
-0.7413465231032896,
-0.7255742157571232,
-0.7097408041190479,
-0.6938879921496766,
-0.6780564403502802
],
[
-0.8389915501055499,
-0.8508723591531481,
-0.8623469684969431,
-0.873377533294771,
-0.8839269297084367,
-0.8939589480758944,
-0.9034384851632496,
-0.9123317341403102,
-0.9206063709116519,
-0.9282317354355989,
-0.9351790066763701,
-0.9414213698600709,
-0.9469341747431257,
-0.9516950836520932,
-0.9556842081161803,
-0.9588842329877972,
-0.9612805270315798,
-0.9628612390577331,
-0.9636173787804876,
-0.9635428816959684,
-0.9626346573947945,
-0.9608926208521023,
-0.9583197063701774,
-0.9549218639852296,
-0.9507080382886431,
-0.9456901297529515,
-0.9398829387923805,
-0.9333040929256896,
-0.9259739575438234,
-0.9179155309151857,
-0.9091543241859112,
-0.8997182272500068,
-0.8896373614735754,
-0.8789439203574161,
-0.867671999312124,
-0.8558574157986001,
-0.8435375211538498,
-0.8307510054765384,
-0.8175376969885334,
-0.8039383573173075,
-0.7899944741594052,
-0.7757480527872708,
-0.7612414078506305,
-0.7465169568997229,
-0.7316170170212777,
-0.7165836059299272,
-0.7014582487982755,
-0.6862817920390114,
-0.6710942251730665,
-0.6559345118298993
],
[
-0.8138291336543215,
-0.8250996185116972,
-0.8359785585488199,
-0.8464297932468774,
-0.8564178666231226,
-0.8659082125859677,
-0.87486733933423,
-0.8832630114956899,
-0.8910644286893389,
-0.8982423991966125,
-0.9047695074398134,
-0.9106202739909334,
-0.9157713068711277,
-0.920201442950077,
-0.9238918783150286,
-0.926826286551083,
-0.9289909239566685,
-0.9303747208104505,
-0.9309693579073821,
-0.9307693276912377,
-0.9297719794278205,
-0.9279775479859411,
-0.9253891659210669,
-0.922012858687982,
-0.917857522942552,
-0.9129348880274587,
-0.9072594608711642,
-0.9008484546620521,
-0.8937217017893317,
-0.8859015516675485,
-0.8774127541812091,
-0.8682823295988347,
-0.8585394259106525,
-0.8482151646400341,
-0.8373424762647987,
-0.825955926459792,
-0.8140915344360294,
-0.8017865847036215,
-0.7890794336252198,
-0.7760093121535753,
-0.7626161261608592,
-0.7489402557686032,
-0.7350223550757058,
-0.7209031536581141,
-0.7066232611780167,
-0.6922229763931519,
-0.6777421017988651,
-0.6632197650675438,
-0.6486942483729401,
-0.6342028266015589
],
[
-0.7889479271146937,
-0.7996168227071847,
-0.8099088514478804,
-0.8197895222042669,
-0.8292250313723201,
-0.8381824404520305,
-0.8466298526351196,
-0.8545365871514917,
-0.861873350111051,
-0.8686124005789492,
-0.8747277106352347,
-0.8801951181944444,
-0.8849924713968103,
-0.8890997634303517,
-0.8924992567018436,
-0.8951755953441404,
-0.8971159051269773,
-0.8983098799275524,
-0.8987498540151394,
-0.898430859509723,
-0.8973506684873359,
-0.8955098193231872,
-0.8929116269867832,
-0.8895621771297629,
-0.8854703039358967,
-0.8806475518322954,
-0.8751081212901034,
-0.868868799070437,
-0.8619488733958244,
-0.8543700346476594,
-0.8461562623049398,
-0.8373336989477138,
-0.8279305122491253,
-0.8179767459716937,
-0.8075041610656903,
-0.7965460680392858,
-0.7851371518309905,
-0.7733132904641854,
-0.7611113688008768,
-0.7485690887369185,
-0.7357247771937243,
-0.7226171932619296,
-0.7092853358406982,
-0.6957682530927151,
-0.6821048549997254,
-0.6683337302573203,
-0.6544929686911919,
-0.6406199903109694,
-0.626751382042909,
-0.6129227431000095
],
[
-0.7644172244974199,
-0.7744949040934236,
-0.7842103745008854,
-0.7935307943912998,
-0.8024239924757591,
-0.8108586373604165,
-0.8188044063859461,
-0.8262321522486707,
-0.8331140661919914,
-0.8394238365586315,
-0.8451368015071273,
-0.850230094720067,
-0.8546827829668089,
-0.858475994429569,
-0.8615930367586712,
-0.8640195038898949,
-0.8657433707337892,
-0.8667550749328551,
-0.867047584976901,
-0.8666164540687769,
-0.8654598592411473,
-0.8635786253389467,
-0.8609762336005284,
-0.8576588146921882,
-0.8536351261743947,
-0.8489165145025603,
-0.843516861789218,
-0.8374525176768035,
-0.8307422167896297,
-0.8234069823488845,
-0.815470016644414,
-0.8069565791605642,
-0.7978938532494124,
-0.7883108023324036,
-0.7782380166898106,
-0.7677075519658951,
-0.7567527605754379,
-0.745408117244014,
-0.733709039949556,
-0.7216917075561771,
-0.7093928754427622,
-0.6968496904285292,
-0.6840995062857134,
-0.6711797011060694,
-0.6581274977533411,
-0.644979788588815,
-0.6317729656020847,
-0.6185427570149986,
-0.6053240713542182,
-0.5921508499077655
],
[
-0.7403017226852239,
-0.7498000774704615,
-0.758950818834005,
-0.7677227313124396,
-0.7760852515704417,
-0.7840086306164936,
-0.7914640949781833,
-0.7984240056854794,
-0.8048620139022221,
-0.8107532120483515,
-0.8160742792682781,
-0.8208036201243959,
-0.8249214954289772,
-0.8284101441724679,
-0.8312538955611988,
-0.8334392702423684,
-0.8349550698683501,
-0.8357924542352544,
-0.8359450053215607,
-0.8354087776506629,
-0.8341823345054551,
-0.8322667696325997,
-0.8296657141878211,
-0.8263853287903535,
-0.8224342806733179,
-0.81782370603622,
-0.8125671578246318,
-0.8066805392793399,
-0.8001820237115627,
-0.7930919610711206,
-0.785432771979584,
-0.7772288299993269,
-0.7685063330011606,
-0.7592931645768162,
-0.7496187465172603,
-0.7395138834429089,
-0.7290106007266416,
-0.7181419768946776,
-0.706941971723434,
-0.6954452512722741,
-0.6836870111024079,
-0.6717027989311665,
-0.6595283379586273,
-0.6471993520802901,
-0.6347513941656808,
-0.6222196785388295,
-0.609638918743149,
-0.5970431716110274,
-0.5844656885882361,
-0.5719387751858627
],
[
-0.7166613040093562,
-0.725593617932136,
-0.7341928126789211,
-0.7424292706592615,
-0.7502740081353988,
-0.7576988298981093,
-0.7646764828814678,
-0.7711808076151337,
-0.77718688640546,
-0.7826711871393832,
-0.7876117016178686,
-0.791988077348774,
-0.7957817417622608,
-0.7989760178552171,
-0.801556230324284,
-0.8035098013095946,
-0.8048263349427897,
-0.8054976899726106,
-0.8055180398287592,
-0.8048839195788673,
-0.8035942593335687,
-0.8016504037597315,
-0.799056117470981,
-0.7958175761765737,
-0.7919433435833843,
-0.7874443341601033,
-0.7823337619865495,
-0.7766270760231264,
-0.770341882244764,
-0.7634978531890673,
-0.7561166255687898,
-0.748221686693128,
-0.7398382505297836,
-0.7309931243193526,
-0.7217145667246582,
-0.7120321385594064,
-0.7019765471924968,
-0.6915794857659728,
-0.680873468395618,
-0.6698916625433768,
-0.6586677197600079,
-0.6472356059946764,
-0.6356294326557278,
-0.6238832895838924,
-0.6120310810660564,
-0.6001063659749569,
-0.5881422030683194,
-0.5761710024207136,
-0.5642243838935199,
-0.5523330434736988
],
[
-0.6935508653793656,
-0.7019316864509967,
-0.7099937435592236,
-0.7177089852564688,
-0.7250499753670165,
-0.7319900402410839,
-0.7385034149308555,
-0.7445653872366792,
-0.7501524385651028,
-0.755242380543429,
-0.7598144863482349,
-0.7638496157278108,
-0.7673303327307824,
-0.7702410151950575,
-0.7725679551024872,
-0.774299448964836,
-0.7754258774753685,
-0.7759397737369889,
-0.7758358794617557,
-0.7751111886269331,
-0.773764978168759,
-0.7717988253957849,
-0.7692166119081213,
-0.7660245139160442,
-0.7622309789602293,
-0.7578466891452013,
-0.7528845111063658,
-0.7473594330381111,
-0.7412884892148153,
-0.7346906725371557,
-0.7275868357318291,
-0.7199995819227191,
-0.7119531453747634,
-0.7034732632874907,
-0.694587039582634,
-0.6853228016887716,
-0.6757099513750515,
-0.6657788107252794,
-0.6555604643726746,
-0.6450865991342336,
-0.6343893421917696,
-0.6235010989643924,
-0.6124543918045467,
-0.6012817006270516,
-0.5900153065482086,
-0.5786871395704491,
-0.5673286312977408,
-0.5559705736087173,
-0.5446429841489601,
-0.5333749794318319
],
[
-0.6710201936118202,
-0.6788652028307034,
-0.6864056289911993,
-0.6936149516446921,
-0.7004672467860644,
-0.7069373268209389,
-0.7130008794415928,
-0.7186346044085863,
-0.7238163472293618,
-0.7285252287284223,
-0.7327417695163245,
-0.7364480083867047,
-0.7396276137018405,
-0.7422659868677064,
-0.7443503570488171,
-0.7458698663310831,
-0.7468156446068778,
-0.7471808735300605,
-0.7469608389691079,
-0.746152971473084,
-0.744756874357083,
-0.7427743391101533,
-0.7402093479285959,
-0.7370680632799653,
-0.7333588045070282,
-0.7290920115853559,
-0.7242801962520254,
-0.7189378808250998,
-0.7130815251330227,
-0.7067294420688828,
-0.69990170237561,
-0.6926200293537098,
-0.6849076842622344,
-0.6767893432555434,
-0.6682909667623419,
-0.6594396622688532,
-0.6502635415143276,
-0.640791573143932,
-0.6310534318911742,
-0.6210793453791532,
-0.6108999396370143,
-0.600546084425119,
-0.5900487394496668,
-0.5794388025251624,
-0.568746960711519,
-0.558003545412191,
-0.5472383923710961,
-0.5364807074497937,
-0.5257589390032302,
-0.5151006576029742
],
[
-0.6491138861235067,
-0.6564397651637838,
-0.6634750348091533,
-0.6701946673823821,
-0.6765742126308836,
-0.6825899305575159,
-0.6882189231503477,
-0.6934392640564228,
-0.6982301252394646,
-0.7025718996651251,
-0.7064463190698609,
-0.7098365658909472,
-0.7127273784653999,
-0.7151051486445879,
-0.7169580110187963,
-0.7182759230016106,
-0.7190507350872989,
-0.7192762506648334,
-0.718948274849187,
-0.7180646518733648,
-0.7166252906725268,
-0.7146321783836198,
-0.7120893815793711,
-0.7090030351532415,
-0.7053813188711195,
-0.7012344217050759,
-0.6965744941634578,
-0.6914155889289086,
-0.6857735902106114,
-0.6796661323081814,
-0.6731125079712549,
-0.6661335672200573,
-0.6587516073672887,
-0.6509902550497452,
-0.6428743411386073,
-0.6344297694496054,
-0.6256833802179125,
-0.6166628093371826,
-0.6073963443873709,
-0.5979127784916902,
-0.5882412630491671,
-0.5784111603858518,
-0.5684518973548797,
-0.5583928208936142,
-0.5482630565152843,
-0.5380913706733492,
-0.5279060378898077,
-0.517734713484371,
-0.507604312680585,
-0.497540896798286
],
[
-0.6278713157049176,
-0.6346956144717657,
-0.6412430397535966,
-0.6474900156666313,
-0.6534135245983461,
-0.6589912330661981,
-0.6642016164691302,
-0.669024081823894,
-0.6734390875738405,
-0.6774282595617359,
-0.680974502270503,
-0.6840621044566088,
-0.6866768383300853,
-0.6888060514727216,
-0.6904387507315899,
-0.6915656773784022,
-0.6921793728858451,
-0.6922742347394605,
-0.6918465617772763,
-0.6908945886285192,
-0.6894185089066561,
-0.6874204868998969,
-0.6849046575932711,
-0.681877114949592,
-0.6783458884711023,
-0.6743209081583743,
-0.669813958077223,
-0.6648386188369262,
-0.6594101993730849,
-0.6535456585150043,
-0.647263516899699,
-0.6405837598716613,
-0.6335277320786296,
-0.6261180245380134,
-0.6183783550057853,
-0.6103334425289464,
-0.6020088771036756,
-0.5934309853936357,
-0.5846266934863147,
-0.5756233876796332,
-0.5664487742962301,
-0.5571307395189402,
-0.5476972102280743,
-0.5381760167995452,
-0.5285947587928733,
-0.5189806744201683,
-0.5093605146417649,
-0.4997604226819098,
-0.4902058196993607,
-0.48072129728371615
],
[
-0.6073266376754166,
-0.6136676427801101,
-0.6197452445260502,
-0.6255372754284416,
-0.6310221070403843,
-0.6361787690164608,
-0.640987067066302,
-0.6454276989361482,
-0.6494823675526653,
-0.6531338904674245,
-0.6563663047526131,
-0.6591649665187745,
-0.6615166442536174,
-0.6634096052170527,
-0.6648336941713896,
-0.6657804037767152,
-0.6662429360395022,
-0.6662162542669299,
-0.6656971250497027,
-0.6646841498716745,
-0.6631777860245811,
-0.6611803565899488,
-0.6586960493368941,
-0.6557309044732408,
-0.6522927912772756,
-0.648391373727568,
-0.6440380653378044,
-0.6392459734914453,
-0.6340298336564965,
-0.6284059339427457,
-0.622392030541771,
-0.6160072546629252,
-0.6092720116457961,
-0.6022078729904488,
-0.5948374621006869,
-0.5871843345819371,
-0.5792728539738521,
-0.5711280638279103,
-0.562775557062005,
-0.5542413435370303,
-0.5455517168047926,
-0.5367331209722208,
-0.5278120186139603,
-0.5188147606442672,
-0.5097674590299581,
-0.5006958631894636,
-0.4916252408792466,
-0.4825802643185223,
-0.47358490224702304,
-0.46466231854908896
],
[
-0.5875088373464581,
-0.5933854424961749,
-0.5990118231211066,
-0.6043671746561061,
-0.609431212313578,
-0.6141842835399558,
-0.6186074793626373,
-0.6226827438102372,
-0.6263929805858702,
-0.6297221561775256,
-0.6326553986015563,
-0.6351790909949346,
-0.6372809592991365,
-0.6389501533132274,
-0.6401773204356502,
-0.640954671463108,
-0.6412760378703584,
-0.6411369200562439,
-0.640534526108327,
-0.6394678007104473,
-0.6379374438937118,
-0.6359459194111277,
-0.6334974525985091,
-0.6305980176686057,
-0.6272553144707966,
-0.6234787348342787,
-0.6192793186975712,
-0.6146697003105466,
-0.6096640448761529,
-0.6042779760767519,
-0.5985284950037252,
-0.592433891077956,
-0.5860136456122964,
-0.5792883287245312,
-0.572279490360067,
-0.5650095462271747,
-0.5575016594836166,
-0.549779619041644,
-0.5418677153783734,
-0.5337906147503434,
-0.5255732327145353,
-0.5172406078534048,
-0.5088177765885996,
-0.5003296499473147,
-0.49180089311693725,
-0.48325580858816125,
-0.4747182236445791,
-0.4662113829084083,
-0.45775784659809043,
-0.4493793950946412
],
[
-0.5684418153868585,
-0.5738733946180791,
-0.5790676138981727,
-0.5840049843445615,
-0.5886665176160684,
-0.593033831959974,
-0.5970892571531472,
-0.6008159375637695,
-0.6041979325575699,
-0.6072203134770258,
-0.609869256433726,
-0.6121321301731053,
-0.6139975782969566,
-0.6154555951624191,
-0.6164975948162733,
-0.6171164723700799,
-0.6173066572745849,
-0.6170641580104416,
-0.6163865977761488,
-0.6152732408225655,
-0.6137250091558237,
-0.6117444894062035,
-0.6093359297388037,
-0.6065052267618966,
-0.6032599024698538,
-0.5996090713386746,
-0.5955633977726071,
-0.5911350441792982,
-0.5863376100275317,
-0.5811860623151408,
-0.5756966579443394,
-0.5698868585668079,
-0.5637752385207452,
-0.5573813865361319,
-0.5507258019321314,
-0.5438297860714248,
-0.5367153298699249,
-0.5294049981864822,
-0.5219218119356421,
-0.5142891287771039,
-0.5065305232382711,
-0.4986696671211731,
-0.4907302110322367,
-0.48273566785313204,
-0.4747092989434787,
-0.46667400383197005,
-0.4586522141119168,
-0.45066579221079783,
-0.44273593565175834,
-0.43488308736867154
],
[
-0.550144508396907,
-0.5551507930083053,
-0.5599322475546467,
-0.5644706501613989,
-0.5687482603326471,
-0.5727479187946495,
-0.5764531462400933,
-0.5798482402419458,
-0.5829183696037465,
-0.5856496654178522,
-0.588029308114666,
-0.5900456098042678,
-0.5916880912370523,
-0.5929475527418739,
-0.5938161385385572,
-0.5942873938661944,
-0.5943563144190521,
-0.5940193876377129,
-0.5932746254638006,
-0.5921215882317022,
-0.5905613994395121,
-0.588596751213296,
-0.5862319003530296,
-0.5834726549244236,
-0.5803263514376078,
-0.5768018227304511,
-0.57290935675044,
-0.5686606465036821,
-0.5640687315120068,
-0.5591479311885603,
-0.5539137706080102,
-0.5483828992088164,
-0.5425730030213947,
-0.5365027110667836,
-0.5301914966151688,
-0.5236595740318623,
-0.5169277919697242,
-0.5100175236912777,
-0.5029505553206985,
-0.4957489728353417,
-0.48843504860849063,
-0.48103112830958755,
-0.47355951895550646,
-0.46604237888666034,
-0.4585016104151665,
-0.45095875585932044,
-0.4434348976396552,
-0.4359505630673912,
-0.42852563440664565,
-0.4211792647379641
],
[
-0.5326310417577669,
-0.5372320017199282,
-0.5416203089108816,
-0.5457789586635572,
-0.549691408647075,
-0.553341672719577,
-0.5567144136912172,
-0.5597950343072858,
-0.56256976575988,
-0.5650257530413183,
-0.5671511364637745,
-0.5689351286873534,
-0.570368086623032,
-0.5714415776073885,
-0.5721484392826734,
-0.5724828326582365,
-0.5724402878772736,
-0.5720177422659395,
-0.5712135702995096,
-0.5700276051820521,
-0.5684611518013108,
-0.5665169908886333,
-0.5641993742840902,
-0.5615140112787641,
-0.5584680460787731,
-0.5550700265082389,
-0.5513298641403301,
-0.5472587861160078,
-0.542869278978415,
-0.5381750249163083,
-0.5331908308718211,
-0.5279325510255964,
-0.5224170032252813,
-0.5166618799710438,
-0.510685654613684,
-0.5045074834566301,
-0.49814710448233385,
-0.4916247334460213,
-0.4849609580952536,
-0.4781766312821775,
-0.471292763736703,
-0.46433041726315794,
-0.45731059911039423,
-0.45025415824605575,
-0.44318168424003296,
-0.43611340943040083,
-0.4290691150077392,
-0.4220680416111631,
-0.41512880498215043,
-0.40826931717090614
],
[
-0.5159109116300481,
-0.520126642166454,
-0.5241415292161595,
-0.5279397346934848,
-0.5315058639715335,
-0.5348250539625665,
-0.5378830601206666,
-0.5406663417164002,
-0.5431621447320552,
-0.5453585817309249,
-0.5472447080651182,
-0.5488105938034925,
-0.5500473907845178,
-0.550947394228025,
-0.5515040983747069,
-0.5517122456626495,
-0.5515678689957614,
-0.5510683267093349,
-0.5502123298926713,
-0.5489999617872358,
-0.5474326890406064,
-0.545513364660954,
-0.5432462225833147,
-0.5406368638267919,
-0.5376922342904205,
-0.5344205943039972,
-0.5308314801180443,
-0.5269356575835359,
-0.5227450683363929,
-0.518272768863355,
-0.5135328628840714,
-0.5085404275384899,
-0.5033114339183253,
-0.49786266252604383,
-0.4922116142839886,
-0.48637641774958,
-0.48037573321966326,
-0.47422865442779244,
-0.46795460855237564,
-0.46157325526103793,
-0.45510438551730825,
-0.44856782086982655,
-0.44198331393183926,
-0.4353704507400101,
-0.42874855565678816,
-0.4221365994500576,
-0.41555311114798327,
-0.40901609422624374,
-0.4025429476397711,
-0.3961503921621707
]
],
"zauto": true,
"zmax": 1.6122315135454026,
"zmin": -1.6122315135454026
},
{
"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.5349119149328976,
0.5270927315567221,
0.5193492642452326,
0.5117179180514413,
0.5042367450621473,
0.49694522427903287,
0.4898839878192751,
0.48309448877184163,
0.47661860737008027,
0.4704981941774155,
0.4647745518052587,
0.45948786029458666,
0.4546765555956951,
0.45037667534364983,
0.4466211909737815,
0.4434393496414862,
0.44085605280214596,
0.4388913000573676,
0.43755972646596053,
0.4368702586469913,
0.4368259096718929,
0.43742372531404655,
0.4386548853940693,
0.4405049546621008,
0.44295426891484807,
0.4459784347851399,
0.4495489165518463,
0.45363368074475197,
0.45819786924719774,
0.4632044737020735,
0.4686149877645342,
0.4743900184841174,
0.4804898432216023,
0.48687490349014095,
0.49350623157452683,
0.5003458094965861,
0.507356862763961,
0.5145040933756359,
0.5217538578438464,
0.5290742966517131,
0.5364354217360245,
0.5438091683978103,
0.5511694176168851,
0.5584919941770479,
0.5657546453709041,
0.5729370044019835,
0.5800205419742724,
0.5869885089788909,
0.593825872667215,
0.6005192482444761
],
[
0.5311879969956386,
0.523166056060955,
0.5152135428944179,
0.5073673119394005,
0.4996659944195843,
0.4921497922750352,
0.48486021700168835,
0.47783976767395747,
0.4711315435769859,
0.46477878878619044,
0.4588243688201733,
0.45331018320466154,
0.4482765223588932,
0.44376138244596514,
0.4397997573391744,
0.43642293210147504,
0.43365780667730797,
0.4315262811280132,
0.43004473404830895,
0.42922362333901654,
0.42906723317856793,
0.42957358314991806,
0.43073450577201716,
0.43253588820512473,
0.43495806383852836,
0.4379763309504419,
0.44156156951197123,
0.4456809239551875,
0.45029851937136556,
0.4553761807991215,
0.4608741293870154,
0.4667516345318946,
0.47296760687542155,
0.479481122671252,
0.4862518750658796,
0.4932405519989574,
0.5004091436173679,
0.5077211843301357,
0.5151419360106885,
0.5226385195260226,
0.5301800019001801,
0.5377374461561706,
0.5452839303604742,
0.5527945417267599,
0.5602463509038028,
0.5676183708364703,
0.5748915038879386,
0.5820484802700719,
0.5890737902595244,
0.5959536121836264
],
[
0.5280239141531391,
0.5198253731018287,
0.5116898178992868,
0.503654375888077,
0.49575806488907864,
0.48804160233114635,
0.48054715861657143,
0.47331804805489863,
0.4663983516353239,
0.45983246764219354,
0.4536645887996977,
0.44793810835073467,
0.4426949622154059,
0.43797491996780635,
0.4338148434563498,
0.43024793791052834,
0.42730302558914357,
0.42500387560071096,
0.4233686246718432,
0.4224093217602112,
0.4221316242726681,
0.4225346654970191,
0.42361110242317,
0.4253473415558874,
0.4277239289608367,
0.43071608095903907,
0.4342943246417523,
0.43842521332576156,
0.4430720813104273,
0.44819580447702845,
0.45375553770423777,
0.45970940591838844,
0.4660151320132088,
0.4726305911455025,
0.47951428651845507,
0.48662574639078365,
0.4939258455748226,
0.5013770571329251,
0.5089436414689019,
0.5165917807100533,
0.5242896663710982,
0.5320075479596741,
0.5397177495760211,
0.5473946607991662,
0.5550147073304681,
0.5625563060478105,
0.5699998083524898,
0.5773274349908921,
0.5845232049163486,
0.591572860226056
],
[
0.5254464621949763,
0.517099929023158,
0.5088099547163063,
0.5006137626658709,
0.49255056107284256,
0.484661367690919,
0.47698877887186586,
0.4695766754557992,
0.46246985876187413,
0.4557136114550652,
0.4493531805764291,
0.44343318366039325,
0.43799694365575276,
0.4330857641941208,
0.4287381632832047,
0.42498909018457437,
0.42186915629389016,
0.41940391536182525,
0.417613230455414,
0.4165107639160324,
0.4161036218411691,
0.41639217643590476,
0.41737007864773307,
0.4190244610094155,
0.42133631805936406,
0.4242810405975973,
0.4278290716147411,
0.43194664677208205,
0.4365965810112157,
0.4417390648964236,
0.4473324389102658,
0.4533339201981671,
0.45970026324187435,
0.4663883428170667,
0.47335565375555366,
0.48056072712500253,
0.4879634663134525,
0.49552540918443033,
0.5032099240845903,
0.5109823482309827,
0.5188100770874337,
0.5266626129558747,
0.5345115803280212,
0.5423307147007991,
0.5500958306564997,
0.5577847741163399,
0.5653773628394704,
0.5728553184844801,
0.5802021928889975,
0.5874032906572193
],
[
0.5234754175169688,
0.5150115491740941,
0.5065979932793139,
0.49827189603723243,
0.4900724608253259,
0.4820407882523767,
0.4742196612629082,
0.4666532672344375,
0.45938684950377295,
0.4524662820455183,
0.4459375633211673,
0.43984622879134927,
0.43423668631616963,
0.4291514845863737,
0.42463053154798386,
0.4207102869717827,
0.41742296009477087,
0.4147957486550994,
0.41285015863206176,
0.4116014437023581,
0.411058199299194,
0.4112221382135969,
0.41208806353429495,
0.4136440415859694,
0.41587176398044606,
0.4187470756125695,
0.4222406358488128,
0.4263186742163099,
0.43094379992347576,
0.43607582624560826,
0.44167257544016014,
0.44769063641216333,
0.45408605478546815,
0.46081494243491905,
0.46783400021522814,
0.47510095316517525,
0.48257490169506223,
0.4902165951952775,
0.49798863627509765,
0.505855624661135,
0.5137842498819218,
0.5217433414547353,
0.5297038845585924,
0.5376390082714035,
0.5455239524798254,
0.5533360186140315,
0.5610545084653648,
0.5686606545403368,
0.5761375447019406,
0.5834700432504886
],
[
0.5221230200690451,
0.5135740453389943,
0.5050694707612992,
0.4966461991204727,
0.4883432390244785,
0.4802015593286827,
0.47226388993829005,
0.4645744605560225,
0.4571786692258312,
0.4501226735771456,
0.44345289972635243,
0.4372154670429846,
0.43145553155747707,
0.4262165566520929,
0.42153952660458033,
0.4174621260537405,
0.4140179157634311,
0.4112355411881056,
0.4091380141985185,
0.40774210891162505,
0.4070579092069598,
0.4070885380601356,
0.407830087799063,
0.40927175694818174,
0.411396185093204,
0.41417996395885803,
0.4175942922443347,
0.42160573482131214,
0.4261770441294156,
0.4312680028030921,
0.4368362510020208,
0.44283806855343577,
0.44922908973186504,
0.4559649362995296,
0.4630017615466872,
0.4702967040254745,
0.4778082542484747,
0.4854965408205929,
0.4933235444288511,
0.5012532490459447,
0.5092517398518571,
0.5172872569749247,
0.5253302133995994,
0.533353184442908,
0.5413308751846877,
0.5492400712311547,
0.5570595772503668,
0.5647701468716942,
0.572354406802851,
0.5797967773893398
],
[
0.5213936632926982,
0.5127928478146084,
0.5042309874296289,
0.4957445848745698,
0.4873722728231331,
0.4791546811982277,
0.47113425267672226,
0.4633549977953448,
0.455862181176464,
0.44870193123038815,
0.4419207674940406,
0.43556504275346053,
0.4296803014210621,
0.42431056131847494,
0.41949753287267993,
0.4152797973290507,
0.41169197319788187,
0.40876390680755575,
0.4065199274216569,
0.404978208815866,
0.40415027670873327,
0.4040406947134113,
0.40464695090588126,
0.40595955375242243,
0.4079623316013077,
0.4106329160571773,
0.4139433780373168,
0.41786097742481504,
0.4223489835963249,
0.4273675246267356,
0.4328744269915809,
0.43882601406610816,
0.445177839502666,
0.45188533959191707,
0.4589043961456845,
0.46619180773719265,
0.4737056720362066,
0.48140568544919204,
0.48925336844408795,
0.4972122260212096,
0.5052478530349458,
0.5133279937172341,
0.5214225640149882,
0.529503644400383,
0.5375454497736202,
0.545524282042325,
0.5534184699881258,
0.5612083001524965,
0.5688759417059042,
0.5764053676096436
],
[
0.5212838110516421,
0.5126648866291862,
0.5040800454443104,
0.4955652449050336,
0.4871585720174234,
0.47890012174647634,
0.4708318257536179,
0.4629972229749931,
0.4554411634808729,
0.4482094377092877,
0.44134832473317437,
0.43490405592681386,
0.4289221944156698,
0.4234469360788152,
0.4185203444945676,
0.4141815396991082,
0.41046586830322884,
0.4074040894576584,
0.4050216162736165,
0.40333785449106135,
0.4023656785681581,
0.4021110795326292,
0.4025730091225729,
0.4037434318782049,
0.40560758243197825,
0.40814441109766647,
0.4113271887497017,
0.4151242332944513,
0.41949971552104676,
0.42441450183384494,
0.4298269947473797,
0.43569393808800566,
0.44197116144495,
0.448614246451259,
0.4555791050659111,
0.4628224665701335,
0.4703022751689506,
0.4779780038302018,
0.4858108923980126,
0.4937641192890097,
0.5018029164634872,
0.5098946371059978,
0.5180087847693355,
0.5261170118116764,
0.5341930939251941,
0.5422128865126533,
0.5501542676798775,
0.5579970717140652,
0.5657230161288878,
0.5733156246820472
],
[
0.5217821486020896,
0.5131787316477813,
0.5046051737097651,
0.4960967538590403,
0.48769085689140396,
0.479426860718226,
0.4713459765854044,
0.4634910338331973,
0.45590620079552274,
0.44863663394343345,
0.4417280487314559,
0.43522620803175016,
0.429176327718971,
0.4236224039764384,
0.41860647314266536,
0.4141678220872109,
0.41034217460679456,
0.4071608863131213,
0.40465018589967244,
0.40283050344337373,
0.4017159256095485,
0.4013138127821858,
0.4016246043281345,
0.4026418261877462,
0.4043523011244795,
0.406736547984053,
0.4097693439636034,
0.4134204146168031,
0.4176552109987017,
0.42243573218386565,
0.42772135394644567,
0.4334696297929269,
0.43963703769103935,
0.44617965365194695,
0.45305374088188916,
0.4602162498728656,
0.467625230180764,
0.47524015862151225,
0.48302219126388707,
0.49093434808949754,
0.4989416397586065,
0.5070111458062093,
0.515112053016442,
0.5232156618691459,
0.531295367963164,
0.5393266243002544,
0.5472868893309045,
0.5551555647613435,
0.5629139263217464,
0.5705450500068229
],
[
0.5228699608046881,
0.5143149853131297,
0.5057863334399986,
0.49731848544560975,
0.48894798153482216,
0.4807133162605527,
0.47265478838839514,
0.4648142983476416,
0.457235085231907,
0.4499613957122852,
0.4430380783996761,
0.43651009935326707,
0.4304219777556165,
0.4248171453511127,
0.4197372390163944,
0.4152213425344299,
0.41130520076575194,
0.40802043618738787,
0.40539380324569957,
0.40344651912171997,
0.40219370943852883,
0.40164400359169655,
0.40179930672503217,
0.4026547644971848,
0.4041989238637019,
0.4064140797009576,
0.4092767848896725,
0.41275849190082275,
0.4168262879447514,
0.4214436836935803,
0.4265714171981098,
0.43216823915548513,
0.4381916521454018,
0.4445985837989564,
0.45134598118169506,
0.4583913202781817,
0.4656930299409905,
0.4732108338369279,
0.48090601680227035,
0.4887416237479013,
0.4966826000421731,
0.5046958823715447,
0.5127504486516342,
0.5208173348189781,
0.5288696254234285,
0.5368824239718853,
0.5448328080215045,
0.5526997731326181,
0.5604641689952282,
0.5681086303496781
],
[
0.5245217175267016,
0.5160469063196134,
0.5075955810906221,
0.499201315157048,
0.49089967627957065,
0.4827281262206089,
0.47472587851232406,
0.46693370710250226,
0.45939369837319644,
0.4521489393576614,
0.4452431360076081,
0.43872015727924535,
0.4326235037777295,
0.42699570381664614,
0.4218776449765428,
0.41730785536813264,
0.41332175538499155,
0.4099509071026427,
0.4072222937964385,
0.40515766538035636,
0.4037729860652948,
0.4030780176247322,
0.40307606521277806,
0.40376390313294747,
0.4051318862748733,
0.4071642404886976,
0.40983951347294384,
0.41313115819435253,
0.41700821443127994,
0.4214360511882663,
0.4263771333586862,
0.4317917795422326,
0.4376388834934407,
0.44387657833339733,
0.45046282952147715,
0.4573559489664556,
0.4645150281000656,
0.4719002920135201,
0.4794733798300185,
0.4871975584485753,
0.49503787781936026,
0.502961276202189,
0.5109366436201475,
0.5189348511292485,
0.5269287527300001,
0.5348931658606185,
0.5428048355151397,
0.5506423861764457,
0.5583862649763167,
0.5660186788082147
],
[
0.526705834907744,
0.5183412293115297,
0.5099979498362471,
0.5017085666369767,
0.49350756167471377,
0.4854312318523675,
0.47751755317812483,
0.4698059992623166,
0.4623373072979612,
0.45515318496732954,
0.44829595262595273,
0.44180811681251714,
0.4357318737648973,
0.4301085452739574,
0.4249779538555042,
0.4203777496908015,
0.41634270771194254,
0.41290401902523033,
0.41008860584137946,
0.4079184923995453,
0.4064102652661133,
0.40557465430379813,
0.40541626035529355,
0.4059334475528819,
0.4071184079171647,
0.40895739469083026,
0.4114311099978245,
0.41451522319350104,
0.4181809896550317,
0.42239593628403493,
0.4271245796903525,
0.43232914549675233,
0.4379702617492519,
0.4440076052049422,
0.4504004854904512,
0.45710835810720984,
0.46409126252773736,
0.47131018590854623,
0.47872735614788864,
0.4863064701837421,
0.49401286468869127,
0.5018136368461538,
0.5096777228683594,
0.5175759415093535,
0.5254810091796198,
0.533367532496445,
0.5412119832903608,
0.5489926602914542,
0.5566896409774477,
0.5642847263992369
],
[
0.5293855729316104,
0.5211591360574814,
0.5129524994656716,
0.5047971453659872,
0.4967263708280486,
0.4887751932762443,
0.48098021986799694,
0.4733794747597312,
0.466012178145777,
0.45891847123128393,
0.4521390821155479,
0.4457149290629576,
0.43968665995035894,
0.43409412987547213,
0.4289758229755096,
0.4243682292948405,
0.4203051927539995,
0.4168172514400811,
0.4139309959462121,
0.411668474641061,
0.41004667587985305,
0.4090771157668426,
0.40876555592774216,
0.40911186901778823,
0.4101100609557464,
0.4117484490598673,
0.41400998548805235,
0.41687270676854066,
0.42031028366542483,
0.4242926417219901,
0.4287866217160249,
0.4337566507069043,
0.4391653978236427,
0.4449743937474944,
0.45114459827064257,
0.4576369057377875,
0.46441258312446626,
0.47143363967267443,
0.4786631302515096,
0.48606539692955447,
0.49360625471883085,
0.501253128211692,
0.5089751460363142,
0.5167431998550961,
0.5245299741580502,
0.5323099524712362,
0.5400594048942905,
0.5477563611634139,
0.5553805727488439,
0.5629134668648388
],
[
0.532520025151784,
0.5244573282170742,
0.5164134783509036,
0.5084187960708456,
0.5005053084277,
0.49270665603329183,
0.4850579668446895,
0.4775956914358736,
0.47035739441589675,
0.4633814969253896,
0.45670696588149406,
0.45037294696567604,
0.44441834036216926,
0.43888132101670746,
0.43379880868238385,
0.429205897134729,
0.4251352564259574,
0.4216165265262775,
0.418675724665501,
0.416334691567125,
0.4146106029967938,
0.41351557218059304,
0.41305636546223123,
0.41323424814401094,
0.4140449702128568,
0.4154788933054298,
0.4175212517223209,
0.42015253250539375,
0.42334895336476724,
0.42708301314528374,
0.43132408778890374,
0.43603904527991955,
0.4411928554849238,
0.4467491745807514,
0.45267088830501084,
0.4589206030079514,
0.4654610779792845,
0.4722555964545556,
0.47926827589741006,
0.4864643205514909,
0.4938102208937535,
0.5012739055926059,
0.5088248520016645,
0.5164341612321159,
0.5240746035648214,
0.5317206394917565,
0.5393484210994132,
0.546935777888286,
0.5544621905081424,
0.5619087553086285
],
[
0.5360651555265031,
0.5281891508706933,
0.5203315401329277,
0.5125214191598397,
0.5047894735287959,
0.4971678866696249,
0.4896902176166574,
0.4823912438489925,
0.47530676465445787,
0.4684733607279993,
0.4619281063863296,
0.45570823194450505,
0.44985073553777843,
0.4443919460291678,
0.4393670416063231,
0.4348095321444864,
0.43075071719811225,
0.42721913527618316,
0.4242400234532923,
0.42183480890855835,
0.4200206552078278,
0.41881008567398526,
0.4182107038143302,
0.4182250265158141,
0.4188504398671622,
0.420079280556052,
0.4218990385278721,
0.42429266974948604,
0.427239002200329,
0.43071321413947716,
0.43468736154664367,
0.4391309314147127,
0.44401139905327197,
0.44929477035292376,
0.4549460935850788,
0.4609299292990321,
0.4672107708184639,
0.4737534114246575,
0.48052325734715756,
0.487486588072247,
0.4946107672177452,
0.5018644083612719,
0.509217500835875,
0.5166415007246273,
0.5241093921976216,
0.5315957240345652,
0.5390766257431326,
0.5465298071805134,
0.5539345450604455,
0.5612716592139334
],
[
0.5399748397312019,
0.5323057189342084,
0.5246549613506127,
0.5170503858044699,
0.5095212783496619,
0.5020983013972293,
0.4948133753319538,
0.487699528779578,
0.4807907137093227,
0.4741215818333903,
0.4677272193738085,
0.4616428382827504,
0.45590342348703466,
0.4505433377134261,
0.44559588792455695,
0.4410928602771313,
0.43706403364767515,
0.4335366849160413,
0.43053510203839185,
0.4280801231169534,
0.4261887208186321,
0.424873651300518,
0.42414318507977794,
0.42400093402486494,
0.4244457840336281,
0.4254719373869275,
0.42706906275776135,
0.42922254501994844,
0.4319138219166289,
0.43512079078246696,
0.4388182661507238,
0.4429784682970042,
0.4475715234607342,
0.4525659583773944,
0.457929174494164,
0.4636278904483573,
0.46962854471049315,
0.4758976534464585,
0.482402121434435,
0.4891095061653638,
0.4959882370185545,
0.5030077926516846,
0.5101388405305555,
0.5173533429235005,
0.5246246337806234,
0.5319274707888975,
0.5392380666117765,
0.5465341029457708,
0.5537947306033688,
0.5610005583967509
],
[
0.5442018732990331,
0.5367570045255382,
0.5293308133103758,
0.5219497996682151,
0.5146418052127986,
0.5074359234940667,
0.5003623856510266,
0.4934524182030765,
0.4867380698633464,
0.4802520045315942,
0.4740272581716001,
0.46809695815584335,
0.462494004913747,
0.45725071737055745,
0.4523984456973726,
0.44796715724491015,
0.44398500408130626,
0.44047788311184993,
0.43746900208456896,
0.43497846660172046,
0.4330229042810578,
0.43161514219824926,
0.4307639525340419,
0.43047387891351135,
0.43074515237709615,
0.4315737015315255,
0.43295125658253825,
0.4348655421088735,
0.43730054905818005,
0.44023687292315716,
0.44365210266224053,
0.4475212437842037,
0.45181715908821957,
0.4565110116793662,
0.4615726968152714,
0.46697125159280956,
0.4726752341678907,
0.47865306686676723,
0.4848733400015957,
0.4913050753185382,
0.4979179497171427,
0.5046824811701773,
0.5115701796666673,
0.518553666545309,
0.5256067658410182,
0.5327045712977482,
0.5398234925662282,
0.5469412838591917,
0.5540370580231654,
0.5610912886398352
],
[
0.548698915596949,
0.5414928511925571,
0.534306050715317,
0.5271636640981276,
0.5200920564120776,
0.5131187198403139,
0.5062721637418156,
0.4995817802331099,
0.4930776828038645,
0.48679051574626514,
0.48075123266351893,
0.47499084307166717,
0.469540127152934,
0.46442932007131404,
0.4596877689074516,
0.45534356715854085,
0.4514231737849826,
0.44795102582787477,
0.4449491554883938,
0.44243682404260026,
0.4404301858495668,
0.4389419958087696,
0.43798137280478766,
0.43755362990236507,
0.43766017938985197,
0.43829851739269754,
0.43946228896546363,
0.44114143065711414,
0.44332238388196554,
0.4459883693356485,
0.4491197104127616,
0.4526941922469106,
0.4566874426268555,
0.46107332156325864,
0.46582430752835685,
0.47091187015838115,
0.47630682127466206,
0.48197963823779305,
0.4879007557283199,
0.49404082392065335,
0.5003709326049798,
0.5068628020784014,
0.5134889425697062,
0.5202227846053861,
0.5270387831067864,
0.5339124981761126,
0.5408206555302808,
0.5477411894212136,
0.5546532706785301,
0.5615373222583828
],
[
0.5534193460755641,
0.5464638895647436,
0.539528489632351,
0.5326369252665082,
0.525814065294826,
0.5190857825720482,
0.5124788489577045,
0.506020809051999,
0.4997398307618698,
0.4936645310155598,
0.4878237753664733,
0.4822464508555105,
0.4769612123569751,
0.47199620372373946,
0.4673787563588882,
0.4631350693328743,
0.45928987676500205,
0.4558661097909485,
0.45288456190976106,
0.45036356769049524,
0.44831870556218273,
0.4467625355694472,
0.4457043824473573,
0.4451501731112668,
0.44510233570436214,
0.44555976481186726,
0.44651785452326154,
0.44796859794096894,
0.44990074875601177,
0.4523000378851227,
0.45514943609207137,
0.4584294521318353,
0.46211845531267026,
0.4661930114420887,
0.47062822181599767,
0.4753980560878586,
0.48047567135637803,
0.48583371147509075,
0.4914445822714378,
0.4972806999509626,
0.5033147113719284,
0.5095196860579901,
0.5158692807518972,
0.522337878005094,
0.5289007007665467,
0.5355339052092454,
0.5422146541493339,
0.5489211734059939,
0.5556327933529565,
0.5623299777538295
],
[
0.5583180166565663,
0.5516223375287678,
0.5449476571772813,
0.5383163729801692,
0.531751849684898,
0.5252783364680951,
0.5189208673891409,
0.5127051436760626,
0.5066573963909707,
0.5008042282442117,
0.49517243368543284,
0.48978879691660626,
0.4846798681607769,
0.4798717193840954,
0.4753896816953948,
0.47125806780575424,
0.4674998841663618,
0.4641365386399591,
0.46118755070211376,
0.45867027210252587,
0.4565996265288474,
0.454987877001622,
0.453844429410108,
0.45317567973655437,
0.4529849111240969,
0.4532722450903632,
0.45403464899752244,
0.4552659995233973,
0.456957199522981,
0.45909634351014816,
0.46166892518700925,
0.4646580791223514,
0.4680448478964617,
0.47180846579582675,
0.4759266504147782,
0.48037589421878374,
0.4851317491375776,
0.4901690984679574,
0.49546241166276817,
0.5009859788661656,
0.5067141232487589,
0.5126213902464072,
0.5186827136827672,
0.5248735594473417,
0.531170047912449,
0.5375490566197865,
0.5439883049722654,
0.5504664227548002,
0.5569630043042104,
0.5634586500772455
],
[
0.5633518909554169,
0.5569226757718359,
0.5505155040567431,
0.5441513907616766,
0.5378521999060544,
0.5316405651885218,
0.525539796478579,
0.5195737710261471,
0.5137668083311476,
0.5081435278071738,
0.502728688669673,
0.4975470118937762,
0.49262298462885873,
0.4879806481269871,
0.48364337103051186,
0.47963361074661376,
0.4759726665745915,
0.4726804291903813,
0.4697751319635974,
0.46727311030673985,
0.46518857575276745,
0.4635334116504306,
0.4623169971973488,
0.4615460659655724,
0.46122460411423266,
0.46135379216793365,
0.4619319926444404,
0.46295478404859064,
0.4644150399388622,
0.46630305005170203,
0.4686066789596894,
0.47131155654227025,
0.4744012937278383,
0.477857716550499,
0.48166111154327507,
0.48579047581867285,
0.49022376580080723,
0.4949381393907045,
0.499910187284897,
0.5051161501492976,
0.5105321193094312,
0.5161342195034001,
0.52189877302052,
0.5278024451968729,
0.5338223717526429,
0.5399362688389464,
0.5461225269251571,
0.5523602898171448,
0.5586295201702105,
0.5649110528659018
],
[
0.5684805669079724,
0.562322196074252,
0.5561869783694285,
0.5500945548561424,
0.544065302559631,
0.538120259282388,
0.5322810366496339,
0.526569720553314,
0.5210087582548033,
0.5156208315648562,
0.5104287157551329,
0.5054551241781666,
0.5007225389874357,
0.4962530288560991,
0.49206805518415175,
0.4881882689422355,
0.48463330099869095,
0.48142154947665805,
0.47856996834276433,
0.4760938619839431,
0.47400669092757064,
0.4723198940488816,
0.4710427325447304,
0.47018216060669094,
0.469742727093449,
0.4697265116017975,
0.4701330972122848,
0.4709595809072842,
0.47220062130998186,
0.47384852206435735,
0.47589334795839816,
0.47832306986366135,
0.48112373378251755,
0.4842796487943588,
0.48777358848199787,
0.49158700048366666,
0.4957002191187847,
0.5000926765276809,
0.504743108390434,
0.5096297509909377,
0.514730527116782,
0.520023218989263,
0.525485627066776,
0.5310957141356768,
0.5368317345823047,
0.5426723491237884,
0.5485967255660242,
0.5545846263622574,
0.5606164838756261,
0.566673464316005
],
[
0.5736666841041501,
0.5677814248928438,
0.5619204646741197,
0.5561020878829462,
0.5503452077488129,
0.5446692959009071,
0.5390943024038523,
0.5336405656568408,
0.5283287116638862,
0.5231795423057674,
0.5182139124228863,
0.5134525957589069,
0.5089161401212519,
0.5046247124858899,
0.5005979352049229,
0.49685471495460753,
0.49341306657018213,
0.49028993442672303,
0.4875010145105205,
0.48506058074665215,
0.48298131946697154,
0.48127417608145323,
0.4799482180228584,
0.47901051784787957,
0.47846605998829234,
0.47831767406023984,
0.4785659968824066,
0.47920946446420554,
0.48024433425559115,
0.48166473696103057,
0.4834627562737736,
0.4856285340409405,
0.488150397673222,
0.4910150060992815,
0.4942075102519371,
0.4977117239618007,
0.5015103012101308,
0.5055849159300608,
0.5099164409098401,
0.5144851228052146,
0.519270750772413,
0.524252816753491,
0.5294106659523963,
0.5347236365100801,
0.5401711878043128,
0.545733017155114,
0.5513891650062636,
0.5571201088782405,
0.56290684655252,
0.5687309690582164
],
[
0.5788762207148209,
0.5732644285746901,
0.567678096334318,
0.5621341770427473,
0.5566501518000992,
0.5512439646509041,
0.545933949946369,
0.5407387518143458,
0.5356772354294124,
0.5307683898626046,
0.5260312224162893,
0.5214846445188173,
0.5171473494683709,
0.5130376825758712,
0.5091735045595345,
0.5055720493814465,
0.5022497780775655,
0.4992222305006998,
0.49650387725072304,
0.49410797438387044,
0.49204642374779056,
0.4903296419557077,
0.4889664410687866,
0.48796392398299065,
0.4873273973054381,
0.48706030415507756,
0.48716417884369134,
0.4876386248065651,
0.4884813164878126,
0.4896880251803618,
0.49125266811571344,
0.4931673794343897,
0.4954226010812689,
0.49800719119049636,
0.5009085471727699,
0.5041127405033764,
0.507604660131872,
0.5113681614837814,
0.5153862181838941,
0.5196410738772828,
0.5241143918333682,
0.5287874003652887,
0.5336410324584823,
0.5386560583589385,
0.5438132102072394,
0.5490932981079025,
0.5544773172874193,
0.5599465462153633,
0.5654826357406886,
0.5710676894319657
],
[
0.5840786874244224,
0.5787390091151242,
0.5734259517433161,
0.5681551693691541,
0.5629427500562454,
0.5578051564465625,
0.5527591606750928,
0.5478217734164573,
0.5430101668861722,
0.5383415916717634,
0.5338332873474506,
0.5295023869338367,
0.525365815403081,
0.5214401826010232,
0.5177416711591775,
0.5142859201975726,
0.5110879058673147,
0.5081618200399105,
0.5055209487063448,
0.5031775518877943,
0.5011427470652351,
0.49942639829000773,
0.49803701322552546,
0.49698165037793574,
0.4962658386908817,
0.49589351150205785,
0.49586695658877866,
0.49618678367485664,
0.49685191034665216,
0.49785956685278565,
0.4992053197641181,
0.5008831139746345,
0.5028853320558181,
0.5052028695605523,
0.5078252245266046,
0.510740599167758,
0.513936011569562,
0.5173974151270008,
0.5211098234677991,
0.52505743868751,
0.5292237808675542,
0.5335918170396966,
0.5381440879842738,
0.542862831489857,
0.5477301009455587,
0.5527278783728702,
0.5578381812232028,
0.5630431624643846,
0.5683252036507124,
0.57366700081547
],
[
0.5892472274089902,
0.5841768009308769,
0.5791341464825875,
0.5741336578128646,
0.5691900754154706,
0.5643184330688539,
0.5595340004167901,
0.5548522214903427,
0.5502886490781783,
0.5458588748724392,
0.5415784553540458,
0.5374628334372041,
0.5335272559701882,
0.5297866872894677,
0.5262557191470641,
0.5229484774753258,
0.5198785266159736,
0.5170587718163661,
0.5145013609784749,
0.5122175868263652,
0.5102177908257961,
0.5085112703337659,
0.5071061905649911,
0.5060095030257796,
0.5052268720743732,
0.5047626112140876,
0.5046196306083427,
0.5047993971257474,
0.5053019079838705,
0.5061256787713196,
0.5072677463019898,
0.5087236864081509,
0.5104876464272438,
0.5125523917977932,
0.5149093658684959,
0.5175487617546912,
0.5204596048582685,
0.5236298445069413,
0.5270464530691631,
0.5306955308604159,
0.5345624151706209,
0.5386317918039226,
0.5428878076223057,
0.5473141827138778,
0.5518943209555269,
0.5566114178990305,
0.5614485650715694,
0.5663888499394037,
0.5714154509321185,
0.5765117270607648
],
[
0.5943586323096549,
0.589553279884811,
0.5847768340479353,
0.5800424723005845,
0.5753636383728192,
0.5707539949011984,
0.5662273736811453,
0.561797723463872,
0.5574790552515716,
0.553285385035319,
0.549230673920679,
0.5453287655990077,
0.5415933211502715,
0.5380377512078427,
0.5346751455785845,
0.5315182004930789,
0.5285791437605383,
0.5258696582189367,
0.5234008039999828,
0.5211829402661033,
0.5192256472165725,
0.5175376492951828,
0.516126740654368,
0.5149997140321589,
0.5141622942705583,
0.5136190777396709,
0.5133734789253037,
0.5134276853851405,
0.5137826221787567,
0.5144379267313559,
0.5153919349046521,
0.5166416788279873,
0.5181828967978549,
0.5200100552954228,
0.5221163829109914,
0.5244939157131076,
0.5271335533688294,
0.5300251251193613,
0.5331574645486893,
0.5365184919563117,
0.540095303060432,
0.5438742627144778,
0.5478411023148847,
0.5519810196073913,
0.5562787796572556,
0.56071881582975,
0.5652853297248371,
0.5699623891181524,
0.5747340230739588,
0.5795843135099733
],
[
0.5993932845242861,
0.5948476959883491,
0.5903321277482984,
0.5858585896235966,
0.5814392837338431,
0.5770865633846058,
0.5728128908979677,
0.5686307943963077,
0.5645528235096028,
0.5605915039411787,
0.5567592907968775,
0.5530685205607582,
0.5495313615894032,
0.5461597629992577,
0.5429654018394746,
0.5399596284782945,
0.5371534101851402,
0.5345572729636293,
0.5321812417817354,
0.5300347794523879,
0.5281267245375947,
0.526465228777212,
0.5250576946741236,
0.523910713994272,
0.5230300080555615,
0.5224203707768097,
0.5220856155296477,
0.5220285268763664,
0.5222508182803605,
0.5227530968399298,
0.5235348360198337,
0.5245943572394912,
0.5259288210256954,
0.5275342282569206,
0.5294054318232014,
0.5315361588088536,
0.5339190430843058,
0.5365456679773085,
0.539406618491432,
0.5424915423585331,
0.545789219057693,
0.5492876358100197,
0.5529740694689197,
0.5568351731692084,
0.5608570665744897,
0.5650254285678801,
0.5693255912627181,
0.5737426342630614,
0.5782614781739324,
0.5828669764438552
],
[
0.6043350361336495,
0.6000429410073296,
0.5957819559569817,
0.5915629753290769,
0.5873970181998687,
0.5832951934432931,
0.5792686649580217,
0.5753286170752641,
0.5714862201108695,
0.5677525959673531,
0.5641387836362912,
0.5606557044019722,
0.5573141265062931,
0.5541246290056883,
0.5510975645363253,
0.5482430207065384,
0.545570779857654,
0.5430902769775019,
0.5408105556156345,
0.5387402217351878,
0.5368873955418908,
0.535259661453146,
0.5338640165053432,
0.5327068176404234,
0.5317937284569564,
0.5311296661497036,
0.5307187494874392,
0.5305642487844322,
0.5306685388995954,
0.5310330563431325,
0.5316582615791053,
0.5325436075811615,
0.5336875156271659,
0.5350873592083051,
0.5367394567831931,
0.5386390739332495,
0.5407804352794281,
0.5431567463105292,
0.5457602250586718,
0.5485821433467973,
0.5516128771344839,
0.5548419653089712,
0.558258176113758,
0.5618495802815034,
0.5656036298434691,
0.5695072415250337,
0.573546883604988,
0.5777086651132023,
0.5819784262637608,
0.5863418290649853
],
[
0.6091710345229647,
0.6051253617548327,
0.601111862241915,
0.5971403698985966,
0.5932207818757649,
0.5893630297004285,
0.5855770516418726,
0.5818727663193649,
0.5782600474908259,
0.5747486998849052,
0.5713484358633532,
0.5680688526295438,
0.5649194096357834,
0.5619094057900108,
0.5590479560250017,
0.5563439667733501,
0.5538061098920798,
0.5514427946039115,
0.5492621370694409,
0.5472719272762803,
0.5454795930270662,
0.5438921609263885,
0.5425162144042182,
0.541357848966066,
0.5404226250225115,
0.5397155188165321,
0.5392408721290302,
0.5390023415935568,
0.5390028485827855,
0.5392445307345707,
0.5397286962580626,
0.5404557821952578,
0.5414253178071423,
0.5426358942048436,
0.5440851412556538,
0.5457697126643206,
0.5476852799665316,
0.5498265359806689,
0.5521872080536464,
0.5547600812157096,
0.5575370311364912,
0.5605090665590828,
0.563666380688318,
0.566998410830555,
0.5704939054301993,
0.5741409975265107,
0.5779272835647435,
0.5818399064385268,
0.5858656416144138,
0.5899909851922822
],
[
0.6138915043535639,
0.6100845292801325,
0.6063107611409128,
0.6025790305337679,
0.5988981755660054,
0.5952770188823795,
0.5917243468498935,
0.5882488908930623,
0.5848593108825637,
0.5815641803875439,
0.5783719735102761,
0.5752910529346714,
0.5723296587408312,
0.569495897469946,
0.5667977308709736,
0.564242963725965,
0.5618392301376943,
0.559593977673844,
0.557514448798245,
0.5556076590825186,
0.5538803717809506,
0.5523390684664267,
0.5509899155635233,
0.5498387267728717,
0.548890921554047,
0.5481514800166808,
0.5476248947545631,
0.547315120337771,
0.5472255213455751,
0.5473588199702002,
0.5477170443411492,
0.5483014788051539,
0.5491126174427001,
0.5501501221048885,
0.5514127862125064,
0.5528985054730805,
0.5546042565440172,
0.5565260845054479,
0.5586590998115296,
0.5609974851717222,
0.5635345125827574,
0.566262570496922,
0.5691732008820107,
0.5722571457112495,
0.5755044022249953,
0.5789042861359404,
0.5824455018100757,
0.5861162183493247,
0.5899041504292799,
0.5937966427061845
],
[
0.6184894950515317,
0.6149129735308648,
0.6113706595590959,
0.6078704389116708,
0.6044201545883073,
0.6010275894848158,
0.5977004520253215,
0.5944463647166534,
0.5912728554831957,
0.5881873515352763,
0.585197175420394,
0.5823095428077094,
0.5795315614658662,
0.5768702308160003,
0.5743324413793518,
0.5719249733955407,
0.5696544938663605,
0.5675275512833787,
0.5655505673276194,
0.5637298248872484,
0.5620714518247408,
0.5605814000377001,
0.559265419495503,
0.5581290270943038,
0.5571774703515486,
0.5564156861528954,
0.5558482549631297,
0.5554793511114021,
0.5553126899523437,
0.5553514728805802,
0.5555983313291439,
0.556055271005087,
0.5567236177018852,
0.5576039660729943,
0.5586961327508081,
0.5599991151488318,
0.5615110571928168,
0.5632292230916985,
0.5651499800863148,
0.5672687909096893,
0.5695802164652456,
0.5720779289876676,
0.574754735704738,
0.5776026127766597,
0.5806127490608118,
0.5837755990422077,
0.5870809440892526,
0.5905179610452835,
0.5940752970515099,
0.59774114941744
],
[
0.62296060245447,
0.61960589242105,
0.6162863529944326,
0.6130089843676163,
0.6097806987891822,
0.6066083085844807,
0.6034985178247693,
0.6004579175671554,
0.5974929844743243,
0.5946100825080716,
0.5918154672779673,
0.5891152925196456,
0.5865156180798322,
0.5840224187010031,
0.5816415928309373,
0.5793789706347062,
0.5772403203616517,
0.575231352220068,
0.5733577189393874,
0.571625012254758,
0.5700387546322563,
0.5686043856639904,
0.5673272426994493,
0.5662125354400528,
0.5652653144043758,
0.5644904333673675,
0.5638925060824993,
0.5634758578048125,
0.5632444723382729,
0.5632019355251755,
0.5633513762710423,
0.5636954063480514,
0.5642360603367271,
0.5649747371435216,
0.5659121445664755,
0.5670482483694946,
0.5683822272669407,
0.5699124351153535,
0.5716363714613781,
0.5735506614095875,
0.5756510455578028,
0.577932380509001,
0.5803886502172041,
0.5830129881694012,
0.5857977101560164,
0.5887343571474085,
0.5918137475810179,
0.5950260381792218,
0.5983607922661811,
0.601807054435713
],
[
0.6273026727174601,
0.6241608436033228,
0.6210551050642346,
0.61799163112721,
0.614976467505017,
0.6120155246330609,
0.6091145749361025,
0.6062792542046851,
0.6035150668390269,
0.6008273945959324,
0.5982215083554652,
0.5957025823123328,
0.5932757098957504,
0.5909459206345549,
0.5887181971148487,
0.5865974911285154,
0.5845887380852064,
0.5826968687599967,
0.580926817475414,
0.5792835258708754,
0.5777719414949066,
0.57639701056529,
0.5751636643780434,
0.5740767990055913,
0.5731412481044527,
0.5723617488491368,
0.5717429012167672,
0.5712891210604805,
0.5710045876224329,
0.5708931863423388,
0.5709584480076018,
0.5712034854590223,
0.5716309292047896,
0.5722428633986988,
0.5730407637009878,
0.5740254385579537,
0.5751969754073639,
0.5765546932403075,
0.5780971028282498,
0.5798218757604094,
0.5817258232368299,
0.5838048853339433,
0.5860541312105928,
0.5884677704626964,
0.5910391755736423,
0.5937609151544253,
0.5966247974310709,
0.5996219232244798,
0.6027427474853464,
0.6059771482985106
],
[
0.6315154960336109,
0.628577426625768,
0.6256763181131949,
0.6228175774418593,
0.6200064473685748,
0.6172480041504554,
0.6145471599503859,
0.6119086697937147,
0.6093371427829882,
0.6068370571502769,
0.6044127786040369,
0.6020685813131215,
0.599808670768037,
0.5976372076722185,
0.5955583319471164,
0.593576185886993,
0.5916949354748946,
0.5899187888721287,
0.5882520111210378,
0.5866989341556209,
0.5852639612966426,
0.5839515655166649,
0.5827662808945859,
0.5817126868366481,
0.5807953848186459,
0.5800189675985488,
0.5793879810555366,
0.5789068790253724,
0.578579971717277,
0.5784113685076299,
0.5784049161041648,
0.5785641332538606,
0.5788921433216818,
0.5793916061891995,
0.5800646510062988,
0.5809128113710522,
0.5819369645092597,
0.5831372759746715,
0.5845131512939494,
0.5860631958394115,
0.5877851840318983,
0.5896760387618634,
0.5917318216766771,
0.5939477347249059,
0.5963181330833871,
0.5988365493297951,
0.601495728471206,
0.6042876732062039,
0.6072036985913396,
0.6102344951077168
],
[
0.6356004971719302,
0.6328569625476714,
0.6301512020236744,
0.6274879137686158,
0.6248716000952329,
0.62230656941857,
0.6197969433300939,
0.6173466685784236,
0.6149595336145423,
0.6126391892288793,
0.6103891726831582,
0.6082129346249494,
0.6061138679708657,
0.6040953378584972,
0.6021607117003589,
0.6003133883278106,
0.5985568251911337,
0.5968945625852483,
0.5953302438999171,
0.5938676309491944,
0.5925106135171565,
0.5912632123649355,
0.5901295750763987,
0.5891139642745292,
0.5882207379150606,
0.587454321554918,
0.5868191726965779,
0.5863197375209622,
0.5859604005356945,
0.5857454278766864,
0.5856789052028311,
0.5857646713096097,
0.5860062487510628,
0.5864067728945466,
0.5869689209331642,
0.5876948424417551,
0.5885860930800748,
0.5896435730189734,
0.5908674715913731,
0.5922572195509206,
0.5938114501605154,
0.5955279701355062,
0.5974037412388679,
0.5994348730761048,
0.6016166273748977,
0.6039434337679673,
0.6064089168365916,
0.6090059339254376,
0.6117266230146345,
0.6145624597387618
],
[
0.6395604292686183,
0.6370021774838256,
0.6344824477071178,
0.6320052864576323,
0.6295745166717907,
0.6271937435337446,
0.6248663657438965,
0.6225955919734812,
0.6203844621173793,
0.6182358728252202,
0.616152606665981,
0.6141373641671879,
0.6121927978697174,
0.6103215474560781,
0.6085262749465168,
0.6068096989155166,
0.6051746266629654,
0.6036239832806614,
0.6021608365866297,
0.6007884169571346,
0.599510131168984,
0.5983295694719245,
0.5972505052412814,
0.5962768867126496,
0.5954128204709933,
0.5946625465530128,
0.5940304052205277,
0.5935207956698283,
0.5931381271527175,
0.5928867631941346,
0.592770959793095,
0.5927947986822161,
0.5929621168901456,
0.5932764339946798,
0.593740878566478,
0.5943581153789231,
0.5951302749946733,
0.5960588873308464,
0.597144820751188,
0.5983882281352636,
0.5997885012338349,
0.601344234440046,
0.6030531988935403,
0.6049123275962373,
0.6069177119625125,
0.6090646099618622,
0.6113474657480208,
0.6137599404138657,
0.6162949532745139,
0.6189447328689475
],
[
0.643399076717951,
0.6410168959313195,
0.6386739111155639,
0.6363735727483749,
0.6341190836886361,
0.6319134084765531,
0.6297592883243859,
0.6276592615058382,
0.6256156887147623,
0.6236307828313857,
0.621706642410298,
0.6198452880922831,
0.6180487010448583,
0.6163188624568199,
0.6146577930525311,
0.6130675915540045,
0.6115504710044377,
0.6101087918766575,
0.6087450909243692,
0.6074621047931632,
0.606262787491402,
0.6051503209275173,
0.6041281178484929,
0.6031998166626668,
0.6023692677961746,
0.6016405114137295,
0.6010177465277748,
0.6005052917216902,
0.600107537918466,
0.5998288938313797,
0.599673724932581,
0.5996462869635719,
0.5997506551826564,
0.5999906506927044,
0.6003697653124802,
0.6008910865411592,
0.6015572242141416,
0.6023702404555309,
0.6033315844966561,
0.6044420338503392,
0.6057016432084417,
0.6071097022686001,
0.6086647034996154,
0.6103643206299914,
0.6122053983980587,
0.6141839538434188,
0.6162951891569322,
0.6185335158490471,
0.6208925897523448,
0.6233653561513105
],
[
0.6471209723869684,
0.6449057490943766,
0.64273031295945,
0.6405975722108559,
0.6385101668815499,
0.6364704811761761,
0.6344806617191641,
0.6325426413553034,
0.630658168036753,
0.6288288381987406,
0.6270561339040529,
0.625341462927049,
0.6236862008542345,
0.6220917342029486,
0.6205595035044832,
0.6190910452646107,
0.6176880317041081,
0.6163523071951298,
0.615085920346332,
0.6138911507503004,
0.6127705294903882,
0.6117268526095804,
0.6107631868700379,
0.6098828672768535,
0.6090894860011643,
0.6083868725136464,
0.607779064926678,
0.6072702727387884,
0.6068648313746425,
0.6065671491134899,
0.6063816471941089,
0.6063126940697352,
0.606364534956986,
0.6065412179729707,
0.6068465182792634,
0.6072838617451853,
0.6078562497014947,
0.608566186375524,
0.609415610577637,
0.6104058331455452,
0.6115374815480421,
0.6128104529052569,
0.6142238765024004,
0.6157760866635787,
0.6174646066182666,
0.6192861437432393,
0.621236596305525,
0.6233110715759055,
0.625503914936035,
0.6278087493731374
],
[
0.6507311337180903,
0.6486739027531909,
0.6466569586410511,
0.6446827190864368,
0.6427533162653584,
0.6408706118626433,
0.6390362181244238,
0.6372515245652665,
0.6355177298324242,
0.6338358780995952,
0.6322068992429747,
0.6306316519463562,
0.6291109687923093,
0.6276457023252936,
0.6262367710218107,
0.6248852040736764,
0.6235921838840601,
0.6223590851924989,
0.6211875097846058,
0.6200793158042334,
0.6190366407696495,
0.618061917499737,
0.6171578822799476,
0.6163275747390332,
0.6155743290644897,
0.6149017563548568,
0.6143137180879232,
0.6138142908724701,
0.6134077228440517,
0.6130983822586472,
0.6128906990276066,
0.6127891001185496,
0.6127979399149256,
0.6129214267767177,
0.6131635471712801,
0.6135279888416899,
0.6140180645459035,
0.6146366379297954,
0.615386053088128,
0.6162680693182063,
0.6172838024813576,
0.6184336742589236,
0.6197173704252253,
0.6211338090645468,
0.6226811194385216,
0.6243566319714541,
0.6261568795719175,
0.6280776102576358,
0.6301138108054234,
0.6322597409165296
],
[
0.6542348215834066,
0.6523268085176841,
0.6504594822055643,
0.6486348192755758,
0.6468544965370631,
0.6451199083006312,
0.6434321897977502,
0.641792246311783,
0.6402007874968623,
0.6386583662332515,
0.637165421251321,
0.6357223226539723,
0.6343294193817838,
0.6329870875983983,
0.6316957789273228,
0.6304560674464689,
0.6292686943440446,
0.6281346091590061,
0.6270550065709612,
0.6260313577675998,
0.6250654355015242,
0.6241593320515942,
0.623315469425157,
0.622536601275191,
0.6218258061585094,
0.6211864719256799,
0.6206222712077226,
0.6201371281462834,
0.6197351766997162,
0.6194207110439158,
0.6191981287699885,
0.6190718677567637,
0.6190463377602583,
0.6191258479098506,
0.6193145314273979,
0.6196162689862486,
0.6200346121978373,
0.6205727087506614,
0.6212332307271116,
0.622018307586133,
0.6229294652235438,
0.6239675724079787,
0.6251327957412636,
0.6264245641114484,
0.6278415433999434,
0.629381621977599,
0.6310419072853715,
0.632818733551171,
0.6347076804534701,
0.6367036023118833
],
[
0.6576373250163674,
0.6558699815676037,
0.6541436173733061,
0.6524598149847112,
0.6508198456966194,
0.6492246887770143,
0.6476750568354314,
0.6461714269196549,
0.6447140767965839,
0.6433031257481786,
0.6419385791003805,
0.6406203756045653,
0.6393484367097748,
0.6381227167015805,
0.6369432526413054,
0.6358102130184083,
0.6347239440295063,
0.6336850124197937,
0.6326942438661283,
0.6317527559450582,
0.6308619848126056,
0.6300237048244369,
0.6292400404437417,
0.6285134699180541,
0.6278468203536104,
0.6272432539745967,
0.6267062455225784,
0.626239550925998,
0.6258471675480685,
0.6255332865005453,
0.6253022376872415,
0.6251584284109675,
0.625106276536719,
0.6251501393481287,
0.6252942393590503,
0.625542588443344,
0.6258989117194617,
0.6263665726687142,
0.6269485009743055,
0.6276471245404474,
0.6284643070863163,
0.6294012926088312,
0.6304586578730496,
0.631636273922701,
0.6329332774105413,
0.6343480523345434,
0.6358782225380581,
0.6375206550971937,
0.6392714744842488,
0.641126087169449
],
[
0.6609437741784536,
0.6593088072126772,
0.6577149979516219,
0.6561635792848163,
0.6546554640813569,
0.6531912659717996,
0.6517713262685328,
0.6503957465963374,
0.6490644266737944,
0.6477771065645511,
0.6465334126082048,
0.6453329061463015,
0.6441751340818699,
0.6430596802527037,
0.6419862165604565,
0.6409545527802655,
0.6399646839793018,
0.6390168344972156,
0.638111497486386,
0.6372494690743823,
0.6364318762940142,
0.6356601980265527,
0.6349362783196519,
0.6342623315716519,
0.6336409392164977,
0.633075037696597,
0.6325678976724339,
0.6321230945853475,
0.6317444708609907,
0.6314360902127256,
0.6312021846734329,
0.6310470951474205,
0.6309752064275748,
0.6309908777626627,
0.6310983701816903,
0.63130177188247,
0.6316049230661835,
0.6320113416453963,
0.6325241512668199,
0.6331460130701995,
0.6338790625500145,
0.6347248527974303,
0.6356843052775529,
0.6367576691442729,
0.6379444899158023,
0.639243588133519,
0.640653048410953,
0.642170219055342,
0.6437917222181636,
0.6455134743104249
],
[
0.6641589831322964,
0.6626483778217662,
0.6611789891440626,
0.65975174205914,
0.6583672352432277,
0.6570257630855106,
0.6557273437874995,
0.6544717531236673,
0.6532585632940494,
0.6520871861814719,
0.6509569202207602,
0.6498669999971348,
0.6488166476180428,
0.6478051248484458,
0.6468317849651011,
0.645896123271218,
0.6449978252191484,
0.6441368111152069,
0.6433132764266891,
0.6425277267757679,
0.6417810067870751,
0.641074322054112,
0.6404092536027272,
0.6397877643561886,
0.6392121972441598,
0.6386852647453399,
0.6382100298086751,
0.6377898782587152,
0.6374284829544997,
0.6371297601356599,
0.636897818551327,
0.6367369021237372,
0.6366513270457151,
0.6366454143458473,
0.6367234190734078,
0.6368894573532288,
0.6371474326351512,
0.6375009625102248,
0.6379533074837235,
0.6385073030813306,
0.6391652966184376,
0.6399290898833156,
0.640799888874114,
0.6417782615894506,
0.6428641047063128,
0.6440566197915706,
0.6453542994901065,
0.6467549239194769,
0.6482555672846818,
0.6498526145136317
],
[
0.6672873232045942,
0.665893360883397,
0.6645405504916714,
0.663229548041025,
0.6619606793296422,
0.6607339628377897,
0.6595491386586361,
0.6584057030144055,
0.6573029477835632,
0.6562400043505661,
0.655215890988446,
0.6542295628984329,
0.653279963961844,
0.6523660792089488,
0.6514869869783705,
0.6506419097292225,
0.6498302624766371,
0.6490516978492034,
0.6483061468134437,
0.6475938541748164,
0.6469154080457139,
0.6462717625671677,
0.6456642532810648,
0.6450946046720342,
0.6445649295311738,
0.6440777199356658,
0.6436358297872188,
0.6432424490061385,
0.6429010696344256,
0.6426154442582267,
0.6423895373144911,
0.6422274699959484,
0.6421334596093188,
0.6421117543707096,
0.6421665647359741,
0.6423019924589775,
0.6425219586439124,
0.6428301321060048,
0.6432298593755696,
0.6437240976714748,
0.6443153521305118,
0.6450056185087407,
0.6457963324704147,
0.646688326451542,
0.6476817949315173,
0.6487762687716061,
0.6499705990882855,
0.6512629509281602,
0.652650806805365,
0.6541309799582586
],
[
0.6703326269507373,
0.6690478981898761,
0.6678041304145504,
0.6666017468816399,
0.6654408388752203,
0.6643211892080612,
0.6632423016630742,
0.6622034359205133,
0.6612036473962624,
0.6602418313064499,
0.6593167701764573,
0.658427183930344,
0.6575717816315265,
0.6567493138984732,
0.655958624991009,
0.6551987035538733,
0.654468731014378,
0.6537681266599005,
0.6530965884677833,
0.6524541288239798,
0.6518411043463139,
0.6512582391221574,
0.65070664077725,
0.6501878089107547,
0.6497036355598556,
0.6492563974935814,
0.6488487402782676,
0.6484836542042481,
0.6481644423129002,
0.647894680912777,
0.6476781731207999,
0.6475188961066127,
0.6474209428523785,
0.6473884593634239,
0.6474255783740795,
0.6475363506846393,
0.6477246753365176,
0.6479942298805819,
0.6483484020159034,
0.6487902238708879,
0.6493223101648253,
0.6499468014249994,
0.6506653133432727,
0.6514788932381614,
0.6523879844464637,
0.6533923993061219,
0.6544913012135819,
0.6556831960495757,
0.6569659330725203,
0.658336715184344
],
[
0.673298121998374,
0.6721155354032311,
0.6709735915906989,
0.6698725144610878,
0.6688121961921344,
0.6677922210779322,
0.6668118951877885,
0.6658702813906006,
0.6649662391740225,
0.6640984685817739,
0.6632655574993879,
0.6624660314405763,
0.6616984049247879,
0.6609612334926438,
0.6602531653803903,
0.6595729918676,
0.6589196953239,
0.6582924940100204,
0.6576908827351466,
0.6571146685354006,
0.6565640006160656,
0.6560393938915814,
0.6555417455609395,
0.6550723442704013,
0.6546328715388825,
0.6542253952522552,
0.6538523551694966,
0.6535165405242354,
0.6532210599478405,
0.652969304082652,
0.6527649013939532,
0.6526116678243583,
0.6525135510617489,
0.6524745703089635,
0.65249875254719,
0.652590066372556,
0.6527523545539216,
0.6529892665067609,
0.6533041919010302,
0.6537001966183132,
0.6541799622441946,
0.6547457302253831,
0.6553992517380972,
0.6561417442060254,
0.6569738552751114,
0.6578956349017109,
0.6589065160442684,
0.6600053042712236,
0.6611901764144318,
0.6624586882132709
],
[
0.676186393369285,
0.6750991805833583,
0.6740521657331867,
0.673045403984231,
0.6720786208801699,
0.6711512362757136,
0.6702623939477169,
0.6694109964336706,
0.6685957445346549,
0.6678151808181992,
0.667067736367545,
0.6663517799494817,
0.6656656687147395,
0.6650077995039129,
0.6643766598086718,
0.6637708774327749,
0.6631892679099274,
0.6626308787652948,
0.6620950297536814,
0.6615813482689794,
0.6610897991952855,
0.6606207085587606,
0.6601747804394458,
0.6597531067123887,
0.6593571693060436,
0.658988834791388,
0.6586503412459227,
0.6583442774708993,
0.6580735547759418,
0.6578413716806539,
0.6576511720157185,
0.6575065970340729,
0.6574114322635375,
0.6573695499431984,
0.6573848479842394,
0.6574611864791351,
0.6576023228485592,
0.6578118467606648,
0.6580931159804884,
0.6584491943064862,
0.6588827927255961,
0.6593962148673451,
0.6599913077617902,
0.6606694188067185,
0.661431359728576,
0.6622773781819191,
0.6632071374773658,
0.6642197047622537,
0.6653135478061176,
0.6664865403695435
],
[
0.6789993722764726,
0.6780010896555988,
0.6770424357246079,
0.6761233248031596,
0.6752433453825647,
0.6744017839342543,
0.6735976542361929,
0.6728297317731077,
0.6720965926589011,
0.6713966564323098,
0.6707282319919925,
0.670089565866595,
0.6694788919603482,
0.6688944818763995,
0.6683346948988726,
0.6677980267107521,
0.6672831559378589,
0.6667889876388676,
0.6663146929067032,
0.6658597438067206,
0.6654239429506271,
0.6650074470908433,
0.6646107842165524,
0.6642348637385858,
0.6638809794640691,
0.6635508051818592,
0.663246382804619,
0.6629701031412766,
0.662724679502773,
0.6625131144725859,
0.6623386602994814,
0.6622047734911642,
0.6621150643016932,
0.6620732419103287,
0.6620830561824503,
0.6621482369818937,
0.6622724320661568,
0.6624591446392458,
0.6627116716595848,
0.6630330440009208,
0.6634259695415361,
0.6638927802109876,
0.664435383954327,
0.6650552224824209,
0.6657532355653887,
0.6665298324968749,
0.667384871213115,
0.6683176453963022,
0.6693268797308616,
0.670410733318312
],
[
0.6817383488822285,
0.6808228762825154,
0.6799463425554827,
0.6791085463976292,
0.6783089660061814,
0.6775467825702747,
0.6768209091036811,
0.6761300241846742,
0.6754726100657165,
0.6748469945227253,
0.6742513957328091,
0.6736839694022969,
0.6731428573149192,
0.6726262364340458,
0.6721323676734314,
0.6716596434480723,
0.6712066331302785,
0.6707721255653674,
0.6703551678456843,
0.6699550995999283,
0.6695715821258592,
0.6692046217770952,
0.6688545871075378,
0.6685222193785538,
0.6682086361429697,
0.6679153277346759,
0.6676441466116639,
0.6673972896220086,
0.667177273384993,
0.6669869031014445,
0.666829235226552,
0.6667075345529393,
0.666625226359495,
0.6665858443802118,
0.6665929754348416,
0.6666502016373109,
0.6667610411564259,
0.6669288885444653,
0.6671569556710875,
0.6674482143012492,
0.6678053413356414,
0.668230667690154,
0.6687261317274039,
0.669293238069309,
0.6699330225167376,
0.6706460236826909,
0.6714322618122051,
0.6722912251186135,
0.6732218638158218,
0.6742225918738726
]
]
},
{
"hoverinfo": "text",
"legendgroup": "In-sample",
"marker": {
"color": "black",
"opacity": 0.5,
"symbol": 1
},
"mode": "markers",
"name": "In-sample",
"text": [
"Arm 0_0
hartmann6: 0.0078168 (SEM: 0.1)
x1: 0.301966
x2: 0.115237
x3: 0.662966
x4: 0.787345
x5: 0.514551
x6: 0.35244",
"Arm 1_0
hartmann6: -0.0867212 (SEM: 0.1)
x1: 0.690867
x2: 0.848207
x3: 0.00392287
x4: 0.416611
x5: 0.0603939
x6: 0.503174",
"Arm 2_0
hartmann6: -0.262696 (SEM: 0.1)
x1: 0.802228
x2: 0.481028
x3: 0.78
x4: 0.746598
x5: 0.473398
x6: 0.981709",
"Arm 3_0
hartmann6: -0.331837 (SEM: 0.1)
x1: 0.190671
x2: 0.748055
x3: 0.433947
x4: 0.109519
x5: 0.960888
x6: 0.131726",
"Arm 4_0
hartmann6: -0.0245979 (SEM: 0.1)
x1: 0.0845315
x2: 0.327964
x3: 0.187647
x4: 0.239736
x5: 0.808278
x6: 0.40264",
"Arm 5_0
hartmann6: -0.239878 (SEM: 0.1)
x1: 0.907026
x2: 0.591085
x3: 0.596445
x4: 0.619006
x5: 0.258409
x6: 0.74211",
"Arm 6_0
hartmann6: -1.5728 (SEM: 0.1)
x1: 0.584728
x2: 0.208281
x3: 0.36767
x4: 0.29665
x5: 0.204627
x6: 0.775324",
"Arm 7_0
hartmann6: -1.02736 (SEM: 0.1)
x1: 0.406765
x2: 0.945157
x3: 0.963481
x4: 0.909565
x5: 0.721408
x6: 0.111605",
"Arm 8_0
hartmann6: -0.460301 (SEM: 0.1)
x1: 0.47679
x2: 0.379172
x3: 0.25488
x4: 0.508789
x5: 0.11077
x6: 0.247573",
"Arm 9_0
hartmann6: -0.0607661 (SEM: 0.1)
x1: 0.529784
x2: 0.647298
x3: 0.912214
x4: 0.1305
x5: 0.564808
x6: 0.896629",
"Arm 10_0
hartmann6: 0.029059 (SEM: 0.1)
x1: 0.977014
x2: 0.0301202
x3: 0.184233
x4: 0.956763
x5: 0.901647
x6: 0.617313",
"Arm 11_0
hartmann6: -0.221124 (SEM: 0.1)
x1: 0.0294881
x2: 0.761991
x3: 0.529554
x4: 0.342866
x5: 0.41452
x6: 0.269069",
"Arm 12_0
hartmann6: -1.09601 (SEM: 0.1)
x1: 0.515304
x2: 0.147016
x3: 0.270404
x4: 0.252918
x5: 0.125455
x6: 0.866776",
"Arm 13_0
hartmann6: -1.23559 (SEM: 0.1)
x1: 0.616218
x2: 0.22177
x3: 0.398197
x4: 0.193171
x5: 0.17117
x6: 0.686749",
"Arm 14_0
hartmann6: -1.97522 (SEM: 0.1)
x1: 0.517555
x2: 0.184403
x3: 0.334269
x4: 0.30403
x5: 0.282924
x6: 0.776514",
"Arm 15_0
hartmann6: -0.711773 (SEM: 0.1)
x1: 0.466466
x2: 0.105748
x3: 0.196728
x4: 0.196277
x5: 0.289378
x6: 1",
"Arm 16_0
hartmann6: -2.17812 (SEM: 0.1)
x1: 0.432326
x2: 0.144975
x3: 0.298308
x4: 0.391652
x5: 0.344003
x6: 0.753454",
"Arm 17_0
hartmann6: -1.60662 (SEM: 0.1)
x1: 0.325259
x2: 0.10506
x3: 0.309941
x4: 0.0518722
x5: 0.386782
x6: 0.757427",
"Arm 18_0
hartmann6: -1.50848 (SEM: 0.1)
x1: 0.479433
x2: 0.190328
x3: 0.13175
x4: 0.471527
x5: 0.368483
x6: 0.745157"
],
"type": "scatter",
"x": [
0.30196624994277954,
0.6908673066645861,
0.8022277876734734,
0.19067071750760078,
0.08453149162232876,
0.9070260617882013,
0.5847281664609909,
0.4067646227777004,
0.47679008822888136,
0.5297840526327491,
0.9770135628059506,
0.029488124884665012,
0.51530405821805,
0.6162177651859237,
0.5175545033778408,
0.46646638342383795,
0.43232637162103565,
0.32525850964735753,
0.4794325746113217
],
"xaxis": "x",
"y": [
0.11523737758398056,
0.8482067445293069,
0.4810281889513135,
0.7480550073087215,
0.32796390913426876,
0.5910845389589667,
0.20828121434897184,
0.9451567698270082,
0.37917223293334246,
0.6472978480160236,
0.030120238661766052,
0.7619908088818192,
0.14701584431573872,
0.22177024755628905,
0.18440289745072344,
0.10574844651196175,
0.14497532768464472,
0.10505967876597665,
0.19032757840216455
],
"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.0078168 (SEM: 0.1)
x1: 0.301966
x2: 0.115237
x3: 0.662966
x4: 0.787345
x5: 0.514551
x6: 0.35244",
"Arm 1_0
hartmann6: -0.0867212 (SEM: 0.1)
x1: 0.690867
x2: 0.848207
x3: 0.00392287
x4: 0.416611
x5: 0.0603939
x6: 0.503174",
"Arm 2_0
hartmann6: -0.262696 (SEM: 0.1)
x1: 0.802228
x2: 0.481028
x3: 0.78
x4: 0.746598
x5: 0.473398
x6: 0.981709",
"Arm 3_0
hartmann6: -0.331837 (SEM: 0.1)
x1: 0.190671
x2: 0.748055
x3: 0.433947
x4: 0.109519
x5: 0.960888
x6: 0.131726",
"Arm 4_0
hartmann6: -0.0245979 (SEM: 0.1)
x1: 0.0845315
x2: 0.327964
x3: 0.187647
x4: 0.239736
x5: 0.808278
x6: 0.40264",
"Arm 5_0
hartmann6: -0.239878 (SEM: 0.1)
x1: 0.907026
x2: 0.591085
x3: 0.596445
x4: 0.619006
x5: 0.258409
x6: 0.74211",
"Arm 6_0
hartmann6: -1.5728 (SEM: 0.1)
x1: 0.584728
x2: 0.208281
x3: 0.36767
x4: 0.29665
x5: 0.204627
x6: 0.775324",
"Arm 7_0
hartmann6: -1.02736 (SEM: 0.1)
x1: 0.406765
x2: 0.945157
x3: 0.963481
x4: 0.909565
x5: 0.721408
x6: 0.111605",
"Arm 8_0
hartmann6: -0.460301 (SEM: 0.1)
x1: 0.47679
x2: 0.379172
x3: 0.25488
x4: 0.508789
x5: 0.11077
x6: 0.247573",
"Arm 9_0
hartmann6: -0.0607661 (SEM: 0.1)
x1: 0.529784
x2: 0.647298
x3: 0.912214
x4: 0.1305
x5: 0.564808
x6: 0.896629",
"Arm 10_0
hartmann6: 0.029059 (SEM: 0.1)
x1: 0.977014
x2: 0.0301202
x3: 0.184233
x4: 0.956763
x5: 0.901647
x6: 0.617313",
"Arm 11_0
hartmann6: -0.221124 (SEM: 0.1)
x1: 0.0294881
x2: 0.761991
x3: 0.529554
x4: 0.342866
x5: 0.41452
x6: 0.269069",
"Arm 12_0
hartmann6: -1.09601 (SEM: 0.1)
x1: 0.515304
x2: 0.147016
x3: 0.270404
x4: 0.252918
x5: 0.125455
x6: 0.866776",
"Arm 13_0
hartmann6: -1.23559 (SEM: 0.1)
x1: 0.616218
x2: 0.22177
x3: 0.398197
x4: 0.193171
x5: 0.17117
x6: 0.686749",
"Arm 14_0
hartmann6: -1.97522 (SEM: 0.1)
x1: 0.517555
x2: 0.184403
x3: 0.334269
x4: 0.30403
x5: 0.282924
x6: 0.776514",
"Arm 15_0
hartmann6: -0.711773 (SEM: 0.1)
x1: 0.466466
x2: 0.105748
x3: 0.196728
x4: 0.196277
x5: 0.289378
x6: 1",
"Arm 16_0
hartmann6: -2.17812 (SEM: 0.1)
x1: 0.432326
x2: 0.144975
x3: 0.298308
x4: 0.391652
x5: 0.344003
x6: 0.753454",
"Arm 17_0
hartmann6: -1.60662 (SEM: 0.1)
x1: 0.325259
x2: 0.10506
x3: 0.309941
x4: 0.0518722
x5: 0.386782
x6: 0.757427",
"Arm 18_0
hartmann6: -1.50848 (SEM: 0.1)
x1: 0.479433
x2: 0.190328
x3: 0.13175
x4: 0.471527
x5: 0.368483
x6: 0.745157"
],
"type": "scatter",
"x": [
0.30196624994277954,
0.6908673066645861,
0.8022277876734734,
0.19067071750760078,
0.08453149162232876,
0.9070260617882013,
0.5847281664609909,
0.4067646227777004,
0.47679008822888136,
0.5297840526327491,
0.9770135628059506,
0.029488124884665012,
0.51530405821805,
0.6162177651859237,
0.5175545033778408,
0.46646638342383795,
0.43232637162103565,
0.32525850964735753,
0.4794325746113217
],
"xaxis": "x2",
"y": [
0.11523737758398056,
0.8482067445293069,
0.4810281889513135,
0.7480550073087215,
0.32796390913426876,
0.5910845389589667,
0.20828121434897184,
0.9451567698270082,
0.37917223293334246,
0.6472978480160236,
0.030120238661766052,
0.7619908088818192,
0.14701584431573872,
0.22177024755628905,
0.18440289745072344,
0.10574844651196175,
0.14497532768464472,
0.10505967876597665,
0.19032757840216455
],
"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": [
"