{
"cells": [
{
"cell_type": "markdown",
"metadata": {
"originalKey": "e23719d9-8a24-4208-8439-34e7b8270c79"
},
"source": [
"# Visualizations\n",
"\n",
"This tutorial illustrates the core visualization utilities available in Ax."
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"code_folding": [],
"collapsed": false,
"executionStartTime": 1627652821316,
"executionStopTime": 1627652822868,
"hidden_ranges": [],
"originalKey": "101b0e96-5b3d-48c5-bf3c-677b4ddf90c7",
"requestMsgId": "c0dd9aaf-896d-4ea9-912f-1e58d301d114"
},
"outputs": [
{
"data": {
"text/html": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n"
]
},
{
"data": {
"text/html": [
" \n",
" "
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"import numpy as np\n",
"from ax.service.ax_client import AxClient\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(\n",
" interact_fitted,\n",
" plot_objective_vs_constraints,\n",
" tile_fitted,\n",
")\n",
"from ax.plot.slice import plot_slice\n",
"from ax.utils.measurement.synthetic_functions import hartmann6\n",
"from ax.utils.notebook.plotting import render, init_notebook_plotting\n",
"\n",
"init_notebook_plotting()"
]
},
{
"cell_type": "markdown",
"metadata": {
"code_folding": [],
"hidden_ranges": [],
"originalKey": "8449378f-890e-4e76-8d73-ce2aa4120a69",
"showInput": true
},
"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",
"metadata": {
"originalKey": "f7544e06-6c6a-4841-b659-3be6a198a948"
},
"source": [
"#### 1a. Define search space and evaluation function"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"code_folding": [],
"collapsed": false,
"executionStartTime": 1627652824829,
"executionStopTime": 1627652824877,
"hidden_ranges": [],
"originalKey": "28f6cb76-828f-445d-bdda-ba057c87dcd0",
"requestMsgId": "7495e7e2-1025-4292-b3aa-e953739cef3e"
},
"outputs": [],
"source": [
"noise_sd = 0.1\n",
"param_names = [f\"x{i+1}\" for i in range(6)] # x1, x2, ..., x6\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",
" }\n"
]
},
{
"cell_type": "markdown",
"metadata": {
"originalKey": "17a51543-298e-47d4-bcd9-33459fe1169e"
},
"source": [
"#### 1b. Create Experiment"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"code_folding": [],
"collapsed": false,
"executionStartTime": 1627654956712,
"executionStopTime": 1627654956823,
"hidden_ranges": [],
"originalKey": "6fca889c-a4ff-42ef-a669-6eb8803de89c",
"requestMsgId": "905eff52-e649-4bd5-abf0-ff69c1549852"
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] 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 04-26 20:16:12] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x1. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x2. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x3. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x4. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x5. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x6. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] 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 04-26 20:16:12] ax.modelbridge.dispatch_utils: Using Bayesian optimization since there are more ordered parameters than there are categories for the unordered categorical parameters.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 12 trials, GPEI 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",
" objective_name=\"hartmann6\",\n",
" minimize=True,\n",
" outcome_constraints=[\"l2norm <= 1.25\"]\n",
")"
]
},
{
"cell_type": "markdown",
"metadata": {
"code_folding": [],
"hidden_ranges": [],
"originalKey": "ab892f7c-4830-4c1d-b476-ec1078ec3faf",
"showInput": false
},
"source": [
"#### 1c. Run the optimization and fit a GP on all data"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {
"code_folding": [],
"collapsed": false,
"executionStartTime": 1627654642967,
"executionStopTime": 1627654862819,
"hidden_ranges": [],
"originalKey": "7269a5ba-45c8-4acf-ac83-a5ea8a52d6c1",
"requestMsgId": "c7a4dea8-fd6d-4e1a-84de-ad973ede0cd7"
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.service.ax_client: Generated new trial 0 with parameters {'x1': 0.647986, 'x2': 0.940565, 'x3': 0.044812, 'x4': 0.575433, 'x5': 0.637394, 'x6': 0.412333}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.service.ax_client: Completed trial 0 with data: {'hartmann6': (-0.04526, 0.1), 'l2norm': (1.381985, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.service.ax_client: Generated new trial 1 with parameters {'x1': 0.567233, 'x2': 0.821178, 'x3': 0.977733, 'x4': 0.199389, 'x5': 0.180126, 'x6': 0.868955}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.service.ax_client: Completed trial 1 with data: {'hartmann6': (-0.238117, 0.1), 'l2norm': (1.656251, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.service.ax_client: Generated new trial 2 with parameters {'x1': 0.030914, 'x2': 0.442223, 'x3': 0.032014, 'x4': 0.751952, 'x5': 0.529942, 'x6': 0.162994}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.service.ax_client: Completed trial 2 with data: {'hartmann6': (-0.172203, 0.1), 'l2norm': (0.921497, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.service.ax_client: Generated new trial 3 with parameters {'x1': 0.893565, 'x2': 0.879475, 'x3': 0.362525, 'x4': 0.865657, 'x5': 0.690319, 'x6': 0.10035}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.service.ax_client: Completed trial 3 with data: {'hartmann6': (-0.173078, 0.1), 'l2norm': (1.674019, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.service.ax_client: Generated new trial 4 with parameters {'x1': 0.725341, 'x2': 0.354519, 'x3': 0.346764, 'x4': 0.049017, 'x5': 0.922025, 'x6': 0.225903}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.service.ax_client: Completed trial 4 with data: {'hartmann6': (0.191891, 0.1), 'l2norm': (1.229723, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.service.ax_client: Generated new trial 5 with parameters {'x1': 0.635386, 'x2': 0.479884, 'x3': 0.430837, 'x4': 0.817347, 'x5': 0.316434, 'x6': 0.137054}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.service.ax_client: Completed trial 5 with data: {'hartmann6': (-0.409751, 0.1), 'l2norm': (1.198406, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.service.ax_client: Generated new trial 6 with parameters {'x1': 0.360357, 'x2': 0.127097, 'x3': 0.981938, 'x4': 0.475173, 'x5': 0.716454, 'x6': 0.980746}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.service.ax_client: Completed trial 6 with data: {'hartmann6': (-0.023049, 0.1), 'l2norm': (1.792053, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.service.ax_client: Generated new trial 7 with parameters {'x1': 0.603229, 'x2': 0.63944, 'x3': 0.192713, 'x4': 0.065143, 'x5': 0.470419, 'x6': 0.061607}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.service.ax_client: Completed trial 7 with data: {'hartmann6': (-0.180625, 0.1), 'l2norm': (1.117865, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.service.ax_client: Generated new trial 8 with parameters {'x1': 0.809156, 'x2': 0.189099, 'x3': 0.794207, 'x4': 0.773438, 'x5': 0.378103, 'x6': 0.268962}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.service.ax_client: Completed trial 8 with data: {'hartmann6': (-0.074947, 0.1), 'l2norm': (1.325708, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.service.ax_client: Generated new trial 9 with parameters {'x1': 0.225076, 'x2': 0.0129, 'x3': 0.802195, 'x4': 0.345076, 'x5': 0.688158, 'x6': 0.461337}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.service.ax_client: Completed trial 9 with data: {'hartmann6': (-0.205796, 0.1), 'l2norm': (1.121066, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.service.ax_client: Generated new trial 10 with parameters {'x1': 0.143256, 'x2': 0.67861, 'x3': 0.774216, 'x4': 0.926749, 'x5': 0.741571, 'x6': 0.727287}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.service.ax_client: Completed trial 10 with data: {'hartmann6': (-0.00976, 0.1), 'l2norm': (1.844292, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.service.ax_client: Generated new trial 11 with parameters {'x1': 0.07977, 'x2': 0.49046, 'x3': 0.474706, 'x4': 0.731792, 'x5': 0.419593, 'x6': 0.904151}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:12] ax.service.ax_client: Completed trial 11 with data: {'hartmann6': (-0.255761, 0.1), 'l2norm': (1.39581, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:31] ax.service.ax_client: Generated new trial 12 with parameters {'x1': 0.514753, 'x2': 0.470081, 'x3': 0.353008, 'x4': 0.774696, 'x5': 0.300075, 'x6': 0.133009}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:31] ax.service.ax_client: Completed trial 12 with data: {'hartmann6': (-0.24639, 0.1), 'l2norm': (1.073419, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:45] ax.service.ax_client: Generated new trial 13 with parameters {'x1': 0.648421, 'x2': 0.473822, 'x3': 0.368169, 'x4': 0.71098, 'x5': 0.216919, 'x6': 0.130905}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:16:45] ax.service.ax_client: Completed trial 13 with data: {'hartmann6': (-0.3002, 0.1), 'l2norm': (1.203156, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:17:04] ax.service.ax_client: Generated new trial 14 with parameters {'x1': 0.59857, 'x2': 0.454225, 'x3': 0.383377, 'x4': 0.957917, 'x5': 0.250776, 'x6': 0.117958}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:17:04] ax.service.ax_client: Completed trial 14 with data: {'hartmann6': (-0.160542, 0.1), 'l2norm': (1.236019, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:17:26] ax.service.ax_client: Generated new trial 15 with parameters {'x1': 0.537644, 'x2': 0.532768, 'x3': 0.461756, 'x4': 0.637048, 'x5': 0.354229, 'x6': 0.096646}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:17:26] ax.service.ax_client: Completed trial 15 with data: {'hartmann6': (-0.608008, 0.1), 'l2norm': (1.122255, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:17:59] ax.service.ax_client: Generated new trial 16 with parameters {'x1': 0.485691, 'x2': 0.50462, 'x3': 0.515797, 'x4': 0.592812, 'x5': 0.356857, 'x6': 0.131914}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:17:59] ax.service.ax_client: Completed trial 16 with data: {'hartmann6': (-0.733421, 0.1), 'l2norm': (1.158977, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:18:24] ax.service.ax_client: Generated new trial 17 with parameters {'x1': 0.467467, 'x2': 0.573445, 'x3': 0.534, 'x4': 0.534673, 'x5': 0.337681, 'x6': 0.095688}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:18:24] ax.service.ax_client: Completed trial 17 with data: {'hartmann6': (-1.230438, 0.1), 'l2norm': (1.311675, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:19:21] ax.service.ax_client: Generated new trial 18 with parameters {'x1': 0.423334, 'x2': 0.588478, 'x3': 0.520482, 'x4': 0.490528, 'x5': 0.320158, 'x6': 0.19463}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:19:21] ax.service.ax_client: Completed trial 18 with data: {'hartmann6': (-1.21523, 0.1), 'l2norm': (1.161382, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:20:01] ax.service.ax_client: Generated new trial 19 with parameters {'x1': 0.397725, 'x2': 0.593562, 'x3': 0.536781, 'x4': 0.468968, 'x5': 0.400463, 'x6': 0.126085}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:20:01] ax.service.ax_client: Completed trial 19 with data: {'hartmann6': (-1.383516, 0.1), 'l2norm': (1.121911, 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(trial_index=trial_index, raw_data=noisy_hartmann_evaluation_function(parameters))"
]
},