{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Tune a CNN on MNIST\n",
"\n",
"This tutorial walks through using Ax to tune two hyperparameters (learning rate and momentum) for a PyTorch CNN on the MNIST dataset trained using SGD with momentum.\n"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"execution": {
"iopub.execute_input": "2022-11-10T20:36:04.728166Z",
"iopub.status.busy": "2022-11-10T20:36:04.727548Z",
"iopub.status.idle": "2022-11-10T20:36:07.204752Z",
"shell.execute_reply": "2022-11-10T20:36:07.203977Z"
}
},
"outputs": [
{
"data": {
"text/html": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-10 20:36:07] 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 torch\n",
"import numpy as np\n",
"\n",
"from ax.plot.contour import plot_contour\n",
"from ax.plot.trace import optimization_trace_single_method\n",
"from ax.service.managed_loop import optimize\n",
"from ax.utils.notebook.plotting import render, init_notebook_plotting\n",
"from ax.utils.tutorials.cnn_utils import load_mnist, train, evaluate, CNN\n",
"\n",
"init_notebook_plotting()"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"collapsed": true,
"execution": {
"iopub.execute_input": "2022-11-10T20:36:07.270756Z",
"iopub.status.busy": "2022-11-10T20:36:07.269689Z",
"iopub.status.idle": "2022-11-10T20:36:07.275882Z",
"shell.execute_reply": "2022-11-10T20:36:07.275122Z"
}
},
"outputs": [],
"source": [
"torch.manual_seed(12345)\n",
"dtype = torch.float\n",
"device = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## 1. Load MNIST data\n",
"First, we need to load the MNIST data and partition it into training, validation, and test sets.\n",
"\n",
"Note: this will download the dataset if necessary."
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"execution": {
"iopub.execute_input": "2022-11-10T20:36:07.279288Z",
"iopub.status.busy": "2022-11-10T20:36:07.278789Z",
"iopub.status.idle": "2022-11-10T20:36:08.527246Z",
"shell.execute_reply": "2022-11-10T20:36:08.526424Z"
},
"scrolled": true
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Downloading http://yann.lecun.com/exdb/mnist/train-images-idx3-ubyte.gz\n",
"Downloading http://yann.lecun.com/exdb/mnist/train-images-idx3-ubyte.gz to ./data/MNIST/raw/train-images-idx3-ubyte.gz\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "747cc2d0b17a482b9b8b00004cf06bb7",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
" 0%| | 0/9912422 [00:00, ?it/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Extracting ./data/MNIST/raw/train-images-idx3-ubyte.gz to ./data/MNIST/raw\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"Downloading http://yann.lecun.com/exdb/mnist/train-labels-idx1-ubyte.gz\n",
"Downloading http://yann.lecun.com/exdb/mnist/train-labels-idx1-ubyte.gz to ./data/MNIST/raw/train-labels-idx1-ubyte.gz\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "71bc2c22f6d548b089d9a6cabd5c23fe",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
" 0%| | 0/28881 [00:00, ?it/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Extracting ./data/MNIST/raw/train-labels-idx1-ubyte.gz to ./data/MNIST/raw\n",
"\n",
"Downloading http://yann.lecun.com/exdb/mnist/t10k-images-idx3-ubyte.gz\n",
"Downloading http://yann.lecun.com/exdb/mnist/t10k-images-idx3-ubyte.gz to ./data/MNIST/raw/t10k-images-idx3-ubyte.gz\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "0bc3cec16ca5487eb19ac55ba03ec9c3",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
" 0%| | 0/1648877 [00:00, ?it/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Extracting ./data/MNIST/raw/t10k-images-idx3-ubyte.gz to ./data/MNIST/raw\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"Downloading http://yann.lecun.com/exdb/mnist/t10k-labels-idx1-ubyte.gz\n",
"Downloading http://yann.lecun.com/exdb/mnist/t10k-labels-idx1-ubyte.gz to ./data/MNIST/raw/t10k-labels-idx1-ubyte.gz\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "e9205d63880c4815bc29c03db6f52a89",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
" 0%| | 0/4542 [00:00, ?it/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Extracting ./data/MNIST/raw/t10k-labels-idx1-ubyte.gz to ./data/MNIST/raw\n",
"\n"
]
}
],
"source": [
"BATCH_SIZE = 512\n",
"train_loader, valid_loader, test_loader = load_mnist(batch_size=BATCH_SIZE)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## 2. Define function to optimize\n",
"In this tutorial, we want to optimize classification accuracy on the validation set as a function of the learning rate and momentum. The function takes in a parameterization (set of parameter values), computes the classification accuracy, and returns a dictionary of metric name ('accuracy') to a tuple with the mean and standard error."
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {
"collapsed": true,
"execution": {
"iopub.execute_input": "2022-11-10T20:36:08.531649Z",
"iopub.status.busy": "2022-11-10T20:36:08.531103Z",
"iopub.status.idle": "2022-11-10T20:36:08.535754Z",
"shell.execute_reply": "2022-11-10T20:36:08.534986Z"
}
},
"outputs": [],
"source": [
"def train_evaluate(parameterization):\n",
" net = CNN()\n",
" net = train(net=net, train_loader=train_loader, parameters=parameterization, dtype=dtype, device=device)\n",
" return evaluate(\n",
" net=net,\n",
" data_loader=valid_loader,\n",
" dtype=dtype,\n",
" device=device,\n",
" )"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## 3. Run the optimization loop\n",
"Here, we set the bounds on the learning rate and momentum and set the parameter space for the learning rate to be on a log scale. "
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {
"execution": {
"iopub.execute_input": "2022-11-10T20:36:08.539543Z",
"iopub.status.busy": "2022-11-10T20:36:08.538922Z",
"iopub.status.idle": "2022-11-10T20:38:47.578224Z",
"shell.execute_reply": "2022-11-10T20:38:47.577435Z"
}
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-10 20:36:08] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter lr. 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 11-10 20:36:08] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter momentum. 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 11-10 20:36:08] ax.service.utils.instantiation: Created search space: SearchSpace(parameters=[RangeParameter(name='lr', parameter_type=FLOAT, range=[1e-06, 0.4], log_scale=True), RangeParameter(name='momentum', parameter_type=FLOAT, range=[0.0, 1.0])], parameter_constraints=[]).\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-10 20:36:08] 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 11-10 20:36:08] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 5 trials, GPEI for subsequent trials]). Iterations after 5 will take longer to generate due to model-fitting.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-10 20:36:08] ax.service.managed_loop: Started full optimization with 20 steps.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-10 20:36:08] ax.service.managed_loop: Running optimization trial 1...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/home/runner/work/Ax/Ax/ax/core/observation.py:274: FutureWarning:\n",
"\n",
"In a future version of pandas, a length 1 tuple will be returned when iterating over a groupby with a grouper equal to a list of length 1. Don't supply a list with a single grouper to avoid this warning.\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-10 20:36:16] ax.service.managed_loop: Running optimization trial 2...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-10 20:36:24] ax.service.managed_loop: Running optimization trial 3...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-10 20:36:31] ax.service.managed_loop: Running optimization trial 4...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-10 20:36:37] ax.service.managed_loop: Running optimization trial 5...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-10 20:36:44] ax.service.managed_loop: Running optimization trial 6...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-10 20:36:52] ax.service.managed_loop: Running optimization trial 7...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-10 20:37:01] ax.service.managed_loop: Running optimization trial 8...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-10 20:37:09] ax.service.managed_loop: Running optimization trial 9...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-10 20:37:17] ax.service.managed_loop: Running optimization trial 10...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-10 20:37:25] ax.service.managed_loop: Running optimization trial 11...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-10 20:37:33] ax.service.managed_loop: Running optimization trial 12...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-10 20:37:41] ax.service.managed_loop: Running optimization trial 13...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-10 20:37:49] ax.service.managed_loop: Running optimization trial 14...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-10 20:37:57] ax.service.managed_loop: Running optimization trial 15...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-10 20:38:05] ax.service.managed_loop: Running optimization trial 16...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-10 20:38:13] ax.service.managed_loop: Running optimization trial 17...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-10 20:38:22] ax.service.managed_loop: Running optimization trial 18...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-10 20:38:29] ax.service.managed_loop: Running optimization trial 19...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-10 20:38:38] ax.service.managed_loop: Running optimization trial 20...\n"
]
}
],
"source": [
"best_parameters, values, experiment, model = optimize(\n",
" parameters=[\n",
" {\"name\": \"lr\", \"type\": \"range\", \"bounds\": [1e-6, 0.4], \"log_scale\": True},\n",
" {\"name\": \"momentum\", \"type\": \"range\", \"bounds\": [0.0, 1.0]},\n",
" ],\n",
" evaluation_function=train_evaluate,\n",
" objective_name='accuracy',\n",
")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We can introspect the optimal parameters and their outcomes:"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {
"execution": {
"iopub.execute_input": "2022-11-10T20:38:47.582323Z",
"iopub.status.busy": "2022-11-10T20:38:47.581879Z",
"iopub.status.idle": "2022-11-10T20:38:47.586919Z",
"shell.execute_reply": "2022-11-10T20:38:47.586198Z"
}
},
"outputs": [
{
"data": {
"text/plain": [
"{'lr': 0.0002960358066963144, 'momentum': 0.6608298878661554}"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"best_parameters"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {
"execution": {
"iopub.execute_input": "2022-11-10T20:38:47.590180Z",
"iopub.status.busy": "2022-11-10T20:38:47.589480Z",
"iopub.status.idle": "2022-11-10T20:38:47.595613Z",
"shell.execute_reply": "2022-11-10T20:38:47.594902Z"
}
},
"outputs": [
{
"data": {
"text/plain": [
"({'accuracy': 0.9545890866735776},\n",
" {'accuracy': {'accuracy': 0.00021814212665174606}})"
]
},
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"means, covariances = values\n",
"means, covariances"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## 4. Plot response surface\n",
"\n",
"Contour plot showing classification accuracy as a function of the two hyperparameters.\n",
"\n",
"The black squares show points that we have actually run, notice how they are clustered in the optimal region."
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {
"execution": {
"iopub.execute_input": "2022-11-10T20:38:47.598820Z",
"iopub.status.busy": "2022-11-10T20:38:47.598190Z",
"iopub.status.idle": "2022-11-10T20:38:48.275723Z",
"shell.execute_reply": "2022-11-10T20:38:48.274776Z"
}
},
"outputs": [
{
"data": {
"application/vnd.plotly.v1+json": {
"config": {
"linkText": "Export to plot.ly",
"plotlyServerURL": "https://plot.ly",
"showLink": false
},
"data": [
{
"autocolorscale": false,
"autocontour": true,
"colorbar": {
"tickfont": {
"size": 8
},
"ticksuffix": "",
"x": 0.45,
"y": 0.5
},
"colorscale": [
[
0.0,
"rgb(247,252,253)"
],
[
0.125,
"rgb(229,245,249)"
],
[
0.25,
"rgb(204,236,230)"
],
[
0.375,
"rgb(153,216,201)"
],
[
0.5,
"rgb(102,194,164)"
],
[
0.625,
"rgb(65,174,118)"
],
[
0.75,
"rgb(35,139,69)"
],
[
0.875,
"rgb(0,109,44)"
],
[
1.0,
"rgb(0,68,27)"
]
],
"contours": {
"coloring": "heatmap"
},
"hoverinfo": "x+y+z",
"ncontours": 25,
"type": "contour",
"x": [
1e-06,
1.3011511650442548e-06,
1.692994354296022e-06,
2.2028415765056147e-06,
2.866229883678204e-06,
3.729398352432554e-06,
4.852511011181743e-06,
6.3138503555892e-06,
8.215273746089953e-06,
1.0689313005882424e-05,
1.390841207112662e-05,
1.809694657026198e-05,
2.354686311364001e-05,
3.063802837345029e-05,
3.986470631277378e-05,
5.1870009063012666e-05,
6.749072272319499e-05,
8.781563250096393e-05,
0.00011426141253772724,
0.00014867137004306603,
0.00019344392634026088,
0.0002516997901283655,
0.0003274994751669172,
0.0004261263236648159,
0.0005544547624925005,
0.0007214294601814526,
0.000938688782612345,
0.0012213760031100258,
0.0015891948094037057,
0.002067782677737912,
0.0026904978401970136,
0.0035007443993213955,
0.004554997653699184,
0.005926740503884541,
0.007711585311544345,
0.010033938212454078,
0.013055670395116691,
0.01698740074503987,
0.02210317627048227,
0.028759573555516536,
0.03742055263793628,
0.04868979566145066,
0.06335278435066323,
0.0824315491666629,
0.10725590623460621,
0.13955614735503497,
0.18158364372009145,
0.23626776957937787,
0.3074200836506151,
0.4
],
"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.14139670787628134,
0.16020244240829107,
0.18548142892713138,
0.21682473065583374,
0.25367029188874485,
0.2954206134319052,
0.341495631380889,
0.39133513584805885,
0.4443596848527996,
0.4998945178690755,
0.5570563310534231,
0.6146003941293215,
0.6708330977568029,
0.7238127961861505,
0.7716617219180264,
0.8128622341502781,
0.8465253119425658,
0.872562127914096,
0.8916194401893812,
0.9046987906519993,
0.9126130435819023,
0.9156053741365073,
0.9133223758965274,
0.9049717384002537,
0.8896609386598181,
0.8668401190689806,
0.8365846604583076,
0.799606888723617,
0.7571203359338109,
0.710645840074378,
0.6618149149111101,
0.6122041896424107,
0.5632156394263578,
0.5160045397848103,
0.4714497152695537,
0.43015711452551963,
0.3924867635084257,
0.3585937826237845,
0.3284756658420423,
0.30201984654400915,
0.2790473251088466,
0.2593495820153014,
0.24271706565363738,
0.22895826160655897,
0.21790885646015745,
0.20943103630723148,
0.20340381049371636,
0.19970667283696109,
0.1982007824635862,
0.19871329232740853
],
[
0.14596740831473243,
0.16514555149456078,
0.1907934169259058,
0.22250118399687235,
0.25970520298423533,
0.30180563585360143,
0.3482188339330489,
0.3983786939144633,
0.45169599352925793,
0.5074804939470985,
0.5648262449576205,
0.6224594327140553,
0.6786562667068172,
0.7314445141197701,
0.7789202148440588,
0.8195540638314227,
0.8524780037157642,
0.8776815765580658,
0.895953785708828,
0.9084596790025228,
0.9161230804117605,
0.9191897539033249,
0.9171903618580357,
0.9091459103354299,
0.8939799597128961,
0.8710178842124023,
0.8402897014046278,
0.8025329340316704,
0.7590324733515436,
0.7114014191656644,
0.6613647304270373,
0.6105807597755457,
0.5605146028731072,
0.5123638292856345,
0.46702975662881,
0.42512403139141985,
0.3869995271858187,
0.35279547668369815,
0.3224885372039192,
0.29594355030043795,
0.2729596798238926,
0.2533091696136904,
0.2367670737791836,
0.22313102411507268,
0.21223055965440984,
0.2039260070367327,
0.1980977177255301,
0.1946279713750021,
0.19337999456753263,
0.1941803612765226
],
[
0.15110043470354773,
0.1706481613435349,
0.19664624226070448,
0.22868859915161255,
0.26621306481662105,
0.3086192666340339,
0.35532077652332555,
0.40574552134399877,
0.4592934792388657,
0.5152567375817889,
0.5727030617571006,
0.6303267066740517,
0.6863775179607311,
0.7388588268355296,
0.7858462535017364,
0.8258037951367017,
0.8578881108741788,
0.882172190823819,
0.8995973723203469,
0.9115038672371578,
0.9189324638026228,
0.9221272633014201,
0.9204840029065557,
0.9128133531822786,
0.8978392426540176,
0.8747570999118472,
0.843553874318014,
0.8049996161879471,
0.76045932516975,
0.7116461512393574,
0.6603843252447553,
0.6084175642398719,
0.5572757105476982,
0.5081986110904131,
0.4621088746154225,
0.41962191668174265,
0.381081201808816,
0.3466077964345177,
0.3161554268112407,
0.2895645485898149,
0.26661104321634177,
0.24704682441340742,
0.23063079500366623,
0.21714929527641347,
0.20642558986454473,
0.19831832487116507,
0.19270964908718247,
0.18948526225860152,
0.18851108783696746,
0.18961353892252686
],
[
0.15678610182268016,
0.1767010885559278,
0.2030314250740679,
0.23537879695674124,
0.273185492968772,
0.31585236695559016,
0.36279099904838474,
0.41342328137928835,
0.46713741810016385,
0.5232057223801756,
0.580666478420097,
0.6381802956425706,
0.6939734877138815,
0.746030751469192,
0.7924136307701497,
0.8315854892178893,
0.8627323597884204,
0.8860158910561089,
0.9025397369216308,
0.9138301666470556,
0.9210490432403847,
0.92443176426302,
0.9232194968818515,
0.9159887545045016,
0.9012482716494588,
0.8780596037331202,
0.8463710455607227,
0.8069938215597438,
0.7613824345159947,
0.7113580740052698,
0.6588500092875735,
0.6056907545853738,
0.5534762347401926,
0.5034882321969454,
0.45666912415022753,
0.41363588054980077,
0.37472006790428347,
0.3400221363601794,
0.30947067266496114,
0.28287988625581495,
0.2600008987119764,
0.24056418935690227,
0.22431175022843475,
0.2110181891751517,
0.2005003623961319,
0.19261540785704967,
0.18724773231172676,
0.18428711608912274,
0.18360284871454402,
0.18502163130803884
],
[
0.16301025151959914,
0.1832907655012216,
0.20993659130492281,
0.2425602464308274,
0.28061121397669764,
0.3234932628899305,
0.3706167490452724,
0.4213974890254204,
0.4752110223145426,
0.5313080046367389,
0.5886947950290682,
0.6459976323787012,
0.7014212474747449,
0.7529367719451588,
0.7985984075475886,
0.8368761811371912,
0.8669914227765831,
0.8891999551554284,
0.9047775224168018,
0.9154460560587736,
0.9224899207274959,
0.926125978417299,
0.9254205757817742,
0.9186925305153026,
0.9042203928369041,
0.880929531935448,
0.8487362148065102,
0.8085028394382482,
0.7617833526661163,
0.7105150681039357,
0.6567379216791677,
0.602376393872843,
0.54909349516463,
0.4982122427983945,
0.4506929135012763,
0.4071515142461763,
0.3679049840211158,
0.33303053367108926,
0.30242929170612703,
0.2758873016707484,
0.2531294244511755,
0.233863597943615,
0.21781414792277376,
0.2047435092292137,
0.19446198784219115,
0.18682537448614533,
0.18172079251702167,
0.17904278382516492,
0.17866471139833395,
0.18041404424363194
],
[
0.16975501969881612,
0.19039988464407143,
0.21734587781348846,
0.25021834172012924,
0.28847628896735994,
0.3315279619711237,
0.37878322823023414,
0.42965183014651565,
0.4834958989247152,
0.5395429275927172,
0.5967658113261967,
0.6537564102710198,
0.7086991442648842,
0.7595557148760541,
0.8043798267503992,
0.8416567414378541,
0.8706506875887942,
0.891717734104623,
0.9063151377804205,
0.9163681055768655,
0.9232814890460856,
0.9272412419716181,
0.9271181038951429,
0.9209502308980757,
0.9067721580626467,
0.8833727771539627,
0.8506451439572065,
0.809514136996947,
0.7616435232312139,
0.7090948179115126,
0.6540240446350973,
0.5984505075455209,
0.5441049349159683,
0.49235048747570465,
0.44416310210768023,
0.40015498721800796,
0.36062547722364247,
0.3256257479199489,
0.29502704585542266,
0.26858527791676184,
0.24599752956278753,
0.2269480966430355,
0.21114289473782988,
0.19833174996293934,
0.18831826849146516,
0.18095703787640005,
0.17613834584917676,
0.1737621897181708,
0.17370674882815407,
0.17580077083123846
],
[
0.17699951113779666,
0.1980080410769406,
0.22524040493089892,
0.25833574342258003,
0.2967643904701589,
0.33994041628009886,
0.3872738846144941,
0.4381685291214835,
0.49197255378634525,
0.5478893114609735,
0.6048576185638312,
0.6614354516929718,
0.7157876796190592,
0.7658697014742545,
0.8097413498069462,
0.8459128801252329,
0.8737011423957457,
0.893569450278162,
0.9071654633693579,
0.9166224156672957,
0.9234595094169038,
0.9278171922391351,
0.9283494962488305,
0.922791798990021,
0.908922585562835,
0.8853963795741115,
0.8520939501102902,
0.8100151246415253,
0.7609441699244859,
0.7070747810225719,
0.650684227774055,
0.593889145283648,
0.5384882073853856,
0.48588320678170765,
0.4370631076986049,
0.39263315198456866,
0.3528718395872229,
0.3178013447505216,
0.2872605103304421,
0.26097309444923716,
0.23860688917972905,
0.2198214643432903,
0.20430360149847437,
0.19179009265714275,
0.18207768749025544,
0.1750198921819519,
0.17051058539642538,
0.1684559167647286,
0.16873965632360155,
0.17119237159049916
],
[
0.1847203910338343,
0.20609232361353869,
0.2335987687949379,
0.2668927587987118,
0.3054571172878739,
0.3487128199715179,
0.39607073605609233,
0.4469287422888309,
0.5006208987650469,
0.556326078746808,
0.6129492832773336,
0.6690154817815026,
0.7226703619660433,
0.7718651287066655,
0.8146717971294379,
0.8496363106751832,
0.8761404061604391,
0.8947631141029492,
0.9073506326447184,
0.9162450846211558,
0.9230691803694879,
0.9279013822320332,
0.9291579875063243,
0.9242507044729746,
0.9106923495226852,
0.8870078882266964,
0.8530786916817171,
0.8099929298291546,
0.7596661981346171,
0.704432171913228,
0.6466942258600779,
0.5886684556367865,
0.5322212753106688,
0.4787911500123058,
0.4293770232119042,
0.38457365705478913,
0.34463523077508756,
0.3095517837283259,
0.27912714411138134,
0.25305087907064855,
0.23095997799209622,
0.21248822857393668,
0.1973025841930981,
0.1851263942936774,
0.175749389916541,
0.16902409017371234,
0.16484835823561605,
0.16313518356235368,
0.1637747267914076,
0.16659994611645368
],
[
0.19289240126097806,
0.21462784132643276,
0.2423975203381079,
0.2758677372281752,
0.31453433157768956,
0.3578259281092996,
0.4051547104061733,
0.4559129558145642,
0.5094207314226474,
0.564832795604421,
0.6210214187322061,
0.6764797802057005,
0.7293344745173531,
0.7775336215414902,
0.8191665558634366,
0.8528260875183656,
0.8779739395151955,
0.8953155988829469,
0.9069029015487825,
0.9152826655441139,
0.9221651350354515,
0.9275487856883078,
0.9295917556880235,
0.9253629592637447,
0.9121029176610012,
0.8882147247150953,
0.853594977481702,
0.8094341982044845,
0.7577901204778519,
0.7011439649226614,
0.6420297526581068,
0.5827647750180982,
0.525282523015321,
0.4710556998779895,
0.4210897439458273,
0.37596506808230035,
0.335907786708673,
0.3008725101458493,
0.2706253623881814,
0.2448196600317435,
0.22306010215339322,
0.2049536782931466,
0.19014685965446942,
0.17834916928047617,
0.16934315494716923,
0.16298041087832482,
0.15916313236546564,
0.15781181133722566,
0.15882381630315257,
0.16203509508119773
],
[
0.20148880849197603,
0.22358818520061452,
0.2516116111332407,
0.28523746126966104,
0.3239745029249141,
0.3672593835987213,
0.41450598791646726,
0.46510136990654116,
0.5183521675048154,
0.5733901226088677,
0.629056639770372,
0.6838146922636408,
0.7357717076671135,
0.7828728867543115,
0.8232287906361443,
0.8554901158403181,
0.8792164765826436,
0.8952539170348583,
0.9058655848661109,
0.9137925313166992,
0.9208112884195846,
0.9268211406214163,
0.9297028873546299,
0.9261660299428076,
0.9131756653415194,
0.88902358304072,
0.853637628277023,
0.808324940221207,
0.7552960154966933,
0.697186920825165,
0.6366665530278365,
0.576154732340278,
0.5176508827284311,
0.4626590096862841,
0.412187105290601,
0.3667969973694489,
0.32668273426431177,
0.2917600506287217,
0.2617546107783997,
0.23628141806367264,
0.2149114293797001,
0.19722387309418576,
0.18284413572431024,
0.17146756355056703,
0.1628693583620784,
0.15690021613260796,
0.15346695217044803,
0.15249817978319768,
0.15389929871675656,
0.15750987126547344
],
[
0.2104817906131473,
0.2329458283991277,
0.26121479581904794,
0.2949775183558929,
0.3337550457909756,
0.37699203975128653,
0.42410433297050093,
0.47447425531546744,
0.5273960150518144,
0.5819801734281027,
0.6370398977331686,
0.691009984141028,
0.7419786103154875,
0.7878873884516284,
0.8268705547887434,
0.8576467933474243,
0.87989372343578,
0.8946167411287964,
0.9042939883075934,
0.9118430276262266,
0.9190804408175621,
0.9257860718983704,
0.929546164903736,
0.9266976697573024,
0.9139310061320576,
0.8894399036328098,
0.8532004195122695,
0.8066504392879473,
0.7521635266817244,
0.6925376399076302,
0.6305804946210363,
0.5688153701958353,
0.5093059756892683,
0.4535841535281114,
0.4026560312855932,
0.357060241732912,
0.3169545118365393,
0.28221211229237597,
0.2525154410537972,
0.22743913812843175,
0.20651901710882892,
0.1893056487640985,
0.1754027958217368,
0.1644913207828349,
0.1563389247494389,
0.15079539491836103,
0.14777238095170142,
0.14720717021073937,
0.1490140078753346,
0.15303671816788678
],
[
0.21984276722516127,
0.24267246956701038,
0.27117998674462485,
0.30506264253457893,
0.34385263885890216,
0.3870022673668708,
0.43392940412600206,
0.4840122719969157,
0.5365340848408309,
0.5905867826110771,
0.6449586941431776,
0.6980590306177669,
0.7479568203215866,
0.7925887593516923,
0.8301136549019872,
0.8593266533950755,
0.8800443727565941,
0.8934561926574967,
0.9022561871419578,
0.909513263650371,
0.917053530942999,
0.9245159299608436,
0.9291776642398621,
0.9269947114226754,
0.9143875921992644,
0.889467464777559,
0.8522759319388467,
0.8043952338006908,
0.7483719060304613,
0.6871726426756553,
0.6237476796383292,
0.5607242830690231,
0.500228268543219,
0.44381528983491414,
0.3924846941342154,
0.3467469286302007,
0.30671889550168796,
0.2722276851102309,
0.24290958805423335,
0.21829686065424414,
0.19788883861501838,
0.18120661921612735,
0.16783187799162536,
0.1574307407003971,
0.14976326897031333,
0.1446782944115509,
0.14209242896594287,
0.141952094351524,
0.1441811657639227,
0.1486283945890381
],
[
0.22954267947445395,
0.2527393236388702,
0.2814795598651519,
0.3154670193058436,
0.3542435171267182,
0.3972682369245024,
0.4439610335918805,
0.49369674323656193,
0.5457494358164192,
0.5991956858711533,
0.6528031748581137,
0.704958828596259,
0.7537130427470753,
0.7969958645326928,
0.832990084477539,
0.8605737101890656,
0.8797224669923134,
0.891839791406034,
0.8998334031775883,
0.9068923821432543,
0.914818425110893,
0.9230862836895105,
0.9286531772142912,
0.9270918896421968,
0.9145616525396096,
0.8891081383705556,
0.8508555329448108,
0.8015431800310879,
0.7439001025012069,
0.6810684771975632,
0.6161445761223407,
0.5518597726563081,
0.4903992453485906,
0.43333783854572944,
0.3816626846836344,
0.33585067031737503,
0.2959731303938387,
0.26180714705381203,
0.23294004739871121,
0.20885973199598784,
0.18902780700174637,
0.17293517491371635,
0.16014104869081602,
0.1502966296692424,
0.14315422673221945,
0.13856163684401368,
0.13644046534746102,
0.13674660699897057,
0.13941429483691237,
0.14429788342536565
],
[
0.23955222399280718,
0.2631173644026259,
0.29208561277774275,
0.3261645494212018,
0.3649037298604341,
0.40776816832200224,
0.45417946936840325,
0.5035098813155551,
0.5550265568487546,
0.6077946183568567,
0.6605661103208645,
0.7117098369359648,
0.7592587571761289,
0.8011344501426947,
0.8355418375104283,
0.8614459994855906,
0.8789997703853129,
0.8898519388400857,
0.8971196625079041,
0.904078190706018,
0.9124681292240319,
0.9215740120721557,
0.9280265283418669,
0.9270207979722869,
0.9144665507384746,
0.8883618572077293,
0.8489295041954374,
0.7980775955739378,
0.738726891136719,
0.6742018498265139,
0.6077481673191236,
0.5422010200181971,
0.4798015953577003,
0.42213867200028027,
0.3701811937403237,
0.32436672566325553,
0.28471606676803773,
0.25095237145141114,
0.2226111535248224,
0.199134053826579,
0.17994379701793628,
0.1645004780028092,
0.15234057177249805,
0.14310024414594957,
0.13652397452903875,
0.1324584215820257,
0.13083011228383068,
0.13160460048782718,
0.1347271125454701,
0.1400582827346063
],
[
0.24984204532995413,
0.27377752281649453,
0.30297017677951005,
0.3371290695968241,
0.3758093595653309,
0.4184805424263809,
0.46456557519385167,
0.5134349629183657,
0.5643514880211886,
0.6163733385098931,
0.6682427720435924,
0.7183156519690332,
0.7646096524325768,
0.8050363400880689,
0.8378199617754021,
0.86201476404466,
0.8779659483279949,
0.8875934789469673,
0.8942204722646964,
0.9011751504450497,
0.9100983242736838,
0.9200549627907527,
0.927347952277957,
0.9268091222055248,
0.9141126534797132,
0.8872268353701638,
0.846487319587524,
0.7939814739158059,
0.7328310336106906,
0.666549773842941,
0.5985361168518861,
0.5317282740425131,
0.4684194166298397,
0.41020631955956627,
0.3580332039448776,
0.31229216908237795,
0.2729483000716014,
0.2396668358848837,
0.2119286574985092,
0.18912733112197866,
0.17064566465728748,
0.1559124544638204,
0.1444412733426309,
0.13585322790259435,
0.1298849397476466,
0.12638181233804502,
0.12527511993203755,
0.12654007883032847,
0.13013340589315525,
0.13592267695670734
],
[
0.2603828909396671,
0.28469084484754725,
0.31410538536401517,
0.3483345296129279,
0.3869366989027278,
0.4293842703768633,
0.47510098507718956,
0.5234564540215204,
0.573711885915717,
0.6249235870725696,
0.6758307201808806,
0.7247825380725217,
0.7697848073734618,
0.8087381860711945,
0.8398828148081529,
0.8623620655508447,
0.8767246685572629,
0.8851785100190424,
0.891250480567645,
0.898291906092909,
0.907804218161526,
0.9186012716533598,
0.9266628327475405,
0.9264803197809658,
0.9135076023173317,
0.8857000685026359,
0.8435180605587903,
0.7892377499840143,
0.7261914559332874,
0.6580897287104246,
0.5884869469534193,
0.5204230556192496,
0.4562384354931667,
0.39753118585090613,
0.34521369176774436,
0.2996260658664507,
0.26067231417288417,
0.2279557318033989,
0.2008998039357971,
0.17884831834876158,
0.16114326450321304,
0.1471817836772633,
0.13645450337292309,
0.12856754437351248,
0.1232497024254563,
0.1203450102271858,
0.11978922090517008,
0.12156700914298568,
0.1256468836278668,
0.13190398600584918
],
[
0.27114573251656165,
0.295828612419495,
0.32546360187521567,
0.35975512637705226,
0.3982623839605756,
0.44045881805838305,
0.48576821051946417,
0.53356008501975,
0.5830970381174085,
0.6334389924018778,
0.6833295214744107,
0.7311188428196268,
0.7748056579975564,
0.8122798233394889,
0.841793610091446,
0.8625771290079287,
0.8753880582158419,
0.8827295932446652,
0.8883303605632873,
0.8955387203787699,
0.9056773072357184,
0.9172790378241273,
0.9260112119842263,
0.9260539168343397,
0.9126570696945099,
0.8837781131191231,
0.8400109332295549,
0.7838295850660191,
0.7187874246504456,
0.6487998214513208,
0.577580226926983,
0.5082683770531223,
0.44324624190456835,
0.3841057824360673,
0.33171983900742175,
0.28636965298875505,
0.24789262670684653,
0.21582607387881647,
0.1895334062672811,
0.1683070633979028,
0.15144746476884696,
0.13831988585833854,
0.12839209514465377,
0.12125540589413908,
0.11663089095193013,
0.11436111453938169,
0.11438596392061351,
0.11669914784713897,
0.1212810034371462,
0.12801478983254677
],
[
0.28210185727200904,
0.3071624309285927,
0.33701750923369767,
0.3713653963496561,
0.4097634835063384,
0.45168428441529457,
0.4965506995427752,
0.5437328774098092,
0.5924978323990691,
0.6419149342261736,
0.6907404204450498,
0.7373343354092201,
0.7796948112777654,
0.8157023272931492,
0.8436174404346866,
0.8627519920474493,
0.874071294270357,
0.8803727127691836,
0.8855832879029257,
0.8930251722638489,
0.9038038692615097,
0.9161479858849328,
0.925428438484686,
0.9255465620624787,
0.911566049946887,
0.8814580994074601,
0.8359558247533158,
0.7777406286448597,
0.7105986998427705,
0.6386589414462603,
0.5657967694610858,
0.49524897659726774,
0.42943254085822474,
0.36992497260072305,
0.31755125296750797,
0.27252652422557694,
0.23461593528802538,
0.20328680796055476,
0.17783991945519217,
0.15751494873137883,
0.14157015995004085,
0.12933890784678592,
0.1202663237450422,
0.11392920199506373,
0.11004107488972448,
0.10844297467410013,
0.1090785276955688,
0.1119498390983511,
0.11704877124992819,
0.12426712610712165
],
[
0.29322293257579357,
0.31866428670662167,
0.3487401648038824,
0.3831402683625032,
0.4214175448528559,
0.46304143331602843,
0.5074328473875364,
0.5539631235226561,
0.601906685748276,
0.6503483781029671,
0.6980659889242754,
0.7434395141636851,
0.784474782495682,
0.8190458977534523,
0.8454180127564934,
0.8629769458167128,
0.872887503795706,
0.8782324543064766,
0.8831312974535557,
0.8908582050243334,
0.9022657010287572,
0.9152635384991032,
0.9249470753624691,
0.924973915865667,
0.9102406753371817,
0.8787388677237502,
0.8313438077523667,
0.7709552064669939,
0.7016056424042139,
0.6276469010307254,
0.55311883348519,
0.4813515685814603,
0.41478942014856685,
0.3549862288461826,
0.3027101942501966,
0.25810281817914815,
0.22085126311359238,
0.19034891630970097,
0.16583150914357248,
0.14648472911978694,
0.131524280956553,
0.12025170773051241,
0.11208986492045114,
0.106601429221307,
0.10349265894942139,
0.10260303864284359,
0.10387951887278501,
0.10733178327660531,
0.11296250945873643,
0.12067225924480829
],
[
0.3044810472682766,
0.33030657777295835,
0.36060502361647473,
0.39505507937326334,
0.43320259780187914,
0.47451167954455986,
0.5183999592609231,
0.5642403206358692,
0.611317437543248,
0.6587376919043314,
0.7053097793668429,
0.7494449329007573,
0.7891667436652128,
0.8223477154563485,
0.8472543288326437,
0.8633360602153984,
0.8719429143911736,
0.8764274130428935,
0.881091613704113,
0.8891402560167977,
0.9011411362588231,
0.9146795956964046,
0.924599876529224,
0.9243533865546691,
0.9086904281763095,
0.8756220383338924,
0.8261674775766029,
0.7634583809366398,
0.6917892552382523,
0.6157445568038611,
0.5395303339370281,
0.46656511040026594,
0.39931163497047406,
0.33928990250939245,
0.2872018108210216,
0.24310740749512016,
0.20661010223322096,
0.17702551860514826,
0.15352211608683375,
0.1352305652510164,
0.12132380251246011,
0.11107183872888216,
0.10387575558763973,
0.09928462510814884,
0.09699778283853899,
0.09685320567876154,
0.09880076217142741,
0.10285677506718183,
0.10903359055973305,
0.1172404211251149
],
[
0.3158487328585717,
0.3420621212168291,
0.37258593331380263,
0.40708555614265557,
0.4450971188455313,
0.48607703023300536,
0.5294381658915673,
0.5745550603900007,
0.6207252097884343,
0.66708245354335,
0.7124760054850832,
0.7553605961447661,
0.7937893749186328,
0.8256399203961275,
0.8491775238133543,
0.8639029591113302,
0.8713321959970273,
0.8750657200684983,
0.879572878427387,
0.8879670401176514,
0.9005051095388426,
0.9144506630119351,
0.9244233777088532,
0.9237076756592388,
0.906930393028682,
0.8721127435449094,
0.8204209954096802,
0.7552358340652593,
0.6811311437132306,
0.6029339106390004,
0.5250170610590117,
0.45088108855512876,
0.3829969099922426,
0.32283950471840617,
0.2710343766612203,
0.2275520872411595,
0.1919065524996899,
0.16333196702169162,
0.1409275145641038,
0.12376805238474253,
0.11098374752221607,
0.10181353266124915,
0.09563735720046018,
0.0919913089051857,
0.09056823203894826,
0.09120469234675344,
0.09385309717903556,
0.09853541657929787,
0.10527213236137722,
0.11398053052704371
],
[
0.3272989677599597,
0.3539041405781958,
0.38465710435279277,
0.41920776622622125,
0.457079958448311,
0.49771998371766013,
0.5405342929504857,
0.5848988738781915,
0.6301262354604004,
0.6753832558330882,
0.7195692693540483,
0.7611954688998565,
0.7983579081490303,
0.8289478571442701,
0.8512280498796256,
0.8647369729428769,
0.8711339702472247,
0.8742405511924541,
0.8786711061305297,
0.8874246340137857,
0.9004280148997791,
0.9146327247441497,
0.9244612064292604,
0.9230689535237957,
0.9049828437395558,
0.8682197062051871,
0.8140997193978476,
0.7462735363467267,
0.6696133901358037,
0.5891981948639249,
0.5095669145066054,
0.4342938269060748,
0.36584625960419415,
0.30564199757730753,
0.2542195329185122,
0.2114517600506599,
0.17675745393802356,
0.14928593348617003,
0.1280653633507789,
0.11211424311926932,
0.10052018798711526,
0.09249168318003476,
0.08738832295917676,
0.08473393136158358,
0.0842153643725122,
0.08566792242936672,
0.08904620291268783,
0.09437682840384953,
0.10168665053343773,
0.11089991590179038
],
[
0.33880516766712854,
0.3658062366433196,
0.39679305918156715,
0.43139804206338955,
0.4691302348400517,
0.5094233884552302,
0.5516756857272297,
0.5952640322089058,
0.6395176538330628,
0.6836415099366043,
0.7265943472029063,
0.7669571377479276,
0.8028834426668211,
0.8322887210780123,
0.8534333757300804,
0.8658798167717282,
0.8714065383054683,
0.8740254882293774,
0.8784651776010308,
0.8875856979113171,
0.9009733738510177,
0.9152824924348049,
0.9247653411543704,
0.922481661587954,
0.902877198944449,
0.8639543823198602,
0.8071993412884861,
0.7365571873438317,
0.6572183497655548,
0.5745219526162721,
0.49317016040214423,
0.4168008211457822,
0.34786432695492014,
0.2877080940345619,
0.23677252898436585,
0.19482461523743033,
0.16118250998602723,
0.13490748702824173,
0.11495524769014331,
0.10028766323120886,
0.08995024193385359,
0.08312182876202179,
0.07914256953957133,
0.07752483536111299,
0.07795005638475383,
0.08025245004728476,
0.08438847484361,
0.09038841744216863,
0.0982836765799685,
0.10800409819152945
],
[
0.3503411651429262,
0.37774234513015803,
0.40896856429721673,
0.44363288233379705,
0.48122719835366323,
0.5211702653298244,
0.5628499908986972,
0.6056433019184184,
0.6488972693752909,
0.6918592435661022,
0.7335560368034786,
0.7726516462793189,
0.8073725959386887,
0.8356707228040161,
0.8558063622958592,
0.8673529907242812,
0.872184015442544,
0.8744696355029364,
0.8790117083596533,
0.8885049102992555,
0.9021944739105936,
0.9164549004796866,
0.9253936418921709,
0.9219993237152679,
0.9006476611111209,
0.8593290185758331,
0.7997145060394452,
0.7260714439047344,
0.6439283910487996,
0.5588911314156484,
0.47581972218925594,
0.39840310409595764,
0.32905974205958693,
0.2690525642904465,
0.21871246035824687,
0.17769229865669534,
0.1452043987722762,
0.12021915896447577,
0.1016187105929719,
0.0883083194508889,
0.07929206569018588,
0.0737201352384248,
0.07091425362935877,
0.07037622845825431,
0.07178267213163403,
0.07496692259241144,
0.07988697476174433,
0.0865757876911315,
0.09506756143155382,
0.10529671058460677
],
[
0.36188118144744313,
0.3896866848002037,
0.4211585492875878,
0.4558888351395922,
0.4933500709607253,
0.5329435974578695,
0.5740448978883166,
0.6160296545168279,
0.6582632687523616,
0.7000388843290256,
0.7404590581265299,
0.7782835095312659,
0.8118275281322068,
0.8390928651843315,
0.858344464150801,
0.8691561482318204,
0.8734732711892275,
0.8755925170982406,
0.8803392061277965,
0.8902139972981205,
0.9041302845370138,
0.918199079196585,
0.9264042383969573,
0.9216772082792325,
0.8983286999034851,
0.854353673938065,
0.7916369670673526,
0.7147989864789887,
0.6297256188135977,
0.5422932147876006,
0.4575115183616145,
0.3791056465618956,
0.3094454986204036,
0.24969454581580985,
0.20006249950536892,
0.16008006963250743,
0.12884886931817674,
0.1052459934965766,
0.08807927169943641,
0.07619769795458053,
0.06856484072140456,
0.06430337741931946,
0.06271775312232553,
0.06330016748994083,
0.06572305507209686,
0.0698190854789894,
0.07554746033627535,
0.08294283282854642,
0.09204071842990624,
0.10277958855432812
],
[
0.3733997936014765,
0.40161369958747256,
0.4333380171494163,
0.4681423679599059,
0.5054778663016939,
0.5447260924865349,
0.5852478432652777,
0.6264159298860695,
0.6676138890051682,
0.7081830129811354,
0.7473079864960886,
0.7838558898399357,
0.8162463464539573,
0.8425453955972593,
0.8610298867817893,
0.8712666951338455,
0.8752523000952867,
0.877379372210251,
0.8824418856871874,
0.8927170861779992,
0.9068010594434412,
0.9205533169367195,
0.927848703506717,
0.9215647422470925,
0.8959491958267433,
0.8490324424848289,
0.7829534058989482,
0.7027195085614654,
0.6145916343069193,
0.5247174224699542,
0.4382448614511396,
0.35891779798363266,
0.2890393481676041,
0.22965785306748732,
0.18085011517790983,
0.14201694080289173,
0.1121448192904505,
0.09001558117637831,
0.07436243187271152,
0.0639787522960985,
0.05778875413601292,
0.05488891914971761,
0.0545676523763573,
0.0563085545230364,
0.05978054175273528,
0.06481582558387833,
0.071374484134342,
0.07949195471768444,
0.08920397557416848,
0.10045298202737718
],
[
0.38487189962168833,
0.41349799837155454,
0.44548195034745364,
0.48036972970075137,
0.5175891961725532,
0.5564999233913157,
0.5964456829328258,
0.6367944543994026,
0.6769470295800755,
0.7162940665941943,
0.7541071848918328,
0.7893708915852956,
0.8206238536469894,
0.8460109507527926,
0.8638307972962621,
0.8736408442622035,
0.8774707101434663,
0.8797791264748565,
0.8852756658976406,
0.8959872908352197,
0.9102040380291232,
0.9235395687728273,
0.9297651502283037,
0.9216982541991551,
0.8935260681422661,
0.843359230627506,
0.7736431085211032,
0.6898087443057316,
0.5985073982252967,
0.5061550134444488,
0.41802293266819635,
0.33785376982702214,
0.26786420865500127,
0.20897128179078994,
0.16110727486485277,
0.12353579626915712,
0.09512435070376368,
0.07455807260255798,
0.06049566166616005,
0.05167587947279173,
0.046984971889644456,
0.04549469094200276,
0.04647873053275686,
0.04941314255652407,
0.0539639941665484,
0.05996324595743607,
0.06737154000765322,
0.07622432314918426,
0.08655688612491297,
0.09831581317078897
],
[
0.39627268478833905,
0.42531429602924115,
0.45756521722012145,
0.49254681051501853,
0.5296620701001867,
0.5682464548967426,
0.6076243385195433,
0.6471566166511663,
0.6862598020219715,
0.7243739687179329,
0.7608606907082535,
0.7948299068552193,
0.824952555270817,
0.8494663454505589,
0.8667036392907043,
0.8762162517559026,
0.8800527207702911,
0.8827075449686471,
0.888759986918751,
0.8999651477484638,
0.9143095517385482,
0.9271579125336205,
0.93217153676152,
0.9220939552242059,
0.8910579113957646,
0.8373134784588919,
0.7636757339328257,
0.6760376709999839,
0.581453270488889,
0.48659972695038367,
0.39685334494385066,
0.3159331624368287,
0.24594858269933173,
0.18766890140849712,
0.1408706241859059,
0.10467348299717472,
0.07782279979722173,
0.058906169678562104,
0.046508371823723915,
0.03931488283160833,
0.03617560367267347,
0.03613916418018104,
0.038465951559663036,
0.04262554872671487,
0.04828184635828814,
0.055266761939580245,
0.06354123237193054,
0.0731401265112156,
0.08409799755966418,
0.09636593035006702
],
[
0.4075775917005118,
0.4370373593668551,
0.46956248343157725,
0.504649005372759,
0.5416736952862776,
0.5799459638311331,
0.6187684263848816,
0.6574924066509009,
0.6955480142842031,
0.7324236636170154,
0.7675720038379231,
0.8002339211579383,
0.829223786180564,
0.8528848610861496,
0.8695965396921662,
0.8789162309502645,
0.8829024827670708,
0.886054189400158,
0.8927835791568917,
0.904558863044358,
0.9190576757524079,
0.9313811210091303,
0.9350591318925746,
0.9227410603107888,
0.8885189463476458,
0.8308562065895682,
0.7530094321056678,
0.6613720337757546,
0.5634093019719799,
0.4660483940924123,
0.37474880357566476,
0.2931815328543223,
0.22332697824255665,
0.1657903274426602,
0.1201816361870609,
0.0854708700345791,
0.060278737202447474,
0.043095091790099294,
0.03243186404402332,
0.026922920576242126,
0.025383658466869186,
0.026841320799284696,
0.03054445445102283,
0.03595727232829504,
0.042742160179022326,
0.050731208414037665,
0.05988544852796218,
0.07023879556010848,
0.08182508306911151,
0.09460033857613426
],
[
0.41876229673118176,
0.4486419614517881,
0.48144813320049656,
0.5166510875963753,
0.5536002847853659,
0.591577362916066,
0.6298608798855386,
0.6677899282065373,
0.7048055920974772,
0.7404425358313435,
0.7742437193028111,
0.8055836717793039,
0.8334287662777167,
0.8562387595357625,
0.8724536918629178,
0.8816554249169217,
0.8859109989529751,
0.8896901955941419,
0.8972107049459278,
0.9096458765244096,
0.9243554368283542,
0.9361493035705304,
0.938385981139357,
0.9235949957119025,
0.8858535403400964,
0.8239267544639276,
0.7415895713749894,
0.6457723381717577,
0.5443558477315772,
0.44450174622607963,
0.3517278680935026,
0.2696309968820159,
0.20004032158975094,
0.14338096425770708,
0.09908672267736862,
0.06597286981290229,
0.042533934505959325,
0.027162514365522084,
0.018299260369607162,
0.014528438740952665,
0.01463298980569172,
0.017620617317897325,
0.022729541900741612,
0.029419714787564777,
0.03735268505241418,
0.04636094910040167,
0.056405521014864624,
0.06751919671959683,
0.07973533941561695,
0.09301540147445464
],
[
0.4298026953085867,
0.46010284771598775,
0.49319620498499595,
0.5285270987114072,
0.5654168822593474,
0.6031179385946435,
0.640882577861141,
0.6780348987947341,
0.7140239477765377,
0.7484277059242778,
0.7808769509979259,
0.8108795450450489,
0.8375593625434746,
0.8595016010283618,
0.8752203416747081,
0.8843467558825024,
0.8889636016219273,
0.8934754888634762,
0.9018869763364388,
0.915075319636836,
0.9300745722655601,
0.9413644055141736,
0.9420701653209664,
0.9245707487609965,
0.8829716251870778,
0.8164405713578291,
0.7293483218027351,
0.6291944413829789,
0.5242745579924273,
0.42196543585370594,
0.32781581136417104,
0.2453208535411766,
0.17613634962738978,
0.12049220673497507,
0.07763729902980132,
0.046228415636131226,
0.0246332934062784,
0.011148477475138474,
0.004145409759270913,
0.0021610876540669732,
0.003948229874183862,
0.008496942146326347,
0.01503666578159546,
0.023024198791233852,
0.03212091707678877,
0.0421599807713432,
0.05310237289405684,
0.06497979597520132,
0.07782555464128449,
0.0916070151442695
],
[
0.4406748982158931,
0.4713947169857673,
0.5047803461534415,
0.5402502609720827,
0.5770972119668829,
0.6145431144137811,
0.6518119944636762,
0.6882101560981496,
0.7231913169091043,
0.7563732094395033,
0.7874705062477753,
0.8161211053307826,
0.8416083338807456,
0.8626498475326474,
0.8778473579378349,
0.8869092085467358,
0.8919467293271398,
0.8972649737791788,
0.9066446601086446,
0.9206712951262752,
0.93604991836625,
0.9468842700700411,
0.9459826271088797,
0.9255366692310519,
0.8797454847986195,
0.8082884219484548,
0.7162053114059611,
0.6115908450664431,
0.503149782318759,
0.398451271473221,
0.3030455625364991,
0.22029821418702888,
0.15166996470404748,
0.09718158789927556,
0.05588979332582089,
0.026290389459146746,
0.006624733898405899,
-0.004904737584868646,
-0.009993229332928233,
-0.010148378874729858,
-0.006645288262105309,
-0.0005094347939125221,
0.007481407880577717,
0.016781984040675435,
0.02705415356905705,
0.038132027437923766,
0.04997664290714399,
0.06261879572777129,
0.07609224880887,
0.09037075593725796
],
[
0.45135524081355344,
0.48249222029273725,
0.516173790905522,
0.5517929187733224,
0.5886135627498962,
0.6258262520836184,
0.6626248872108249,
0.6982951949918845,
0.732292094639846,
0.7642690891280811,
0.7940197980679923,
0.8213061687012,
0.8455688767958546,
0.8656632935723986,
0.8802936343107626,
0.8892731301277499,
0.8947527695751646,
0.9009134782043577,
0.9113073822725903,
0.9262368267336086,
0.9420785767818914,
0.952516120598256,
0.9499393875119428,
0.9263095227523946,
0.8760085424622104,
0.7993373548399498,
0.7020695238713067,
0.5929127517444573,
0.4809703946604691,
0.3739786502121829,
0.27745870955835705,
0.19461861219029586,
0.12670353235551324,
0.07351285815253927,
0.0339055904351101,
0.0062154942741121655,
-0.011440961695381557,
-0.020952765383713823,
-0.024078731211833015,
-0.022368222145495054,
-0.017121620806766047,
-0.0093779209289383,
7.945455751601216e-05,
0.010704277508578941,
0.022159540080786133,
0.0342806214674749,
0.047028789876369714,
0.060434247233263405,
0.0745317906823687,
0.08930200460065607
],
[
0.4618203067459682,
0.4933699799324187,
0.5273493653125155,
0.5631265148312521,
0.5999367146243348,
0.6369385025384114,
0.6732940412146834,
0.70826576235471,
0.7413062140858533,
0.7721004589873,
0.800515529873559,
0.8264293662867541,
0.8494333685212005,
0.8685241416460288,
0.8825253424229406,
0.8913791721252773,
0.8972824043410607,
0.9042794119491613,
0.9156941878765305,
0.931557307894966,
0.9479203076974555,
0.9580104179064157,
0.9536935408980243,
0.9266523132546451,
0.8715568685534738,
0.7894337303997585,
0.686842536065952,
0.5731128940659029,
0.4577320135259402,
0.34857615199479924,
0.25110652520745536,
0.16834656261871428,
0.10130709902426616,
0.04955598078350665,
0.011750901675092407,
-0.013935934108381565,
-0.029510351472616936,
-0.03694934827945684,
-0.038071870462544344,
-0.03446585512688016,
-0.02745431602178461,
-0.01808766893288749,
-0.007153435721790724,
0.004802236561700535,
0.017444107844207024,
0.030609170121633666,
0.04425917704786109,
0.058424141201990354,
0.07314049300261505,
0.08839604923465061
],
[
0.47204696729549833,
0.5040026307560467,
0.5382795228076519,
0.5742216064800447,
0.6110359161310811,
0.6478487190386637,
0.6837890876877465,
0.7180935389056582,
0.7502086175157123,
0.7798466279310051,
0.8069422629609043,
0.8314801909795678,
0.8531913004356911,
0.8712149396498959,
0.8845131218336796,
0.8931750362644266,
0.8994449319479262,
0.907227301574637,
0.9196231335943958,
0.936403793610068,
0.9533005475075815,
0.9630594248228055,
0.9569314592893559,
0.9262769010039945,
0.8661540623346354,
0.7784084942903101,
0.6704230993681779,
0.5521490834195253,
0.43343955423921027,
0.32228323757289684,
0.22405096854496975,
0.1415560351981059,
0.075558504448064,
0.025387027986455202,
-0.010503448823257155,
-0.03410018033684126,
-0.047527585361356595,
-0.05284656372023855,
-0.051932314701908844,
-0.046407996815957975,
-0.03761652963439566,
-0.026617653967797472,
-0.014201472698493922,
-0.0009130361731737313,
0.012914800447591746,
0.0271210071158714,
0.04166813775341538,
0.056586478981772714,
0.07191468878432994,
0.087648169384972
],
[
0.48201243709488156,
0.5143648851056387,
0.5489364127687133,
0.5850479266762137,
0.6218789198299463,
0.6585234435399062,
0.6940764139068446,
0.7277459367025441,
0.7589688738112176,
0.7874803923594986,
0.8132770761133024,
0.8364406374529005,
0.8568265066944819,
0.873715943478679,
0.8862288784541553,
0.8946126948079685,
0.9011575196516772,
0.9096294993198586,
0.9229147710457369,
0.9405379860752944,
0.9579177198719891,
0.9673066806396817,
0.9592827821178246,
0.9248529403016061,
0.8595398885748005,
0.7660847084080438,
0.6527129522970816,
0.5299883550526422,
0.408110011516499,
0.29515197138021676,
0.19636560221623645,
0.1143307985080737,
0.04954336179625507,
0.0010879619139074759,
-0.03278232892589428,
-0.05421047123036593,
-0.0654347061566698,
-0.06859508675433934,
-0.06561884199461843,
-0.05816084384099307,
-0.047581152529775794,
-0.03494676027032895,
-0.021048882852251483,
-0.00643050682420665,
0.008578489251055643,
0.02381942956742167,
0.03925602407296547,
0.05491932657702514,
0.0708507908525795,
0.08705370342337004
],
[
0.4916943464087727,
0.5244316221354525,
0.5592919839914152,
0.5955744933099976,
0.6324320822122202,
0.6689269762107579,
0.7041191798017811,
0.7371860376938171,
0.7675509915279912,
0.7949676096788119,
0.8194886087115579,
0.841282949438311,
0.8603141720508523,
0.8760026316550031,
0.8876430960080823,
0.8956462215516697,
0.9023441195966859,
0.9113673703055103,
0.9253957971398692,
0.9437192576299638,
0.9614551715891817,
0.9703665590150263,
0.9603424426494656,
0.9220230655498877,
0.8514426183423295,
0.7522871204887271,
0.6336236198544016,
0.5066115160082695,
0.3817753333753309,
0.2672486703659465,
0.16813635595079957,
0.086764589436791,
0.023354878259364886,
-0.023253713520068442,
-0.05500670079865977,
-0.07419736788787223,
-0.08317200004174352,
-0.08414448677361108,
-0.07908958179330872,
-0.06969025833280595,
-0.05732095007165905,
-0.04305387679042516,
-0.027679966176741955,
-0.011739233337979327,
0.004441977623426796,
0.02070772119677977,
0.03702324028543169,
0.0534208535840216,
0.06994533664639235,
0.08660810119472173
],
[
0.5010708296550037,
0.5341780015119492,
0.5693181238556311,
0.6057697691896785,
0.642660532862176,
0.6790215361547041,
0.7138774533583496,
0.7463726929670372,
0.7759134652180816,
0.8022671415057161,
0.8255367630949743,
0.8459686569417815,
0.8636192270179026,
0.8780440149967315,
0.8887229658787794,
0.8962302170726514,
0.9029344065748404,
0.9123321524103023,
0.9269028884662924,
0.9457132343323873,
0.9635965741215895,
0.9718478438585691,
0.9596957311837832,
0.9174228370239698,
0.8415945518299266,
0.7368532889093095,
0.6130838194354,
0.48201783644043755,
0.35448521488637796,
0.23865536327617332,
0.1394620588580734,
0.05896105998850498,
-0.0029065100037002356,
-0.04754544212487932,
-0.07709412483374667,
-0.09398922841733115,
-0.10067839518627586,
-0.09944355663330673,
-0.092302277655259,
-0.08096197066105337,
-0.0668087120615245,
-0.05091800128595281,
-0.03407916089422469,
-0.016828397360667324,
0.0005119945162759265,
0.017789162953250837,
0.03497026289487415,
0.052089358959328536,
0.06919502014360657,
0.08630696374175884
],
[
0.5101206292679112,
0.543579600662258,
0.5789868328455524,
0.6156018735875386,
0.6525284159169201,
0.688767519150941,
0.7233084733552614,
0.7552607947668877,
0.7840095752742778,
0.8093312087290717,
0.8313731840366669,
0.8504495441481784,
0.866697191759886,
0.8798020518771371,
0.8894313969957048,
0.8963188351967153,
0.9028628936196028,
0.9124255232967323,
0.9272864996037233,
0.9463012061244694,
0.9640429986290663,
0.9713780178785572,
0.9569437829085881,
0.9107037336318564,
0.8297497735578769,
0.7196455089342114,
0.5910469707755777,
0.45622957171885126,
0.3263096156713038,
0.20947093271849504,
0.11045465858544834,
0.031033454239387637,
-0.029133711553445574,
-0.07169025483423364,
-0.09895936651737625,
-0.1135127394605755,
-0.11789190561461682,
-0.11444067135899272,
-0.10521456936690221,
-0.09194179520253343,
-0.07601741202191092,
-0.05851835198909516,
-0.04023111550315195,
-0.02168734437266684,
-0.0032048217901410325,
0.015067032406523184,
0.03309764896299461,
0.05092328538592661,
0.06859671260209976,
0.08614607176109235
],
[
0.5188232134256447,
0.5526125738674786,
0.5882704328172823,
0.6250388445199805,
0.6619992047562515,
0.6981238556603042,
0.7323670439569755,
0.763801725028585,
0.7917879418651113,
0.8161061453932636,
0.8369424184804853,
0.8546696757469396,
0.8694960972120473,
0.8812320815893865,
0.889726857905469,
0.8958654319241585,
0.9020683713085312,
0.9115597734163023,
0.9264143415426659,
0.9452895605859128,
0.9625298830346332,
0.9686272170397078,
0.9517296412232525,
0.9015580272009581,
0.8157027755227818,
0.7005625463437973,
0.5674982178239841,
0.4292959696070165,
0.29734079105305833,
0.17981180596016022,
0.08123904501618251,
0.003103972216527806,
-0.0552137796937372,
-0.0955875630163,
-0.12051510414834188,
-0.1326935123870726,
-0.13475011604386766,
-0.1290841726976738,
-0.11778429149231762,
-0.10259585689420225,
-0.08492037418162734,
-0.06583448569465478,
-0.04612076728901693,
-0.026305631244415206,
-0.006701948712344308,
0.012544593327236453,
0.031406034395730975,
0.0499212238599227,
0.06814747366671281,
0.08612140429819826
],
[
0.5271589055894177,
0.5612538305981029,
0.5971418060410438,
0.6340489489939621,
0.671036088390675,
0.7070484694971232,
0.7410060617444709,
0.7719439762984639,
0.7991933156271386,
0.8225334933060424,
0.8421835327554444,
0.8585676078049538,
0.8719584944817547,
0.8822839797245091,
0.8895639416878828,
0.8948228522436164,
0.9004939108121925,
0.9096576479177791,
0.9241745606030666,
0.9425184945235783,
0.9588422857023124,
0.9633307048224331,
0.9437653140020378,
0.8897446807923908,
0.7993060918327769,
0.6795500228686394,
0.5424603333813729,
0.40129640963204827,
0.26769462517545234,
0.14981206064338226,
0.051952400881369765,
-0.02469721463406671,
-0.08102894885588618,
-0.11913410385917544,
-0.14167273140006098,
-0.15145673754993194,
-0.15119070186234895,
-0.14332277483108546,
-0.12996978477536825,
-0.11289082593837785,
-0.09349144626092332,
-0.07284642088559501,
-0.051733426206806654,
-0.030673080175001366,
-0.0099730119590965,
0.010225076900261754,
0.029896123735941083,
0.04908190998936579,
0.0678445542572298,
0.08622914905425028
],
[
0.5351090232577862,
0.5694812295980218,
0.6055746606217359,
0.6426010363153077,
0.6796024251862682,
0.7154988344333402,
0.7491771721936571,
0.7796339345644807,
0.8061675749209123,
0.8285513562060112,
0.8470319700302199,
0.8620785447651045,
0.8740234454109774,
0.8829037563581884,
0.8888945155537867,
0.8931443339394137,
0.898087681862467,
0.906653273844187,
0.9204791853348266,
0.9378693488083034,
0.9528269821567059,
0.9553075805019318,
0.9328597476681011,
0.8751141628198653,
0.780484581528738,
0.6566082796773953,
0.5159979079060001,
0.37234234354115747,
0.23751106571786007,
0.11962281901005545,
0.02274301249589583,
-0.052233319342385176,
-0.10645790725040061,
-0.14222502911397694,
-0.16234324443798387,
-0.1697278874430107,
-0.1671519769173656,
-0.15710598568386258,
-0.14173021629092275,
-0.12279415768670865,
-0.10170517591281658,
-0.0795347643137928,
-0.05705486286625383,
-0.034779837825498316,
-0.013011824411590545,
0.00811165599539887,
0.02856867291345966,
0.0484042133743916,
0.06768539252909223,
0.08646570555337996
],
[
0.5426560228475572,
0.5772737843814425,
0.6135438164779969,
0.6506649272732878,
0.6876622563468824,
0.7234326224609074,
0.7568315495342647,
0.7868168094053073,
0.8126508931246915,
0.8340959312503369,
0.8514215005559673,
0.8651364335630533,
0.8756285284173421,
0.8830354185048744,
0.8876693129816077,
0.8907849433099244,
0.8948045886516945,
0.9024952837532165,
0.915267988048966,
0.9312699758731466,
0.94440021809528,
0.9444724012047514,
0.9189416765641312,
0.8576256780233867,
0.7592438941460519,
0.6317967304308506,
0.48821932666663237,
0.34257775529166373,
0.20695348300853866,
0.0894108192660974,
-0.006231507928686653,
-0.07936267231347904,
-0.13137729329618353,
-0.16475512080657462,
-0.18243819886537205,
-0.18743345709854198,
-0.18257346038255162,
-0.17038453746984095,
-0.1530259037826016,
-0.132274334446577,
-0.10953698848119398,
-0.08588083929868229,
-0.062071399218766476,
-0.038616438359574956,
-0.01581242996611365,
0.0062074138749285135,
0.027424466302395034,
0.04788712132385986,
0.06766760408426109,
0.08682768230422766
],
[
0.5497836472008651,
0.5846118750597539,
0.6210255047100022,
0.6582118296749602,
0.6951808679644983,
0.7308084332481379,
0.7639207911669155,
0.7934376952355157,
0.8185830392969838,
0.8391031484356353,
0.8552861818119102,
0.8676760092445635,
0.87671188237914,
0.8826229996558055,
0.8858398370640314,
0.887703388409465,
0.8906083591180141,
0.897150084554523,
0.9085116956469654,
0.922697629465875,
0.9335504262749474,
0.9308371135606346,
0.9020600859975199,
0.8373480743448257,
0.7356715127998928,
0.6052341145445941,
0.4592762038655479,
0.31217793060656773,
0.1762068088972949,
0.059356076246279144,
-0.03480660971962646,
-0.10594081449639114,
-0.15566338910698774,
-0.1866201094850226,
-0.20187071743662577,
-0.20450172776708275,
-0.19739645275796425,
-0.18311081946849328,
-0.16381863926541795,
-0.14130110574152588,
-0.11696336359436188,
-0.09186681389687212,
-0.06677000045693349,
-0.04217386904854681,
-0.018369151016637275,
0.004515308654802319,
0.026464289335232594,
0.04752971805667705,
0.06778896750352659,
0.08731188898376918
],
[
0.5564770719106837,
0.5914774608126225,
0.6279976719999953,
0.665214768432031,
0.702125386506907,
0.7375865891357489,
0.7703979147493769,
0.7994427480784444,
0.8239047800725277,
0.8435103660563805,
0.8585622812504831,
0.8696347867875812,
0.8772142874109687,
0.8816127034558605,
0.8833604618036751,
0.8838640096914478,
0.8854735711809014,
0.890603926608525,
0.9002134850504454,
0.9121790476815677,
0.9203359100626043,
0.9145035870382779,
0.8823643949351866,
0.8144454003201991,
0.709930518677823,
0.5770945986655457,
0.42936014313223747,
0.28134641012507683,
0.14547434915476642,
0.02964857785402719,
-0.06281378424968598,
-0.13182290707774402,
-0.17919396906902452,
-0.20771806271230464,
-0.2205565255557731,
-0.22086353798332192,
-0.2115646100998425,
-0.19523930554935898,
-0.17407200673159873,
-0.14984572342665903,
-0.12396200802970936,
-0.09747582703362223,
-0.07113836659193729,
-0.04544363708107457,
-0.020676638282709048,
0.003038134762000988,
0.025688897824863055,
0.04733116043536467,
0.0680474061727585,
0.08791532457339313
],
[
0.5627230464777869,
0.5978542869094032,
0.6344402807694344,
0.6716490163853219,
0.7084653885219101,
0.7437299734774957,
0.7762184413742477,
0.8047804646454055,
0.8285593580243165,
0.8472580859508493,
0.8611901249426988,
0.8709549652770473,
0.8770812495307058,
0.8799551296218375,
0.8801906391845571,
0.8792387364501177,
0.8793872163247902,
0.8828636327053603,
0.8904084238880261,
0.899787678884051,
0.9048781636231142,
0.8956497552720518,
0.8600815025398578,
0.789156449652791,
0.6822478730636088,
0.5476002082620764,
0.39869689875625575,
0.2503100848879909,
0.11497320378634146,
0.00048401425058397507,
-0.09008407153737652,
-0.15686638365786398,
-0.20185024650916483,
-0.22795080452308458,
-0.23841498839877207,
-0.23645304469645323,
-0.22502450495288495,
-0.20672696870038698,
-0.18375168869355318,
-0.1578811680186858,
-0.1305120222648012,
-0.1026921106729255,
-0.07516502216884846,
-0.048417836233759615,
-0.022729921738136705,
0.001778482548354554,
0.02509898504965624,
0.047290651184209276,
0.06844096728332216,
0.08863516228637425
],
[
0.5685100262795695,
0.6037280800178519,
0.6403355952691674,
0.6774925105195069,
0.7141735014710568,
0.7492048821343333,
0.7813415397262694,
0.8094030534073116,
0.8324940303657269,
0.8502916622750359,
0.863115830665553,
0.871585181435029,
0.8762650078649484,
0.8776075592292585,
0.8762971356004607,
0.8738088062891931,
0.8723495955999916,
0.8739560750353933,
0.8791609619736881,
0.8856382807076724,
0.8873518978615954,
0.8745128128951573,
0.835494689244134,
0.7617743246168144,
0.6528996634667885,
0.5170104702217285,
0.36753819736100607,
0.21931246698458018,
0.08492827084767451,
-0.027941385886667502,
-0.11645196348010278,
-0.18093373994013517,
-0.22351884824546353,
-0.24722532118422236,
-0.25537012138338255,
-0.2512084563704109,
-0.2377261622263952,
-0.21753367479136576,
-0.19282575634063326,
-0.16538236265341189,
-0.1365940581740066,
-0.10750110613622699,
-0.07883940261158773,
-0.051089212103501036,
-0.024524461463561464,
0.0007386971334898407,
0.02469514756275981,
0.04740741045406238,
0.06896779880039339,
0.08946873204154704
],
[
0.5738282914570462,
0.6090867256422912,
0.6456684437015497,
0.682726237435789,
0.7192259695625332,
0.753981849039975,
0.7857311907020442,
0.8132678880781532,
0.8356616607443176,
0.8525629776866205,
0.8642928712940319,
0.871482027216084,
0.8747263151524991,
0.8745362533228778,
0.8716561856556444,
0.8675660558162674,
0.8643744925277488,
0.8639265796090794,
0.8665607980346421,
0.8698793249745276,
0.8679728987366533,
0.8513718152012073,
0.808924686168312,
0.7326278193437743,
0.6221954599587967,
0.4856103588926104,
0.33615164990182234,
0.1886052229835814,
0.055564858121702976,
-0.055436717093585997,
-0.14175950380312907,
-0.20389532857905246,
-0.24409373729515005,
-0.26545510555656393,
-0.27135154493537206,
-0.26507271994281134,
-0.2496235584565294,
-0.2276225480323134,
-0.201264938281569,
-0.17232637123237482,
-0.14219046543736924,
-0.11188957275848088,
-0.08215193575531421,
-0.05345122467142627,
-0.026056197327371522,
-7.91625419650499e-05,
0.024477850595206352,
0.04768064650970205,
0.06962612511161503,
0.09041350115947089
],
[
0.5786700491139963,
0.613920421930997,
0.6504264469382365,
0.687334572162671,
0.7236031570175095,
0.7580363986746964,
0.7893573074225115,
0.8163390234795004,
0.8380223654218324,
0.8540320416599424,
0.8646833994256653,
0.8706112401444955,
0.8724357841254324,
0.8707184574163055,
0.8662552086959548,
0.8605136123781282,
0.8554886629293142,
0.8528365114358665,
0.852717601645902,
0.8526837745758084,
0.8469846577939343,
0.8265309321743893,
0.7807129635338717,
0.7020650422474767,
0.5904632758520465,
0.4536976895435619,
0.30480939299090504,
0.1584380889082424,
0.027100025624846924,
-0.08182258384490704,
-0.1658603177125637,
-0.22563200842365472,
-0.2634780000300734,
-0.2825613922414103,
-0.28629535525427974,
-0.2779941443310354,
-0.2606750735473531,
-0.23696030107117094,
-0.20904286319094356,
-0.17869257756261847,
-0.14728542439698689,
-0.11584568719136779,
-0.08509411722029592,
-0.05549810705776381,
-0.027321596491741706,
-0.0006733635658002779,
0.024447393832833453,
0.048109526233524824,
0.0704142219919831,
0.09146705388421328
],
[
0.5830295156645638,
0.6182218047803293,
0.654600205433325,
0.6913055557733817,
0.7272899621896162,
0.7613496740352892,
0.7921967150100397,
0.8185887017715264,
0.8395452226535229,
0.8546684103934805,
0.8642592537136877,
0.8689484923778343,
0.8693746163968396,
0.8661432102805872,
0.8600934029358936,
0.8526658874920605,
0.8457307454257216,
0.8407603432096937,
0.8377551979889396,
0.8342389907896273,
0.824644434883158,
0.8003041293802412,
0.751207358850388,
0.6704394075062188,
0.5580360502255082,
0.4215710449035609,
0.27377644517258565,
0.12904729999912068,
-0.000266895295927716,
-0.10693702065068689,
-0.18862326028607224,
-0.24603749363193805,
-0.2815854170353116,
-0.29847423884874025,
-0.3001448851341584,
-0.2899269447923152,
-0.2708438851726185,
-0.24551752340493205,
-0.21613627216762998,
-0.18446284262334234,
-0.1518650633210874,
-0.11935913182296232,
-0.08765857840434976,
-0.05722491943369512,
-0.02831769784134519,
-0.0010425370149799162,
0.0246038782595146,
0.048693146060613146,
0.07133039144855591,
0.09262707026555406
]
],
"zauto": true,
"zmax": 0.9718478438585691,
"zmin": -0.9718478438585691
},
{
"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": [
1e-06,
1.3011511650442548e-06,
1.692994354296022e-06,
2.2028415765056147e-06,
2.866229883678204e-06,
3.729398352432554e-06,
4.852511011181743e-06,
6.3138503555892e-06,
8.215273746089953e-06,
1.0689313005882424e-05,
1.390841207112662e-05,
1.809694657026198e-05,
2.354686311364001e-05,
3.063802837345029e-05,
3.986470631277378e-05,
5.1870009063012666e-05,
6.749072272319499e-05,
8.781563250096393e-05,
0.00011426141253772724,
0.00014867137004306603,
0.00019344392634026088,
0.0002516997901283655,
0.0003274994751669172,
0.0004261263236648159,
0.0005544547624925005,
0.0007214294601814526,
0.000938688782612345,
0.0012213760031100258,
0.0015891948094037057,
0.002067782677737912,
0.0026904978401970136,
0.0035007443993213955,
0.004554997653699184,
0.005926740503884541,
0.007711585311544345,
0.010033938212454078,
0.013055670395116691,
0.01698740074503987,
0.02210317627048227,
0.028759573555516536,
0.03742055263793628,
0.04868979566145066,
0.06335278435066323,
0.0824315491666629,
0.10725590623460621,
0.13955614735503497,
0.18158364372009145,
0.23626776957937787,
0.3074200836506151,
0.4
],
"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.018614781122542598,
0.045695612647004474,
0.0787754373267591,
0.10356862044312294,
0.11794126623989225,
0.12122231830476708,
0.11362139266535037,
0.09616906157089787,
0.0708264014059797,
0.04109165942824398,
0.01877111063735866,
0.034470919599985,
0.05794723533992913,
0.0749276320200452,
0.08364796605765933,
0.08449523715728294,
0.07862215156525326,
0.06720612417345942,
0.05135708639136839,
0.03321867045965632,
0.019381626770876376,
0.02035357168143278,
0.023938305656267145,
0.020070541503328387,
0.021112578840814793,
0.04482261031064344,
0.07919824293373766,
0.11743110020438301,
0.15633685851152382,
0.19388230100998677,
0.22871825785892655,
0.2599892345671314,
0.28720336753813125,
0.31012934556680316,
0.3287142948058254,
0.34302114669078265,
0.35318447437965483,
0.3593836936284376,
0.3618325540794425,
0.36078400285366685,
0.35654956484599143,
0.3495319551053828,
0.3402680454641633,
0.3294754771889412,
0.31808881005446654,
0.307259798639063,
0.29828574480126413,
0.2924351934481082,
0.29068434249560654,
0.293457874353406
],
[
0.024565863676388435,
0.04820899370520108,
0.08010749389894666,
0.1045075044870652,
0.11876896613448064,
0.12211355748257262,
0.11473389000706437,
0.09768368808375485,
0.07299292681798274,
0.04432918785326097,
0.022584722525176997,
0.033608570431001704,
0.054854878700686935,
0.07042603414459388,
0.07811397166497949,
0.07840026976032823,
0.07262616437248526,
0.06203009413078298,
0.04754397306175602,
0.031066544798212387,
0.019226365045745597,
0.021238008634159887,
0.02491021851663934,
0.021528072554970846,
0.022591252395785636,
0.045187599722516444,
0.07894485047070178,
0.11682590456866403,
0.15551929261586173,
0.19293581459834083,
0.22769182389343512,
0.25890688277787677,
0.28606959657458264,
0.30893221333078724,
0.327426862309474,
0.3416017457197866,
0.3515762118628013,
0.3575135853031853,
0.3596107193485326,
0.3581034985486328,
0.3532877409365708,
0.34555472983702146,
0.3354392214142419,
0.3236739534350764,
0.31123653480447144,
0.2993607375607781,
0.2894683713171648,
0.28297806657317165,
0.2809964922494265,
0.284002357025219
],
[
0.0369619013301868,
0.05505694176263741,
0.08396487486370574,
0.10718061044289832,
0.12096129336757072,
0.12423070021429834,
0.11710911801834534,
0.10068474519453009,
0.07714494262072642,
0.05057164930185142,
0.031149608768157113,
0.036574381257261646,
0.05365455718603664,
0.0669013422663317,
0.07305371933352199,
0.07250147577405511,
0.06675990013729773,
0.057151961052215136,
0.04443133589836857,
0.030304965056889392,
0.021225299496009112,
0.02385576657106687,
0.02750923528774967,
0.025298485577129135,
0.02696385150649481,
0.04748628974987766,
0.07991617089515944,
0.11705575052563706,
0.15529874068095312,
0.19242726493834125,
0.22699062764262207,
0.25806713978091184,
0.28511681442235687,
0.3078698777125631,
0.3262396430777063,
0.34025668826394184,
0.3500227201195254,
0.35568275837587554,
0.3574145331168525,
0.3554344183377042,
0.35001964911463396,
0.34154661663236824,
0.33054396543605286,
0.31775558614387306,
0.30419991549112846,
0.2911954425082018,
0.280300013953705,
0.27310350925759885,
0.27086613943317356,
0.27413094633447715
],
[
0.0511198336323682,
0.06471738795394194,
0.08990765314623385,
0.11136779396468423,
0.1243547220134903,
0.12741326329867145,
0.12055257876858452,
0.10488708525995294,
0.08276018207988217,
0.058528007371148084,
0.04114349955371816,
0.042162812717315507,
0.05422516714371566,
0.06437345803648178,
0.06849025167877303,
0.06678811088543059,
0.06097280428906036,
0.05248634421434791,
0.04185060942255028,
0.03044457418863867,
0.024005410818855977,
0.02695164822056786,
0.03066820623051695,
0.029820436494709723,
0.032401278068222523,
0.051020387523832145,
0.08181723489290449,
0.11796478116397997,
0.1555828338083815,
0.1922983813349361,
0.22657644033693541,
0.2574442870359755,
0.284327535632357,
0.3069305943563838,
0.3251451817741284,
0.33898199176949945,
0.3485230823311556,
0.3538932323907674,
0.3552490140800723,
0.3527849585473473,
0.3467568533769206,
0.3375225735867248,
0.3256002006306845,
0.3117399610137671,
0.29699762536764923,
0.282777940417148,
0.2707866112352124,
0.2628091220867664,
0.26028742231432533,
0.26384182114587973
],
[
0.0656957020897615,
0.0759425934336905,
0.09741902397840685,
0.1167952238688803,
0.12875041036459114,
0.13147334493709914,
0.12484473530538319,
0.10998338889380863,
0.08932872428613188,
0.0672595499672858,
0.05131000735418581,
0.04910241410348278,
0.05625888568008984,
0.06281803468829507,
0.0644546031368486,
0.06126830704689025,
0.05522779689186006,
0.04795540618830332,
0.039618879417084474,
0.030967264446438415,
0.026651481841221746,
0.029767995337994346,
0.03368806501857807,
0.034212139836804344,
0.03786122827437551,
0.0551403114500849,
0.08433361083163693,
0.11938258659282718,
0.15627027665879412,
0.19248528772866016,
0.2264073256542021,
0.25701003131880734,
0.283682423711113,
0.30610126694905426,
0.3241350434525378,
0.33777299550263334,
0.3470759713834758,
0.3521468826981324,
0.35311933479397317,
0.3501638396702706,
0.34351193234658556,
0.3334992323820125,
0.32062837342029965,
0.30565016113624893,
0.2896526796925434,
0.27412683446294767,
0.26093788334503176,
0.25209484133449606,
0.24925608945281424,
0.2531356164401747
],
[
0.08024669878436508,
0.08794511239791712,
0.10601779143307463,
0.12317697655527464,
0.13393684089784127,
0.1362142770899496,
0.12976324672922102,
0.11568002525191984,
0.09642056955186637,
0.07618253983807619,
0.06117676110686929,
0.05654345319747469,
0.059356680937618436,
0.062164026457913454,
0.06098616909469224,
0.05597764909286296,
0.04951052643118137,
0.043501804115349756,
0.03757052843147399,
0.0314620946025991,
0.02870324198853783,
0.031922765673581474,
0.036181581029644444,
0.03804834167894529,
0.042847287744710104,
0.059353508792934266,
0.08717236007610794,
0.12113927416815827,
0.15725738755011695,
0.19292169259010417,
0.22643931206885423,
0.25673442153175513,
0.28316080757578943,
0.30536774162376945,
0.3231999795476692,
0.3366244485127095,
0.34567968726231524,
0.3504454427109316,
0.35103079894147327,
0.3475802690720865,
0.34029844464146175,
0.3294948993430134,
0.3156515497241318,
0.2995130466795651,
0.2821929821899514,
0.26526608905387583,
0.2507681024679931,
0.24096338550960558,
0.23776973550103395,
0.24201590191255576
],
[
0.09457619634118572,
0.10025621033255158,
0.11530689051750706,
0.13024424838760432,
0.13970759708157285,
0.14144509661456453,
0.1350986353209022,
0.12171683503747974,
0.10369940520867828,
0.08494135143316683,
0.07052620625396493,
0.06399109627312663,
0.06312630237246535,
0.062299711921899446,
0.058129493580164074,
0.050987874612299255,
0.0438401300764374,
0.039101736270547555,
0.03558277534112495,
0.031664850841653276,
0.029958357289081135,
0.033241016967696206,
0.03795093779794279,
0.04112619208459786,
0.047120230424744926,
0.0633232706131393,
0.0900853036410087,
0.12307743882178683,
0.15844397584072867,
0.1935419170022715,
0.22662802410546196,
0.2565867572905236,
0.28274119960471744,
0.3047151058321295,
0.3223300986004572,
0.3355306011939871,
0.3443321957527419,
0.348790503856414,
0.3489888109743255,
0.34504388855058454,
0.33713086925608654,
0.325529520952673,
0.31069547063822234,
0.29335950993248255,
0.2746519052268141,
0.25622594640538787,
0.24029704885636266,
0.22942080643081508,
0.22582806360170676,
0.23048977630559916
],
[
0.10857454637716486,
0.11259046980609898,
0.12497788092097772,
0.13776039343613386,
0.1458726416921716,
0.14698979938125073,
0.1406630557742473,
0.12787395471146998,
0.11091111029268219,
0.09331266382639546,
0.07923851507530938,
0.07115818033106786,
0.06723628355540091,
0.06308521046415158,
0.05592627571368112,
0.04641395059056712,
0.03828281660435944,
0.03477793960475346,
0.033590795832436536,
0.03144291748531872,
0.030355062037686977,
0.033664107144043776,
0.03891007994899048,
0.04335399221715595,
0.050564176702164794,
0.06683329913996142,
0.09287732277019606,
0.12506022934630878,
0.15973808805115125,
0.19428354121331967,
0.2269301679461795,
0.25653643773143775,
0.28240178912927266,
0.3041279782199222,
0.3215150348176693,
0.3344852970326959,
0.34303116689522983,
0.34718351260159214,
0.34699883772868045,
0.34256470575278214,
0.3340245180887245,
0.3216246070391816,
0.30578855450640785,
0.2872246866052297,
0.2670688899298763,
0.24704399332541435,
0.22955121217012425,
0.21747718663179266,
0.21343318093487923,
0.21856862387496975
],
[
0.12217063881219876,
0.12476564848038676,
0.1347972640156648,
0.14552538938991033,
0.15226385067785317,
0.15269202105869592,
0.14629371018540702,
0.1339709455485783,
0.11786606847931987,
0.1011502948722635,
0.08723893383905988,
0.07787076380483236,
0.07142807449781195,
0.06436692913969581,
0.054402755480359645,
0.042415246289508636,
0.032970666217723314,
0.030613098528951044,
0.03159241982124687,
0.03076758641063131,
0.029918629615441693,
0.033207873291063165,
0.039043942650369055,
0.04470254845493212,
0.05313034398091378,
0.06975400121380504,
0.09540563474710453,
0.12697578785533267,
0.16105942412325988,
0.19508952387169534,
0.2273047898332584,
0.25655370703564584,
0.2821208883285567,
0.3035907773453772,
0.32074410814901533,
0.333482061420049,
0.3417740118529213,
0.34562576415079227,
0.3450663619273833,
0.3401530088978296,
0.330995418223656,
0.3178031048895879,
0.3009618305488216,
0.2811480985028599,
0.2594900424562141,
0.2377663938661352,
0.2185653192000051,
0.20514754773773983,
0.20058993779831552,
0.2062691043458797
],
[
0.1353139662936496,
0.1366595851938282,
0.14458949653070932,
0.15337428557829294,
0.15873650785638388,
0.15841645503713,
0.1518528686201615,
0.1398624617089149,
0.12442318523742572,
0.10835505337659057,
0.09447711279049788,
0.08401779925330798,
0.07550683745176712,
0.06598966726605052,
0.05355499403817101,
0.039182317999004124,
0.02812778577917483,
0.02676320024704836,
0.029643629753916465,
0.029690358095567065,
0.028739099501351062,
0.03194435348275239,
0.03838728702197383,
0.04518256275213781,
0.05481231477918029,
0.07201853875781435,
0.09757498844102287,
0.1287388446996728,
0.1623414327329471,
0.1959097205529859,
0.227714252272638,
0.25661026372344,
0.2818773119978269,
0.30308795911559816,
0.3200064705267812,
0.33251418489683454,
0.34055791714012634,
0.34411839268646793,
0.3431968278524788,
0.3378192648117689,
0.3280601623079039,
0.3140892180320681,
0.2962487879375796,
0.27517369620585475,
0.25196868838866004,
0.2284492945730403,
0.20738429768419647,
0.192453072174693,
0.18730632736050884,
0.19361448857964028
],
[
0.14796686664589317,
0.14818701052071276,
0.15422233508342012,
0.16117304251697512,
0.16516842467748163,
0.1640482911639589,
0.15722610494237843,
0.14543298393322043,
0.1304775555973881,
0.11485804593923535,
0.10091778125268189,
0.08952482279940005,
0.07932649028735196,
0.0678043973868075,
0.053336804532280936,
0.036898226755073045,
0.024096819177293862,
0.023464140642946312,
0.027844686951126133,
0.0283249867822031,
0.026964540696662063,
0.02999536889471604,
0.03701312618985139,
0.04483301298259081,
0.0556345240982083,
0.07360740575016611,
0.09933168897623605,
0.13029031230540952,
0.16353221859131076,
0.19670178842721064,
0.22812489946094716,
0.2566797125369501,
0.2816506780904105,
0.30260421540489524,
0.3192912341797702,
0.33157479884007574,
0.33937987553727444,
0.34266235833907854,
0.3413955798868931,
0.3355740009459768,
0.3252357263651235,
0.31050816449639873,
0.2916851237560606,
0.2693497637228424,
0.24456582783569636,
0.21916038950453728,
0.1960658220759923,
0.17942280438090374,
0.1735939755439439,
0.18063652054404344
],
[
0.16010070438793472,
0.15928665579337767,
0.16359566282971938,
0.16881373946944417,
0.17145791128435492,
0.16949164346392373,
0.16231981509114715,
0.15059183420796246,
0.13595152787199188,
0.12061111170297581,
0.10653603456643945,
0.09433981683170704,
0.08277605457341963,
0.06967202977550158,
0.053655285054240436,
0.03567266136951156,
0.021319772066111926,
0.021006986995732415,
0.026315002962818357,
0.026831558790035757,
0.024803416988865037,
0.027533512916154024,
0.03502586649353305,
0.04371461496091056,
0.05564691755278352,
0.07453884298950889,
0.10065775316902827,
0.13159555790898186,
0.16459444663906642,
0.19743150800585452,
0.22850740711759543,
0.2567378495815506,
0.2814216218015394,
0.30212462925060646,
0.3185875794134742,
0.33065694236473786,
0.33823671344959233,
0.34125843141197393,
0.3396677950675676,
0.333427672808016,
0.32253925567561037,
0.30708587113694585,
0.2873083741247838,
0.26372864117091815,
0.2373504088466809,
0.20998059474829162,
0.18468362829506915,
0.16609610837573463,
0.15946877388038172,
0.16737810316050522
],
[
0.17169376393954358,
0.16991377092714868,
0.172633381184183,
0.1762100858433575,
0.1775213605016247,
0.17466758919740188,
0.16705862460858603,
0.15526892120684702,
0.14078838459680476,
0.12558112933346552,
0.11131474488059677,
0.09842535346074245,
0.08576930158750787,
0.07146460461866509,
0.05437613003002777,
0.035475739872229205,
0.02016454440287349,
0.01963770838189879,
0.0251564501998037,
0.025396626004089585,
0.02253157290127399,
0.02478900805236271,
0.032556927888107774,
0.04190615849599178,
0.054923004010035484,
0.07486288645883944,
0.10156554774139341,
0.13264181433573774,
0.16550443303027887,
0.1980725818097352,
0.2288368317393417,
0.256762782483106,
0.2811719218333426,
0.30163478508653935,
0.3178848408409426,
0.3297536200443371,
0.3371251149292913,
0.3399071747335065,
0.3380184112416196,
0.3313905190535722,
0.3199878209039486,
0.3038486031808148,
0.2831574154659059,
0.25836621791441533,
0.2303993070271109,
0.2010057165033669,
0.1733318199746231,
0.15252635549190813,
0.14495175472457483,
0.15389731003059404
],
[
0.18272995992369093,
0.180035575651123,
0.18127762065094463,
0.18329357411339567,
0.18329085538678602,
0.17951217064498315,
0.17138298121277792,
0.15941129153320924,
0.14494790674419264,
0.129746516486078,
0.11524307485966194,
0.10175414170676209,
0.08823764367815318,
0.0730654061968232,
0.05533678093588953,
0.03612002252340862,
0.02060803199534836,
0.019389186026213406,
0.024412811405961347,
0.024202946164337123,
0.020492487106468865,
0.022059724074395843,
0.029761993550885456,
0.039503188876279384,
0.05356018421345242,
0.0746574450181926,
0.10209278740331933,
0.13343499830182767,
0.1662505957422471,
0.19860598705722876,
0.22909238990473355,
0.2567348970661043,
0.28088454298520155,
0.3011208354722578,
0.3171725726512974,
0.32885785090079145,
0.33604164304462614,
0.33860892533932724,
0.3364520528465517,
0.3294724073315267,
0.31759814842677225,
0.30082253157990785,
0.2792718279459437,
0.25332114941410594,
0.22379686801037812,
0.19234789027342533,
0.16213038801578633,
0.13878667502920006,
0.1300704062264412,
0.1402735886758785
],
[
0.1931979701534293,
0.1896283616101664,
0.18948460350077365,
0.1900103198597486,
0.1887119875132359,
0.18397453123217788,
0.17524704511861322,
0.16298040773947944,
0.1484032617312838,
0.1330950330964684,
0.1183156346710654,
0.10430653248199609,
0.0901256396291858,
0.07436901528375948,
0.05636289036698536,
0.037309632196022076,
0.022162448109611974,
0.02000248609962269,
0.024043471631737205,
0.023387233766562363,
0.019059786921357277,
0.019711432171406553,
0.026819874268218035,
0.03661946636778602,
0.05168180939314846,
0.07402514217920243,
0.10229756989066877,
0.13399607951629322,
0.16683141687459607,
0.19901896917246142,
0.22925700990717904,
0.25663669012867835,
0.2805436040646801,
0.30056952853286145,
0.3164405950180284,
0.32796270992313964,
0.3349827597135272,
0.3373637769802811,
0.3349729567165409,
0.32768267479043334,
0.3153863307173849,
0.29803324493660865,
0.2756911209893584,
0.24865375899154812,
0.21763384394414104,
0.18413641039087192,
0.15123205471130569,
0.12497926711208646,
0.11486084528546577,
0.1266176733273036
],
[
0.20309060385721178,
0.1986755590956529,
0.19722165518620566,
0.19631851491890814,
0.1937419468785175,
0.18801525096614183,
0.17861689313353307,
0.16595002767717873,
0.15113881990169706,
0.1356224019814095,
0.1205320551846901,
0.10606921529310281,
0.09138843952833323,
0.07528176931515307,
0.05728375331548818,
0.03871945931169404,
0.02419329015124128,
0.021053973381989652,
0.023928185992598786,
0.022998002021946604,
0.018520283158915414,
0.0181299283261406,
0.02393321064933269,
0.0333923503903608,
0.04944035173073692,
0.07308974912368958,
0.10225308270331793,
0.13435708473782815,
0.16725305464394533,
0.1993037683589462,
0.22931670615731864,
0.2564524941143435,
0.2801342841024638,
0.29996820269492397,
0.31567902509100226,
0.3270613640974013,
0.33394484549520004,
0.3361715651832103,
0.3335849006198334,
0.32602996788440824,
0.31336752455782346,
0.2955052175455833,
0.2724538315007362,
0.24442460358589174,
0.21200554798131713,
0.1765173607544144,
0.14083017567067255,
0.11125102016380299,
0.09937180674687582,
0.11308788028552057
],
[
0.21240431044050012,
0.20716638858857309,
0.20446500977299928,
0.20218638518825094,
0.1983478805155696,
0.19160488870868653,
0.18146900710071448,
0.16830455903888497,
0.1531486273052454,
0.13733146978946645,
0.12189685299292673,
0.10703467091622582,
0.0919905970369321,
0.07572269845519697,
0.057944233131247594,
0.04005682905096405,
0.026194023480360706,
0.022140718715120376,
0.023901017973610907,
0.02297854992434821,
0.01891577883051819,
0.017580383934327603,
0.02132944683292575,
0.029993743694257845,
0.047020319786044526,
0.07199100527859736,
0.10204168715911913,
0.13455682064505053,
0.16752673931215742,
0.1994561745992938,
0.2292598318826944,
0.25616812379237136,
0.2796426828433795,
0.29930475718169675,
0.31487829711395604,
0.32614710552279697,
0.33292422112366854,
0.33503185674294367,
0.3322911374289412,
0.3245220866956727,
0.31155564661378643,
0.2932612501040835,
0.2695965186803668,
0.2406927124157559,
0.2070090799183246,
0.16965123575717836,
0.13116649700634025,
0.0978204194085571,
0.08367286834093908,
0.09991736432614508
],
[
0.22113877848808203,
0.21509487999257249,
0.2111981663121626,
0.20759054719835146,
0.20250548917364455,
0.194722711153953,
0.18378899942977986,
0.17003777792812302,
0.1544353472746209,
0.138231743788671,
0.12241951115607723,
0.10720111065267787,
0.09190579545498176,
0.07562479113851665,
0.0582126206251371,
0.041090130119596745,
0.02783945456229238,
0.02297047763476804,
0.023793971459782792,
0.023190664460737056,
0.020013759151874515,
0.018045179272069264,
0.01925340947611227,
0.026647683435584536,
0.044637890460741084,
0.07087667402763101,
0.10174826379412097,
0.1346364439929209,
0.16766609216275294,
0.19947400771730378,
0.2290762679053939,
0.2557704774570603,
0.27905565340237315,
0.2985676080439488,
0.31402917701095,
0.3252133846182608,
0.3319171727506299,
0.33394394557697665,
0.3310943378910036,
0.3231658393564398,
0.30996307734137307,
0.29132190439563377,
0.2671526940105498,
0.2375135492895928,
0.20273956160942988,
0.1637076075927882,
0.12253566882084986,
0.08502423479326589,
0.06787382060381238,
0.08745931694687234
],
[
0.22929659719953124,
0.22245913174889403,
0.2174106314179566,
0.21251467343046965,
0.20619782293494235,
0.1973555774391045,
0.1855705242638604,
0.17115181777459826,
0.1550095389886146,
0.1383392022961195,
0.12211472472326011,
0.10657272169824632,
0.09111713710640236,
0.07493637898858281,
0.05798499828923925,
0.041653830597827776,
0.028947240387259446,
0.023369735470762425,
0.023472171960829194,
0.02346493362828912,
0.021456909525452407,
0.019235140959095818,
0.017930663536876366,
0.02365060145301648,
0.04253172776671769,
0.06989111008959938,
0.10145298478270198,
0.13463507782305978,
0.16768451494758008,
0.19935561794570852,
0.22875660476494258,
0.25524712568446495,
0.27836062580571475,
0.2977456402186233,
0.31312277725872123,
0.3242538466634725,
0.3309199829250563,
0.33290685681784116,
0.3299965448819829,
0.32196691224884344,
0.3086003851091699,
0.2897049571383363,
0.26515173934046676,
0.23493679974666215,
0.19928547584229525,
0.1588560428884145,
0.11528038737292573,
0.07339492888009086,
0.052178319764646375,
0.0762565407884374
],
[
0.23688296439991854,
0.22926073267558444,
0.22309693675894132,
0.21694839489616477,
0.2094142375407725,
0.19949694617085278,
0.18681432470206782,
0.17165634990031023,
0.15488917657743256,
0.1376763122924742,
0.12100277596317525,
0.10516009096393145,
0.08961773124295401,
0.07362246189639454,
0.05718707423821129,
0.04164281989455445,
0.02943608437434754,
0.02326653742456332,
0.02285496837129931,
0.023648346299168257,
0.02291881076435112,
0.020771032522226708,
0.017486433933124552,
0.021371683944074273,
0.040937856341267086,
0.06916070902930047,
0.10122402491130393,
0.1345857433598634,
0.16759280186305703,
0.1990984975575101,
0.22829137216292586,
0.2545859194377959,
0.2775454399253977,
0.2968281662289209,
0.31215057799549867,
0.3232623749574223,
0.3299289692642904,
0.3319193608459441,
0.3289991417853534,
0.32092976144734814,
0.3074760826464893,
0.2884249005607967,
0.2636178776140427,
0.23300413551687818,
0.19672341938996862,
0.1552531349331751,
0.10976806272161478,
0.06376543938983731,
0.03706696685793044,
0.06712237837835063
],
[
0.24390543188601493,
0.23550429900081832,
0.22825585631544104,
0.22088638655061446,
0.21214947824198332,
0.20114597387200375,
0.18752737067448086,
0.1715678881885782,
0.15409933362618444,
0.13627220884577892,
0.11911001740698983,
0.10298071658621095,
0.08741138740965226,
0.07166586928281672,
0.055774436835729795,
0.04100388509653967,
0.02929801988419347,
0.022674533427539622,
0.021925990581631694,
0.023631940157443465,
0.024163822509812128,
0.022330016784976998,
0.017863991250464836,
0.02017653879030854,
0.04004567953627121,
0.06877834493717244,
0.10111103681557691,
0.13451191995829223,
0.16739711999599313,
0.1986980843387018,
0.2276703636826805,
0.2537746464528421,
0.27659820515370365,
0.29580490170308094,
0.31110446011821347,
0.32223314371276357,
0.3289405325637255,
0.33097999867833167,
0.32810283723397743,
0.320057530324294,
0.30659642734708653,
0.28749251754677946,
0.2625692670457605,
0.23174714928275156,
0.1951128178190149,
0.15302680987751674,
0.10634126556372431,
0.05731265477223838,
0.024092216961827163,
0.06114071683808826
],
[
0.2503736826609647,
0.24119709690195112,
0.23288977275789732,
0.22432759545507425,
0.2144028645230828,
0.20230667815915485,
0.18772204694803662,
0.17090915779003352,
0.15267196924315762,
0.13416300326326103,
0.1164694544471178,
0.1000595476302954,
0.08451328214607862,
0.06906823868458335,
0.053732041396301666,
0.03972763689626591,
0.028581335747076726,
0.021682900010963405,
0.020736455197733886,
0.02335858678902332,
0.025043645757131923,
0.023683751672642545,
0.018832438016772132,
0.02023880458970532,
0.03994689397617608,
0.06879057780344247,
0.10114036014868671,
0.13442503460257482,
0.1670974822862002,
0.19814682240408305,
0.22688209621566724,
0.2528007606123649,
0.27550720220002795,
0.2946659669611606,
0.30997675561420257,
0.3211606834443766,
0.3279512157544663,
0.3300871197338882,
0.327307667904387,
0.3193519973732142,
0.3059652755185026,
0.2869145569897628,
0.26201728819864456,
0.23118566924233214,
0.19449132831296845,
0.15226069228898548,
0.10524628866672968,
0.05526082025032862,
0.018814907956255646,
0.05936516167664405
],
[
0.25629933683530987,
0.2463487318939381,
0.23700415904513494,
0.22727458321840424,
0.2161775558722389,
0.2029871443050449,
0.18741535588438715,
0.16970847240915385,
0.1506457556643128,
0.13139219285910725,
0.113121434877726,
0.09642952393087409,
0.08095051980635364,
0.06585087030098634,
0.05107362568016048,
0.03784207890097539,
0.027379267675015907,
0.02044892656957866,
0.019403054422543718,
0.022817969339839917,
0.02547654176148973,
0.024683200686023726,
0.020085550461211625,
0.02139020431455327,
0.04060549751315844,
0.06919175157304014,
0.10131279022035172,
0.13432310546701678,
0.16668679822067003,
0.19743352549872384,
0.2259134330169673,
0.25165120377873884,
0.2742608398118573,
0.2934019225890914,
0.3087603195991067,
0.3200399610728788,
0.32695777466202997,
0.32923893250691055,
0.3266130203781988,
0.31881355715251897,
0.3055839984123235,
0.2866935302439523,
0.2619660832575411,
0.23132664518876506,
0.19487168667286112,
0.15298243774539572,
0.10656581021207442,
0.058103172644285675,
0.02641987377274954,
0.06218097979345973
],
[
0.26169578428133294,
0.2509708933829669,
0.2406071529112132,
0.22973296352273045,
0.21747988540167573,
0.20319875982583346,
0.1866281051449729,
0.16799906753516866,
0.1480658851478895,
0.12801114515596626,
0.10911447097694538,
0.09213212397739115,
0.07676255746390644,
0.06205558348359126,
0.04784172469544644,
0.03540847122857187,
0.025821372379603028,
0.019185541017765192,
0.018096638955048393,
0.02203528725270046,
0.02542866693092028,
0.02523664654098909,
0.021339250241795032,
0.023222765441601557,
0.04187156450122152,
0.0699272584914002,
0.10160428764739858,
0.134190629153494,
0.16615053524472173,
0.19654306404491492,
0.22474938761940152,
0.2503123337277615,
0.27284767624640055,
0.29200384529241347,
0.3074486275381117,
0.3188664762724082,
0.32595726096116845,
0.3284335681184006,
0.3260176723181583,
0.31844123587781015,
0.3054514649384442,
0.28682764254652054,
0.2624123882288803,
0.23216374305939094,
0.19624057918865984,
0.15515956203636921,
0.11019304162837522,
0.06516232505636371,
0.04008246690520414,
0.0689911355733214
],
[
0.2665780428664849,
0.25507714716573415,
0.2437092099846533,
0.2317109229271942,
0.21831875441807336,
0.20295546828773703,
0.1853840570198463,
0.16581833932865606,
0.14498378670379772,
0.1240796218590862,
0.10450624029760268,
0.08721797407760885,
0.07200151748671549,
0.05774576917437022,
0.04410905085614162,
0.03252039061964677,
0.024065974138094397,
0.018130650104873518,
0.017011940555591458,
0.02105861811123957,
0.02490220552639831,
0.025295310439133165,
0.02237678054351797,
0.025312292640026064,
0.04353059572030208,
0.07090494098606204,
0.10196940192148951,
0.1339996376428694,
0.1654669659307364,
0.19545637229666632,
0.22337311398911833,
0.24876996589970685,
0.27125651218445473,
0.29046344850966926,
0.30603589996560837,
0.3176363747753276,
0.32494711708343604,
0.32766915610195047,
0.3255198523862233,
0.3182327416810397,
0.3055640925817437,
0.28731086468154204,
0.2633456740290749,
0.23367770098291565,
0.19855976153188862,
0.1587041510693663,
0.11586427775722195,
0.07517417605829106,
0.05536726715849603,
0.07868423611894064
],
[
0.2709626414454032,
0.2586827715021408,
0.24632282694258864,
0.23321881902938937,
0.2187050869712982,
0.20227304067731372,
0.18370902403638403,
0.16320694233898383,
0.14145667214638916,
0.11966629021229039,
0.09936483289593855,
0.08174763388192614,
0.06673248455802895,
0.05300792629679301,
0.03998226437528474,
0.02930754361137561,
0.022292581081324113,
0.017486860683903836,
0.01631040460456871,
0.019949490059544862,
0.023930780427500412,
0.0248473347280591,
0.023055688003200688,
0.027338430385845193,
0.04535822955799835,
0.07201085272964756,
0.10234663574824578,
0.13371169958450413,
0.16460792210820083,
0.19415074902388768,
0.22176607742856388,
0.2470095311520264,
0.26947655871351284,
0.2887732503741851,
0.3045172557408612,
0.31634657843485225,
0.32392528213912053,
0.326943911145692,
0.325117317502516,
0.3181845480100726,
0.30591596448812697,
0.28813314090086267,
0.2647485850812044,
0.23583740395910877,
0.20176921293831615,
0.16348491817489422,
0.1232288653817715,
0.08701199587422566,
0.07108730434206012,
0.09022701403282712
],
[
0.27486752685797683,
0.26180463413443433,
0.24846233002532586,
0.23426885471990921,
0.21865134894938457,
0.201168370428619,
0.1816299055403955,
0.16020770569972576,
0.13754681797117574,
0.11484913716537856,
0.09377033160154527,
0.07579276378467423,
0.06103400400742602,
0.047954132994627384,
0.0356096193196352,
0.025946657437835176,
0.020691920366697522,
0.017348825883214937,
0.016057204804179576,
0.01878087778949561,
0.022581956707302786,
0.023918051959869614,
0.02330163864665768,
0.029097966761397656,
0.04715767083603567,
0.07312493792178708,
0.1026646886008482,
0.1332805384222275,
0.1635399366185733,
0.1926004069738657,
0.21990839187494737,
0.24501634701238612,
0.26749768121463907,
0.286926789734319,
0.3028888935302477,
0.31499493086964825,
0.3228903071889194,
0.32625622888172734,
0.32480744525238947,
0.318292007168482,
0.30649900727843854,
0.2892807202717443,
0.26659763838681266,
0.23860154772929734,
0.2057917506453207,
0.16934300492476106,
0.13191906254749786,
0.09990034150930369,
0.08684982608779614,
0.10287435423975967
],
[
0.2783119940158795,
0.2644611085673821,
0.25014372684291564,
0.23487483085557012,
0.21817114136816884,
0.1996588064441776,
0.17917367241210755,
0.15686433905609098,
0.13332047809674263,
0.10971565003893903,
0.08781681914506628,
0.06943802043177101,
0.05499921540829979,
0.04272618974434002,
0.03119444924233695,
0.022681449559347994,
0.019447901267875996,
0.017672007991955976,
0.0162046986033968,
0.01764396020566527,
0.020966421091204886,
0.02257477647709524,
0.023101360584144793,
0.03048173051506946,
0.04877599621109498,
0.07413345655746299,
0.10284854948304978,
0.13265490692732138,
0.1622256321396087,
0.19077721500336536,
0.21777930322119785,
0.24277599644515185,
0.26531071761930947,
0.28491888914235663,
0.30114829982582836,
0.31358035649934785,
0.3218414774686405,
0.3256047882177369,
0.32458733853724475,
0.318549489691556,
0.30730322117524056,
0.2907365911770524,
0.2688641259427499,
0.2419207032964098,
0.21053834728154905,
0.17610763726559242,
0.14159636307188483,
0.1133468709581768,
0.1024787904721833,
0.11613477313753649
],
[
0.28131663779088784,
0.2666720282337662,
0.25138462094231284,
0.23505198227174773,
0.21727888198854448,
0.19776154692457368,
0.17636632201735525,
0.15321991832691506,
0.12884631839922217,
0.104362551530307,
0.0816148804575217,
0.06278425759300219,
0.04873846556828112,
0.03750257461822119,
0.027015469420504194,
0.01984655362289886,
0.018704560198550164,
0.018309550950104513,
0.016633619879637216,
0.016658250647159964,
0.019252016497214964,
0.020934940273602633,
0.02249745843803495,
0.03144929364299912,
0.05010572004799123,
0.0749369274796634,
0.10282468296568985,
0.13178139164744213,
0.1606252161286186,
0.18865157317308218,
0.21535779557795154,
0.24027480607692356,
0.2629078676425993,
0.2827459620338465,
0.29929448041747553,
0.3121030297501326,
0.32077893845699973,
0.32498865716839986,
0.3244539389705652,
0.31895054420311103,
0.3083169517247061,
0.2924809934017107,
0.27151515140782456,
0.24573957120749784,
0.21591341842206488,
0.1836089276912447,
0.1519720776668225,
0.127039586202648,
0.11787559222358547,
0.12968817430007407
],
[
0.2839033248632592,
0.26845867694601977,
0.25220418920804655,
0.234816903650677,
0.2159895930817435,
0.19549312510266106,
0.17323184243535078,
0.14931516906712058,
0.12419327590036311,
0.09889477689422033,
0.07529456253943166,
0.05595400210230968,
0.04238503965637198,
0.03250944114554653,
0.023446005066601116,
0.01785999713115797,
0.01852219939638489,
0.019079483827204764,
0.017209042379706788,
0.01597069567999785,
0.017675200113432446,
0.019175710825475166,
0.021583754806286232,
0.03200796732083314,
0.05107880020841112,
0.07545389854790463,
0.10252492394780507,
0.13060690164543526,
0.1586979585192588,
0.1861933649946348,
0.21262329809691377,
0.23750041523733964,
0.26028314825226123,
0.2804063597362448,
0.2973282108388018,
0.3105645501845655,
0.31970382200595276,
0.32440739869063345,
0.32440414507333193,
0.3194880716573763,
0.3095271909156528,
0.29449197949673944,
0.2745147289047422,
0.24999922774106967,
0.22181952422975953,
0.1916867467561859,
0.1628105634855691,
0.14077512663154385,
0.13297625775846075,
0.14332204039596722
],
[
0.28609518296359904,
0.26984381333677926,
0.2526232219073631,
0.23418757230377152,
0.21431881580389503,
0.19286902548626383,
0.169791242876179,
0.14518660193026028,
0.11942778462368969,
0.09342326960193988,
0.0690084661512729,
0.04910083065230055,
0.03610719132635954,
0.02803446700980322,
0.02093208249677688,
0.01709630490422893,
0.018849477706870493,
0.019814060455758106,
0.017813689474992456,
0.015724706921267657,
0.0165277144645825,
0.017538477937699352,
0.020497507513633276,
0.03219462285970445,
0.05165785008643347,
0.07562163514753407,
0.10188903538206329,
0.1290806963546934,
0.15640355861078364,
0.18337294121488248,
0.2095564738457089,
0.2344424279610074,
0.25743290971725447,
0.2779007524212508,
0.29525229989858987,
0.3089681183063435,
0.31861836814776573,
0.32386117267706577,
0.32443493104259996,
0.320154507471587,
0.31091989489490307,
0.29674599693301296,
0.277824876879458,
0.2546392039104007,
0.22816116725780616,
0.20019585439961496,
0.1739239895088301,
0.1544161384697338,
0.14773541141479704,
0.1568911001263599
],
[
0.28791660406707525,
0.2708517258586286,
0.2526642240876363,
0.2331834743195425,
0.21228267296245945,
0.1899034752936395,
0.16606172433100394,
0.14086459854312267,
0.11461038776571487,
0.08806108825650023,
0.06293397936046626,
0.042425205997740904,
0.030132374363685415,
0.024430410085336425,
0.01984495035882167,
0.017628668495288217,
0.01953987722636356,
0.020379658988354473,
0.01835515449089866,
0.01599655717863931,
0.01608116501577562,
0.01630870600163247,
0.01940240541867489,
0.03205871330232483,
0.05182727944430304,
0.07539500171897817,
0.10086611777063857,
0.12715590270135343,
0.1537033429059545,
0.18016210428764964,
0.206140078778318,
0.23109314201876444,
0.25435640592396636,
0.2752325365624398,
0.2930718589712571,
0.3073187058244747,
0.3175260376759295,
0.3233508300338444,
0.32454346176366416,
0.3209420050001219,
0.3124803057139363,
0.29921846461915386,
0.2814066509261353,
0.25959928951278205,
0.23484758856054555,
0.20900811490624713,
0.18516437779787406,
0.1678667378878991,
0.16211926294924206,
0.17029314558362613
],
[
0.2893932571034008,
0.2715083133837726,
0.25235157509458617,
0.2318258386598721,
0.2098981016871819,
0.18660945979522928,
0.16205607880627448,
0.1363715920091503,
0.10979187795457584,
0.08291734554654379,
0.05727233821237689,
0.03619970926055134,
0.024791998248909174,
0.02206495570321585,
0.02022245492960484,
0.01913412541315341,
0.02040516613366735,
0.02068074316835238,
0.018762999878597447,
0.016742178127819328,
0.016453952824097975,
0.01573939124404013,
0.018455244231841427,
0.031646928054737095,
0.05158604355919956,
0.07474466936876241,
0.0994151751593064,
0.1247905457775132,
0.15056127062313,
0.17653508026641912,
0.20235988748412725,
0.22744835172746133,
0.2510564119969444,
0.27240825975751454,
0.2907945682287006,
0.305623213251057,
0.31643161019166716,
0.32287799467596856,
0.3247271998106601,
0.3218426140666194,
0.31419326550047344,
0.3018843211094517,
0.28522107378541006,
0.26482100613781195,
0.24179462248486952,
0.2180127446851512,
0.19641573573716264,
0.18105821919704143,
0.1761021189796412,
0.18345453838883413
],
[
0.29055210467075726,
0.2718411845642136,
0.2517117402065388,
0.23013798052775603,
0.2071832754013517,
0.1829990117907441,
0.15778241492102926,
0.13172052623979327,
0.10500926660968565,
0.07808877131428991,
0.052240084809203696,
0.03080150143523691,
0.020581115632052605,
0.021161705536714606,
0.021694400847514006,
0.021130291109743793,
0.021271292524466048,
0.020661932609780016,
0.018989939314984862,
0.017817318511772845,
0.017537916211435637,
0.01592535332816434,
0.017756664435531325,
0.030992385451457195,
0.05094320402539724,
0.07365550765672377,
0.09750516048925549,
0.12194816428188701,
0.1469447543646844,
0.17246948391490735,
0.19820569252996312,
0.2235082242361087,
0.24753988127237636,
0.26943805177643465,
0.2884309294318519,
0.30389060687787667,
0.3153412620399753,
0.3224451293269965,
0.32498400042507597,
0.3228484488129232,
0.31604351296284033,
0.3047185266129351,
0.2892299358148784,
0.27024873668981564,
0.24892575830424885,
0.22711539842903858,
0.2075873267495561,
0.1939404852947193,
0.18966443854053808,
0.19632133999531115
],
[
0.29142141714343106,
0.2718797669483686,
0.2507735247868572,
0.22814575053971542,
0.20415823027789215,
0.17908382427036354,
0.1532443107999815,
0.1269138025807023,
0.10028205094431336,
0.07364934140482389,
0.048046557801214834,
0.026722043607601328,
0.018132293198087155,
0.021610609995503932,
0.023725154121955812,
0.023212938956369604,
0.022014085796611453,
0.02031492885106799,
0.019021404370179615,
0.019052025780151745,
0.01907610868011758,
0.016738954797863387,
0.017310933379628034,
0.03011264661579625,
0.04991709721695997,
0.07212570438240556,
0.09511477844374805,
0.11859810391398717,
0.1428253285156747,
0.1679473027809056,
0.1936723953298954,
0.21927825158682973,
0.24381863192323208,
0.2663360482463808,
0.28599449325889076,
0.30213202646688064,
0.3142626184578653,
0.32205558121881045,
0.3253121908623163,
0.32395183988597903,
0.3180159540138791,
0.30769650609311816,
0.2933964531448834,
0.2758305306281633,
0.2561725871902186,
0.23623667391535946,
0.21860827596908639,
0.20647672246048573,
0.20279163122260077,
0.20885371953507592
],
[
0.2920307765155023,
0.2716554144967087,
0.249568356986533,
0.2258780797643548,
0.20084570477633448,
0.17487623158480986,
0.1484414921058731,
0.12194292199532841,
0.09560937123462117,
0.06963944655007974,
0.04485303688170491,
0.024455787514367656,
0.017845438355106037,
0.022986469773472712,
0.025854654169332407,
0.025117325321686423,
0.02257418612151366,
0.019691548122551555,
0.018889793564013595,
0.02030833267568113,
0.02079574250708094,
0.01791483059462592,
0.017037580126048658,
0.029019500740952445,
0.04853831142535504,
0.07016685027775088,
0.09223225315777468,
0.11471558633330024,
0.1381792182060615,
0.16295594717946557,
0.1887612181886789,
0.21477028231751227,
0.2399100505210158,
0.2631207903372183,
0.2835020474538691,
0.3003608544525798,
0.31320477435548605,
0.3217136041571388,
0.32571063103400805,
0.32514546690258134,
0.32009590035619734,
0.3107945257804209,
0.29768578223773695,
0.2815186234718276,
0.2634748061077424,
0.24531040777637916,
0.22942337348918831,
0.21863996273568487,
0.21547324187207822,
0.22102230778118612
],
[
0.29241106141955314,
0.2712014997318756,
0.24813057997367588,
0.22336760237264391,
0.19727219148186842,
0.17039059858869937,
0.14337112587222142,
0.1167890026357335,
0.09096866983177884,
0.06605717674188895,
0.04272074110294096,
0.024185707833714414,
0.019375812552655157,
0.02477344662834631,
0.02776291867764527,
0.02669299271108397,
0.022958297635105467,
0.01892032753415941,
0.01868589325299454,
0.021499652642686183,
0.02248191780265303,
0.019188241834406088,
0.016833110849522645,
0.027739734776067025,
0.04685591052572805,
0.06780496739179596,
0.08885520538358116,
0.11028164782985693,
0.13298787988349153,
0.1574894369783119,
0.18348107908384229,
0.21000363566761476,
0.23583779496443458,
0.2598155800664453,
0.2809737504074924,
0.2985927371659747,
0.3121782784841761,
0.32142435395283825,
0.3261787530256687,
0.3264224681437423,
0.32226927193526345,
0.3139899999150611,
0.30206539814008065,
0.28726971806493956,
0.2707799244204287,
0.2542819780000476,
0.23998984709397425,
0.23041077756605982,
0.22770235137253916,
0.2328057356191742
],
[
0.29259440411140686,
0.27055347448172884,
0.24649772909518017,
0.2206513273255946,
0.19346918763085,
0.16564514958943471,
0.1380298142049214,
0.11142430114109673,
0.08631633414813226,
0.06285478996776078,
0.04157349563980041,
0.02554465188776256,
0.02186970409655686,
0.026538390834378315,
0.02924372659984151,
0.02786844463548935,
0.023231036869702598,
0.01821761525945603,
0.018557162998377147,
0.02258431737498492,
0.02398889779744041,
0.020370580017086193,
0.01663881869215404,
0.026342602907766174,
0.04494557303165261,
0.06508229885542027,
0.08499075926063257,
0.1052830403139194,
0.12723860533550355,
0.15154982558763685,
0.1778501822612363,
0.20500629712415247,
0.231632471887837,
0.25644876639059416,
0.2784331932702055,
0.2968455486480845,
0.3111950763516496,
0.32119385491678654,
0.3267165778109705,
0.3277765254768591,
0.32452276110920264,
0.31726172826471094,
0.30650534938182133,
0.2930450764697403,
0.2780427872204723,
0.26310672428787135,
0.25027488336005305,
0.2417756705185241,
0.23947510663733315,
0.24418891323363248
],
[
0.29261410994655673,
0.2697488812676019,
0.24471076357290616,
0.21777131809040473,
0.1894746132916481,
0.1606642592343253,
0.13241637309368715,
0.10581480799899522,
0.08159053805533105,
0.059942655110261735,
0.04120498089225555,
0.02783703859415974,
0.02457303985994479,
0.0279706770709732,
0.030168038736187935,
0.028625330508097332,
0.02349779060156598,
0.01787010702743144,
0.01868015585631575,
0.023547345276141968,
0.02522493438949131,
0.021359072758542184,
0.016484933036343477,
0.024967389150004227,
0.04291761631655781,
0.06205965587076461,
0.08065604015399892,
0.09971219686714151,
0.12092531144134144,
0.1451490010673098,
0.17189788744398232,
0.1998161840574318,
0.22733225328185636,
0.2530539322357347,
0.27590737256975223,
0.29513928814650053,
0.3102684081587578,
0.32102893597174903,
0.32732470828916743,
0.32920192353428135,
0.3268439581113812,
0.32059006782667954,
0.310978405605561,
0.2988104679276267,
0.2852249991016868,
0.271748533294963,
0.2602537137691715,
0.25272591539623607,
0.2507903331457447,
0.2551617855225522
],
[
0.2925045301277863,
0.2688272961563432,
0.24281421675187442,
0.214775324869529,
0.18533434245935843,
0.1554812136696471,
0.12653549954018214,
0.09992395111687753,
0.07671616731413788,
0.05720094802061007,
0.041333016963534974,
0.030421156930436045,
0.02701516864795526,
0.028862584102578498,
0.030459619178017247,
0.028982635044900118,
0.023878896396791128,
0.01815626045473892,
0.01920210341800678,
0.024379575873881006,
0.026132044938102412,
0.022117871827234025,
0.016500006248627627,
0.023839596171234972,
0.040922103847412884,
0.05881924497067313,
0.07587936016444101,
0.09356739489765675,
0.11404968968912832,
0.13831106022687295,
0.1656669252640785,
0.19448245169243675,
0.2229833831814873,
0.24966994742594378,
0.27342655488040374,
0.2934959035148726,
0.30941265928195383,
0.3209371359346718,
0.3280042986143133,
0.3306935831504849,
0.3292214388393254,
0.32395704414567705,
0.3154601151467275,
0.3045360123872645,
0.29229430663721057,
0.28017859946994583,
0.26990812377714185,
0.26325668682405357,
0.26164920376973066,
0.2657184023417596
],
[
0.292300879412421,
0.2678301836926323,
0.24085622422246988,
0.2117172976427133,
0.18110375997573513,
0.1501414269309768,
0.12040247429031076,
0.09371746770833896,
0.07161145216733526,
0.05449718277609257,
0.041670308613274046,
0.03286224338340923,
0.02894102663451673,
0.029085605606274486,
0.030083675885033703,
0.0289893135089412,
0.024480324437976642,
0.019218374145112967,
0.020176064472790137,
0.025060910980087767,
0.026668480454859634,
0.02265254480105443,
0.016875798724301772,
0.02325331036598213,
0.03914721310870013,
0.05546811418422138,
0.07070265536077915,
0.08685331774763091,
0.10662298411066637,
0.13107553261333724,
0.15921601972083604,
0.18906677886926104,
0.21864050790806147,
0.24634084781260174,
0.27102401578437935,
0.29193903459770004,
0.3086431624227748,
0.320926578645363,
0.3287570006359623,
0.33224706994589726,
0.33164481716933275,
0.32734640894411005,
0.3199287894926037,
0.3101959522688753,
0.29922397806306245,
0.28837435343725515,
0.2792252783563211,
0.2733663887047479,
0.2720549484895951,
0.2758562027476743
],
[
0.29203899215107204,
0.26680064575640633,
0.2388883862752845,
0.2086576915240953,
0.1768492135670314,
0.14470605315682908,
0.11404912362000032,
0.08716965018499438,
0.06619587177172327,
0.05170665261239648,
0.04197971983833768,
0.03491622306915291,
0.030237606770133502,
0.028578575620666343,
0.029046864179900492,
0.028724811958615964,
0.02537217401018463,
0.02099650274235595,
0.021539683672347334,
0.025552967898512427,
0.026796869630381945,
0.0229872031128781,
0.01778514667833887,
0.023494126152028935,
0.03780622696792094,
0.05214246870959967,
0.06518620825158995,
0.07958235566913414,
0.09866884727255272,
0.12350184676781212,
0.15262294670188337,
0.1836445255232368,
0.21436674338576936,
0.24311549793111917,
0.26873563766635117,
0.2904936733938785,
0.3079759524781177,
0.3210058198290994,
0.32958488910246,
0.3338585797215663,
0.3341047648737712,
0.3307436513994085,
0.32436543033584936,
0.315768378442154,
0.305992204173994,
0.2963185414566667,
0.2881967854326387,
0.2830561205706058,
0.2820125955941149,
0.2855754487884429
],
[
0.2917550125693453,
0.2657830492503675,
0.2369654213481143,
0.2056634607005373,
0.1726491735530787,
0.13925584936901803,
0.10753136511571483,
0.08027153140959548,
0.060399172752007034,
0.04873367568746813,
0.04210466277726984,
0.03648291257810201,
0.030898581485364545,
0.02735042794866573,
0.02740962532594568,
0.02830707333037317,
0.026585442079694856,
0.023299408870035208,
0.023156252454420392,
0.02580378264895325,
0.026479962386177624,
0.023150537820059214,
0.019295606075350427,
0.024722779475192493,
0.03710995495726577,
0.0490127011214407,
0.05941749402816628,
0.07177728979687649,
0.09022808440174399,
0.11567558454573044,
0.14598797618817558,
0.17830558558544052,
0.210233372928609,
0.2400469948272225,
0.26659935529610695,
0.28918574141222675,
0.30742747740732196,
0.32118366883560434,
0.3304903680603959,
0.3355249029811876,
0.33659300282848975,
0.33413597055105,
0.3287536132144916,
0.3212349303994191,
0.3125815342718048,
0.30399843685400635,
0.2968179395758338,
0.2923292429037519,
0.291528738387121,
0.2948787667283207
],
[
0.2914850186183917,
0.264822522753717,
0.23514457185436238,
0.20280762731947538,
0.1685948442243365,
0.13389498426876548,
0.10093874524203662,
0.07304233077880229,
0.05417216072702137,
0.04553380044634626,
0.041982197652441634,
0.03757479303042648,
0.031016741712826944,
0.025501672583637953,
0.025316336330917313,
0.027905728384151965,
0.02812714923116163,
0.02592102223451317,
0.024880710452735467,
0.02576405143131166,
0.025685669923304736,
0.023176232859680373,
0.021357922282114708,
0.026914311144332525,
0.03722830695482738,
0.04628737801309629,
0.05352733826018448,
0.06347671518700818,
0.08136684256443391,
0.10771723508424796,
0.1394374732092252,
0.17315466941892638,
0.20631905337252518,
0.23719177631779775,
0.26465444510947783,
0.28804158913163147,
0.3070142707974854,
0.32146898963677484,
0.3314760615874764,
0.33724337141748373,
0.33910226757217055,
0.3375122161112259,
0.33307933979820936,
0.32658048553900487,
0.31897835415132714,
0.3114051646565291,
0.30508710366777997,
0.3011910155838233,
0.3006113234371517,
0.3037707675894836
],
[
0.2912645829368498,
0.26396431986610974,
0.23348473455386087,
0.20016831283782976,
0.1647898991150171,
0.12875421524379746,
0.0944062993043112,
0.0655470119601027,
0.04750185373740281,
0.042140008648053916,
0.04164906391699029,
0.038302521754734746,
0.03079294760045065,
0.02327554269331277,
0.023053963966705854,
0.027753057711287096,
0.030003374082772864,
0.02871159926915845,
0.026611494721626435,
0.02541304686775269,
0.024403593629862524,
0.02311983930486956,
0.023869452292209842,
0.029910896446615293,
0.03825618758583807,
0.044211062724742914,
0.04771852576468012,
0.05474640457358457,
0.07219140526423562,
0.0997942165546354,
0.13312710906135883,
0.1683106472645179,
0.20270840422602004,
0.23460841003625893,
0.26294066379955394,
0.2870874277024398,
0.3067525943254282,
0.3218704866212559,
0.33254469259169067,
0.3390117895853487,
0.3416262574535262,
0.34086280450306494,
0.3373308689454722,
0.3317928483693639,
0.32517240866439806,
0.3185331223791932,
0.31300519743467387,
0.30964829192799237,
0.3092694576214683,
0.31225772784439365
],
[
0.2911282792978767,
0.2632530568276139,
0.2320453056424593,
0.1978271389159244,
0.16134895902717541,
0.12399243895769076,
0.08812846022574813,
0.05792583227181103,
0.040438537173444596,
0.03869844943000093,
0.041245753111807996,
0.038868635873856756,
0.030549663683643206,
0.02115280076414492,
0.021143025174754866,
0.02813731158930565,
0.03223797863299603,
0.03159992822832975,
0.028319413435307195,
0.024793495470192693,
0.022677868444872077,
0.023088582770957815,
0.026741576117981558,
0.03352347270968202,
0.04020341734537177,
0.043046996509138936,
0.04231300477454284,
0.04570510750843854,
0.06287626378160847,
0.0921364942369879,
0.12724359841031788,
0.1639044954145339,
0.19948987416540237,
0.23235606191090605,
0.26149725409278113,
0.28634870866525197,
0.3066580607084447,
0.3223964817187195,
0.33369895386948645,
0.3408283552349596,
0.3441595626118441,
0.3441796163528631,
0.34149853484396075,
0.3368624472249656,
0.331156368645635,
0.32537948211084217,
0.3205752698063756,
0.31770925616482143,
0.3175132319648061,
0.32034731691929325
],
[
0.29110914804276167,
0.2627318436696429,
0.23088475634172248,
0.19586695063431145,
0.15839443620398752,
0.11979509704748714,
0.08237282437065663,
0.05044718556963894,
0.03315673479688519,
0.03551793091051895,
0.0410160866263736,
0.03955823262971136,
0.030725855156325414,
0.019951627954220775,
0.02038702934910191,
0.029360458591847792,
0.03488012343211387,
0.03459068627627443,
0.030059101596599674,
0.02405576974614837,
0.020667765938378956,
0.023273326122384374,
0.029934827372152167,
0.037601033816741174,
0.043014781527365646,
0.04303728598336036,
0.03781478692102951,
0.03659014495686341,
0.05371957446000156,
0.08505419564047344,
0.12200313332054046,
0.16007536276834705,
0.19675283323108894,
0.23049267474728183,
0.26036184966452497,
0.28584947304688463,
0.30674524981821044,
0.32305469014219734,
0.3349413759155359,
0.3426915718975235,
0.3466975829149228,
0.3474558809897034,
0.3455745589248614,
0.341782043625025,
0.3369254403728104,
0.33194376128589304,
0.327802137915494,
0.3253831957275053,
0.32535356074515337,
0.3280483620310692
],
[
0.2912381389830448,
0.26244134069396957,
0.23005898680332373,
0.19436889160975718,
0.15605148592329637,
0.11636749543011447,
0.07748715241915252,
0.043600503646945864,
0.026117281293579764,
0.03311928897214259,
0.04129110409408971,
0.04071308737474431,
0.03181535464860867,
0.020677682898643114,
0.021626915180803896,
0.031663479174630076,
0.03799996050652831,
0.037751388543038944,
0.03196628785438325,
0.02350502324735758,
0.018754078355154094,
0.023960555657892638,
0.033464588140945786,
0.042052997673468914,
0.04660558734110756,
0.044348416107954515,
0.034938210124983014,
0.027945839505318155,
0.04525248493491289,
0.07895028114307764,
0.11764395533010484,
0.15696439764269773,
0.194583935556608,
0.22907292760360692,
0.25956932564816065,
0.2856116961112099,
0.3070273321800339,
0.3238520024804084,
0.33627419609785014,
0.34460015731035043,
0.34923643775544555,
0.35068605280893117,
0.34955286083615555,
0.3465464575674124,
0.34247701487775783,
0.33822745158317863,
0.33469207979806864,
0.3326803021286365,
0.3328020346425372,
0.3353706434814404
],
[
0.29154355454579933,
0.26241878408526903,
0.22961954138105073,
0.1934089662374825,
0.15444109065249628,
0.11392126291018398,
0.0738857872836305,
0.03822573558616193,
0.02050226381912341,
0.032211715403790676,
0.04244143477038811,
0.042679180609857544,
0.03423303426304288,
0.02388383710036818,
0.025179210944951094,
0.03516234550348011,
0.04167611836730066,
0.04119345975254198,
0.03423886643276423,
0.02361620732221017,
0.017668491361508835,
0.02549282824633884,
0.03738925542812216,
0.046844473693010966,
0.050892395847366254,
0.04703145811753112,
0.034454031363242384,
0.021174664725027593,
0.03842354543988035,
0.07431086875589525,
0.11441044900791005,
0.15470632787148497,
0.19306293397112556,
0.2281460898829656,
0.25915065410067845,
0.28565465760977987,
0.3075157148820069,
0.324794280945509,
0.3376992337434088,
0.3465529511448021,
0.35177287130751583,
0.3538656836702651,
0.35342887257068745,
0.3511523107026638,
0.3478103540479431,
0.34423369718689395,
0.3412525709597027,
0.3396114957985134,
0.33987078690677913,
0.34232471531327385
],
[
0.2920505189638018,
0.2626970341761248,
0.2296118013471167,
0.19305434472275218,
0.15367175996539353,
0.11265362386190618,
0.07199704717246391,
0.0355306141902336,
0.018762467476219513,
0.033468340338632024,
0.04479514896620212,
0.04573550029811468,
0.03818042395418216,
0.02931607334434595,
0.030717899947717755,
0.03984142380385808,
0.04598050757218388,
0.0450491147611434,
0.03710015908257009,
0.024939959815915038,
0.018399305667059117,
0.02816951997403873,
0.04179005990657122,
0.051981530524905895,
0.05580904077557973,
0.05102467899067707,
0.03677769585627648,
0.01927426350065287,
0.03470917339371984,
0.07164547368596377,
0.11252784630505297,
0.1534193971402172,
0.19225828415703827,
0.22775392260893884,
0.2591318327284648,
0.28599436893521674,
0.30821972480802284,
0.3258861772496485,
0.3392177754194967,
0.34854882527115766,
0.3543041564905282,
0.35699129484883246,
0.3571993588559787,
0.3555977883637018,
0.3529263103783886,
0.34996701516101714,
0.3474920572490343,
0.3461882713904981,
0.3465723716553225,
0.3489217474715679
]
]
},
{
"hoverinfo": "text",
"legendgroup": "In-sample",
"marker": {
"color": "black",
"opacity": 0.5,
"symbol": 1
},
"mode": "markers",
"name": "In-sample",
"text": [
"Arm 0_0
accuracy: 0.846667 (SEM: None)
lr: 2.12166e-05
momentum: 0.71107",
"Arm 10_0
accuracy: 0.913667 (SEM: None)
lr: 9.50751e-05
momentum: 0.793502",
"Arm 11_0
accuracy: 0.914167 (SEM: None)
lr: 0.000204881
momentum: 0",
"Arm 12_0
accuracy: 0.822833 (SEM: None)
lr: 0.000187515
momentum: 1",
"Arm 13_0
accuracy: 0.911 (SEM: None)
lr: 0.000218184
momentum: 0.29974",
"Arm 14_0
accuracy: 0.944667 (SEM: None)
lr: 0.000296036
momentum: 0.66083",
"Arm 15_0
accuracy: 0.886833 (SEM: None)
lr: 4.94658e-05
momentum: 0.611278",
"Arm 16_0
accuracy: 0.837333 (SEM: None)
lr: 7.85151e-06
momentum: 1",
"Arm 17_0
accuracy: 0.560333 (SEM: None)
lr: 1.41487e-05
momentum: 0",
"Arm 18_0
accuracy: 0.873667 (SEM: None)
lr: 0.000102356
momentum: 0.493739",
"Arm 1_0
accuracy: 0.876 (SEM: None)
lr: 3.4181e-05
momentum: 0.952158",
"Arm 2_0
accuracy: 0.1015 (SEM: None)
lr: 0.30446
momentum: 0.426471",
"Arm 3_0
accuracy: 0.887167 (SEM: None)
lr: 7.35479e-05
momentum: 0.243055",
"Arm 4_0
accuracy: 0.929 (SEM: None)
lr: 0.000399505
momentum: 0.41368",
"Arm 5_0
accuracy: 0.942333 (SEM: None)
lr: 0.000356096
momentum: 0.825249",
"Arm 6_0
accuracy: 0.923667 (SEM: None)
lr: 0.000159712
momentum: 0.62298",
"Arm 7_0
accuracy: 0.140833 (SEM: None)
lr: 1e-06
momentum: 0",
"Arm 8_0
accuracy: 0.895 (SEM: None)
lr: 0.000514025
momentum: 0",
"Arm 9_0
accuracy: 0.093 (SEM: None)
lr: 0.0012947
momentum: 1"
],
"type": "scatter",
"x": [
2.1216593661487738e-05,
9.507509370777294e-05,
0.0002048805752096778,
0.00018751468608737906,
0.00021818350230074215,
0.0002960358066963144,
4.946577541374152e-05,
7.851512232925204e-06,
1.4148696324398606e-05,
0.00010235644095787485,
3.418102921796241e-05,
0.30446023318884685,
7.354792459527615e-05,
0.0003995053549220097,
0.00035609634739760637,
0.0001597115696593862,
1e-06,
0.0005140245394204121,
0.0012947004881359748
],
"xaxis": "x",
"y": [
0.7110699415206909,
0.7935023594068294,
0.0,
1.0,
0.29973999965159814,
0.6608298878661554,
0.6112784144701972,
1.0,
0.0,
0.49373906051872285,
0.9521583393216133,
0.42647070437669754,
0.2430550940334797,
0.4136803150177002,
0.8252487374153402,
0.622979631164358,
0.0,
0.0,
1.0
],
"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
accuracy: 0.846667 (SEM: None)
lr: 2.12166e-05
momentum: 0.71107",
"Arm 10_0
accuracy: 0.913667 (SEM: None)
lr: 9.50751e-05
momentum: 0.793502",
"Arm 11_0
accuracy: 0.914167 (SEM: None)
lr: 0.000204881
momentum: 0",
"Arm 12_0
accuracy: 0.822833 (SEM: None)
lr: 0.000187515
momentum: 1",
"Arm 13_0
accuracy: 0.911 (SEM: None)
lr: 0.000218184
momentum: 0.29974",
"Arm 14_0
accuracy: 0.944667 (SEM: None)
lr: 0.000296036
momentum: 0.66083",
"Arm 15_0
accuracy: 0.886833 (SEM: None)
lr: 4.94658e-05
momentum: 0.611278",
"Arm 16_0
accuracy: 0.837333 (SEM: None)
lr: 7.85151e-06
momentum: 1",
"Arm 17_0
accuracy: 0.560333 (SEM: None)
lr: 1.41487e-05
momentum: 0",
"Arm 18_0
accuracy: 0.873667 (SEM: None)
lr: 0.000102356
momentum: 0.493739",
"Arm 1_0
accuracy: 0.876 (SEM: None)
lr: 3.4181e-05
momentum: 0.952158",
"Arm 2_0
accuracy: 0.1015 (SEM: None)
lr: 0.30446
momentum: 0.426471",
"Arm 3_0
accuracy: 0.887167 (SEM: None)
lr: 7.35479e-05
momentum: 0.243055",
"Arm 4_0
accuracy: 0.929 (SEM: None)
lr: 0.000399505
momentum: 0.41368",
"Arm 5_0
accuracy: 0.942333 (SEM: None)
lr: 0.000356096
momentum: 0.825249",
"Arm 6_0
accuracy: 0.923667 (SEM: None)
lr: 0.000159712
momentum: 0.62298",
"Arm 7_0
accuracy: 0.140833 (SEM: None)
lr: 1e-06
momentum: 0",
"Arm 8_0
accuracy: 0.895 (SEM: None)
lr: 0.000514025
momentum: 0",
"Arm 9_0
accuracy: 0.093 (SEM: None)
lr: 0.0012947
momentum: 1"
],
"type": "scatter",
"x": [
2.1216593661487738e-05,
9.507509370777294e-05,
0.0002048805752096778,
0.00018751468608737906,
0.00021818350230074215,
0.0002960358066963144,
4.946577541374152e-05,
7.851512232925204e-06,
1.4148696324398606e-05,
0.00010235644095787485,
3.418102921796241e-05,
0.30446023318884685,
7.354792459527615e-05,
0.0003995053549220097,
0.00035609634739760637,
0.0001597115696593862,
1e-06,
0.0005140245394204121,
0.0012947004881359748
],
"xaxis": "x2",
"y": [
0.7110699415206909,
0.7935023594068294,
0.0,
1.0,
0.29973999965159814,
0.6608298878661554,
0.6112784144701972,
1.0,
0.0,
0.49373906051872285,
0.9521583393216133,
0.42647070437669754,
0.2430550940334797,
0.4136803150177002,
0.8252487374153402,
0.622979631164358,
0.0,
0.0,
1.0
],
"yaxis": "y2"
}
],
"layout": {
"annotations": [
{
"font": {
"size": 14
},
"showarrow": false,
"text": "Mean",
"x": 0.25,
"xanchor": "center",
"xref": "paper",
"y": 1,
"yanchor": "bottom",
"yref": "paper"
},
{
"font": {
"size": 14
},
"showarrow": false,
"text": "Standard Error",
"x": 0.8,
"xanchor": "center",
"xref": "paper",
"y": 1,
"yanchor": "bottom",
"yref": "paper"
}
],
"autosize": false,
"height": 450,
"hovermode": "closest",
"legend": {
"orientation": "h",
"x": 0,
"y": -0.25
},
"margin": {
"b": 100,
"l": 35,
"pad": 0,
"r": 35,
"t": 35
},
"template": {
"data": {
"bar": [
{
"error_x": {
"color": "#2a3f5f"
},
"error_y": {
"color": "#2a3f5f"
},
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
},
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "bar"
}
],
"barpolar": [
{
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
},
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "barpolar"
}
],
"carpet": [
{
"aaxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"baxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"type": "carpet"
}
],
"choropleth": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "choropleth"
}
],
"contour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "contour"
}
],
"contourcarpet": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "contourcarpet"
}
],
"heatmap": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "heatmap"
}
],
"heatmapgl": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "heatmapgl"
}
],
"histogram": [
{
"marker": {
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "histogram"
}
],
"histogram2d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "histogram2d"
}
],
"histogram2dcontour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "histogram2dcontour"
}
],
"mesh3d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "mesh3d"
}
],
"parcoords": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "parcoords"
}
],
"pie": [
{
"automargin": true,
"type": "pie"
}
],
"scatter": [
{
"fillpattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
},
"type": "scatter"
}
],
"scatter3d": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter3d"
}
],
"scattercarpet": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattercarpet"
}
],
"scattergeo": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergeo"
}
],
"scattergl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergl"
}
],
"scattermapbox": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattermapbox"
}
],
"scatterpolar": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolar"
}
],
"scatterpolargl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolargl"
}
],
"scatterternary": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterternary"
}
],
"surface": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "surface"
}
],
"table": [
{
"cells": {
"fill": {
"color": "#EBF0F8"
},
"line": {
"color": "white"
}
},
"header": {
"fill": {
"color": "#C8D4E3"
},
"line": {
"color": "white"
}
},
"type": "table"
}
]
},
"layout": {
"annotationdefaults": {
"arrowcolor": "#2a3f5f",
"arrowhead": 0,
"arrowwidth": 1
},
"autotypenumbers": "strict",
"coloraxis": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"colorscale": {
"diverging": [
[
0,
"#8e0152"
],
[
0.1,
"#c51b7d"
],
[
0.2,
"#de77ae"
],
[
0.3,
"#f1b6da"
],
[
0.4,
"#fde0ef"
],
[
0.5,
"#f7f7f7"
],
[
0.6,
"#e6f5d0"
],
[
0.7,
"#b8e186"
],
[
0.8,
"#7fbc41"
],
[
0.9,
"#4d9221"
],
[
1,
"#276419"
]
],
"sequential": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"sequentialminus": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
]
},
"colorway": [
"#636efa",
"#EF553B",
"#00cc96",
"#ab63fa",
"#FFA15A",
"#19d3f3",
"#FF6692",
"#B6E880",
"#FF97FF",
"#FECB52"
],
"font": {
"color": "#2a3f5f"
},
"geo": {
"bgcolor": "white",
"lakecolor": "white",
"landcolor": "#E5ECF6",
"showlakes": true,
"showland": true,
"subunitcolor": "white"
},
"hoverlabel": {
"align": "left"
},
"hovermode": "closest",
"mapbox": {
"style": "light"
},
"paper_bgcolor": "white",
"plot_bgcolor": "#E5ECF6",
"polar": {
"angularaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"radialaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"scene": {
"xaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"yaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"zaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
}
},
"shapedefaults": {
"line": {
"color": "#2a3f5f"
}
},
"ternary": {
"aaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"baxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"caxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"title": {
"x": 0.05
},
"xaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
},
"yaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
}
}
},
"title": {
"text": "accuracy"
},
"width": 950,
"xaxis": {
"anchor": "y",
"autorange": false,
"domain": [
0.05,
0.45
],
"exponentformat": "e",
"range": [
-6.0,
-0.3979400086720376
],
"tickfont": {
"size": 11
},
"tickmode": "auto",
"title": {
"text": "lr"
},
"type": "log"
},
"xaxis2": {
"anchor": "y2",
"autorange": false,
"domain": [
0.6,
1
],
"exponentformat": "e",
"range": [
-6.0,
-0.3979400086720376
],
"tickfont": {
"size": 11
},
"tickmode": "auto",
"title": {
"text": "lr"
},
"type": "log"
},
"yaxis": {
"anchor": "x",
"autorange": false,
"domain": [
0,
1
],
"exponentformat": "e",
"range": [
0.0,
1.0
],
"tickfont": {
"size": 11
},
"tickmode": "auto",
"title": {
"text": "momentum"
},
"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": [
"