
{
"cell_type": "markdown",
"metadata": {
"originalKey": "72f4d3e7-fa04-43d0-8451-ded292e705df"
},
"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,
"metadata": {
"code_folding": [],
"collapsed": false,
"executionStartTime": 1627654870209,
"executionStopTime": 1627654871972,
"hidden_ranges": [],
"originalKey": "843df85c-965d-4a83-9fe1-696225d81c0f",
"requestMsgId": "4a643541-867c-46b6-868d-64337920c2a3"
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:20:01] ax.service.ax_client: Retrieving contour plot with parameter 'x1' on X-axis and 'x2' on Y-axis, for metric 'hartmann6'. Remaining parameters are affixed to the middle of their range.\n"
]
},
{
"data": {
"application/vnd.plotly.v1+json": {
"config": {
"linkText": "Export to plot.ly",
"plotlyServerURL": "https://plot.ly",
"showLink": false
},
"data": [
{
"autocolorscale": false,
"autocontour": true,
"colorbar": {
"tickfont": {
"size": 8
},
"ticksuffix": "",
"x": 0.45,
"y": 0.5
},
"colorscale": [
[
0.0,
"rgb(247,252,253)"
],
[
0.125,
"rgb(229,245,249)"
],
[
0.25,
"rgb(204,236,230)"
],
[
0.375,
"rgb(153,216,201)"
],
[
0.5,
"rgb(102,194,164)"
],
[
0.625,
"rgb(65,174,118)"
],
[
0.75,
"rgb(35,139,69)"
],
[
0.875,
"rgb(0,109,44)"
],
[
1.0,
"rgb(0,68,27)"
]
],
"contours": {
"coloring": "heatmap"
},
"hoverinfo": "x+y+z",
"ncontours": 25,
"type": "contour",
"x": [
0.0,
0.02040816326530612,
0.04081632653061224,
0.061224489795918366,
0.08163265306122448,
0.1020408163265306,
0.12244897959183673,
0.14285714285714285,
0.16326530612244897,
0.18367346938775508,
0.2040816326530612,
0.22448979591836732,
0.24489795918367346,
0.26530612244897955,
0.2857142857142857,
0.3061224489795918,
0.32653061224489793,
0.3469387755102041,
0.36734693877551017,
0.3877551020408163,
0.4081632653061224,
0.42857142857142855,
0.44897959183673464,
0.4693877551020408,
0.4897959183673469,
0.5102040816326531,
0.5306122448979591,
0.5510204081632653,
0.5714285714285714,
0.5918367346938775,
0.6122448979591836,
0.6326530612244897,
0.6530612244897959,
0.673469387755102,
0.6938775510204082,
0.7142857142857142,
0.7346938775510203,
0.7551020408163265,
0.7755102040816326,
0.7959183673469387,
0.8163265306122448,
0.836734693877551,
0.8571428571428571,
0.8775510204081632,
0.8979591836734693,
0.9183673469387754,
0.9387755102040816,
0.9591836734693877,
0.9795918367346939,
1.0
],
"xaxis": "x",
"y": [
0.0,
0.02040816326530612,
0.04081632653061224,
0.061224489795918366,
0.08163265306122448,
0.1020408163265306,
0.12244897959183673,
0.14285714285714285,
0.16326530612244897,
0.18367346938775508,
0.2040816326530612,
0.22448979591836732,
0.24489795918367346,
0.26530612244897955,
0.2857142857142857,
0.3061224489795918,
0.32653061224489793,
0.3469387755102041,
0.36734693877551017,
0.3877551020408163,
0.4081632653061224,
0.42857142857142855,
0.44897959183673464,
0.4693877551020408,
0.4897959183673469,
0.5102040816326531,
0.5306122448979591,
0.5510204081632653,
0.5714285714285714,
0.5918367346938775,
0.6122448979591836,
0.6326530612244897,
0.6530612244897959,
0.673469387755102,
0.6938775510204082,
0.7142857142857142,
0.7346938775510203,
0.7551020408163265,
0.7755102040816326,
0.7959183673469387,
0.8163265306122448,
0.836734693877551,
0.8571428571428571,
0.8775510204081632,
0.8979591836734693,
0.9183673469387754,
0.9387755102040816,
0.9591836734693877,
0.9795918367346939,
1.0
],
"yaxis": "y",
"z": [
[
-0.1763920117130402,
-0.17619840559744412,
-0.17596346068576135,
-0.1756851206569527,
-0.17536157856360957,
-0.17499132279957322,
-0.17457318166993827,
-0.17410636539087065,
-0.17359050433839818,
-0.17302568240559324,
-0.1724124644175005,
-0.17175191669043285,
-0.17104562000099585,
-0.170295674441281,
-0.1695046958684108,
-0.1686758038957566,
-0.16781260160606037,
-0.1669191473806404,
-0.1659999194231916,
-0.16505977370376232,
-0.1641038961542397,
-0.16313775001083433,
-0.16216701922485594,
-0.16119754885669826,
-0.1602352833376288,
-0.15928620343896135,
-0.15835626273769315,
-0.15745132431989842,
-0.15657709842442832,
-0.15573908170368617,
-0.1549424987665944,
-0.15419224666976541,
-0.1534928430322275,
-0.15284837846074703,
-0.15226247397942008,
-0.15173824415089585,
-0.15127826654988938,
-0.1508845581963616,
-0.15055855947176988,
-0.15030112592561504,
-0.1501125282325455,
-0.14999246038690933,
-0.1499400560289077,
-0.14995391259355206,
-0.1500321227709467,
-0.15017231257491195,
-0.1503716851470117,
-0.1506270692836564,
-0.1509349715720218,
-0.15129163096040868
],
[
-0.17612829657658877,
-0.17588854003712176,
-0.17560406583292779,
-0.17527277646154107,
-0.17489284252819914,
-0.17446275037718167,
-0.17398134828202133,
-0.17344789000751554,
-0.17286207454825303,
-0.17222408088855504,
-0.1715345967183127,
-0.17079484017569616,
-0.1700065738650669,
-0.16917211060738516,
-0.16829431060914693,
-0.1673765699711,
-0.1664228006860584,
-0.16543740248347205,
-0.1644252270566268,
-0.16339153534921952,
-0.16234194867810997,
-0.16128239452872567,
-0.16021904788298577,
-0.15915826893380422,
-0.1581065380143878,
-0.1570703885347675,
-0.15605633868218974,
-0.15507082261473032,
-0.1541201218651354,
-0.1532102976778755,
-0.15234712502686604,
-0.15153602910105782,
-0.1507820250938624,
-0.1500896621814138,
-0.14946297261362432,
-0.14890542685997957,
-0.14841989573877523,
-0.14800862040557153,
-0.14767319097844275,
-0.147414534432213,
-0.1472329122035084,
-0.14712792771952832,
-0.14709854380611367,
-0.14714310965812485,
-0.1472593967823128,
-0.14744464306524616,
-0.14769560389104733,
-0.1480086090481479,
-0.1483796240303363,
-0.1488043142606138
],
[
-0.17588540803451846,
-0.17559747309078588,
-0.175261383942256,
-0.17487502672610272,
-0.17443657508268015,
-0.17394453880449987,
-0.1733978109698792,
-0.17279571238620547,
-0.17213803216195692,
-0.1714250632675685,
-0.17065763203359544,
-0.169837120667709,
-0.1689654820437472,
-0.16804524621714043,
-0.16707951833997034,
-0.16607196787274833,
-0.165026809205609,
-0.16394877399700886,
-0.1628430757034853,
-0.1617153669030764,
-0.16057169010493696,
-0.15941842278977755,
-0.15826221744495542,
-0.15710993735233322,
-0.15596858886643628,
-0.15484525089588616,
-0.15374700228315455,
-0.15268084777534943,
-0.15165364329843622,
-0.15067202129196763,
-0.14974231693012277,
-0.148870496142646,
-0.14806208644737678,
-0.14732211170259113,
-0.14665503196839055,
-0.14606468971717831,
-0.1455542636399615,
-0.14512623124628335,
-0.1447823413433516,
-0.14452359730170472,
-0.14435025177358307,
-0.1442618132348782,
-0.14425706438624555,
-0.1443340920919316,
-0.14449032817686222,
-0.14472260006492574,
-0.1450271899441534,
-0.14539990090448582,
-0.14583612832330087,
-0.14633093467979108
],
[
-0.17572683823194218,
-0.17539129639145187,
-0.1750040900184591,
-0.17456310570761147,
-0.17406653810764985,
-0.17351293907702517,
-0.172901265204371,
-0.17223092255090036,
-0.17150180747090474,
-0.17071434240960043,
-0.1698695056647794,
-0.16896885422710328,
-0.1680145389773057,
-0.1670093117080885,
-0.16595652364302457,
-0.16486011533205785,
-0.1637245980009408,
-0.16255502660908427,
-0.16135696501804123,
-0.16013644378562938,
-0.1588999111767286,
-0.15765417802318352,
-0.15640635707782574,
-0.15516379750022613,
-0.15393401509531315,
-0.15272461891222047,
-0.1515432348109996,
-0.1503974266287484,
-0.14929461563090604,
-0.14824199902067509,
-0.14724646839786218,
-0.1463145292011374,
-0.1454522223233781,
-0.14466504924298548,
-0.14395790214667673,
-0.14333500061195073,
-0.14279983645172784,
-0.14235512828404234,
-0.1420027872655371,
-0.14174389521491312,
-0.14157869605510479,
-0.14150660113237865,
-0.14152620854558953,
-0.14163533616396498,
-0.14183106755493272,
-0.14210980961330077,
-0.14246736030617083,
-0.14289898464643175,
-0.14339949679729988,
-0.14396334609942998
],
[
-0.17573252463652564,
-0.17535333393992036,
-0.1749188663000012,
-0.17442701290209872,
-0.1738759953611034,
-0.173264415115996,
-0.17259130100727502,
-0.1718561539355903,
-0.17105898750631235,
-0.17020036361185625,
-0.1692814219909272,
-0.16830390292818478,
-0.16727016241299397,
-0.16618317925329523,
-0.1650465538296863,
-0.16386449836409991,
-0.16264181875565734,
-0.161383888193271,
-0.16009661288257995,
-0.15878639031915853,
-0.15746006059971587,
-0.1561248512911034,
-0.15478831637999868,
-0.1534582698137959,
-0.15214271412734046,
-0.15084976464346406,
-0.14958756975017298,
-0.14836422780433686,
-0.14718770129812245,
-0.14606572905311285,
-0.14500573737560293,
-0.1440147513067291,
-0.14309930731886955,
-0.1422653690260464,
-0.14151824766803295,
-0.14086252927087764,
-0.14030201045663568,
-0.13983964485170364,
-0.13947750191186495,
-0.1392167397369888,
-0.13905759309328056,
-0.1389993774104617,
-0.13904050899931703,
-0.139178541173327,
-0.1394102153928486,
-0.13973152601868313,
-0.14013779679824342,
-0.1406237668401282,
-0.14118368358133496,
-0.14181140012522445
],
[
-0.17599870460401462,
-0.17558401846486943,
-0.17511030057023627,
-0.17457543315264462,
-0.173977653897059,
-0.17331560565925416,
-0.1725883841052361,
-0.17179558220505933,
-0.17093733053020596,
-0.1700143323572171,
-0.16902789267051482,
-0.16797994028068802,
-0.16687304242476192,
-0.16571041138371298,
-0.16449590282971083,
-0.163234005790475,
-0.16192982428014382,
-0.16058905078584734,
-0.15921793190968583,
-0.15782322654304265,
-0.15641215699374078,
-0.15499235350000312,
-0.1535717925557392,
-0.1521587294498167,
-0.15076162540051877,
-0.1493890696593078,
-0.14804969697909218,
-0.14675210090338173,
-0.1455047434426203,
-0.14431586186635545,
-0.14319337355244327,
-0.1421447800880334,
-0.14117707209548647,
-0.14029663653701321,
-0.1395091685070567,
-0.13881958972085837,
-0.1382319760210864,
-0.13774949622540486,
-0.13737436450721402,
-0.1371078082306368,
-0.13695005275283678,
-0.13690032417888418,
-0.1369568704360343,
-0.1371170003647123,
-0.13737713984797217,
-0.13773290336620642,
-0.13817917881224787,
-0.1387102229685512,
-0.13931976475654229,
-0.14000111322933484
],
[
-0.17663740077845502,
-0.17620040050173424,
-0.17570042009583808,
-0.17513529609953193,
-0.17450324907951267,
-0.17380293422257975,
-0.17303348949018257,
-0.17219458027818274,
-0.1712864395513378,
-0.17030990248480846,
-0.16926643474242814,
-0.16815815364960984,
-0.16698784167127617,
-0.16575895177373334,
-0.16447560442411596,
-0.16314257615136002,
-0.16176527974827629,
-0.16034973632606261,
-0.15890253953354758,
-0.15743081231964312,
-0.15594215664856412,
-0.15444459657699458,
-0.1529465150781015,
-0.15145658496024947,
-0.14998369419234217,
-0.14853686592841292,
-0.1471251735370946,
-0.145757651001051,
-0.1444431991681353,
-0.14319048851556906,
-0.14200785932968696,
-0.14090322049770077,
-0.13988394843705385,
-0.13895678802674918,
-0.1381277577214702,
-0.13740206128720328,
-0.13678400875974336,
-0.13627694926193312,
-0.13588321819692598,
-0.13560410105050633,
-0.13543981558797977,
-0.13538951363907242,
-0.1354513029617903,
-0.13562228890979558,
-0.1358986348516563,
-0.13627563956008348,
-0.13674782915627,
-0.13730906070012708,
-0.1379526341892725,
-0.13867140958006743
],
[
-0.17777570552765212,
-0.17733547727522048,
-0.1768280677226158,
-0.17625120128286595,
-0.17560301936573924,
-0.174882132981943,
-0.17408767244323536,
-0.17321933306181192,
-0.1722774157901431,
-0.17126286181734657,
-0.1701772802484487,
-0.16902296813437478,
-0.16780292228669283,
-0.16652084249340865,
-0.16518112594030815,
-0.16378885282542605,
-0.16234976332120515,
-0.16087022617981098,
-0.15935719938393716,
-0.15781818331325628,
-0.15626116692415548,
-0.15469456743045257,
-0.1531271639327337,
-0.1515680253852569,
-0.15002643322702736,
-0.14851179895507954,
-0.147033576901508,
-0.14560117250871502,
-0.14422384649392356,
-0.14291061546316464,
-0.14167014977826234,
-0.14051066979036964,
-0.1394398419130047,
-0.13846467638913507,
-0.1375914289750517,
-0.1368255090772554,
-0.13617139709431428,
-0.13563257379393934,
-0.13521146446525895,
-0.1349094003100096,
-0.1347265990740067,
-0.13466216629080652,
-0.13471411775024986,
-0.13487942296779262,
-0.1351540685777065,
-0.13553313976819087,
-0.1360109171780015,
-0.13658098612981598,
-0.13723635471667409,
-0.13796957709774083
],
[
-0.17955498131930434,
-0.17913747507816763,
-0.17864827160483712,
-0.17808487899845418,
-0.17744526024098603,
-0.176727889686158,
-0.1759318060748478,
-0.17505666086399257,
-0.17410276070303832,
-0.17307110298084838,
-0.17196340349534375,
-0.17078211546392366,
-0.16953043928822406,
-0.16821232270285627,
-0.16683245116326342,
-0.16539622855021008,
-0.16390974847470077,
-0.16237975664486498,
-0.1608136048948706,
-0.15921919756736455,
-0.15760493098133238,
-0.15597962670736729,
-0.1543524593180933,
-0.15273287919410575,
-0.15113053086130807,
-0.14955516723374712,
-0.14801656005897332,
-0.14652440683267334,
-0.14508823448545183,
-0.14371730026161667,
-0.1424204904142405,
-0.14120621762910343,
-0.14008231844726884,
-0.13905595235507187,
-0.13813350461358176,
-0.137320495261752,
-0.13662149699970047,
-0.1360400647944046,
-0.13557868001160098,
-0.13523871164137943,
-0.13502039674641483,
-0.1349228416379564,
-0.13494404451336214,
-0.1350809394252071,
-0.13532946056193082,
-0.13568462497306621,
-0.13614063113277936,
-0.1366909701560665,
-0.1373285460974025,
-0.13804580158696927
],
[
-0.18212998572877573,
-0.18176910442828711,
-0.18133163998739804,
-0.18081473198119913,
-0.18021601748309166,
-0.1795336942265543,
-0.17876657965807677,
-0.17791416444225858,
-0.17697665902982446,
-0.17595503200104803,
-0.17485103905065433,
-0.17366724168244668,
-0.17240701492612442,
-0.17107454366518382,
-0.16967480746053618,
-0.1682135540542313,
-0.1666972620245833,
-0.16513309332084214,
-0.16352883661617873,
-0.16189284256855596,
-0.1602339521605898,
-0.15856141929780507,
-0.1568848287823465,
-0.15521401065596563,
-0.15355895173867898,
-0.15192970500078468,
-0.15033629722326944,
-0.14878863525434977,
-0.14729641108617134,
-0.14586900597904476,
-0.14451539396638602,
-0.1432440452856908,
-0.14206283058983685,
-0.1409789271746738,
-0.13999872887565415,
-0.1391277616899192,
-0.13837060751671793,
-0.1377308386247264,
-0.13721096550377074,
-0.13681240060915043,
-0.13653544014766095,
-0.13637926549698784,
-0.13634196512873817,
-0.1364205770737876,
-0.13661115109371877,
-0.1369088288755624,
-0.13730793981656703,
-0.13780210936716036,
-0.13838437649199375,
-0.13904731660891953
],
[
-0.18566778008134818,
-0.18540664793013661,
-0.18506364404795225,
-0.18463532629367202,
-0.18411879588159002,
-0.18351177113987302,
-0.1828126565542554,
-0.18202060528419997,
-0.18113557337673203,
-0.18015836400988627,
-0.1790906602760664,
-0.17793504526464138,
-0.176695008517393,
-0.17537493829975628,
-0.17398009954009103,
-0.17251659771894032,
-0.17099132941723963,
-0.16941192063136756,
-0.1677866543080165,
-0.16612438881918667,
-0.16443446926742664,
-0.16272663357069658,
-0.16101091522049385,
-0.15929754444194177,
-0.15759684922697037,
-0.15591915738831247,
-0.15427470042807412,
-0.15267351967089543,
-0.1511253748203003,
-0.14963965489652517,
-0.14822529143520843,
-0.14689067388619564,
-0.1456435673511814,
-0.14449103312051273,
-0.14343935287793738,
-0.14249395788707317,
-0.14165936489496275,
-0.14093912082367396,
-0.14033575851359054,
-0.13985076578845296,
-0.1394845699092157,
-0.13923653907243702,
-0.13910500201505202,
-0.13908728605864568,
-0.13917977312600013,
-0.13937797246128003,
-0.13967660805153995,
-0.14006971814007194,
-0.1405507637840054,
-0.14111274316247702
],
[
-0.19034610836697466,
-0.19023855559570194,
-0.19004345438228223,
-0.18975649089347627,
-0.18937394011758313,
-0.1888927555264856,
-0.18831065363719518,
-0.18762619109751472,
-0.18683883191796286,
-0.18594900256278493,
-0.1849581328056272,
-0.1838686805544078,
-0.18268413925314744,
-0.1814090269669277,
-0.18004885683274363,
-0.17861008918886412,
-0.17710006634615463,
-0.17552693159854546,
-0.17389953464499325,
-0.17222732607026633,
-0.17052024386880876,
-0.16878859516479414,
-0.16704293626414715,
-0.1652939539677528,
-0.16355235069341287,
-0.16182873542889287,
-0.16013352191687694,
-0.1584768348139779,
-0.1568684239354551,
-0.1553175861595718,
-0.1538330941766656,
-0.15242313106861333,
-0.15109522971361916,
-0.14985621622360676,
-0.14871215700619506,
-0.14766830954731114,
-0.14672907756476147,
-0.14589797171071997,
-0.14517757742748943,
-0.1445695318235788,
-0.14407451149396794,
-0.1436922330431365,
-0.1434214676933001,
-0.1432600708099071,
-0.14320502650791184,
-0.14325250678307994,
-0.14339794391199343,
-0.14363611424527922,
-0.1439612310299775,
-0.14436704357025473
],
[
-0.19635075633180069,
-0.19646302934745172,
-0.19648178772367475,
-0.1964014610094381,
-0.19621710570214124,
-0.1959245177333836,
-0.19552034002614452,
-0.19500216195864348,
-0.19436860747556622,
-0.1936194086175898,
-0.19275546141505634,
-0.1917788614255531,
-0.19069291669433963,
-0.18950213657687717,
-0.18821219566757216,
-0.1868298729979736,
-0.18536296765699709,
-0.18382019298879246,
-0.1822110524747141,
-0.1805457012338738,
-0.1788347977128377,
-0.1770893505187561,
-0.17532056543726474,
-0.1735396974453951,
-0.17175791198674625,
-0.1699861589575913,
-0.16823506182340783,
-0.16651482313442256,
-0.1648351465403926,
-0.16320517432768444,
-0.16163343861639018,
-0.16012782374241213,
-0.15869553705967746,
-0.1573430854450626,
-0.15607625514890808,
-0.15490009324779505,
-0.15381888973671007,
-0.15283616014202187,
-0.15195462933932466,
-0.15117621792620087,
-0.1505020329563727,
-0.14993236504534568,
-0.14946669379848992,
-0.1491037032122633,
-0.14884130820585123,
-0.1486766928193268,
-0.14860635993861526,
-0.14862619174794756,
-0.1487315195277622,
-0.14891720095499333
],
[
-0.20387123729451173,
-0.20428389430373856,
-0.204597015396003,
-0.2048032745814853,
-0.20489599180012985,
-0.2048692768834986,
-0.2047181698644603,
-0.20443877343352007,
-0.20402837306761787,
-0.20348554024452561,
-0.2028102142418854,
-0.20200375833735212,
-0.20106898679862661,
-0.20001015988835397,
-0.19883294519922617,
-0.19754434494698497,
-0.1961525903268062,
-0.19466700560089756,
-0.19309784613018138,
-0.19145611597419052,
-0.1897533718393278,
-0.18800152094232628,
-0.18621262067989625,
-0.1843986877981739,
-0.18257152402290466,
-0.18074256388123833,
-0.17892274880884215,
-0.17712242972809272,
-0.1753512982737603,
-0.17361834491602898,
-0.17193184056452165,
-0.1702993369809362,
-0.16872768058574772,
-0.1672230340618129,
-0.16579090051781184,
-0.16443614580202473,
-0.1631630157299576,
-0.1619751463563104,
-0.1608755668219828,
-0.15986669559017905,
-0.15895033192983113,
-0.15812764522655887,
-0.15739916506318904,
-0.1567647750192954,
-0.15622371283560288,
-0.15577457904482395,
-0.15541535547088653,
-0.1551434342317149,
-0.15495565712740797,
-0.1548483646214536
],
[
-0.21309402205508116,
-0.21390389884838962,
-0.21460860173780583,
-0.21519841934379924,
-0.2156642675098822,
-0.215997874969017,
-0.2161919685599734,
-0.21624045253262542,
-0.21613857589581953,
-0.21588308136628376,
-0.21547232933921706,
-0.2149063904854076,
-0.21418710114129208,
-0.21331807663512004,
-0.2123046790958208,
-0.21115393809824823,
-0.2098744246451037,
-0.20847608136361775,
-0.2069700142531194,
-0.20536825367213815,
-0.20368349429417493,
-0.2019288252828369,
-0.20011746275662307,
-0.19826249659797324,
-0.19637666274961896,
-0.1944721503622288,
-0.19256045063383637,
-0.19065225112416867,
-0.1887573760132877,
-0.186884769517207,
-0.18504251678401784,
-0.18323789434178886,
-0.18147744074809827,
-0.17976703759664153,
-0.1781119914583585,
-0.1765171085624711,
-0.17498675586612195,
-0.17352490437891546,
-0.1721351529426874,
-0.17082073287522803,
-0.16958449576998547,
-0.16842888816293053,
-0.16735591766168825,
-0.1663671154754908,
-0.1654635001379328,
-0.16464554666904996,
-0.16391316459332564,
-0.16326568723693674,
-0.1627018736846046,
-0.16221992377981673
],
[
-0.2241924652710798,
-0.22551448800390067,
-0.2267268076677949,
-0.2278165569383424,
-0.22877141204112744,
-0.22957983125083012,
-0.2302312992069318,
-0.23071657021219094,
-0.2310279025907118,
-0.23115927528835434,
-0.23110657730800332,
-0.2308677604003574,
-0.2304429457878985,
-0.2298344766790248,
-0.22904690999173297,
-0.22808694306338234,
-0.22696327412184458,
-0.22568639880455565,
-0.2242683488260816,
-0.22272238272797884,
-0.22106264215766724,
-0.21930378995240973,
-0.21746064810552862,
-0.21554785418694167,
-0.21357955381547708,
-0.21156914432423557,
-0.20952908098084724,
-0.20747075234467127,
-0.20540442601845288,
-0.20333926071580297,
-0.2012833757592147,
-0.19924396532220093,
-0.19722744228141378,
-0.1952395956270597,
-0.1932857459828263,
-0.19137088572657035,
-0.18949979316084087,
-0.1876771137562738,
-0.18590740525672603,
-0.18419514700113127,
-0.1825447168677669,
-0.18096034156818588,
-0.1794460275070585,
-0.17800548007978592,
-0.1766420191847573,
-0.175358498022193,
-0.1741572311081712,
-0.17303993602840292,
-0.17200769195587806,
-0.17106091649721542
],
[
-0.23731262608096748,
-0.23928110342936648,
-0.24113756075871537,
-0.2428650684300545,
-0.24444705410082834,
-0.24586760457780987,
-0.24711178425211713,
-0.24816596205091346,
-0.24901813700008196,
-0.2496582507940121,
-0.2500784743742659,
-0.2502734546137174,
-0.25024050698404793,
-0.24997974074273005,
-0.24949410486954707,
-0.24878934580945697,
-0.24787387204186287,
-0.24675852547726768,
-0.2454562654195394,
-0.24398177691809086,
-0.2423510212341662,
-0.24058075124178258,
-0.23868801824752017,
-0.23668969839239612,
-0.23460206611329423,
-0.23244043896422822,
-0.23021891260652866,
-0.227950197457476,
-0.22564556008378786,
-0.2233148638466067,
-0.22096669548766418,
-0.2186085581266078,
-0.2162471071267399,
-0.21388840378634366,
-0.2115381628009051,
-0.20920197259187956,
-0.20688547235625043,
-0.20459447537682954,
-0.20233503404493486,
-0.20011344755847205,
-0.1979362178862502,
-0.19580996302918363,
-0.19374129873879398,
-0.19173670071167354,
-0.18980235902567116,
-0.18794403545666596,
-0.18616693258375308,
-0.18447558152151025,
-0.18287375294631697,
-0.1813643939986938
],
[
-0.2525544041748411,
-0.25532325290589525,
-0.257981538900188,
-0.2605072573240536,
-0.2628784236047013,
-0.2650734459167205,
-0.26707153109145526,
-0.26885311525223937,
-0.27040030761335454,
-0.27169733299760257,
-0.272730955943917,
-0.27349086706614556,
-0.273970010906163,
-0.27416483424169585,
-0.27407543499291287,
-0.2737055947937044,
-0.2730626831072972,
-0.27215742744509286,
-0.27100355253093056,
-0.2696173006099953,
-0.26801685473631537,
-0.2662216957765431,
-0.26425193092816135,
-0.26212763570881453,
-0.2598682518096335,
-0.25749207951215225,
-0.2550158956765644,
-0.2524547173241769,
-0.24982171776798145,
-0.2471282886318418,
-0.24438422856803765,
-0.24159802948748643,
-0.23877722470906246,
-0.23592876112125027,
-0.2330593591539253,
-0.23017582948461307,
-0.22728532298335274,
-0.22439549928080682,
-0.22151460838042122,
-0.2186514879479987,
-0.2158154855912843,
-0.21301632018948138,
-0.21026389904705503,
-0.20756810847053037,
-0.20493859461292302,
-0.2023845494997651,
-0.19991451446609831,
-0.1975362101864146,
-0.19525639939567033,
-0.19308078552524757
],
[
-0.2699479020823703,
-0.27368906551199224,
-0.2773269576050777,
-0.28083344313546543,
-0.2841798630232662,
-0.28733747761836864,
-0.2902779676874302,
-0.29297398507126193,
-0.2953997408604906,
-0.29753161447491333,
-0.29934876248080866,
-0.3008337017009682,
-0.3019728376298236,
-0.302756906913712,
-0.3031813022946254,
-0.3032462505260818,
-0.30295681881997094,
-0.3023227336118064,
-0.3013580067249321,
-0.3000803778006256,
-0.29851059705823674,
-0.29667158749640943,
-0.294587538649318,
-0.29228299300695365,
-0.2897819895112191,
-0.2871073251117143,
-0.28427998510810276,
-0.28131877688882456,
-0.2782401816420605,
-0.27505841727084823,
-0.2717856858982982,
-0.26843256350902567,
-0.2650084792238578,
-0.2615222282536572,
-0.25798246550873616,
-0.25439813506301184,
-0.2507788025103579,
-0.2471348707889975,
-0.24347767346394397,
-0.23981945126788268,
-0.23617322691792558,
-0.2325525993836195,
-0.22897148188146568,
-0.22544380826625893,
-0.2219832307484792,
-0.21860282864452302,
-0.21531484380024385,
-0.21213045396908853,
-0.2090595912025594,
-0.20611080852006614
],
[
-0.2894257747491893,
-0.29432492628990886,
-0.2991364395946078,
-0.30382505816199146,
-0.30835419285243404,
-0.31268642424862797,
-0.31678409500876054,
-0.3206099870240137,
-0.3241280727570791,
-0.327304323819827,
-0.3301075528829013,
-0.33251025780283366,
-0.33448943000023906,
-0.33602728341929383,
-0.3371118568066552,
-0.3377374416263952,
-0.3379047917035716,
-0.3376210794699729,
-0.33689957782428814,
-0.33575906576649533,
-0.3342229788720119,
-0.33231835011012456,
-0.33007460942098776,
-0.3275223283408841,
-0.32469200549017,
-0.3216129875353843,
-0.31831260753813867,
-0.31481559961423894,
-0.31114381863158114,
-0.307316260671165,
-0.30334934897925564,
-0.29925742542452843,
-0.29505337199538934,
-0.29074928184200016,
-0.2863571042452823,
-0.2818892007240248,
-0.2773587674452366,
-0.27278009909944045,
-0.26816868864288046,
-0.26354117365679436,
-0.25891515223713363,
-0.2543088988502721,
-0.2497410137079572,
-0.24523003863992748,
-0.24079406913223278,
-0.23645038715760808,
-0.23221513356049794,
-0.2281030328059675,
-0.22412717738501003,
-0.2202988744165102
],
[
-0.310793602926527,
-0.31704216698432597,
-0.32322982317515825,
-0.3293134147063845,
-0.3352473319093024,
-0.3409840455239099,
-0.34647476932427057,
-0.3516702528145559,
-0.35652169823324986,
-0.3609817879672871,
-0.3650057988150859,
-0.3685527686916344,
-0.37158666997845047,
-0.3740775327728963,
-0.3760024521390717,
-0.3773464077874056,
-0.3781028242872023,
-0.37827380676343764,
-0.37787000242555224,
-0.37691006268011407,
-0.37541971302665433,
-0.3734304756702602,
-0.3709781282186152,
-0.3681010150241385,
-0.3648383494435683,
-0.3612286504524711,
-0.3573084432634716,
-0.3531113220571365,
-0.3486674284474648,
-0.3440033492289847,
-0.33914238945983194,
-0.3341051391607072,
-0.3289102285688715,
-0.3235751596560339,
-0.3181171092881194,
-0.3125536185895249,
-0.3069031092115756,
-0.301185195559842,
-0.29542078852202003,
-0.28963200793821675,
-0.2838419364021747,
-0.2780742556612095,
-0.27235280954256275,
-0.2667011352146345,
-0.26114199917024,
-0.25569696703075717,
-0.2503860283296892,
-0.2452272897534548,
-0.24023674349563576,
-0.23542811174311967
],
[
-0.3337019946578285,
-0.34148468315547886,
-0.34924688949046057,
-0.3569371597765365,
-0.3645001361297503,
-0.3718770739206477,
-0.3790065317315735,
-0.3858252443080026,
-0.39226918194596644,
-0.39827479036412194,
-0.4037803930225546,
-0.40872772317989975,
-0.41306353621426634,
-0.4167412348720019,
-0.4197224227790106,
-0.4219782870639652,
-0.42349070223765195,
-0.42425294786015,
-0.4242699451923522,
-0.4235579452419776,
-0.42214364273345667,
-0.4200627449973341,
-0.4173580855053588,
-0.4140774294379187,
-0.41027116219698395,
-0.4059900710733475,
-0.40128341934472067,
-0.39619747134566213,
-0.39077456371995806,
-0.38505274422275254,
-0.3790659286377341,
-0.3728444701632017,
-0.3664160011996887,
-0.3598063969414624,
-0.3530407211390002,
-0.3461440413654066,
-0.33914203714809155,
-0.3320613625560145,
-0.32492975962105997,
-0.3177759465445599,
-0.3106293232310335,
-0.3035195462843847,
-0.29647602742892953,
-0.2895274052897209,
-0.282701032671259,
-0.2760225118140839,
-0.26951530010111885,
-0.2632003993917822,
-0.25709613421595445,
-0.251218017746229
],
[
-0.35762595505246125,
-0.3671035466012795,
-0.3766165864176334,
-0.3861054622661765,
-0.39550490083475487,
-0.4047444053658784,
-0.4137489082575802,
-0.4224396619738422,
-0.43073538555160984,
-0.4385536745151681,
-0.44581266855407,
-0.4524329535485503,
-0.45833965249532893,
-0.4634646342838446,
-0.46774874166979186,
-0.4711439128829445,
-0.4736150490376134,
-0.4751414669899966,
-0.47571778027273526,
-0.4753540746231646,
-0.47407529278765526,
-0.47191981506346803,
-0.4689373108737994,
-0.46518602946255677,
-0.460729776544363,
-0.45563486992356156,
-0.4499673677080334,
-0.443790815513047,
-0.43716467391350294,
-0.4301434832634699,
-0.42277672140072736,
-0.4151092286197898,
-0.40718202422238736,
-0.3990333225175633,
-0.39069956936148054,
-0.38221635504454626,
-0.3736191057127211,
-0.36494350416227384,
-0.35622563434735866,
-0.3475018775947671,
-0.3388086104211054,
-0.3301817643803073,
-0.3216563094443118,
-0.31326571667156594,
-0.3050414460508357,
-0.2970124937639617,
-0.2892050214630256,
-0.28164207967130905,
-0.27434342872645284,
-0.2673254540103251
],
[
-0.38185856355097336,
-0.3931466402433236,
-0.4045418256798049,
-0.4159771023015524,
-0.4273778080368383,
-0.43866192239688073,
-0.4497406025107259,
-0.4605190078799509,
-0.47089744877335316,
-0.48077288527715045,
-0.4900407910077404,
-0.49859737640815427,
-0.506342140717903,
-0.5131806890844677,
-0.5190277128710297,
-0.5238099895321802,
-0.5274692179805751,
-0.529964472883206,
-0.5312740455276201,
-0.5313964494334074,
-0.5303504141351065,
-0.528173774326608,
-0.5249212792525382,
-0.5206614832313508,
-0.5154730065742614,
-0.5094405465851611,
-0.5026510461983599,
-0.49519038436046453,
-0.48714084870366775,
-0.478579514065519,
-0.4695775117220411,
-0.4602000603799441,
-0.4505070567120658,
-0.44055399462881717,
-0.43039299343138904,
-0.4200737546035816,
-0.409644322146707,
-0.3991515796860938,
-0.3886414695457206,
-0.37815895883178,
-0.3677478031847289,
-0.35745017101646104,
-0.34730619228261495,
-0.33735348942117804,
-0.32762673723337243,
-0.3181572858759334,
-0.30897286873209456,
-0.3000974059634782,
-0.2915509056388005,
-0.28334945765951536
],
[
-0.40552636264471564,
-0.4186721242214769,
-0.4320102476291608,
-0.44546762510324944,
-0.4589614248138258,
-0.47239915897212265,
-0.4856790241984127,
-0.4986905688437606,
-0.5113157415718226,
-0.5234303709110008,
-0.5349061151225141,
-0.5456129039088754,
-0.5554218666048336,
-0.5642087043912529,
-0.5718574165959918,
-0.5782642348894826,
-0.5833415583601582,
-0.5870216246819608,
-0.589259609190936,
-0.5900358289681018,
-0.5893567578091976,
-0.5872546410937411,
-0.5837856378335629,
-0.5790265957291565,
-0.5730707519135261,
-0.5660228042926561,
-0.5579938761027867,
-0.5490968786790641,
-0.5394426716093199,
-0.529137256645159,
-0.5182800636900371,
-0.5069632315402919,
-0.49527167738749633,
-0.4832836964951483,
-0.47107183271563713,
-0.45870379851805065,
-0.4462432831319839,
-0.433750553282393,
-0.4212828106363493,
-0.4088943163409964,
-0.3966363233859623,
-0.3845568728942459,
-0.37270051375252183,
-0.3611079998967814,
-0.34981600959271536,
-0.3388569190776585,
-0.32825865103372587,
-0.3180446078274544,
-0.30823369092354636,
-0.2988404015356444
],
[
-0.42763217439204815,
-0.44259298468282887,
-0.4578400353000457,
-0.47329580002514754,
-0.48887101248982845,
-0.5044644710415018,
-0.5199631231789142,
-0.5352424984789449,
-0.5501675627855523,
-0.5645940664317833,
-0.5783704534786211,
-0.5913403850543781,
-0.6033459052974905,
-0.614231240672668,
-0.6238471707865796,
-0.6320558411892654,
-0.6387358088942001,
-0.6437870267785994,
-0.6471353964635613,
-0.6487364690505976,
-0.6485778707919199,
-0.6466800959151389,
-0.643095450688932,
-0.6379051417382102,
-0.631214744384835,
-0.6231485113179298,
-0.613843132710984,
-0.603441597826786,
-0.5920877292749018,
-0.579921791590267,
-0.5670773634216597,
-0.553679457930389,
-0.5398437178210519,
-0.5256764193336615,
-0.5112749936712617,
-0.49672880068648595,
-0.4821199476378746,
-0.46752401532812093,
-0.4530106196374839,
-0.43864378931749043,
-0.4244821774907328,
-0.41057914519458394,
-0.39698276334687227,
-0.3837357783716444,
-0.37087557996377607,
-0.35843420003410187,
-0.3464383619045266,
-0.3349095896864589,
-0.3238643802096717,
-0.3133144341381078
],
[
-0.4471267064990378,
-0.46375513169411203,
-0.4807646728151844,
-0.49807509730977273,
-0.5155926366551876,
-0.5332095164027753,
-0.5508037599791203,
-0.5682393461095712,
-0.5853668078143084,
-0.6020243659290515,
-0.6180396899017264,
-0.6332323704602313,
-0.6474171692872288,
-0.6604080763680695,
-0.6720231526969112,
-0.6820900622878847,
-0.6904521035775053,
-0.6969744419462267,
-0.7015501349590146,
-0.7041054509322756,
-0.7046039371506881,
-0.7030487251486148,
-0.6994826868316082,
-0.69398627623615,
-0.6866731781245538,
-0.6776841801772195,
-0.6671799217533152,
-0.6553332913602846,
-0.6423222213535354,
-0.6283234767389074,
-0.6135078030381211,
-0.5980365479689029,
-0.5820596583901725,
-0.565714811307744,
-0.549127373814863,
-0.5324108893774492,
-0.5156678342204868,
-0.49899045419102994,
-0.4824615608508989,
-0.46615522421306244,
-0.45013734339113853,
-0.43446610496075316,
-0.4191923541540643,
-0.40435990935183697,
-0.3900058490246709,
-0.37616079517184803,
-0.36284921059759,
-0.35008972054060117,
-0.337895463126333,
-0.32627446827721435
],
[
-0.46300356862519854,
-0.48104364955467727,
-0.4995514241413437,
-0.5184453887591586,
-0.5376290537276864,
-0.5569902255600067,
-0.5764005497160711,
-0.595715400879177,
-0.6147742193638902,
-0.6334014016718753,
-0.6514078583143391,
-0.668593349884305,
-0.6847496991677126,
-0.6996649482094828,
-0.7131284797076086,
-0.7249370475229044,
-0.7349015594896213,
-0.7428543301462933,
-0.7486563826642958,
-0.7522042498846104,
-0.7534356360286879,
-0.7523332904180488,
-0.7489265433491095,
-0.7432901720954591,
-0.7355405788180784,
-0.7258296145162545,
-0.71433669575047,
-0.7012600596100791,
-0.6868080433473781,
-0.6711911593557621,
-0.6546155070010238,
-0.6372777872559533,
-0.6193619303642652,
-0.6010371566234606,
-0.5824571832687004,
-0.5637602594038545,
-0.5450697349853477,
-0.5264949246684008,
-0.508132092277553,
-0.4900654428420455,
-0.4723680591775906,
-0.4551027565206186,
-0.43832285247229313,
-0.42207286279106937,
-0.40638913916596175,
-0.3913004656286465,
-0.3768286278732954,
-0.3629889660428844,
-0.34979091758011654,
-0.33723855316968865
],
[
-0.4744047967111429,
-0.49350267972271045,
-0.5131372822708651,
-0.5332268033541585,
-0.5536734340356873,
-0.5743624537966296,
-0.5951615739724787,
-0.6159206191222802,
-0.6364716510658643,
-0.656629652743175,
-0.6761938979582705,
-0.6949501355234173,
-0.7126737083041521,
-0.7291337040748678,
-0.744098190004074,
-0.7573405101357518,
-0.768646521396103,
-0.7778225091593697,
-0.7847033675291737,
-0.7891604736099949,
-0.7911085635687699,
-0.7905108739626943,
-0.7873818836176252,
-0.781787197268896,
-0.773840434224979,
-0.7636973662446436,
-0.7515479057958436,
-0.7376067970482072,
-0.7221039543540256,
-0.7052753190229046,
-0.6873549014110694,
-0.6685684053421208,
-0.6491285626517866,
-0.6292320876799762,
-0.6090580194005735,
-0.5887671529465714,
-0.5685022571419689,
-0.5483888088385456,
-0.5285360281879301,
-0.5090380562641726,
-0.4899751682843278,
-0.47141495755544754,
-0.45341345614140405,
-0.43601617904902457,
-0.4192590913757604,
-0.403169504462932,
-0.3877669096052792,
-0.3730637578653834,
-0.3590661932128097,
-0.34577474436353806
],
[
-0.4807184034141345,
-0.5004473736338678,
-0.5207572802314933,
-0.5415665664410152,
-0.5627771195684671,
-0.5842732677147545,
-0.6059210158603658,
-0.6275676134082504,
-0.6490415600190067,
-0.6701531701450008,
-0.690695827089242,
-0.7104480617754255,
-0.7291765857030246,
-0.7466403865828566,
-0.7625959527660551,
-0.7768036225246356,
-0.7890349518574352,
-0.7990808596566656,
-0.8067601501067587,
-0.8119278496722999,
-0.8144826640319653,
-0.814372801929826,
-0.8115994682298442,
-0.8062175172194495,
-0.7983330638568464,
-0.7880982213227856,
-0.7757034893486954,
-0.7613685815228453,
-0.7453325995667178,
-0.7278444274937557,
-0.709154056855209,
-0.6895053190714591,
-0.6691302506651028,
-0.6482450993221421,
-0.6270478203237078,
-0.6057168208627547,
-0.5844106760134911,
-0.563268549002061,
-0.5424110829801938,
-0.5219415773659977,
-0.5019473087823875,
-0.482500898608732,
-0.4636616633648625,
-0.44547691000655987,
-0.4279831564708235,
-0.41120726981642974,
-0.39516752155726825,
-0.3798745636658495,
-0.36533233037972423,
-0.3515388712535706
],
[
-0.4816485968856625,
-0.5015449285224948,
-0.5220378882896728,
-0.5430464895279321,
-0.5644731357658024,
-0.586202613946895,
-0.6081013271362097,
-0.6300168577054124,
-0.6517779660751949,
-0.6731951428203986,
-0.6940618413411224,
-0.7141565215283252,
-0.7332456280535953,
-0.7510876052187061,
-0.767438008118346,
-0.7820557017333007,
-0.7947100418188505,
-0.8051888048793969,
-0.8133064877348724,
-0.8189124495727418,
-0.8218982515772498,
-0.8222034986197029,
-0.8198195375980974,
-0.8147905331540556,
-0.8072117092056539,
-0.7972248683403418,
-0.7850116154941664,
-0.7707849534409816,
-0.7547800422316931,
-0.7372449112973936,
-0.7184318003877548,
-0.6985896229056436,
-0.6779578376702337,
-0.6567618216784987,
-0.6352096826480531,
-0.6134903467160553,
-0.5917727021419089,
-0.5702055651656246,
-0.5489182472863516,
-0.5280215325128469,
-0.5076089092051198,
-0.4877579374188081,
-0.4685316652676562,
-0.44998003489470134,
-0.43214123977215785,
-0.41504301066854365,
-0.39870381858360193,
-0.3831339902399469,
-0.36833673627274555,
-0.35430909488019
],
[
-0.477244365584689,
-0.4968476002292844,
-0.5170350483346275,
-0.5377266814303112,
-0.5588262980846035,
-0.5802206036137598,
-0.6017785349808644,
-0.6233509180510353,
-0.6447705563626673,
-0.6658528606695067,
-0.6863971347511492,
-0.7061886327015194,
-0.725001492632525,
-0.7426026273548779,
-0.7587566097439988,
-0.7732315254096656,
-0.7858056763176601,
-0.79627490871372,
-0.8044602161335598,
-0.8102151505879418,
-0.8134324867932436,
-0.8140495534217187,
-0.81205169483308,
-0.8074734652003273,
-0.8003973714308503,
-0.7909502374235948,
-0.7792975126550715,
-0.7656360463842505,
-0.7501859625173786,
-0.7331822884580588,
-0.7148669243867933,
-0.6954814126027828,
-0.6752608110579532,
-0.6544288200226047,
-0.6331941772901426,
-0.6117482371451963,
-0.5902635843451143,
-0.5688935030822483,
-0.5477721152883381,
-0.5270150146657647,
-0.5067202450798579,
-0.48696949852780136,
-0.4678294346683409,
-0.4493530483077379,
-0.43158103201390763,
-0.41454309778978105,
-0.39825923465772234,
-0.3827408885700981,
-0.3679920578669298,
-0.35401030215336077
],
[
-0.4678817745818056,
-0.4867721819087506,
-0.5062103354729569,
-0.5261178096057326,
-0.546400897174364,
-0.5669498448813997,
-0.5876383397795971,
-0.608323327112456,
-0.6288452484291827,
-0.649028795227283,
-0.6686842753288125,
-0.6876096844693238,
-0.7055935613868352,
-0.7224186780154445,
-0.7378665744101784,
-0.7517228889660983,
-0.7637833587096678,
-0.773860275810988,
-0.7817890935827151,
-0.7874347917879263,
-0.7906975546461326,
-0.7915173035894143,
-0.789876673978145,
-0.7858021338276009,
-0.7793631026496283,
-0.770669116356446,
-0.759865268746911,
-0.7471263108199677,
-0.7326498837416467,
-0.7166493904263445,
-0.6993469785068551,
-0.680967028345972,
-0.6617304332730478,
-0.6418498451285621,
-0.6215259525502014,
-0.6009447727748239,
-0.5802758748764737,
-0.5596714134062576,
-0.5392658332721538,
-0.5191761047207316,
-0.4995023564387081,
-0.48032879054390865,
-0.4617247819512046,
-0.4437460836669983,
-0.426436077311149,
-0.4098270236743532,
-0.39394128103646775,
-0.3787924693120505,
-0.3643865660865395,
-0.35072292659815885
],
[
-0.45420607839670646,
-0.4720333777989455,
-0.4903542998878223,
-0.5090929539009417,
-0.528159436920415,
-0.5474492634237983,
-0.5668430467327777,
-0.5862065023270726,
-0.6053908482432411,
-0.6242336800597018,
-0.6425603957515493,
-0.6601862371780004,
-0.6769189981874966,
-0.6925624224398502,
-0.7069202757226939,
-0.7198010275701571,
-0.7310230170046801,
-0.7404199113880763,
-0.7478462028028526,
-0.7531824329101815,
-0.7563398061494566,
-0.7572638529618345,
-0.7559368461843363,
-0.7523787551014134,
-0.7466466351431094,
-0.7388324819914702,
-0.7290597078448688,
-0.7174785059422755,
-0.7042604427722141,
-0.6895926485323909,
-0.6736719661000037,
-0.6566993743001199,
-0.6388749338792152,
-0.6203934266760591,
-0.6014407811262017,
-0.5821913087482155,
-0.5628057216132392,
-0.543429861851409,
-0.5241940504280655,
-0.505212951589562,
-0.48658584863524046,
-0.46839723299597424,
-0.45071761926001663,
-0.4336045115626811,
-0.417103460000805,
-0.4012491583385993,
-0.3860665455825258,
-0.37157188370850724,
-0.3577737918567679,
-0.3446742237542743
],
[
-0.43704778951464696,
-0.453547978897777,
-0.4704772013619456,
-0.48776320412326435,
-0.5053212568732408,
-0.5230537822341972,
-0.5408502298885793,
-0.558587252135003,
-0.5761292405640547,
-0.5933292824418739,
-0.610030590098493,
-0.6260684459220696,
-0.6412726883048202,
-0.6554707392047241,
-0.6684911416079841,
-0.6801675357971162,
-0.6903429589839412,
-0.698874307192398,
-0.705636756512001,
-0.7105279094149332,
-0.7134714174316614,
-0.7144198397109628,
-0.7133565308216199,
-0.7102964096699833,
-0.7052855393152557,
-0.6983995356715212,
-0.6897409103296197,
-0.6794355278234538,
-0.6676284117004241,
-0.6544791616776688,
-0.6401572453150632,
-0.6248374052861257,
-0.6086953834942204,
-0.5919041132241291,
-0.5746304773445639,
-0.5570326802046104,
-0.5392582374710125,
-0.5214425540506908,
-0.5037080361087718,
-0.4861636684590548,
-0.46890498191340624,
-0.4520143347937712,
-0.43556143694417637,
-0.41960405159820935,
-0.4041888190048089,
-0.3893521547542561,
-0.3751211845461467,
-0.3615146852365071,
-0.34854400913826045,
-0.33621397463061625
],
[
-0.4173298879020506,
-0.43233003808473347,
-0.4476908359491024,
-0.46334475437639766,
-0.47921345931017933,
-0.49520762181794675,
-0.5112269562601595,
-0.5271605295570352,
-0.5428873859509387,
-0.5582775282930988,
-0.5731932899901198,
-0.5874911206260565,
-0.6010237923931091,
-0.6136430136079045,
-0.6252024100663551,
-0.6355608058115121,
-0.644585703924641,
-0.6521568379649239,
-0.6581696392028415,
-0.6625384477390655,
-0.6651992907034908,
-0.6661120607765132,
-0.6652619543692986,
-0.6626600698217071,
-0.658343118454219,
-0.6523722598051719,
-0.6448311303478365,
-0.635823185888051,
-0.6254685163197303,
-0.6139003140875723,
-0.6012611835799018,
-0.5876994690223913,
-0.5733657562905163,
-0.558409673447263,
-0.5429770800375693,
-0.5272077001405147,
-0.5112332219889296,
-0.49517585969973327,
-0.47914735139895126,
-0.4632483529952848,
-0.44756817763577006,
-0.4321848266390915,
-0.41716525742197985,
-0.4025658365556296,
-0.3884329306379948,
-0.37480359331730284,
-0.36170631289958705,
-0.34916179103899997,
-0.33718372871989083,
-0.32577960089827895
],
[
-0.3959815132529957,
-0.40939465157881594,
-0.42310158790599983,
-0.43704041966488044,
-0.451140120915977,
-0.4653205010072715,
-0.4794923645447815,
-0.4935579057916182,
-0.5074113684373068,
-0.5209399972085428,
-0.5340253006011886,
-0.5465446337757204,
-0.5583730972312995,
-0.5693857303940364,
-0.5794599602385531,
-0.5884782444832561,
-0.5963308282262043,
-0.6029185140380676,
-0.6081553307267711,
-0.611970977513907,
-0.6143129202025599,
-0.6151480253766912,
-0.6144636380331594,
-0.6122680363441468,
-0.6085902322650967,
-0.6034791252108087,
-0.5970020542239063,
-0.5892428281673314,
-0.580299340279979,
-0.5702808907690042,
-0.5593053480743387,
-0.5474962764060438,
-0.5349801455660897,
-0.5218837210862352,
-0.5083317108298225,
-0.49444472085945534,
-0.4803375506783567,
-0.46611783752316516,
-0.45188504226752657,
-0.4377297561977727,
-0.423733298499937,
-0.4099675684702951,
-0.3964951137329215,
-0.3833693755140221,
-0.37063507366035064,
-0.3583286970150179,
-0.3464790684736544,
-0.3351079581276087,
-0.32423072204669,
-0.3138569482401646
],
[
-0.37386857476846774,
-0.3856818857333587,
-0.39772736939124365,
-0.40994934768076535,
-0.42228461702249587,
-0.43466251316457294,
-0.44700514862102786,
-0.45922784576696113,
-0.47123978574977055,
-0.4829448887142076,
-0.49424293422415955,
-0.5050309221025132,
-0.5152046632639198,
-0.5246605777515732,
-0.5332976636253033,
-0.5410195863728299,
-0.5477368251775016,
-0.5533688009255139,
-0.5578459026179705,
-0.5611113251472758,
-0.56312263322565,
-0.563852974187587,
-0.5632918763906909,
-0.5614455892828507,
-0.5583369444943309,
-0.5540047426303096,
-0.5485026955719132,
-0.5418979768347566,
-0.5342694509742183,
-0.5257056657946338,
-0.5163026975248043,
-0.5061619391840796,
-0.49538791673275756,
-0.4840862074015768,
-0.47236152122507935,
-0.4603159917308034,
-0.4480477063269255,
-0.4356494923247828,
-0.42320796157375035,
-0.41080280590482865,
-0.3985063272159086,
-0.3863831800842706,
-0.3744903010790583,
-0.3628769971707264,
-0.3515851654390973,
-0.34064961729681664,
-0.3300984823210417,
-0.31995366921481877,
-0.3102313641447369,
-0.3009425495218421
],
[
-0.35174601091853963,
-0.3620056445309202,
-0.3724431764495649,
-0.3830094188067929,
-0.39364910397063835,
-0.40430101747155567,
-0.4148982741030799,
-0.4253687523904007,
-0.4356356995969378,
-0.44561851515520223,
-0.4552337148044002,
-0.4643960708205582,
-0.47301991567683044,
-0.48102058755116006,
-0.48831598673567067,
-0.4948282027764551,
-0.5004851637893062,
-0.5052222526399905,
-0.5089838303354162,
-0.5117246057449197,
-0.5134107931690657,
-0.5140210055212514,
-0.5135468408539661,
-0.5119931331320032,
-0.5093778536571402,
-0.5057316662337217,
-0.5010971557331697,
-0.49552776487083783,
-0.4890864866095082,
-0.48184436879248493,
-0.4738788928949115,
-0.4652722900689173,
-0.4561098552191728,
-0.44647831425077417,
-0.4364642916504126,
-0.4261529160549692,
-0.4156265912801354,
-0.4049639501865645,
-0.3942389993689539,
-0.38352045440940236,
-0.37287125861093967,
-0.36234827283252685,
-0.3520021202645623,
-0.34187716759852205,
-0.3320116228769021,
-0.32243773014834926,
-0.3131820416777837,
-0.3042657496626018,
-0.29570506099586774,
-0.2875116004364805
],
[
-0.3302316286025734,
-0.33902681590519956,
-0.3479538364283219,
-0.35696994872343274,
-0.36602759036273025,
-0.3750745474377149,
-0.3840542395528987,
-0.39290612973384514,
-0.4015662658900043,
-0.4099679568363751,
-0.41804258139487876,
-0.4257205238421535,
-0.43293222309815294,
-0.4396093167978154,
-0.4456858550805456,
-0.45109955297047954,
-0.45579304506093943,
-0.45971510233663493,
-0.4628217688203033,
-0.46507737569290336,
-0.4664553928541163,
-0.46693908263200545,
-0.46652192737959164,
-0.4652078116599052,
-0.46301095007364523,
-0.4599555628314834,
-0.4560753121439548,
-0.4514125226254516,
-0.4460172174975956,
-0.43994600889611596,
-0.43326088469939644,
-0.42602793589228577,
-0.41831606765592244,
-0.4101957344165474,
-0.4017377344115922,
-0.3930120934360128,
-0.3840870608335786,
-0.37502823398661084,
-0.36589782095784085,
-0.3567540448848225,
-0.34765068845645086,
-0.3386367724507489,
-0.3297563589341029,
-0.3210484672942971,
-0.3125470897299827,
-0.3042812920401625,
-0.2962753854233394,
-0.2885491553768012,
-0.28111813455688156,
-0.27399390750717445
],
[
-0.3097983183486681,
-0.31724664894655097,
-0.3247889098713886,
-0.33238851353596716,
-0.34000511375113596,
-0.34759478831297386,
-0.35511031260395415,
-0.3625015296213396,
-0.36971581948003324,
-0.376698668512516,
-0.38339433464600053,
-0.38974660186148224,
-0.39569961236501255,
-0.40119876081250794,
-0.40619163075643866,
-0.41062894969322955,
-0.41446553597193847,
-0.417661208663648,
-0.4201816305438882,
-0.4219990548060085,
-0.42309294811468207,
-0.42345046613051157,
-0.42306676257325115,
-0.42194511900591214,
-0.4200968894713857,
-0.4175412614740758,
-0.4143048421061871,
-0.410421084908314,
-0.4059295789087844,
-0.40087522587121815,
-0.3953073348714825,
-0.38927866482522844,
-0.3828444455219203,
-0.37606140622842466,
-0.3689868382304262,
-0.361677714066914,
-0.35418988199233337,
-0.3465773496807361,
-0.3388916666476335,
-0.33118141054513023,
-0.3234917785667615,
-0.3158642818051148,
-0.30833653760775404,
-0.30094215279705006,
-0.2937106890405081,
-0.28666770063500185,
-0.27983483443745705,
-0.2732299815628083,
-0.26686747070140204,
-0.2607582934085147
],
[
-0.2907799912547937,
-0.29701489224011546,
-0.30331336931649944,
-0.3096445213545412,
-0.3159745627532336,
-0.32226700322750174,
-0.32848289793580604,
-0.3345811707207482,
-0.34051901132133466,
-0.346252345151595,
-0.3517363716742986,
-0.35692616460699317,
-0.36177732428663767,
-0.36624666962309194,
-0.3702929543487632,
-0.37387758989569425,
-0.37696535538086406,
-0.37952507402460783,
-0.3815302350098804,
-0.38295954041449637,
-0.38379735846211865,
-0.384034066922341,
-0.3836662739566165,
-0.3826969078969888,
-0.38113517214074333,
-0.37899636628461186,
-0.37630157952285725,
-0.3730772669117243,
-0.3693547231012814,
-0.3651694713443365,
-0.36056058786347867,
-0.3555699829158494,
-0.35024166013879215,
-0.34462097505360617,
-0.3387539120707998,
-0.332686397140642,
-0.32646366051258974,
-0.3201296610974648,
-0.31372658084890503,
-0.307294394556449,
-0.3008705176033697,
-0.29448953168695785,
-0.2881829862930175,
-0.2819792718950131,
-0.27590355942071726,
-0.2699777994839956,
-0.2642207741904669,
-0.2586481939574346,
-0.253272831699602,
-0.2481046868793047
],
[
-0.2733864171514687,
-0.27854722879458044,
-0.2837479023900428,
-0.2889626522725821,
-0.2941635126787346,
-0.2993205050986146,
-0.30440185911368345,
-0.30937428783953763,
-0.31420331759822673,
-0.31885366973948026,
-0.3232896906585647,
-0.3274758240822399,
-0.331377117692765,
-0.3349597542276277,
-0.3381915954354576,
-0.34104272579785955,
-0.34348598185233453,
-0.3454974523723465,
-0.3470569346569853,
-0.3481483328064262,
-0.34875998512702716,
-0.34888490969766905,
-0.34852095957099166,
-0.34767088197381113,
-0.34634227907052284,
-0.34454747119759443,
-0.3423032667899201,
-0.3396306463257847,
-0.33655437035634495,
-0.33310252392477496,
-0.329306011322887,
-0.3251980161245569,
-0.3208134417648601,
-0.3161883476319893,
-0.31135939477189484,
-0.3063633139664441,
-0.30123640724538114,
-0.29601409194849665,
-0.29073049438315895,
-0.28541809803005413,
-0.28010744922767195,
-0.2748269213863885,
-0.2696025370990327,
-0.2644578460611529,
-0.25941385550899787,
-0.2544890089312642,
-0.24969920810635526,
-0.24505787304718624,
-0.2405760341820411,
-0.2362624510406527
],
[
-0.2577227591439758,
-0.26194736697791704,
-0.26619375236784826,
-0.270440630310312,
-0.27466509348626084,
-0.2788427622009296,
-0.28294797443818465,
-0.2869540161696857,
-0.2908333909215857,
-0.2945581263423626,
-0.2981001141712705,
-0.3014314786252685,
-0.30452496686030683,
-0.3073543538855281,
-0.3098948531861752,
-0.3121235234135234,
-0.31401966089500133,
-0.3155651674629071,
-0.3167448832396822,
-0.31754687457666225,
-0.3179626683239612,
-0.31798742498922344,
-0.31762004507461056,
-0.31686320489335107,
-0.31572332036855955,
-0.31421043960307954,
-0.31233806726833285,
-0.31012292598231755,
-0.30758466173076654,
-0.3047455019460293,
-0.30162987603218516,
-0.298264008874196,
-0.2946754981822367,
-0.2908928864138701,
-0.2869452375232757,
-0.28286172796296455,
-0.27867126027623806,
-0.27440210634122747,
-0.2700815859333328,
-0.26573578483150767,
-0.2613893152662834,
-0.2570651201445155,
-0.25278432122717837,
-0.24856611031082815,
-0.2444276814896057,
-0.2403842017637116,
-0.23644881661655867,
-0.23263268670557624,
-0.22894505149604544,
-0.2253933155048972
],
[
-0.24381056394900025,
-0.24723029695205317,
-0.2506583637552907,
-0.2540773664939058,
-0.25746872017092515,
-0.2608127834011726,
-0.26408901888292347,
-0.2672761832002102,
-0.27035254470822473,
-0.27329612733736386,
-0.2760849771968656,
-0.27869744790170853,
-0.28111249962689394,
-0.28331000605555984,
-0.28527106267739266,
-0.28697828935633934,
-0.28841611976254394,
-0.28957107018662054,
-0.2904319804485633,
-0.2909902200899697,
-0.2912398537933076,
-0.2911777609866526,
-0.29080370583212845,
-0.2901203552125257,
-0.28913324386303735,
-0.28785068737545016,
-0.2862836453585658,
-0.28444553850026666,
-0.28235202457841746,
-0.2800207395547471,
-0.2774710107164258,
-0.27472354937843796,
-0.2718001309168238,
-0.2687232698754187,
-0.26551589759826105,
-0.26220104931953564,
-0.2588015669342,
-0.2553398228213568,
-0.25183746914603417,
-0.24831521606823792,
-0.24479264128144856,
-0.24128803232070584,
-0.23781826215118207,
-0.23439869769356408,
-0.23104314017904884,
-0.22776379556612575,
-0.22457127270176203,
-0.221474606476164,
-0.21848130290517515,
-0.21559740287675053
],
[
-0.2316079797194907,
-0.23434437450904133,
-0.23707940044457532,
-0.2397989652664759,
-0.2424881246813968,
-0.24513119413341775,
-0.24771188236674271,
-0.2502134461217002,
-0.252618864677796,
-0.2549110322963137,
-0.2570729659421518,
-0.25908802500562644,
-0.26094013912804653,
-0.26261403968982183,
-0.2640954900767067,
-0.2653715095269255,
-0.26643058520438284,
-0.26726286716057257,
-0.26786034105277773,
-0.2682169738827299,
-0.26832882860258206,
-0.26819414418841236,
-0.2678133786803522,
-0.26718921369901927,
-0.26632652002938806,
-0.2652322849699912,
-0.26391550322991425,
-0.2623870341718426,
-0.26065942910381545,
-0.2587467330792409,
-0.2566642662467386,
-0.25442839018124386,
-0.25205626481902477,
-0.24956560161579633,
-0.24697441836241063,
-0.24430080074778193,
-0.24156267528044126,
-0.23877759759823197,
-0.23596255954077364,
-0.23313381766091393,
-0.2303067451362396,
-0.22749570833309954,
-0.22471396859294238,
-0.22197360917001224,
-0.21928548666344244,
-0.21665920576605238,
-0.21410311570528956,
-0.2116243263856401,
-0.2092287419615045,
-0.2069211093777581
],
[
-0.22102786222567028,
-0.2231908760727625,
-0.22534577944501805,
-0.22748125461454827,
-0.22958538671388107,
-0.23164575789162334,
-0.23364955727417475,
-0.23558370597920636,
-0.2374349959667626,
-0.2391902410400017,
-0.24083643783587677,
-0.24236093419467575,
-0.24375160188590683,
-0.24499701031669222,
-0.24608659757736429,
-0.24701083500543636,
-0.2477613813889151,
-0.24833122299438815,
-0.2487147958008774,
-0.24890808664761654,
-0.2489087104569351,
-0.24871596125994286,
-0.24833083541421797,
-0.24775602613511927,
-0.24699588923729845,
-0.2460563807692394,
-0.24494496798893434,
-0.24367051584172444,
-0.24224315173328392,
-0.24067411191757832,
-0.23897557322319082,
-0.23716047411028288,
-0.2352423291804711,
-0.23323504125597738,
-0.23115271501173654,
-0.229009475899145,
-0.22681929776085705,
-0.2245958421226507,
-0.2223523116815257,
-0.2201013200087193,
-0.21785477897029087,
-0.21562380485212437,
-0.21341864367402183,
-0.2112486157003245,
-0.20912207871177985,
-0.20704640920357592,
-0.2050280003250124,
-0.2030722750837281,
-0.20118371310713729,
-0.19936588908953473
],
[
-0.2119531237133614,
-0.2136404154006376,
-0.21531516097770145,
-0.21696834564269463,
-0.21859054899629377,
-0.22017202347743614,
-0.22170278413716737,
-0.22317270899387964,
-0.2245716488782869,
-0.22588954533835615,
-0.22711655484492804,
-0.22824317723094173,
-0.22926038602467794,
-0.2301597581139728,
-0.23093360001698116,
-0.23157506794743069,
-0.23207827885787163,
-0.23243840972972027,
-0.23265178255690627,
-0.23271593273957486,
-0.23262965896014326,
-0.23239305304628546,
-0.23200750882017668,
-0.23147570947306448,
-0.2308015935686426,
-0.22999030034574675,
-0.22904809553801722,
-0.22798227943362542,
-0.2268010793422387,
-0.22551352900267968,
-0.2241293377409625,
-0.22265875236712246,
-0.22111241487814084,
-0.21950121901584813,
-0.21783616861993094,
-0.2161282405275825,
-0.2143882545159309,
-0.21262675247551813,
-0.2108538886574099,
-0.20907933246693308,
-0.20731218489622716,
-0.20556090930677717,
-0.20383327690125894,
-0.2021363268693671,
-0.200476340861744,
-0.1988588311459042,
-0.1972885415338847,
-0.19576945994844835,
-0.19430484131752837,
-0.19289723935859632
],
[
-0.20424916723590683,
-0.20554612572910128,
-0.20682787031264277,
-0.2080872792439197,
-0.20931696725557847,
-0.21050935032749252,
-0.2116567184897486,
-0.21275131594671517,
-0.21378542756916488,
-0.2147514705608507,
-0.2156420898765719,
-0.21645025575994353,
-0.21716936159036265,
-0.21779332008944935,
-0.218316655846256,
-0.21873459208532953,
-0.21904312962814831,
-0.21923911609021662,
-0.219320303514291,
-0.2192853928630704,
-0.21913406407737823,
-0.21886699074057417,
-0.21848583876598665,
-0.21799324892848354,
-0.21739280347897522,
-0.21668897749568164,
-0.21588707602218477,
-0.21499315840410183,
-0.2140139515497965,
-0.2129567540944175,
-0.21182933363239792,
-0.21063981929654568,
-0.20939659200090666,
-0.20810817463215675,
-0.2067831243760155,
-0.20542992920925093,
-0.20405691038419577,
-0.20267213249214172,
-0.20128332242545477,
-0.19989779827610454,
-0.1985224089198437,
-0.19716348474855833,
-0.19582679973513328,
-0.19451754475126465,
-0.19324031181390647,
-0.191999088714839,
-0.1907972632941801,
-0.18963763645616127,
-0.1885224428972932,
-0.18745337842551013
],
[
-0.1977735578211826,
-0.19875382580492224,
-0.1997175442594033,
-0.20065913424266713,
-0.20157285709865774,
-0.20245286756310713,
-0.20329327247042794,
-0.20408819442126175,
-0.20483183959435158,
-0.205518568715723,
-0.20614297003916926,
-0.2066999330514517,
-0.2071847215002049,
-0.2075930442587785,
-0.20792112249604053,
-0.20816575161545353,
-0.20832435647012953,
-0.20839503845107657,
-0.20837661318454678,
-0.20826863775930038,
-0.20807142663150918,
-0.2077860556176339,
-0.2074143536755843,
-0.20695888248184754,
-0.20642290412580916,
-0.20581033755029954,
-0.20512570465751717,
-0.2043740672605961,
-0.20356095628316925,
-0.20269229478421552,
-0.20177431650751182,
-0.20081348172108965,
-0.19981639212194166,
-0.19878970653725997,
-0.1977400590604908,
-0.19667398112512113,
-0.19559782884931237,
-0.19451771678882265,
-0.1934394590226996,
-0.19236851827404816,
-0.19130996354401025,
-0.1902684365170981,
-0.18924812678533173,
-0.18825275574141845,
-0.1872855688109371,
-0.18634933553306618,
-0.18544635686135294,
-0.18457847894255014,
-0.18374711254445547,
-0.18295325724421935
]
],
"zauto": true,
"zmax": 0.8222034986197029,
"zmin": -0.8222034986197029
},
{
"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.3168587646428266,
0.3165390549471269,
0.3162287482343007,
0.3159312707435351,
0.3156499818338446,
0.31538807901963367,
0.315148501237939,
0.31493383459373764,
0.31474622511435413,
0.31458730305380017,
0.3144581229936859,
0.31435912338613176,
0.31429010830193116,
0.3142502530384684,
0.31423813398479106,
0.3142517818298513,
0.314288755933961,
0.3143462365573059,
0.31442113073190264,
0.31451018693065824,
0.3146101133581282,
0.31471769466363847,
0.3148299021358156,
0.31494399293677366,
0.31505759462116245,
0.31516877200240456,
0.3152760743198552,
0.31537856157653266,
0.31547580981630624,
0.31556789595992274,
0.3156553635970242,
0.3157391718185509,
0.315820629756722,
0.31590131996618886,
0.31598301411878155,
0.3160675846849047,
0.31615691632791754,
0.3162528206376994,
0.3163569575752719,
0.3164707665984134,
0.31659540990419777,
0.3167317295833597,
0.3168802197671968,
0.317041014101025,
0.31721388814330786,
0.31739827561055584,
0.31759329680468046,
0.317797797103483,
0.3180103930873621,
0.31822952372493424
],
[
0.3167738704215818,
0.3164467756434964,
0.31612834316305344,
0.3158219107140586,
0.3155307400517475,
0.31525792191222357,
0.31500627947090815,
0.31477827461264224,
0.3145759216130146,
0.3144007128395787,
0.31425356078311983,
0.31413476011956787,
0.3140439726082322,
0.31398023650595164,
0.31394200089764235,
0.313927184005669,
0.3139332532433153,
0.31395732361599155,
0.3139962701271645,
0.314046849171102,
0.31410582352157246,
0.31417008545792213,
0.31423677278719414,
0.3143033729849855,
0.31436781133952935,
0.31442851979007586,
0.3144844840509887,
0.3145352675618997,
0.3145810117643139,
0.3146224131462623,
0.31466067839475004,
0.3146974598297882,
0.31473477404316563,
0.3147749073077099,
0.3148203118342257,
0.3148734973076156,
0.31493692230570897,
0.3150128901731211,
0.3151034536755671,
0.3152103322974031,
0.31533484538209505,
0.31547786348378315,
0.3156397793456806,
0.315820498907603,
0.31601945173736107,
0.31623561934643174,
0.31646757905023865,
0.31671356041602317,
0.3169715109381455,
0.31723916740392627
],
[
0.316803717120042,
0.3164761668620038,
0.31615616436730054,
0.3158468311484442,
0.315551201682143,
0.3152721315869222,
0.31501220477943587,
0.31477364383529866,
0.3145582280525919,
0.31436722371974435,
0.31420133079578805,
0.31406064961658287,
0.313944670369649,
0.3138522869839256,
0.31378183583285246,
0.3137311583385969,
0.3136976852864885,
0.3136785395015899,
0.31367065257968124,
0.3136708906578176,
0.31367618378563883,
0.31368365332392545,
0.3136907319363472,
0.31369527112293827,
0.3136956318292204,
0.31369075440976796,
0.3136802050881616,
0.31366419700073644,
0.31364358490942945,
0.31361983369438323,
0.3135949617669257,
0.313571461553904,
0.31355220016622415,
0.3135403042421382,
0.31353903370645475,
0.31355164976243943,
0.3135812827848934,
0.31363080586733577,
0.31370271956251894,
0.31379905283231513,
0.3139212844037149,
0.31407028765279366,
0.314246300874378,
0.3144489234287719,
0.3146771368874024,
0.3149293490272674,
0.3152034574406909,
0.3154969287038308,
0.3158068885299444,
0.31613021813715286
],
[
0.3169312273222302,
0.3166092021008832,
0.3162932782911109,
0.31598625014190657,
0.3156908127057555,
0.3154094761683699,
0.3151444797937002,
0.31489770948488577,
0.314670623206465,
0.31446418850891894,
0.3142788361177653,
0.3141144329927027,
0.31397027744923556,
0.31384511791136527,
0.3137371956950203,
0.31364431098719253,
0.3135639099696057,
0.3134931899187006,
0.3134292181644822,
0.3133690600602676,
0.31330991063380137,
0.31324922436720043,
0.31318483758075255,
0.31311507815303646,
0.31303885776950024,
0.3129557425243504,
0.3128659984796717,
0.31277060968892884,
0.3126712672013017,
0.31257032866220236,
0.31247074929476204,
0.31237598626073276,
0.3122898796191426,
0.3122165142749454,
0.31216006837137217,
0.31212465445150883,
0.3121141603157232,
0.31213209675690917,
0.31218145920756046,
0.31226460975262377,
0.31238318495862927,
0.31253803359334775,
0.31272918665211147,
0.3129558602905171,
0.3132164904315453,
0.313508796114198,
0.3138298672123064,
0.31417627107858076,
0.3145441720227439,
0.314929457331726
],
[
0.3171275268485691,
0.3168153107687267,
0.31650748430796416,
0.31620643221604605,
0.3159144281776501,
0.315633557590299,
0.3153656406657416,
0.31511215952027816,
0.3148741931294648,
0.3146523640118257,
0.314446800252503,
0.3142571159781112,
0.3140824126662763,
0.313921302755464,
0.31377195596771656,
0.3136321676351875,
0.31349944720177936,
0.3133711240218412,
0.3132444666576384,
0.31311681113114037,
0.31298569304246315,
0.312848978140248,
0.3127049858186099,
0.3125526001126024,
0.3123913630571533,
0.31222154575133737,
0.3120441931222053,
0.31186113920573644,
0.3116749907545432,
0.31148907813853804,
0.3113073738138297,
0.3111343800702743,
0.3109749892827665,
0.31083432141510814,
0.31071754496398357,
0.3106296887712077,
0.3105754530530893,
0.3105590284801922,
0.3105839320954934,
0.3106528682304482,
0.31076762136717306,
0.31092898616247705,
0.3111367377171944,
0.31138964281233783,
0.31168551044155723,
0.3120212777516188,
0.312393125642636,
0.3127966169180746,
0.31322684909349174,
0.3136786137910226
],
[
0.31735435716899435,
0.3170539630380501,
0.3167560625465399,
0.31646258526703214,
0.3161753399018993,
0.31589594704354107,
0.3156257729431994,
0.31536586754253537,
0.3151169101964793,
0.31487916650282477,
0.31465245943517606,
0.31443615754798687,
0.31422918239896086,
0.3140300365443966,
0.31383685254987587,
0.31364746247385006,
0.31345948628078435,
0.31327043667753857,
0.3130778369890887,
0.312879347935294,
0.31267289856587505,
0.3124568161724309,
0.31222994973272117,
0.3119917813579746,
0.31174252031285477,
0.31148317446721235,
0.31121559453085823,
0.31094248713333433,
0.31066739375677344,
0.31039463372289755,
0.31012921087333645,
0.309876685242132,
0.3096430128470312,
0.3094343586333798,
0.3092568894670888,
0.3091165557378563,
0.30901887143105566,
0.3089687032906492,
0.3089700797882671,
0.3090260299499946,
0.3091384606604644,
0.3093080789363591,
0.30953436299492254,
0.30981558296295647,
0.310148869045163,
0.3105303221716691,
0.31095515981785576,
0.31141788801958176,
0.3119124896970602,
0.31243261926682386
],
[
0.3175671250632663,
0.3172779185414275,
0.3169892076070005,
0.3167024598932659,
0.31641901638328707,
0.3161400349720948,
0.31586643561578387,
0.3155988498644578,
0.3153375777183342,
0.3150825547370876,
0.3148333321565952,
0.31458907242097306,
0.31434856202969574,
0.3141102429500026,
0.3138722630838201,
0.3136325454429983,
0.3133888748167783,
0.31313899985042465,
0.3128807476294944,
0.31261214711015234,
0.3123315570760248,
0.3120377937550165,
0.31173025281137573,
0.3114090201557346,
0.3110749659092563,
0.31072981594379234,
0.31037619573106545,
0.3100176418079372,
0.3096585770391462,
0.30930424706285886,
0.30896061684917453,
0.30863422816917574,
0.30833202090421036,
0.3080611234167079,
0.307828619501483,
0.3076413015451495,
0.30750542122088675,
0.30742645011672043,
0.30740886295040676,
0.30745595534133907,
0.3075697064621287,
0.3077506943628708,
0.3079980685433228,
0.3083095807274418,
0.30868167111157563,
0.30910960396178344,
0.3095876436376317,
0.31010926014948964,
0.31066735233751547,
0.311254476702811
],
[
0.31771791004449007,
0.3174364007115509,
0.31715335216111273,
0.31686979932637904,
0.31658665074830644,
0.3163046432442561,
0.31602429857574243,
0.3157458844278027,
0.3154693821283012,
0.3151944635359797,
0.3149204793991194,
0.31464646122776596,
0.3143711383352176,
0.31409297120027385,
0.31381020169849605,
0.3135209200709265,
0.3132231477672105,
0.31291493454194486,
0.3125944674220871,
0.312260188421123,
0.311910917172574,
0.3115459740114497,
0.31116529846994023,
0.3107695577006643,
0.3103602390325019,
0.30993972074488035,
0.3095113152693953,
0.30907927945134095,
0.30864878728581163,
0.3082258617308817,
0.3078172638188109,
0.3074303393238777,
0.3070728256417767,
0.3067526241715106,
0.30647754618633916,
0.30625504270209514,
0.3060919309312043,
0.3059941312777871,
0.30596642924791223,
0.30601227596185543,
0.30613363911854924,
0.3063309133686534,
0.3066028953307908,
0.3069468242777963,
0.3073584852373339,
0.3078323673155806,
0.3083618668357985,
0.30893952265726987,
0.30955726994434607,
0.31020669869099177
],
[
0.31775793313657363,
0.31747766242020736,
0.31719380967717387,
0.3169070351218257,
0.3166178808764281,
0.3163267368465839,
0.31603380881311205,
0.31573909054277216,
0.31544234181329683,
0.3151430742623963,
0.3148405468962698,
0.314533772925316,
0.31422153933211666,
0.313902440222322,
0.3135749245690958,
0.31323735844500644,
0.3128881012519088,
0.31252559482053993,
0.31214846356906334,
0.3117556231967812,
0.3113463946614984,
0.31092061946713145,
0.3104787715998743,
0.31002206083404854,
0.30955252163167807,
0.309073081543933,
0.30858760295945964,
0.30810089231196164,
0.30761867153336925,
0.3071475076830334,
0.3066946983344439,
0.3062681124535976,
0.30587598909483216,
0.30552669914018243,
0.30522847831535654,
0.30498914256428666,
0.30481579924833974,
0.30471456924273416,
0.30469033555762026,
0.3047465334285098,
0.3048849948444141,
0.3051058573124698,
0.30540754255271885,
0.3057868061642999,
0.30623885457144306,
0.30675752122214106,
0.3073354904931655,
0.3079645553543761,
0.30863589371325567,
0.3093403484882498
],
[
0.3176393061745367,
0.317350755192319,
0.31705654352110724,
0.3167570330107677,
0.3164524857679363,
0.31614304151965134,
0.315828697220606,
0.3155092901510609,
0.3151844858214563,
0.31485377202764314,
0.31451646038103687,
0.31417169656523547,
0.3138184804395931,
0.3134556969160132,
0.31308215827294755,
0.31269665823532283,
0.3122980377361676,
0.31188526178137554,
0.31145750626201707,
0.3110142529019309,
0.3105553898019075,
0.31008131426514773,
0.30959303379378195,
0.3090922603795656,
0.30858149253567363,
0.30806407900811317,
0.3075442578541279,
0.30702716467666946,
0.30651880435103096,
0.3060259816487315,
0.30555618780014776,
0.3051174422387105,
0.30471809146962897,
0.3043665700641523,
0.3040711319777442,
0.30383956344015056,
0.3036788912354247,
0.30359510194230543,
0.30359288834426756,
0.3036754385434729,
0.30384428126362506,
0.3040991975112166,
0.3044382044593235,
0.3048576125383651,
0.30535215176199815,
0.3059151587909269,
0.3065388125849401,
0.3072144040292595,
0.30793262379742725,
0.30868385291208533
],
[
0.317316214623315,
0.3170066783038444,
0.3166892640097552,
0.31636411755625493,
0.3160313154610061,
0.31569085469905567,
0.31534264458322636,
0.314986501373711,
0.3146221462541467,
0.3142492073456778,
0.3138672264638975,
0.3134756713517984,
0.31307395413710953,
0.312661456752718,
0.31223756400817204,
0.3118017048888927,
0.3113534024658595,
0.31089233250053144,
0.3104183904092306,
0.30993176569694025,
0.30943302228255354,
0.30892318233160987,
0.3084038103229509,
0.30787709315803014,
0.3073459112527279,
0.30681389482745375,
0.3062854591420342,
0.3057658123228639,
0.30526092981028297,
0.3047774904024946,
0.30432277043929484,
0.3039044948505292,
0.30353064651690953,
0.30320923850170517,
0.3029480569779728,
0.3027543857962871,
0.3026347262691625,
0.30259452754518706,
0.30263794361080976,
0.30276763229321935,
0.30298460959051865,
0.30328816934180164,
0.3036758739542166,
0.30414361704755927,
0.3046857539590314,
0.3052952915767596,
0.3059641253772185,
0.30668330913708897,
0.30744334171926646,
0.3082344555725464
],
[
0.3167459435278069,
0.3163993626294104,
0.31604235555487153,
0.3156749266092506,
0.31529705542515946,
0.31490870112954533,
0.3145098084775855,
0.314100315759515,
0.31368016425527095,
0.3132493090313662,
0.3128077309516571,
0.31235544990942077,
0.31189253947485635,
0.31141914337243287,
0.310935494428908,
0.3104419368284085,
0.30993895263172994,
0.30942719351596926,
0.3089075185232355,
0.30838103823820157,
0.30784916522480743,
0.3073136697469712,
0.30677673880989204,
0.3062410354522999,
0.305709754091883,
0.30518666669881506,
0.3046761537863722,
0.3041832138085869,
0.3037134446770021,
0.30327299185651224,
0.30286845893030573,
0.30250677862681824,
0.30219504498986055,
0.3019403104751784,
0.3017493550215082,
0.3016284372575822,
0.30158304062113944,
0.3016176289425469,
0.3017354267014458,
0.30193823852201945,
0.3022263204964724,
0.30259831274551263,
0.3030512385243363,
0.30358057057169524,
0.3041803607543341,
0.304843424854267,
0.3055615709874666,
0.30632585791172345,
0.30712686850737747,
0.307954983969797
],
[
0.31589028074833986,
0.31548707977871643,
0.31507028324390773,
0.31463980566917044,
0.31419559766477373,
0.313737668196587,
0.3132661088322403,
0.31278111872827163,
0.31228302896929233,
0.3117723248277764,
0.3112496646062124,
0.3107158939654947,
0.3101720550338651,
0.3096193901111825,
0.30905934039592475,
0.30849354080957947,
0.3079238126003607,
0.30735215588948883,
0.3067807445899923,
0.3062119261003058,
0.30564822779479417,
0.30509237157719926,
0.30454729665248786,
0.3040161892805011,
0.30350251672509826,
0.3030100610725653,
0.3025429472587823,
0.3021056587189006,
0.3017030337405548,
0.3013402360015436,
0.3010226939762662,
0.3007560058858786,
0.3005458095328,
0.30039761949396165,
0.30031663746150977,
0.3003075446725229,
0.30037428800098387,
0.3005198730626799,
0.3007461783466373,
0.30105380378912255,
0.301441965345177,
0.3019084441377381,
0.3024495949643124,
0.3030604147072904,
0.3037346669666959,
0.3044650554410513,
0.3052434355797235,
0.3060610520599769,
0.30690878880729616,
0.3077774185441867
],
[
0.3147178059322568,
0.3142348421844381,
0.31373410518668393,
0.3132154323737691,
0.3126787755146996,
0.312124247034156,
0.3115521688615971,
0.3109631211928281,
0.3103579881633891,
0.30973799723346185,
0.30910474912307084,
0.3084602354543993,
0.3078068418749506,
0.3071473353432659,
0.30648483541627736,
0.3058227707050898,
0.30516482304824805,
0.30451486324195437,
0.3038768832007106,
0.30325493003557535,
0.30265304759091255,
0.30207523038412554,
0.3015253936291557,
0.30100736116499355,
0.300524870819579,
0.3000815942641873,
0.2996811660573013,
0.29932721466200246,
0.2990233870417266,
0.29877335821788964,
0.2985808180212972,
0.2984494291661881,
0.29838275356236454,
0.29838414717571654,
0.29845662737916506,
0.298602720188777,
0.29882429764565466,
0.2991224175355188,
0.29949717839266454,
0.2999476022089065,
0.3004715555089309,
0.3010657166543534,
0.3017255937118624,
0.3024455933539124,
0.3032191374639289,
0.3040388207706057,
0.30489660023794907,
0.3057840052795256,
0.30669235721423255,
0.30761298668760506
],
[
0.3132073995824582,
0.3126181767990696,
0.312005526700686,
0.31136916607333215,
0.3107090216418865,
0.3100253091504219,
0.3093186167010854,
0.3085899879368206,
0.307840999856208,
0.3070738295156029,
0.30629130370659424,
0.3054969259864974,
0.3046948762531461,
0.3038899794212853,
0.30308764165202506,
0.3022937549191682,
0.30151457330410375,
0.3007565670606637,
0.3000262628921405,
0.2993300807151476,
0.2986741781429748,
0.29806431376286485,
0.2975057388825139,
0.29700312481605334,
0.2965605291846693,
0.2961814005093003,
0.29586861608821535,
0.29562454435181795,
0.29545112010692476,
0.29534991973403624,
0.2953222236978398,
0.29536905565233607,
0.29549119071400076,
0.29568912969535405,
0.2959630406748639,
0.29631267363380925,
0.2967372574785764,
0.29723539117703957,
0.29780494173376876,
0.2984429612669781,
0.29914563366885194,
0.29990825851680425,
0.30072527644060615,
0.3015903364629013,
0.30249640232475583,
0.3034358918246921,
0.3044008409818344,
0.3053830835098635,
0.3063744356741413,
0.3073668770183387
],
[
0.3113529920492427,
0.3106283201161601,
0.3098725787808414,
0.3090852477867658,
0.3082661267750855,
0.30741545878356885,
0.3065340618873177,
0.30562346234505305,
0.30468602113047927,
0.30372504456489724,
0.30274486910085585,
0.30175091031414464,
0.3007496670021385,
0.29974867307752084,
0.29875639273306154,
0.29778205807723634,
0.2968354529121,
0.29592665120547584,
0.29506572361659367,
0.29426242957536874,
0.29352591525720917,
0.29286443876328694,
0.2922851425128548,
0.2917938891689721,
0.291395171603258,
0.2910921000828164,
0.290886461961135,
0.29077884176344515,
0.29076878373431075,
0.29085497549218586,
0.29103543085979666,
0.2913076521963328,
0.2916687571884634,
0.29211556126122595,
0.29264461356522115,
0.29325219090053734,
0.29393425912613397,
0.2946864150214112,
0.29550382297852185,
0.29638116038139717,
0.2973125833910817,
0.2982917215893572,
0.2993117060831274,
0.30036523177041535,
0.30144465095940876,
0.3025420927334741,
0.30364960054628104,
0.3047592795585387,
0.30586344512824987,
0.3069547644984989
],
[
0.30916913118528966,
0.3082784046532016,
0.30734648951896193,
0.30637242732121267,
0.305355696386801,
0.30429639384988777,
0.3031954331614586,
0.3020547479688101,
0.30087749070125663,
0.29966821195971166,
0.2984330051455232,
0.2971795999820319,
0.29591738899712006,
0.29465737294123234,
0.2934120147358806,
0.29219499696818607,
0.29102088504206647,
0.28990470646143623,
0.28886146563105763,
0.28790562198741315,
0.28705056597395834,
0.2863081310791309,
0.2856881798078461,
0.2851982964993466,
0.28484361049925483,
0.2846267603236056,
0.28454799482946724,
0.28460539318903505,
0.28479517383471353,
0.2851120552543784,
0.2855496295275786,
0.2861007127955057,
0.2867576445263069,
0.2875125178875443,
0.2883573348929233,
0.28928409046785925,
0.29028479779709476,
0.2913514724760669,
0.292476094897959,
0.29365056930846495,
0.29486669475088145,
0.2961161585780136,
0.2973905581946996,
0.29868145195215606,
0.29998043617048936,
0.30127924241533083,
0.3025698474841717,
0.30384458798788894,
0.3050962717546607,
0.3063182792944912
],
[
0.30669641806775993,
0.3056096200667446,
0.3044686687900611,
0.30327188177818315,
0.30201812444221515,
0.3007070654907045,
0.29933946011622015,
0.29791744948823917,
0.29644486108206247,
0.29492749049270833,
0.2933733420024081,
0.29179280274630615,
0.2901987243933516,
0.2886063874221913,
0.287033326907892,
0.28549900570673564,
0.284024331221133,
0.28263102527729367,
0.28134087216212506,
0.2801748859319323,
0.2791524524527269,
0.27829051160190266,
0.2776028481062589,
0.27709955382569496,
0.2767867095255687,
0.2766663117170959,
0.27673644314164153,
0.27699165829207056,
0.2774235326119733,
0.278021309464092,
0.27877257467035776,
0.2796638943393794,
0.2806813658092335,
0.28181105053430394,
0.2830392778900647,
0.28435282681301316,
0.2857390055776038,
0.28718565772586796,
0.2886811242793834,
0.29021418984531855,
0.29177403455354484,
0.2933502065287499,
0.2949326222302508,
0.29651159554060896,
0.298077891581498,
0.2996227981100986,
0.30113820591591367,
0.30261668960708293,
0.3040515811610618,
0.30543703022012614
],
[
0.3040053395601675,
0.30269573360006313,
0.30131603923201977,
0.29986350206734996,
0.2983360041184598,
0.29673240529257205,
0.29505293091086243,
0.2932995923071428,
0.2914766217527804,
0.28959089688077705,
0.2876523238400496,
0.28567414317171846,
0.28367311864133715,
0.2816695679820933,
0.2796871968780214,
0.2777527047620845,
0.2758951441349552,
0.2741450345578812,
0.2725332576278181,
0.2710897880295262,
0.26984234443494487,
0.26881506742181505,
0.26802734398062933,
0.2674928946960808,
0.2672192179720428,
0.2672074472089536,
0.2674526273202678,
0.267944365257734,
0.2686677651714038,
0.2696045306687354,
0.2707341087383554,
0.27203476189992376,
0.2734844824692093,
0.2750616983944885,
0.2767457563772398,
0.27851719871052033,
0.2803578716027896,
0.2822509134636033,
0.2841806726648881,
0.28613259803302993,
0.28809313472768666,
0.29004964605264255,
0.291990370363933,
0.2939044130394688,
0.29578176711481335,
0.2976133526935469,
0.2993910641982413,
0.3011078153091058,
0.30275757336390224,
0.3043353774575377
],
[
0.30119670471041143,
0.299643952327788,
0.2980024441367327,
0.29626799802507753,
0.29443711885034457,
0.2925074326018956,
0.2904781907063837,
0.28835083166981273,
0.2861295796443443,
0.28382205098089314,
0.2814398306728038,
0.2789989713453307,
0.27652035899071203,
0.2740298833545516,
0.27155834865840833,
0.269141064604934,
0.2668170709862313,
0.2646279739594348,
0.26261640909792733,
0.2608241940989726,
0.259290287395192,
0.25804871884817715,
0.2571266933099547,
0.25654307512823565,
0.256307433583585,
0.2564197656033518,
0.2568709225431538,
0.2576436702862399,
0.25871422759747753,
0.2600540744809006,
0.2616318093784194,
0.26341485975930573,
0.26537090433490546,
0.26746893153651613,
0.26967992304685623,
0.2719772020126178,
0.27433651750117705,
0.2767359493950581,
0.27915571456796273,
0.281577941081066,
0.28398645777972986,
0.28636662671461827,
0.2887052285029932,
0.2909903978261544,
0.29321159818257786,
0.2953596213276162,
0.29742659656340537,
0.2994059970608107,
0.30129263363433667,
0.30308262999494556
],
[
0.2983970509499282,
0.2965902303817876,
0.29467392184276053,
0.29264223826931335,
0.2904899879913147,
0.2882131992220483,
0.2858097425006632,
0.28328004049996597,
0.28062784567937077,
0.27786105561686464,
0.2749925234907435,
0.2720408073261832,
0.26903078694219684,
0.2659940634346371,
0.26296904497087636,
0.26000061841266475,
0.2571393138514734,
0.2544398942230242,
0.25195934964508465,
0.24975434762455168,
0.24787828115455945,
0.24637815358506376,
0.2452916198829551,
0.24464454189607976,
0.24444938815041087,
0.24470470904716785,
0.24539576066801344,
0.2464961700877343,
0.24797037717862702,
0.24977649082779604,
0.25186917966195754,
0.2542022727637534,
0.2567308497460459,
0.25941271989023207,
0.26220929855991437,
0.2650859678552062,
0.2680120512905561,
0.2709605423096202,
0.27390771224478944,
0.27683269510600644,
0.27971711357751555,
0.2825447796545496,
0.28530147853924426,
0.28797482734513064,
0.2905541906179486,
0.2930306313518466,
0.29539687728310243,
0.29764728599742146,
0.29977779729200293,
0.3017858661926242
],
[
0.29574830590007795,
0.29368811719646426,
0.29149669145692597,
0.28916633752006304,
0.28669004412485055,
0.2840620841081034,
0.28127874388854607,
0.27833917151115534,
0.2752463271241861,
0.2720080079761121,
0.26863790540158405,
0.26515663344679885,
0.2615926477564603,
0.25798294991963205,
0.2543734489464678,
0.2508188324855173,
0.24738179327620005,
0.2441314715687629,
0.24114102370796567,
0.23848432035320294,
0.23623191591453555,
0.23444659880564755,
0.23317899466139325,
0.2324637997322895,
0.23231721660891022,
0.23273602087425185,
0.23369842271568023,
0.23516656800180175,
0.2370902405249781,
0.23941115998232584,
0.24206725311776434,
0.24499638983089536,
0.24813926735929456,
0.25144133071047625,
0.25485378749811793,
0.2583338855564952,
0.26184466980415994,
0.2653544328034912,
0.2688360391158797,
0.2722662542050704,
0.27562515777531965,
0.2788956776506222,
0.2820632477305164,
0.2851155729160927,
0.28804247373922126,
0.2908357812382859,
0.2934892556629409,
0.2959985084131437,
0.298360913335419,
0.3005754998412656
],
[
0.29339272547989864,
0.2910922173489514,
0.2886389374177545,
0.286023539746338,
0.28323736368723657,
0.280273104593513,
0.27712563197165796,
0.2737929523640211,
0.27027730517708853,
0.26658636790493684,
0.2627345318514889,
0.25874418947350675,
0.254646948863312,
0.25048465928707986,
0.24631009525578218,
0.24218710943856628,
0.23819003559078852,
0.23440211637379732,
0.23091276810387815,
0.2278135974929397,
0.22519326879515228,
0.2231315748117576,
0.22169334535483307,
0.2209230451719163,
0.22084096597891334,
0.22144173213153434,
0.22269542866572334,
0.22455113653049297,
0.22694219347992767,
0.22979223761624146,
0.23302109032448395,
0.2365497496168536,
0.24030408553846838,
0.24421714541098088,
0.248230215024707,
0.25229291653232483,
0.2563626645517486,
0.2604037761608994,
0.264386468161894,
0.2682859009302299,
0.27208135895443497,
0.2757556027374464,
0.27929438808140217,
0.2826861260369829,
0.2859216469913522,
0.288994031769935,
0.2918984776545641,
0.29463217492512395,
0.297194177780275,
0.29958526094317295
],
[
0.2914562217981258,
0.28893979399980896,
0.2862503931569891,
0.2833774081223061,
0.28031099848796515,
0.27704282450115963,
0.27356693861484127,
0.2698808382156212,
0.26598667049848984,
0.2618925692203263,
0.25761408803466257,
0.25317567473662755,
0.2486121031984212,
0.24396974341447053,
0.23930750447832685,
0.23469723308359128,
0.23022329960061783,
0.22598107208645551,
0.222073993648984,
0.2186090764692792,
0.21569083905665068,
0.21341404778763934,
0.21185602936489417,
0.21106967592184625,
0.21107840177082052,
0.21187409590849887,
0.21341854350184344,
0.2156480311393771,
0.21848017787366333,
0.22182168046746276,
0.2255757024800978,
0.22964797950595894,
0.23395117775209803,
0.23840746662313064,
0.2429495569597596,
0.24752059814550467,
0.25207334859921415,
0.25656897995783007,
0.26097578643522074,
0.2652679767191467,
0.26942464354019074,
0.27342894337309015,
0.277267476866557,
0.2809298370906641,
0.28440828339314167,
0.2876974990770999,
0.2907943972305088,
0.29369794769005925,
0.29640900710270995,
0.2989301420193219
],
[
0.2900345900953443,
0.287335741511909,
0.2844458196292487,
0.2813534722796476,
0.2780483282596398,
0.2745217901098542,
0.27076799541854685,
0.2667849455298765,
0.26257579175597334,
0.25815025781739775,
0.25352616212298246,
0.2487309829727497,
0.2438033816870061,
0.23879456080174874,
0.23376928547380377,
0.22880633756080337,
0.22399811091768773,
0.21944901091306354,
0.21527232246641326,
0.21158530333748593,
0.20850248810961064,
0.20612757095512857,
0.20454472193013648,
0.20381063740925992,
0.20394881657975983,
0.2049473117541817,
0.2067605076329063,
0.20931456009279148,
0.21251532215023333,
0.21625719473883673,
0.2204314377227942,
0.22493292096752274,
0.22966485295553443,
0.23454150238131286,
0.23948923456097918,
0.24444631701458458,
0.2493619520459566,
0.25419492322924514,
0.25891214211048047,
0.26348728043497727,
0.26789958753995957,
0.2721329283119195,
0.2761750344590234,
0.2800169377499151,
0.2836525439522134,
0.2870783059600972,
0.290292960073648,
0.2932972974945063,
0.2960939516755294,
0.2986871898848522
],
[
0.2891866413006009,
0.2863455740617768,
0.28329785241333766,
0.2800318852402228,
0.27653739848679876,
0.27280630176030235,
0.2688337262274037,
0.26461922940933674,
0.26016815228401957,
0.2554931010415864,
0.2506155088600871,
0.2455672106955418,
0.2403919345119182,
0.23514657387838295,
0.2299020587362417,
0.22474358561445415,
0.21976991389343303,
0.2150913991724963,
0.2108264500195938,
0.20709620376124438,
0.20401746268839757,
0.2016943257555844,
0.2002094338086617,
0.1996161656792877,
0.19993326424564772,
0.20114306942833238,
0.20319380283617164,
0.20600542627894644,
0.20947783848988502,
0.21349984814257655,
0.21795750846192494,
0.22274085877151917,
0.22774866057196724,
0.23289116401554827,
0.23809122020177842,
0.243284172304729,
0.24841695958985785,
0.25344680343254355,
0.2583397531824822,
0.26306927762500293,
0.2676150085829141,
0.27196168243559826,
0.27609828351242205,
0.280017368153843,
0.283714536169815,
0.2871880136451066,
0.2904383140808631,
0.2934679509235291,
0.2962811815819251,
0.2988837697531712
],
[
0.28893547760613314,
0.28599770640667055,
0.28284059261930966,
0.27945267719786,
0.2758242318446959,
0.271948206730397,
0.26782135106498944,
0.26344549766831377,
0.25882899008946836,
0.2539882145844589,
0.24894917837989258,
0.24374904897815342,
0.23843753577199892,
0.23307795466072156,
0.2277477703397743,
0.22253836492026002,
0.21755374733846347,
0.21290791632464773,
0.20872065047149785,
0.20511165593409567,
0.2021932774103009,
0.20006235501670583,
0.19879220757512928,
0.19842599439079164,
0.19897268845090318,
0.20040649830631424,
0.20266988102180195,
0.20567952905526168,
0.20933416459968296,
0.21352280116326813,
0.21813231915634493,
0.22305360184942652,
0.2281859144335352,
0.23343956002448735,
0.23873706613072607,
0.24401325255225684,
0.2492145405556782,
0.2542978195466646,
0.2592291199571517,
0.263982268957473,
0.26853764026360954,
0.2728810563282221,
0.277002862264679,
0.28089716518308633,
0.2845612180841107,
0.2879949213769199,
0.2912004147868251,
0.29418173557035315,
0.2969445237448567,
0.2994957601890929
],
[
0.28927535490802914,
0.2862916619314439,
0.2830795804848568,
0.27962804081870607,
0.2759281233658589,
0.27197408069849155,
0.2677645329682568,
0.2633038237675366,
0.25860350810546595,
0.2536839242123759,
0.248575775126439,
0.24332161360884272,
0.23797708475553483,
0.23261173635519972,
0.22730916251929814,
0.22216621160261404,
0.2172909822441797,
0.2127993759413296,
0.20881009826969846,
0.2054382225040173,
0.20278774042021983,
0.2009438698658675,
0.1999661600585452,
0.1998835034846134,
0.20069193888955775,
0.2023556330592543,
0.20481080588169787,
0.20797182366834052,
0.21173839666586658,
0.21600282417188968,
0.22065646210980366,
0.2255949161717639,
0.23072177676929928,
0.23595094807763436,
0.24120776788557954,
0.24642918092025592,
0.25156323815678877,
0.25656816957553197,
0.2614112345103894,
0.2660675040103304,
0.27051868144196267,
0.2747520256991495,
0.2787594082132124,
0.28253651099185173,
0.28608215741566495,
0.2893977590218167,
0.2924868582570762,
0.29535474748134627,
0.2980081468836696,
0.300454927303362
],
[
0.29017915868346755,
0.2872059853139111,
0.2840003207143018,
0.28055175121208137,
0.2768523798703456,
0.2728978982991195,
0.26868882900991764,
0.2642319216785642,
0.2595416692449011,
0.2546418866085201,
0.24956726467550072,
0.24436477506107157,
0.2390947565919489,
0.23383146735476035,
0.228662843540635,
0.22368918356620784,
0.2190204953183856,
0.21477233330820758,
0.2110601345086725,
0.20799233942162362,
0.2056629200816164,
0.2041442391144786,
0.20348130934239217,
0.20368840722874826,
0.20474859943040005,
0.20661617608785735,
0.20922143712432575,
0.2124769261632665,
0.21628412844629885,
0.22053980301205003,
0.22514139412539602,
0.22999125101184473,
0.23499961008687958,
0.24008643996748785,
0.24518232676269855,
0.25022860566874605,
0.2551769430233041,
0.2599885535098308,
0.26463320836204585,
0.2690881576436739,
0.27333705686656556,
0.27736895819115687,
0.2811774010825987,
0.2847596174856099,
0.28811585241459264,
0.29124879179560115,
0.2941630845328046,
0.29686494405024116,
0.29936181495949193,
0.3016620921498726
],
[
0.2916022748507094,
0.2887008628178432,
0.2855693309958037,
0.28219831004081253,
0.278581231953818,
0.2747154134019253,
0.27060329907981717,
0.2662538448383315,
0.26168400145112225,
0.25692023480394754,
0.25199998600050805,
0.2469729351996027,
0.241901887581625,
0.23686305376378772,
0.2319454607328672,
0.22724922053648247,
0.22288242702679822,
0.2189565723988454,
0.2155805917246137,
0.21285394318350814,
0.21085945588237687,
0.2096569204794101,
0.20927843971216226,
0.20972632360158083,
0.21097384167988972,
0.212968579135696,
0.2156376787827213,
0.21889402655085574,
0.22264247902517015,
0.22678545736631706,
0.23122752214736467,
0.23587880054929827,
0.2406573145826161,
0.24549035491752233,
0.2503150807429289,
0.25507852655868557,
0.25973718037021976,
0.26425627490766584,
0.2686089090630453,
0.27277509267685546,
0.27674078504590355,
0.2804969768028003,
0.2840388468108551,
0.2873650109310992,
0.29047686816612606,
0.2933780416631036,
0.29607390699277225,
0.2985711974707162,
0.300877675446646,
0.30300185887551595
],
[
0.29348211132787383,
0.2907151077890868,
0.2877278787698749,
0.28451259295561765,
0.28106441021400763,
0.27738252989858203,
0.273471378189851,
0.26934190978294514,
0.2650129798785799,
0.26051271713600954,
0.25587979648547415,
0.25116447303054523,
0.24642919739275557,
0.24174859505346344,
0.23720856897756726,
0.2329042934670333,
0.2289369295824046,
0.2254090286665378,
0.22241880690679497,
0.2200537475583578,
0.21838425528982486,
0.2174582530853401,
0.21729758213937225,
0.21789680008083656,
0.21922452765410097,
0.221227007650714,
0.22383317165730057,
0.22696036132435995,
0.23051992439306726,
0.23442212487535585,
0.2385800687144658,
0.24291257089465226,
0.24734604046421024,
0.2518155364912734,
0.2562651701622175,
0.2606480190756577,
0.264925697085546,
0.2690676973202566,
0.2730506019730783,
0.2768572314774814,
0.2804757876853336,
0.2838990302855877,
0.28712351267721425,
0.2901488927419998,
0.2929773254078912,
0.2956129374690991,
0.29806138066194415,
0.3003294562213418,
0.3024248027377972,
0.3043556387562752
],
[
0.2957361836908373,
0.29316184907323833,
0.2903845987857622,
0.28739858607681557,
0.2842010335444203,
0.280793197745313,
0.2771814416533187,
0.2733783855462668,
0.26940408828500984,
0.26528718752899294,
0.2610658994080702,
0.2567887469826942,
0.2525148560333235,
0.24831363300456666,
0.24426363384318694,
0.24045045814934402,
0.23696357571824184,
0.2338921226072935,
0.23131988782411297,
0.22931992269713097,
0.2279493894094667,
0.2272453536156653,
0.2272221604865701,
0.22787080111715638,
0.22916032849152587,
0.23104102112087108,
0.2334487263053111,
0.23630970956740033,
0.23954539245735146,
0.2430765250023014,
0.2468265399993927,
0.2507240154924671,
0.2547042985168854,
0.25871041320360716,
0.2626934010824047,
0.26661223738743595,
0.27043344883650544,
0.2741305355437116,
0.2776832777243202,
0.281076988768859,
0.28430176045816674,
0.28735173320655033,
0.2902244137612748,
0.2929200543477841,
0.295441100549635,
0.2977917100497069,
0.29997734056361125,
0.30200440269190143,
0.3038799718141286,
0.30561155234475007
],
[
0.2982629291342842,
0.2959285658802455,
0.29341454445052173,
0.29071721837095227,
0.2878359551626271,
0.2847739743353693,
0.28153925625755055,
0.27814548913047715,
0.2746130049224255,
0.2709696356869323,
0.2672514000784284,
0.26350290813952004,
0.2597773543274627,
0.2561359601650789,
0.2526467368534234,
0.24938247381288095,
0.24641792918023456,
0.24382630487407028,
0.2416752231533873,
0.24002256014321177,
0.2389125976758974,
0.2383729870296452,
0.23841294826738088,
0.23902295778162083,
0.2401759412208906,
0.24182975149230493,
0.24393053520664093,
0.24641651465127398,
0.24922173858680002,
0.2522794555683416,
0.2555248962751456,
0.25889737880900987,
0.262341749746011,
0.26580923620596747,
0.2692578139168886,
0.2726522021116614,
0.27596358765796175,
0.2791691657374829,
0.2822515676629093,
0.285198230743601,
0.28800075158046573,
0.2906542529803098,
0.2931567856200874,
0.29550877833951356,
0.29771254519422397,
0.29977185291690533,
0.3016915490184426,
0.3034772482565605,
0.30513507346491114,
0.3066714456397122
],
[
0.3009476643524034,
0.29888443110393226,
0.29666828889586616,
0.2942976839596765,
0.2917738788785665,
0.2891016360292861,
0.2862899360723136,
0.2833526984017989,
0.28030945759861964,
0.27718593580745077,
0.2740144368079432,
0.27083397547944194,
0.267690049548688,
0.26463396320603616,
0.2617216292740916,
0.25901181260807693,
0.2565638345799571,
0.25443483454482946,
0.2526767700537389,
0.2513334168290107,
0.25043768072647826,
0.2500095366335407,
0.25005485225747454,
0.25056524290450694,
0.2515189589608558,
0.25288266445145247,
0.2546138559851052,
0.2566636178935339,
0.2589794149070785,
0.26150767574175315,
0.26419599829954693,
0.26699488843675395,
0.26985901384850125,
0.2727480048167685,
0.27562686342558884,
0.2784660556577767,
0.2812413615306651,
0.2839335519499988,
0.28652795106045764,
0.28901393207971815,
0.2913843843565898,
0.2936351803489434,
0.2957646635572465,
0.2977731721168584,
0.2996626075950603,
0.30143605438957294,
0.3030974518336377,
0.3046513185531864,
0.306102526690645,
0.30745612221971097
],
[
0.30367297126881504,
0.30189362160472255,
0.29998886106326134,
0.2979588394392296,
0.2958062023078965,
0.2935366128618285,
0.29115928030367655,
0.28868746478136664,
0.2861389199448383,
0.2835362253873935,
0.28090695369476926,
0.2782836122592285,
0.27570330061424825,
0.2732070322981699,
0.27083868850672727,
0.2686436004943556,
0.26666679839571783,
0.2649510125417022,
0.2635345626782189,
0.2624493110028835,
0.26171887569975877,
0.261357293730471,
0.2613682815700177,
0.26174517478312626,
0.26247154400081085,
0.2635224027960377,
0.2648658585717762,
0.2664650219366836,
0.2682799861782387,
0.2702697116621249,
0.27239369065501423,
0.2746133152608666,
0.27689291569777097,
0.27920047218131316,
0.28150802886818277,
0.28379185299231907,
0.2860323884049356,
0.28821405267307554,
0.29032492302798424,
0.29235635063282334,
0.2943025361405553,
0.29616009311758457,
0.29792762002346745,
0.2996052962251408,
0.3011945130120318,
0.30269754672877525,
0.3041172778979874,
0.3054569575116467,
0.3067200194808154,
0.3079099365136238
],
[
0.30633049981309424,
0.30483034589425206,
0.30323066059267983,
0.301532756735834,
0.29974004406952237,
0.29785840220103665,
0.295896541851874,
0.29386632983235683,
0.29178304777633784,
0.28966555008844613,
0.2875362836647679,
0.28542113187440976,
0.2833490492819734,
0.28135146282603385,
0.27946143043973204,
0.2777125694099046,
0.2761377929089816,
0.27476792137624984,
0.27363026156454734,
0.2727472649365192,
0.2721353836284748,
0.27180423287070127,
0.27175614292302186,
0.2719861442354737,
0.2724823829459483,
0.2732269180988877,
0.274196814974864,
0.27536542624948407,
0.276703746456941,
0.2781817339829497,
0.2797695145260199,
0.28143840548185756,
0.2831617271200541,
0.28491539003202015,
0.2866782669921944,
0.28843237039209096,
0.29016286413315656,
0.29185794224713785,
0.29350860669873213,
0.29510837489488884,
0.2966529442540012,
0.2981398374095645,
0.29956804765051886,
0.30093770028041655,
0.30224974184414477,
0.3035056656951693,
0.30470727920006935,
0.30585651503372824,
0.306955286540873,
0.3080053850604946
],
[
0.30883083409441664,
0.30759115912942975,
0.3062746052067997,
0.30488309797678836,
0.3034202365213633,
0.30189154297344406,
0.30030469184425174,
0.2986697006597024,
0.29699906073720506,
0.29530778512240125,
0.29361335043234826,
0.29193551124668776,
0.290295970340746,
0.2887178958806595,
0.2872252877747528,
0.2858422092511256,
0.28459191530362016,
0.28349592512211985,
0.28257309865601205,
0.28183878551295066,
0.2813041152655775,
0.28097549065949246,
0.2808543293444379,
0.2809370773564598,
0.2812154918047999,
0.2816771649414866,
0.28230624076103966,
0.2830842612840564,
0.2839910740277829,
0.28500573457803,
0.2861073470835637,
0.28727579859569535,
0.2884923580359438,
0.28974012509947633,
0.2910043271108568,
0.2922724719353674,
0.29353437228961815,
0.2947820613754476,
0.2960096220940717,
0.2972129526702808,
0.29838949078884447,
0.2995379166974133,
0.3006578534507831,
0.3017495797704898,
0.3028137680271897,
0.303851256748088,
0.3048628639252039,
0.30584924437063515,
0.3068107915520874,
0.3077475818609925
],
[
0.311109295167136,
0.3101019585867989,
0.3090363897140987,
0.3079146669451596,
0.30674014010545275,
0.3055175867474865,
0.3042533465587288,
0.30295542115162544,
0.3016335253673957,
0.300299075921195,
0.29896510407130167,
0.29764608130995585,
0.2963576510681756,
0.2951162651677345,
0.29393873107725055,
0.29284168448053827,
0.2918410104710275,
0.2909512447922805,
0.2901849927322428,
0.2895524063567435,
0.28906075981697804,
0.28871415708009723,
0.28851339688601474,
0.2884560070142528,
0.2885364456179085,
0.2887464533115124,
0.28907552768893546,
0.2895114833988071,
0.2900410565870719,
0.2906505124929593,
0.2913262187019374,
0.29205515304714624,
0.29282532326805416,
0.29362608419069264,
0.2944483465011126,
0.29528467853130386,
0.2961293085265623,
0.2969780394992754,
0.2978280920305141,
0.29867789237178277,
0.29952682406530606,
0.30037496117825085,
0.30122280025610576,
0.30207100635675155,
0.3029201861490957,
0.3037706981879682,
0.3046225072779008,
0.3054750865070861,
0.3063273672799866,
0.3071777347111097
],
[
0.3131272548319521,
0.312319325265513,
0.3114677132712489,
0.31057432380428884,
0.30964198257014586,
0.30867452699838654,
0.30767687772832003,
0.30665508238880274,
0.3056163231856011,
0.30456888016017986,
0.30352204311113706,
0.3024859671931932,
0.3014714701773632,
0.3004897732138619,
0.29955219149728324,
0.2986697861541029,
0.2978529934775235,
0.29711125174383185,
0.29645264864593446,
0.29588361332708984,
0.2954086757171992,
0.29503031225835225,
0.2947488913709788,
0.29456272469122785,
0.2944682219885175,
0.2944601396607812,
0.2945319056908931,
0.2946759986509886,
0.29488435521198325,
0.29514877979201815,
0.2954613313080937,
0.29581466510859533,
0.29620231256574,
0.2966188859723459,
0.29706020183821696,
0.2975233210277787,
0.29800650913272825,
0.29850912483028275,
0.2990314476022992,
0.2995744589850794,
0.30013959340708135,
0.30072847559070476,
0.30134266140632265,
0.30198339797227763,
0.30265141675181834,
0.3033467705368516,
0.3040687217340135,
0.3048156855502697,
0.30558522782184894,
0.3063741136552264
],
[
0.31486982056111823,
0.31422746636448096,
0.3135522522617772,
0.31284571731914396,
0.3121100350888062,
0.31134806195219283,
0.3105633700062278,
0.3097602595172525,
0.3089437460864062,
0.3081195182036343,
0.3072938618819047,
0.30647355059269976,
0.30566570075366867,
0.30487759547213455,
0.30411648197554014,
0.30338935094271724,
0.30270270851062936,
0.30206235376023655,
0.30147317567880694,
0.3009389837032581,
0.300462384817764,
0.3000447177925001,
0.29968605164634154,
0.2993852510784153,
0.2991401068385848,
0.2989475242512198,
0.2988037588208171,
0.2987046844169714,
0.2986460772330335,
0.2986238976767787,
0.29863455259030536,
0.2986751216090723,
0.2987435338806088,
0.29883868455690665,
0.29896048422512933,
0.29910983852923007,
0.2992885594505033,
0.29949921385274225,
0.29974491874821363,
0.3000290960851997,
0.3003552024714758,
0.3007264509152667,
0.3011455422064798,
0.30161442286620344,
0.30213408465277286,
0.30270441754254346,
0.30332412414408183,
0.30399069900525744,
0.30470047165142194,
0.3054487078810303
],
[
0.3163413074711771,
0.31583260863741,
0.31529875562241105,
0.3147408388388081,
0.3141603618365689,
0.3135592636712863,
0.3129399300062394,
0.3123051901320271,
0.31165829733216993,
0.3110028905262704,
0.31034293590743395,
0.3096826483579589,
0.30902639374709695,
0.3083785747223932,
0.30774350420095187,
0.3071252723155679,
0.30652761391646516,
0.30595378470783613,
0.305406454556648,
0.3048876263298665,
0.30439858772960543,
0.30393990200650284,
0.30351144121719514,
0.3031124629994501,
0.3027417288705833,
0.3023976590453043,
0.30207851595721325,
0.30178260627239695,
0.30150848938229957,
0.30125517928330997,
0.30102232646596694,
0.3008103669727485,
0.3006206271259189,
0.30045537453015614,
0.30031780874534286,
0.3002119883999066,
0.30014269533424814,
0.3001152404399742,
0.3001352199527351,
0.30020823477072145,
0.30033958857567605,
0.30053398278977494,
0.300795227408435,
0.3011259862941695,
0.3015275735270325,
0.30199981398257203,
0.30254097672810704,
0.3031477845271059,
0.3038154972535257,
0.30453806190041965
],
[
0.3175598688561423,
0.31715654050756314,
0.31673333094874656,
0.3162908774107177,
0.3158300669547024,
0.3153520442012696,
0.3148582114274727,
0.3143502195682143,
0.3138299489064775,
0.31329947863977653,
0.312761045072048,
0.31221698889165234,
0.3116696928302421,
0.3111215119082671,
0.3105746993969358,
0.3100313324845779,
0.30949324233932596,
0.30896195372052226,
0.30843863942762173,
0.30792409462585674,
0.3074187354187571,
0.3069226249493929,
0.3064355288425688,
0.30595700002207615,
0.3054864909529038,
0.30502348929108836,
0.30456767090723313,
0.3041190624181963,
0.30367820384294664,
0.30324630090962906,
0.3028253559842689,
0.3024182666552724,
0.30202888176325143,
0.3016620061624753,
0.3013233477573783,
0.30101940334907085,
0.3007572834646596,
0.3005444804596346,
0.3003885885247185,
0.30029698845041464,
0.3002765136951666,
0.30033311703077636,
0.30047155839927203,
0.3006951343098505,
0.30100546700354064,
0.30140236780394414,
0.30188378387067033,
0.3024458314927327,
0.3030829127459972,
0.30378790646711373
],
[
0.31855230012645874,
0.3182305009760589,
0.31789231089125963,
0.3175379584662441,
0.3171678068814485,
0.31678235424883533,
0.31638222917532655,
0.3159681808832701,
0.3155410634345638,
0.3151018139021827,
0.3146514247178473,
0.31419091088729867,
0.31372127328525556,
0.3132434597906419,
0.31275832655978897,
0.31226660221435365,
0.3117688580907404,
0.311265487907919,
0.31075670021444535,
0.31024252673654007,
0.3097228492444624,
0.30919744677843763,
0.308666064041262,
0.3081285005047029,
0.30758471834113676,
0.30703496574656824,
0.3064799106457174,
0.30592077825501096,
0.30535948462549317,
0.3047987572037166,
0.30424223275023854,
0.303694522761725,
0.30316123697051317,
0.3026489566479756,
0.3021651513886149,
0.3017180358230062,
0.30131636624709274,
0.3009691813133007,
0.3006854954441898,
0.3004739581297561,
0.30034249629446585,
0.30029795996787767,
0.3003457930901145,
0.3004897510685883,
0.30073168450429116,
0.30107140440184194,
0.30150663850962955,
0.3020330817792774,
0.30264453701294297,
0.30333313534607653
],
[
0.31934960885686436,
0.3190900744441158,
0.31881641560160023,
0.3185285229386928,
0.3182263441311,
0.31790988127566955,
0.3175791855575703,
0.3172343490198351,
0.3168754933837538,
0.31650275607799305,
0.31611627389173624,
0.31571616496472593,
0.3153025101514922,
0.314875335129338,
0.31443459493576537,
0.313980162892785,
0.3135118260722275,
0.313029289546453,
0.31253219162316387,
0.3120201320558546,
0.31149271483362606,
0.31094960657481413,
0.3103906107772576,
0.3098157572244721,
0.30922540473430915,
0.30862035420117573,
0.30800196757557985,
0.3073722871127346,
0.30673414798958504,
0.3060912763392532,
0.305448364002776,
0.3048111109825372,
0.3041862268373914,
0.30358138321513617,
0.3030051114747685,
0.3024666419572809,
0.3019756848880229,
0.3015421569988949,
0.3011758624858841,
0.30088614148552206,
0.30068150338248084,
0.3005692654203329,
0.3005552187741891,
0.30064334406696785,
0.3008355960794168,
0.30113177318837164,
0.30152948121972173,
0.30202419452056056,
0.30260940989861246,
0.3032768824464188
],
[
0.3199835940376071,
0.31977132840320066,
0.3195464270480859,
0.31930852304154383,
0.3190572574309851,
0.3187922761109597,
0.318513225472296,
0.3182197468581499,
0.31791146996814995,
0.3175880054949245,
0.3172489374466177,
0.31689381579916487,
0.3165221503245659,
0.31613340664436534,
0.3157270057460825,
0.3153023283568037,
0.3148587256728289,
0.314395537976259,
0.31391212260768786,
0.3134078925887771,
0.3128823668819218,
0.31233523282284287,
0.31176642065767496,
0.3111761893582785,
0.3105652219869881,
0.30993472785579995,
0.30928654761096347,
0.30862325622566866,
0.3079482577748001,
0.3072658648919149,
0.3065813550858441,
0.30590099575547064,
0.30523202992712384,
0.3045826155841309,
0.30396171307018316,
0.3033789174832413,
0.302844236211135,
0.30236781566559634,
0.30195962559911993,
0.3016291137690329,
0.30138484767819895,
0.3012341631562777,
0.30118284115822486,
0.3012348339672995,
0.3013920598118118,
0.3016542808058445,
0.302019073444428,
0.3024818942026006,
0.30303623584126604,
0.30367386358630566
],
[
0.32048444425889794,
0.3203081633519717,
0.32012029058353925,
0.3199202809877406,
0.3197075691831125,
0.31948156706308667,
0.3192416612544981,
0.31898721048174317,
0.3187175430531597,
0.3184319547811024,
0.31812970775633803,
0.31781003051736867,
0.3174721202807973,
0.3171151480224805,
0.31673826731149085,
0.3163406278882787,
0.3159213950314547,
0.31547977575934344,
0.3150150528468146,
0.31452662748844123,
0.31401407118981695,
0.3134771871057011,
0.3129160805557247,
0.31233123783025896,
0.3117236116532856,
0.31109471080919404,
0.3104466904940994,
0.3097824389647064,
0.3091056550943106,
0.30842091059313015,
0.3077336900163604,
0.30705040139200385,
0.30637835048307144,
0.3057256724800701,
0.3051012163988579,
0.3045143796856595,
0.3039748934805684,
0.3034925625418885,
0.303076967754839,
0.30273714309995203,
0.30248124251377956,
0.3023162147721106,
0.30224750592433025,
0.3022788085699837,
0.30241187523398183,
0.302646409331824,
0.30298004203002354,
0.30340839722110785,
0.3039252405071928,
0.3045227022168484
],
[
0.32087923682082115,
0.32073070744542764,
0.32057141677913276,
0.32040071382176605,
0.32021791329249577,
0.3200222947084665,
0.31981310186642614,
0.31958954290412395,
0.31935079116983023,
0.3190959871884585,
0.31882424208040533,
0.3185346428623123,
0.3182262601342221,
0.3178981587303994,
0.3175494119752095,
0.3171791202330466,
0.31678643446282384,
0.3163705854718019,
0.3159309194979409,
0.31546694062090386,
0.314978360295447,
0.3144651540041016,
0.31392762462800067,
0.3133664716289902,
0.3127828645231607,
0.3121785184158287,
0.31155576858386325,
0.31091764027215063,
0.3102679090742622,
0.30961114656966127,
0.30895274538570056,
0.3082989176504208,
0.3076566610151178,
0.30703368715941254,
0.30643830902685293,
0.30587928501155925,
0.3053656208959124,
0.3049063334123105,
0.3045101826625005,
0.3041853839811336,
0.30393931281366643,
0.30377821840227087,
0.3037069631740231,
0.30372880443044514,
0.3038452331223102,
0.30405588122342264,
0.30435850475616705,
0.30474904430752703,
0.3052217594574614,
0.30576942850196
],
[
0.3211911670975921,
0.3210645396446518,
0.32092791526280695,
0.32078059779400214,
0.32062185267834725,
0.3204509075375055,
0.3202669535409227,
0.3200691477313222,
0.3198566165166829,
0.319628460570827,
0.3193837614232126,
0.31912159005936064,
0.3188410178945881,
0.31854113052241834,
0.3182210446710821,
0.3178799288214695,
0.31751702794083125,
0.3171316927600472,
0.31672341395856923,
0.316291861509295,
0.31583692926421125,
0.3153587846196821,
0.3148579227785564,
0.314335224719274,
0.313792017490176,
0.31323013487905255,
0.3126519758835364,
0.31206055776084296,
0.3114595598145332,
0.3108533535461838,
0.31024701444002717,
0.30964631054750685,
0.309057663287194,
0.3084880765555766,
0.30794503141470647,
0.30743634530318886,
0.3069699968722803,
0.30655392007641463,
0.3061957738723867,
0.30590269656184355,
0.3056810561576258,
0.30553620986001284,
0.3054722865153819,
0.30549200559334816,
0.3055965446731068,
0.30578546473592216,
0.3060566989312841,
0.3064066062632439,
0.3068300872603892,
0.30732075460022285
],
[
0.32143932949380816,
0.32133052591520395,
0.321212504497938,
0.3210845721081436,
0.3209459991929309,
0.320796021720017,
0.32063384409651546,
0.3204586432223878,
0.3202695738492505,
0.32006577543182535,
0.3198463806770721,
0.3196105260143322,
0.3193573642275086,
0.3190860795055818,
0.3187959051779133,
0.31848614440207695,
0.31815619405944223,
0.3178055720812225,
0.31743394836780037,
0.3170411793685001,
0.3166273462487742,
0.31619279637852454,
0.3157381876220281,
0.3152645345927389,
0.3147732556561003,
0.3142662190284242,
0.3137457858470121,
0.31321484760408863,
0.312676854884916,
0.31213583398076195,
0.3115963877224354,
0.31106367686825825,
0.31054337864958614,
0.31004161968592503,
0.3095648814685596,
0.309119877982464,
0.30871340675401343,
0.3083521765886492,
0.3080426173573252,
0.30779067921562686,
0.3076016303760996,
0.30747986377722775,
0.3074287235013792,
0.3074503614471059,
0.3075456335046834,
0.3077140423704777,
0.3079537313276386,
0.3082615300730704,
0.308633050299695,
0.3090628255815978
],
[
0.3216388857357532,
0.3215450765925157,
0.3214428758651611,
0.32133162880169336,
0.3212106496111937,
0.32107922446805287,
0.3209366155605366,
0.3207820663089615,
0.32061480788250085,
0.32043406714714684,
0.32023907618058745,
0.32002908349246995,
0.31980336709013685,
0.31956124952938736,
0.3193021150854411,
0.3190254291685958,
0.3187307600886823,
0.31841780323797086,
0.3180864077083633,
0.31773660527948683,
0.31736864160330386,
0.31698300926202055,
0.3165804821846316,
0.3161621506710728,
0.3157294559933157,
0.31528422322699107,
0.31482869062948565,
0.31436553354339,
0.3138978804989979,
0.3134293189559795,
0.3129638880087131,
0.3125060554315911,
0.31206067670740706,
0.3116329342023727,
0.311228255447278,
0.31085221055276746,
0.31051039009266096,
0.3102082662614278,
0.30995104164283005,
0.30974349137841956,
0.3095898057406147,
0.3094934409385001,
0.3094569862793223,
0.30948205548225727,
0.309569208962945,
0.3097179123205411,
0.3099265341808518,
0.31019238415961636,
0.3105117892303377,
0.3108802044442521
]
]
},
{
"hoverinfo": "text",
"legendgroup": "In-sample",
"marker": {
"color": "black",
"opacity": 0.5,
"symbol": 1
},
"mode": "markers",
"name": "In-sample",
"text": [
"Arm 0_0
hartmann6: -0.0452601 (SEM: 0.1)
x1: 0.647986
x2: 0.940565
x3: 0.044812
x4: 0.575433
x5: 0.637394
x6: 0.412333",
"Arm 10_0
hartmann6: -0.00975973 (SEM: 0.1)
x1: 0.143256
x2: 0.67861
x3: 0.774216
x4: 0.926749
x5: 0.741571
x6: 0.727287",
"Arm 11_0
hartmann6: -0.255761 (SEM: 0.1)
x1: 0.0797696
x2: 0.49046
x3: 0.474706
x4: 0.731792
x5: 0.419593
x6: 0.904151",
"Arm 12_0
hartmann6: -0.24639 (SEM: 0.1)
x1: 0.514753
x2: 0.470081
x3: 0.353008
x4: 0.774696
x5: 0.300075
x6: 0.133009",
"Arm 13_0
hartmann6: -0.3002 (SEM: 0.1)
x1: 0.648421
x2: 0.473822
x3: 0.368169
x4: 0.71098
x5: 0.216919
x6: 0.130905",
"Arm 14_0
hartmann6: -0.160542 (SEM: 0.1)
x1: 0.59857
x2: 0.454225
x3: 0.383377
x4: 0.957917
x5: 0.250776
x6: 0.117958",
"Arm 15_0
hartmann6: -0.608008 (SEM: 0.1)
x1: 0.537644
x2: 0.532768
x3: 0.461756
x4: 0.637048
x5: 0.354229
x6: 0.0966461",
"Arm 16_0
hartmann6: -0.733421 (SEM: 0.1)
x1: 0.485691
x2: 0.50462
x3: 0.515797
x4: 0.592812
x5: 0.356857
x6: 0.131914",
"Arm 17_0
hartmann6: -1.23044 (SEM: 0.1)
x1: 0.467467
x2: 0.573445
x3: 0.534
x4: 0.534673
x5: 0.337681
x6: 0.0956883",
"Arm 18_0
hartmann6: -1.21523 (SEM: 0.1)
x1: 0.423334
x2: 0.588478
x3: 0.520482
x4: 0.490528
x5: 0.320158
x6: 0.19463",
"Arm 1_0
hartmann6: -0.238117 (SEM: 0.1)
x1: 0.567233
x2: 0.821178
x3: 0.977733
x4: 0.199389
x5: 0.180126
x6: 0.868955",
"Arm 2_0
hartmann6: -0.172203 (SEM: 0.1)
x1: 0.0309143
x2: 0.442223
x3: 0.0320143
x4: 0.751952
x5: 0.529942
x6: 0.162994",
"Arm 3_0
hartmann6: -0.173078 (SEM: 0.1)
x1: 0.893565
x2: 0.879475
x3: 0.362525
x4: 0.865657
x5: 0.690319
x6: 0.10035",
"Arm 4_0
hartmann6: 0.191891 (SEM: 0.1)
x1: 0.725341
x2: 0.354519
x3: 0.346764
x4: 0.0490167
x5: 0.922025
x6: 0.225903",
"Arm 5_0
hartmann6: -0.409751 (SEM: 0.1)
x1: 0.635386
x2: 0.479884
x3: 0.430837
x4: 0.817347
x5: 0.316434
x6: 0.137054",
"Arm 6_0
hartmann6: -0.0230485 (SEM: 0.1)
x1: 0.360357
x2: 0.127097
x3: 0.981938
x4: 0.475173
x5: 0.716454
x6: 0.980746",
"Arm 7_0
hartmann6: -0.180625 (SEM: 0.1)
x1: 0.603229
x2: 0.63944
x3: 0.192713
x4: 0.0651432
x5: 0.470419
x6: 0.0616067",
"Arm 8_0
hartmann6: -0.0749468 (SEM: 0.1)
x1: 0.809156
x2: 0.189099
x3: 0.794207
x4: 0.773438
x5: 0.378103
x6: 0.268962",
"Arm 9_0
hartmann6: -0.205796 (SEM: 0.1)
x1: 0.225076
x2: 0.0129004
x3: 0.802195
x4: 0.345076
x5: 0.688158
x6: 0.461337"
],
"type": "scatter",
"x": [
0.6479859948158264,
0.14325580187141895,
0.07976963464170694,
0.5147526921901385,
0.6484206856814887,
0.5985696911100412,
0.5376437105058623,
0.4856914170600578,
0.4674666020026358,
0.4233336484203774,
0.5672327820211649,
0.030914271250367165,
0.8935652710497379,
0.7253411263227463,
0.6353857098147273,
0.3603565897792578,
0.603229021653533,
0.809155804105103,
0.22507579065859318
],
"xaxis": "x",
"y": [
0.9405652284622192,
0.6786100286990404,
0.49046045169234276,
0.47008123784142336,
0.4738222387852608,
0.45422547505769506,
0.5327679482388927,
0.5046200534785877,
0.5734454886742577,
0.5884779201020397,
0.8211783273145556,
0.44222267530858517,
0.8794751279056072,
0.354518823325634,
0.4798837276175618,
0.1270969035103917,
0.639439670369029,
0.1890990398824215,
0.012900439091026783
],
"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.0452601 (SEM: 0.1)
x1: 0.647986
x2: 0.940565
x3: 0.044812
x4: 0.575433
x5: 0.637394
x6: 0.412333",
"Arm 10_0
hartmann6: -0.00975973 (SEM: 0.1)
x1: 0.143256
x2: 0.67861
x3: 0.774216
x4: 0.926749
x5: 0.741571
x6: 0.727287",
"Arm 11_0
hartmann6: -0.255761 (SEM: 0.1)
x1: 0.0797696
x2: 0.49046
x3: 0.474706
x4: 0.731792
x5: 0.419593
x6: 0.904151",
"Arm 12_0
hartmann6: -0.24639 (SEM: 0.1)
x1: 0.514753
x2: 0.470081
x3: 0.353008
x4: 0.774696
x5: 0.300075
x6: 0.133009",
"Arm 13_0
hartmann6: -0.3002 (SEM: 0.1)
x1: 0.648421
x2: 0.473822
x3: 0.368169
x4: 0.71098
x5: 0.216919
x6: 0.130905",
"Arm 14_0
hartmann6: -0.160542 (SEM: 0.1)
x1: 0.59857
x2: 0.454225
x3: 0.383377
x4: 0.957917
x5: 0.250776
x6: 0.117958",
"Arm 15_0
hartmann6: -0.608008 (SEM: 0.1)
x1: 0.537644
x2: 0.532768
x3: 0.461756
x4: 0.637048
x5: 0.354229
x6: 0.0966461",
"Arm 16_0
hartmann6: -0.733421 (SEM: 0.1)
x1: 0.485691
x2: 0.50462
x3: 0.515797
x4: 0.592812
x5: 0.356857
x6: 0.131914",
"Arm 17_0
hartmann6: -1.23044 (SEM: 0.1)
x1: 0.467467
x2: 0.573445
x3: 0.534
x4: 0.534673
x5: 0.337681
x6: 0.0956883",
"Arm 18_0
hartmann6: -1.21523 (SEM: 0.1)
x1: 0.423334
x2: 0.588478
x3: 0.520482
x4: 0.490528
x5: 0.320158
x6: 0.19463",
"Arm 1_0
hartmann6: -0.238117 (SEM: 0.1)
x1: 0.567233
x2: 0.821178
x3: 0.977733
x4: 0.199389
x5: 0.180126
x6: 0.868955",
"Arm 2_0
hartmann6: -0.172203 (SEM: 0.1)
x1: 0.0309143
x2: 0.442223
x3: 0.0320143
x4: 0.751952
x5: 0.529942
x6: 0.162994",
"Arm 3_0
hartmann6: -0.173078 (SEM: 0.1)
x1: 0.893565
x2: 0.879475
x3: 0.362525
x4: 0.865657
x5: 0.690319
x6: 0.10035",
"Arm 4_0
hartmann6: 0.191891 (SEM: 0.1)
x1: 0.725341
x2: 0.354519
x3: 0.346764
x4: 0.0490167
x5: 0.922025
x6: 0.225903",
"Arm 5_0
hartmann6: -0.409751 (SEM: 0.1)
x1: 0.635386
x2: 0.479884
x3: 0.430837
x4: 0.817347
x5: 0.316434
x6: 0.137054",
"Arm 6_0
hartmann6: -0.0230485 (SEM: 0.1)
x1: 0.360357
x2: 0.127097
x3: 0.981938
x4: 0.475173
x5: 0.716454
x6: 0.980746",
"Arm 7_0
hartmann6: -0.180625 (SEM: 0.1)
x1: 0.603229
x2: 0.63944
x3: 0.192713
x4: 0.0651432
x5: 0.470419
x6: 0.0616067",
"Arm 8_0
hartmann6: -0.0749468 (SEM: 0.1)
x1: 0.809156
x2: 0.189099
x3: 0.794207
x4: 0.773438
x5: 0.378103
x6: 0.268962",
"Arm 9_0
hartmann6: -0.205796 (SEM: 0.1)
x1: 0.225076
x2: 0.0129004
x3: 0.802195
x4: 0.345076
x5: 0.688158
x6: 0.461337"
],
"type": "scatter",
"x": [
0.6479859948158264,
0.14325580187141895,
0.07976963464170694,
0.5147526921901385,
0.6484206856814887,
0.5985696911100412,
0.5376437105058623,
0.4856914170600578,
0.4674666020026358,
0.4233336484203774,
0.5672327820211649,
0.030914271250367165,
0.8935652710497379,
0.7253411263227463,
0.6353857098147273,
0.3603565897792578,
0.603229021653533,
0.809155804105103,
0.22507579065859318
],
"xaxis": "x2",
"y": [
0.9405652284622192,
0.6786100286990404,
0.49046045169234276,
0.47008123784142336,
0.4738222387852608,
0.45422547505769506,
0.5327679482388927,
0.5046200534785877,
0.5734454886742577,
0.5884779201020397,
0.8211783273145556,
0.44222267530858517,
0.8794751279056072,
0.354518823325634,
0.4798837276175618,
0.1270969035103917,
0.639439670369029,
0.1890990398824215,
0.012900439091026783
],
"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
}
}
},
"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": [
"