{
"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": {},
"outputs": [
{
"data": {
"text/html": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:29:44] 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
},
"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": {
"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": "9436170282dc4ec388222a4ffa3eff67",
"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": "d717b4ced451467db2edcb9e7cefffa5",
"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": "a8d11f4fe10d423fae8422e87c0e87d9",
"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",
"\n",
"Downloading http://yann.lecun.com/exdb/mnist/t10k-labels-idx1-ubyte.gz\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"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": "6061abb16ffe4d949a4e875eb654e5e3",
"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
},
"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": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:29:45] 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 03-10 16:29:45] 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 03-10 16:29:45] 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 03-10 16:29:45] 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 03-10 16:29:45] 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 03-10 16:29:45] ax.service.managed_loop: Started full optimization with 20 steps.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:29:45] ax.service.managed_loop: Running optimization trial 1...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:29:53] ax.service.managed_loop: Running optimization trial 2...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:30:01] ax.service.managed_loop: Running optimization trial 3...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:30:08] ax.service.managed_loop: Running optimization trial 4...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:30:16] ax.service.managed_loop: Running optimization trial 5...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:30:23] ax.service.managed_loop: Running optimization trial 6...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:30:31] ax.service.managed_loop: Running optimization trial 7...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:30:39] ax.service.managed_loop: Running optimization trial 8...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:30:47] ax.service.managed_loop: Running optimization trial 9...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:30:54] ax.service.managed_loop: Running optimization trial 10...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:31:02] ax.service.managed_loop: Running optimization trial 11...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:31:10] ax.service.managed_loop: Running optimization trial 12...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:31:18] ax.service.managed_loop: Running optimization trial 13...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:31:26] ax.service.managed_loop: Running optimization trial 14...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:31:35] ax.service.managed_loop: Running optimization trial 15...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:31:43] ax.service.managed_loop: Running optimization trial 16...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:31:50] ax.service.managed_loop: Running optimization trial 17...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:31:57] ax.service.managed_loop: Running optimization trial 18...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:32:05] ax.service.managed_loop: Running optimization trial 19...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:32:13] 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": {},
"outputs": [
{
"data": {
"text/plain": [
"{'lr': 7.625909949622975e-05, 'momentum': 0.5198810654623373}"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"best_parameters"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"({'accuracy': 0.9238587629688308},\n",
" {'accuracy': {'accuracy': 0.01026662734013858}})"
]
},
"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": {},
"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.24583497333827287,
0.26462943230938024,
0.2880301814567907,
0.3156814292845348,
0.3470888924003804,
0.38168416777593184,
0.41886360524591804,
0.458008852486588,
0.49849464982739106,
0.5396883023685053,
0.5809444466172524,
0.6215981683872821,
0.6609591488385032,
0.6983092750137845,
0.732906037514066,
0.7639940576346784,
0.790827259362189,
0.812704588070871,
0.829022922253126,
0.8393486069680796,
0.8434618206356044,
0.8413304995773409,
0.8330824850220989,
0.8189986948290449,
0.7995256584525207,
0.7753039513978739,
0.7471590146530903,
0.7160195467260615,
0.6828353262211255,
0.6485139091701606,
0.613874724152174,
0.5796199227744991,
0.5463207756356967,
0.5144171412004361,
0.4842267162979722,
0.4559606681971197,
0.42974262725321466,
0.40562861453103777,
0.3836261041618093,
0.3637109742484032,
0.34584154331716055,
0.3299692230547835,
0.3160455695203412,
0.3040257256644132,
0.2938684632039179,
0.28553328777192644,
0.27897537595351835,
0.27413942586909684,
0.2709537268832601,
0.2693257607224965
],
[
0.249820528059307,
0.26892133078632513,
0.29263767738032176,
0.32061657078338107,
0.35236533604684067,
0.38731595890299625,
0.42486385045007846,
0.4643881989991906,
0.5052595042238249,
0.5468387553425083,
0.5884719233639119,
0.6294828921526118,
0.6691675789941999,
0.7067917490506608,
0.7415949007802884,
0.7728026017284547,
0.7996497998559275,
0.8214179717273609,
0.8374896317285421,
0.8474202700804253,
0.8509827593229975,
0.8481452212040542,
0.8390449212809109,
0.8239820017736563,
0.8034314764313361,
0.7780684243969409,
0.7487547582114277,
0.7164567915025325,
0.682160069957254,
0.6468028326242211,
0.6112275763828436,
0.5761506668876264,
0.5421488897827168,
0.5096601153118855,
0.47899430529081255,
0.4503510637808502,
0.42384044500930873,
0.3995044463680589,
0.3773373262276877,
0.3573034937251366,
0.33935218616017265,
0.32342848778575095,
0.30948048661907657,
0.2974625634415868,
0.2873350146186172,
0.27906047490486374,
0.27259794553173916,
0.267895606310981,
0.26488388236448274,
0.2634702803065977
],
[
0.2545265056318724,
0.2739159748911642,
0.2979116086437991,
0.3261686172775876,
0.3582002008765286,
0.39344183977300945,
0.43129020286621383,
0.471123519246505,
0.5123090163574394,
0.5542019292072459,
0.5961398161683175,
0.6374353894918513,
0.6773707008331032,
0.7151952675032545,
0.7501305809557508,
0.7813834243033153,
0.8081705468661976,
0.8297575114733865,
0.8455148287701946,
0.8549881863492852,
0.8579412408509477,
0.8543406899971592,
0.8443335357724626,
0.8282416115630526,
0.8065726859029411,
0.7800395225998061,
0.7495405892431701,
0.71607943607684,
0.6806772413600392,
0.6443026053888559,
0.6078202321852364,
0.5719592330677258,
0.5372999901518032,
0.5042762521700785,
0.47318811591687876,
0.44422165802537217,
0.41747165919803175,
0.39296471112598363,
0.3706808006043167,
0.3505721267360245,
0.3325783984651328,
0.3166381980978946,
0.3026962254895021,
0.29070641605930064,
0.2806311194955462,
0.2724367950806959,
0.26608705448465003,
0.2615343272219273,
0.25871180275747657,
0.2575274026515929
],
[
0.2599330385994504,
0.2795948052196686,
0.30383578089788843,
0.3323235920601402,
0.3645813659896548,
0.4000511725223314,
0.4381331695719987,
0.4782061751278246,
0.5196351659374442,
0.5617702394860907,
0.6039408486935445,
0.6454486160191186,
0.6855616737965865,
0.7235132113063261,
0.7585067420759068,
0.7897305705150697,
0.8163840297652943,
0.8377181865329901,
0.8530931336448109,
0.8620451512663512,
0.8643278502127673,
0.8599054015564339,
0.8489349548282823,
0.8317624431169688,
0.8089320009247052,
0.7811970027551569,
0.7494939396443376,
0.7148638410298258,
0.6783635048652796,
0.6409914781926805,
0.6036335663402042,
0.567029839514689,
0.5317620417920776,
0.4982573984661298,
0.4668038074518919,
0.43757171512330145,
0.41063884879860973,
0.3860149725863768,
0.36366473421368595,
0.34352738523869847,
0.3255326679696519,
0.3096124963759133,
0.29570826783452286,
0.28377379545751613,
0.27377402357420466,
0.2656799567008781,
0.25946064281169884,
0.25507357800578173,
0.2524553886333172,
0.2515148257599623
],
[
0.2660107386694616,
0.2859298288712692,
0.31038535260879746,
0.33906005009878226,
0.37149046731678376,
0.4071282286973319,
0.4453792181035741,
0.4856244423860491,
0.5272277188535978,
0.5695347009745931,
0.6118671213693041,
0.6535156696762283,
0.6937345759210696,
0.7317406877322319,
0.7667196295603477,
0.7978415677647939,
0.8242891496599072,
0.8453000346544844,
0.8602246598318078,
0.8685899299480271,
0.8701393304178917,
0.8648341078430553,
0.8528421351934405,
0.8345356183194281,
0.8104980144614186,
0.7815262395484275,
0.7485973738004057,
0.7127910290027218,
0.6751998508078154,
0.6368518196597164,
0.5986524379167102,
0.5613505784220444,
0.5255267647836119,
0.4915990139409129,
0.4598404855865088,
0.43040376089217103,
0.4033476622690956,
0.3786636765691443,
0.35630004435338236,
0.33618234418803045,
0.31822992719240867,
0.3023678813216946,
0.28853438906199586,
0.27668346262825716,
0.26678318458054834,
0.2588098403367138,
0.25273877249691434,
0.24853340585078698,
0.24613451915462126,
0.24545213096964114
],
[
0.27272299049474713,
0.292885755529519,
0.31752838233146446,
0.34635011113285025,
0.37890358520694883,
0.4146526490348256,
0.4530110811203158,
0.4933637041871562,
0.5350743356652775,
0.5774849650625637,
0.619910082324004,
0.6616296915631179,
0.7018842210046771,
0.7398742370747374,
0.7747676205690189,
0.8057167467833002,
0.8318881729028959,
0.8525068037306616,
0.8669135590194142,
0.8746258483505639,
0.8753773759058804,
0.8691266884219113,
0.856053143740872,
0.836557112632319,
0.8112639383469467,
0.7810172188250851,
0.7468379973295941,
0.7098464302567882,
0.6711715800272979,
0.6318702584045927,
0.5928659224820416,
0.5549136877845091,
0.5185899106746507,
0.48430042962645303,
0.45230092879925277,
0.4227237704786353,
0.3956069648554476,
0.37092225975268556,
0.3486004334487011,
0.3285526883245139,
0.31068757941310965,
0.29492322075595867,
0.28119466533309884,
0.26945643525682805,
0.25968028476827554,
0.2518485177714683,
0.24594365203410834,
0.2419359429914978,
0.23977107862923863,
0.23936080510080715
],
[
0.2800278725368453,
0.3004218924711179,
0.3252274293195455,
0.354160644330648,
0.38679208074734045,
0.422600022663412,
0.46100814878904206,
0.501406704199467,
0.5431607152584185,
0.5856093707354494,
0.6280604920640769,
0.6697837409250059,
0.7100059296675246,
0.747911472055329,
0.7826506880942979,
0.8133584747805058,
0.8391856985254589,
0.8593447345963522,
0.8731667272365179,
0.880159427074639,
0.880047312984657,
0.8727868798809852,
0.8585698863213809,
0.8378265528256821,
0.8112265523580107,
0.7796636453373093,
0.7442068604358899,
0.7060196006067531,
0.6662682726726754,
0.6260378193922945,
0.5862675411264897,
0.5477158184737063,
0.5109515309088953,
0.47636509418123407,
0.4441917989348577,
0.4145413367519706,
0.38742896359711254,
0.362805233711784,
0.3405824369694055,
0.32065673042086523,
0.30292549475450903,
0.28729973363940914,
0.2737114496383707,
0.2621159650887555,
0.25248921477756975,
0.2448202445247588,
0.23909963661561684,
0.23530541134708027,
0.23338896148706634,
0.23326424139162294
],
[
0.2878797532140656,
0.30849374116403216,
0.3334410277542125,
0.36245446294481737,
0.3951234924330868,
0.43094253270547256,
0.46934691700038333,
0.509733840071127,
0.5514707628348187,
0.5938950044780051,
0.6363083825735629,
0.6779706512882486,
0.718095270327155,
0.7558506803668825,
0.7903698323903863,
0.8207703868576499,
0.8461877025330506,
0.8658215001570739,
0.878992669773263,
0.8851991445520457,
0.8841568198522141,
0.8758210195568179,
0.8603969229711363,
0.8383461921476367,
0.8103853597693189,
0.7774622474475896,
0.7406984731000543,
0.7013039988048609,
0.6604837962513515,
0.6193500844557366,
0.5788555005599824,
0.5397583022863082,
0.502616238312799,
0.46780080686432535,
0.4355238332290894,
0.4058698160664473,
0.3788293065797283,
0.3543302407992002,
0.33226544124285334,
0.31251539772871895,
0.29496597294911564,
0.2795209375578253,
0.2661093126969059,
0.2546874803974168,
0.24523602394796212,
0.23775142100525937,
0.23223319930306158,
0.22866810003635574,
0.22701405128742053,
0.22718771485395717
],
[
0.2962306049433062,
0.3170543158842512,
0.34212496373040907,
0.37119143538192156,
0.4038624197410047,
0.4396496183691503,
0.47800145908461,
0.5183234770067062,
0.5599867703236623,
0.6023277635579997,
0.644643011035128,
0.6861828742901646,
0.7261477850667841,
0.7636904174401428,
0.7979265227906014,
0.8279566713350961,
0.852900699686499,
0.8719452994242227,
0.8844005258539123,
0.8897543605936638,
0.8877147750785143,
0.8782369045709943,
0.8615404338999834,
0.8381200679177261,
0.8087419462514384,
0.7744123037802902,
0.736310501207234,
0.6956968923106847,
0.6538163994966918,
0.6118074004231134,
0.5706329544787203,
0.5310474242998018,
0.4935934612366776,
0.4586199346940715,
0.4263120143362832,
0.3967264476427813,
0.36982715278052913,
0.34551807848432803,
0.32367166803316105,
0.3041521836001011,
0.2868336696277399,
0.27161255810172263,
0.25841494449799335,
0.24719848872318134,
0.23794883179296944,
0.23067051686198214,
0.22537286787106947,
0.22205231063619923,
0.22067416872651524,
0.22115832703212712
],
[
0.3050310737402521,
0.32605521690677014,
0.35123334134656714,
0.3803294626608173,
0.412971341137375,
0.4486886120135684,
0.486943891556758,
0.5271522618108455,
0.5686895971682812,
0.6108924167113396,
0.6530528076007919,
0.6944123162624659,
0.7341587121985095,
0.7714291096345984,
0.8053221786476431,
0.8349214383394115,
0.8593310338715565,
0.8777241022724221,
0.8893992546851921,
0.8938344136373441,
0.8907302787272873,
0.8800428194275178,
0.8620073618599831,
0.8371533384825901,
0.8062995328232248,
0.7705153975515119,
0.7310436835141971,
0.6891994406532387,
0.6462689202157264,
0.6034151457146767,
0.5616082898209498,
0.5215946994190874,
0.4838976879143544,
0.4488396100283039,
0.4165757140666896,
0.38713244232501937,
0.3604452086544218,
0.3363926888106192,
0.3148261229979015,
0.295593061632161,
0.27855548339364955,
0.2636023969462732,
0.25065701250456207,
0.23967843497305957,
0.2306576949524144,
0.22360795248819892,
0.2185491213092603,
0.215488264330154,
0.21439898288878761,
0.2152049144100347
],
[
0.31423133768078165,
0.3354474902719805,
0.36071944870651496,
0.38982530282769445,
0.4224113343613054,
0.4580253203298792,
0.49614480940276995,
0.5361954198584157,
0.5775588401046001,
0.6195726560932197,
0.6615253157091291,
0.7026501704696385,
0.7421227128563074,
0.7790646794472916,
0.8125577036519698,
0.8416681825352357,
0.8654842958145491,
0.8831650401816251,
0.8939969826965961,
0.8974478961567505,
0.8932118635333377,
0.8812467537753254,
0.8618047372062311,
0.8354517905560863,
0.8030627021057285,
0.7657753819662382,
0.7249019946442204,
0.6818169823169873,
0.637849104101802,
0.5941840500548987,
0.5517954341484819,
0.5114171491799411,
0.47354869629774826,
0.4384819032961963,
0.406338805583098,
0.37711303594650103,
0.35070972744454687,
0.32698110976325184,
0.3057565054979216,
0.2868663602202706,
0.2701604015772405,
0.25552015605091605,
0.24286597298155188,
0.23215851008212246,
0.22339442363528256,
0.21659593099162355,
0.21179423917689244,
0.20900796427633195,
0.20821987915990847,
0.2093579138726122
],
[
0.3237817836865916,
0.345182303295862,
0.37053644346486253,
0.3996352413431605,
0.4321426831760001,
0.4676245293632949,
0.5055736723274508,
0.5454270204288212,
0.5865729818052854,
0.6283511344920271,
0.670047122526613,
0.7108867455184067,
0.7500336041177442,
0.7865941955329538,
0.8196330743648773,
0.8481993378423562,
0.8713648613767458,
0.8882739368215082,
0.8982005069741552,
0.9006021055384362,
0.8951668990635203,
0.8818558151229134,
0.860939183970822,
0.8330215060442614,
0.7990372672821525,
0.760198494338384,
0.7178930355127573,
0.6735594795588877,
0.6285699908500579,
0.5841305481547328,
0.5412141744822709,
0.5005375714377291,
0.46257176229467845,
0.42757396401784076,
0.3956297378029143,
0.36669750202997753,
0.34065046710118013,
0.3173133855710498,
0.2964930777379658,
0.2780025961208345,
0.26167930343000356,
0.2473972163022214,
0.2350738326818433,
0.22467140584525203,
0.2161923414360702,
0.20966821331501212,
0.2051420961241095,
0.2026450055942371,
0.20216977627953409,
0.20364917767288698
],
[
0.33363352872523194,
0.3552114619438503,
0.3806378797477454,
0.4097156163944475,
0.4421253664711424,
0.47745042224929374,
0.5151991292831358,
0.5548201991977199,
0.5957095098893881,
0.6372094821954901,
0.6786037763473154,
0.7191112882753375,
0.7578840968099432,
0.7940135426289759,
0.8265469716010119,
0.8545159088711413,
0.8769755402435901,
0.893054968155037,
0.9020149403314722,
0.9033026610543233,
0.8966011851722023,
0.8818758352943493,
0.8594166050883774,
0.8298686826174761,
0.7942302588981397,
0.7537935239022431,
0.7100283910773539,
0.6644419241190196,
0.6184503045995366,
0.5732771447252794,
0.5298904751873473,
0.48898479293287633,
0.4509978371373011,
0.41614812164933723,
0.3844815647653547,
0.35591911810114263,
0.33030060269158545,
0.3074224333229354,
0.28706849186676237,
0.26903426652925744,
0.253144720631703,
0.23926637016547386,
0.2273138593113983,
0.21725101236729027,
0.209085982586388,
0.20285982864371616,
0.198627892926991,
0.19643432431395108,
0.19628288394268073,
0.19811172927143295
],
[
0.34373880855843275,
0.3654877933689188,
0.39097809786715726,
0.42002321285305766,
0.45231943326227225,
0.4874669057452325,
0.5249892738959268,
0.5643473300132013,
0.6049449995839464,
0.6461282985093164,
0.6871796873409526,
0.7273117979963493,
0.765665532985833,
0.8013171011137195,
0.8332964336808605,
0.8606171445566558,
0.8823173133481828,
0.8975104221839318,
0.9054434687632122,
0.9055532719728115,
0.8975187294806608,
0.8813111705301615,
0.857242050333817,
0.8259996145825208,
0.7886500332200295,
0.7465720108602235,
0.7013238000430896,
0.6544846113712868,
0.6075148242983076,
0.5616527770946502,
0.5178567826767555,
0.47679389273146366,
0.43886368252089863,
0.4042419362351636,
0.3729319218148535,
0.34481507956574087,
0.3196965893184287,
0.2973438637783329,
0.2775175744685096,
0.25999560026558644,
0.24459055635247928,
0.23116150952274817,
0.21962024090029714,
0.20993205602857956,
0.20211072140296005,
0.19620671190782912,
0.19228781435207903,
0.19041187543157673,
0.19059439114256088,
0.19277945018491643
],
[
0.3540512545858375,
0.3759654144127351,
0.4015124969011361,
0.43051554048862656,
0.46268527180892427,
0.4976378469583015,
0.5349118278420648,
0.5739801411391948,
0.6142551551068318,
0.6550871137029316,
0.695758007956558,
0.7354748274723453,
0.7733676164311183,
0.8084974238576004,
0.8398765073659856,
0.8665002025222509,
0.8873890622416943,
0.9016404742797242,
0.9084871808540729,
0.9073556386713788,
0.8979217048081675,
0.88016470052423,
0.8544197793016071,
0.8214208558649718,
0.7823065419506778,
0.7385485728910368,
0.6917994641059693,
0.6437134763928984,
0.5957947687902899,
0.54929317364774,
0.5051523052897834,
0.46400638251685267,
0.42621195004218354,
0.3918981873629812,
0.3610229396877143,
0.3334263549491489,
0.30887797187592747,
0.287115754909115,
0.26787706882732654,
0.25092226990859307,
0.23605176570816327,
0.22311727186136404,
0.21202769650866438,
0.2027496781327366,
0.19530233023194737,
0.1897452603344415,
0.18615860313430732,
0.18461422885491863,
0.18514007406519595,
0.18768668658956322
],
[
0.3645260770696328,
0.3865999046823752,
0.4121977086276538,
0.4411510124529637,
0.4731837837490326,
0.5079272254356253,
0.5449342527879005,
0.5836897738140596,
0.6236148065083722,
0.6640643180318697,
0.70432048956315,
0.7435852668444038,
0.7809781294331941,
0.8155448992378703,
0.846279878148432,
0.8721597691302204,
0.8921871908235666,
0.9054429073132373,
0.9111449355028609,
0.908709467245457,
0.8978105835964134,
0.8784380392020389,
0.8509535416971699,
0.8161395995899169,
0.7752118227853669,
0.7297414689089984,
0.6814806257924909,
0.6321606110166811,
0.5833282389708359,
0.5362412081794135,
0.4918232546090996,
0.4506703268780261,
0.4130911891941126,
0.379164788544666,
0.34880108705351814,
0.3217974763954372,
0.29788713850412646,
0.27677837753997575,
0.2581853364251432,
0.2418510680860823,
0.22756400221489104,
0.2151686502920941,
0.20457104363072276,
0.195738957713117,
0.18869646502000792,
0.1835118021048356,
0.18027703848736643,
0.17907807048822083,
0.17995581077518358,
0.18286776286308976
],
[
0.37512017104636375,
0.3973484009150454,
0.4229916897563315,
0.45188903975115524,
0.4837764755939573,
0.5182992084172183,
0.5550237943449042,
0.5934467832627572,
0.6329978602118879,
0.6730370553951384,
0.7128473124783339,
0.75162610621233,
0.7884826299851074,
0.8224473923173432,
0.8524964721679842,
0.8775876404784938,
0.8967052171312542,
0.9089128120620092,
0.9134132514668178,
0.9096125737475209,
0.897184443330792,
0.8761319777266774,
0.8468471067376581,
0.8101643160248245,
0.7673807686033319,
0.7201734533309486,
0.6703983946912139,
0.6198649457254024,
0.5701607196034154,
0.5225472381556833,
0.47792302825908484,
0.43684038272662096,
0.3995557657394301,
0.3660946129990867,
0.3363169318700725,
0.3099762597542167,
0.28676901539735594,
0.2663738734615507,
0.24848202031319927,
0.23281955255130266,
0.21916323669097781,
0.20735057540939528,
0.19728473116950707,
0.18893438648622135,
0.18232808234460546,
0.17754197306495395,
0.17467930728281195,
0.17383959399165289,
0.1750769881480866,
0.17835638752295058
],
[
0.38579215949411017,
0.40816962769080034,
0.4338537479988941,
0.4626900568418266,
0.4944254806877725,
0.5287181589654724,
0.5651474638519098,
0.6032210843467791,
0.6423772028477391,
0.6819810800651644,
0.7213168873051162,
0.7595781740564709,
0.7958641250487836,
0.8291898593597438,
0.858513029168704,
0.8827722807777219,
0.9009333711617746,
0.9120422923039427,
0.9152862048623871,
0.9100610431359909,
0.8960414275837179,
0.8732471840309537,
0.8421050815724129,
0.8035056934982804,
0.7588322212040746,
0.7098729241855481,
0.6585907692454517,
0.6068730316563914,
0.5563455994593172,
0.5082693950284161,
0.4635123048281089,
0.4225777320726045,
0.38566566991545476,
0.35274521608672926,
0.3236248122126513,
0.29801344944405533,
0.2755707017275156,
0.2559458875769406,
0.23880767423834098,
0.2238656660690176,
0.2108853568325661,
0.19969747956186812,
0.19020235073591601,
0.18236930964331832,
0.17623079891769045,
0.17187000352695253,
0.16940025735597947,
0.1689337669058602,
0.1705377844807227,
0.17418493520728534
],
[
0.3965023867858333,
0.41902387810513064,
0.4447445162739396,
0.4735154928639046,
0.5050935251514317,
0.53914858821192,
0.575271965966718,
0.6129818460767724,
0.6517245592939257,
0.6908705757302791,
0.7297056263593467,
0.7674198496362987,
0.8031027170821313,
0.8357539331394577,
0.8643126471169331,
0.8876983602583671,
0.9048581765979018,
0.9148201486730272,
0.9167553048022211,
0.9100494069694203,
0.894379332827117,
0.8697851702028065,
0.8367340643568059,
0.7961779280518799,
0.749590419545326,
0.698875320533705,
0.6461037617660057,
0.5932398278226634,
0.5419446369246739,
0.49347377506138745,
0.4486590113696237,
0.40794987746952266,
0.3714861920775357,
0.33917843963950134,
0.3107824082217578,
0.28596228467329654,
0.26434104489601146,
0.24553915700036177,
0.22920336265959046,
0.21502733840295496,
0.2027657572347229,
0.19224285640137656,
0.1833561428816679,
0.17607535271192848,
0.17043621458101488,
0.16652792853287862,
0.16447252780213772,
0.16439345310353354,
0.16637030891573945,
0.1703835868035432
],
[
0.4072128740841123,
0.4298729567236066,
0.45562588823002836,
0.4843277023514048,
0.5157438515949075,
0.5495550643367301,
0.5853635823074899,
0.6226973416001658,
0.6610103073873288,
0.6996779368111832,
0.737987684820251,
0.7751267488087376,
0.8101752227353024,
0.8421174785248663,
0.8698742986088569,
0.8923462656607716,
0.9084619921269398,
0.9172315005062579,
0.9178092906395892,
0.909570773581881,
0.8921962279867365,
0.8657494798680302,
0.8307441778671167,
0.7882004093780657,
0.7396867980467783,
0.6872246478896242,
0.6329924801005649,
0.5790293696979045,
0.5270282776585219,
0.478234464184762,
0.4334381153891849,
0.3930302656430038,
0.3570874426909784,
0.32545988451024843,
0.29785020868582474,
0.2738779856207248,
0.2531301581577485,
0.23519906153932563,
0.2197102380043231,
0.20634207873833038,
0.19483893075708336,
0.18501883028275545,
0.1767765181039762,
0.17008186122163943,
0.16497323213761395,
0.1615447537304895,
0.15992556627994448,
0.16024837313645335,
0.16260357621746707,
0.16697931016484568
],
[
0.4178872470819096,
0.44068009596294394,
0.4664609272469059,
0.4950898686687818,
0.5263401145487615,
0.5599020922252846,
0.5953880239406212,
0.6323347634598041,
0.6702032541015326,
0.7083735127711759,
0.7461346719682634,
0.7826713840685113,
0.8170547648027275,
0.8482541212489922,
0.8751723216084774,
0.8966915781548426,
0.9117224941664502,
0.9192573050228439,
0.9184337712834756,
0.9086167503942886,
0.8894908885765758,
0.8611468999062463,
0.8241509983586246,
0.7795998541944544,
0.7291620141377884,
0.674974882592531,
0.6193219597460151,
0.5643151724598614,
0.5116757196096546,
0.46263332185477485,
0.4179311880384339,
0.3778977032580627,
0.34254369472269,
0.31165824023702277,
0.28489086873804764,
0.26181716090634893,
0.24198888487345355,
0.22497114162899728,
0.21036910263172437,
0.19784656759780173,
0.18713807267286842,
0.1780557508414768,
0.170491614316317,
0.16441538490835905,
0.15986741988693343,
0.1569456355717449,
0.15578457905420418,
0.15652389147867896,
0.15926229249475898,
0.1639946738969062
],
[
0.4284906453349717,
0.4514098559320652,
0.4772137600807197,
0.5057658927244568,
0.5368462615974618,
0.5701539789852594,
0.6053102684107666,
0.6418600183575802,
0.6792703821161448,
0.7169253174223137,
0.7541153333658192,
0.7900228009881493,
0.8237103419098704,
0.8541327597516482,
0.8801758944734185,
0.9007045218968522,
0.9146120934917488,
0.9208737435921057,
0.9186106312685709,
0.9071770026535797,
0.88626276023321,
0.8559882459282544,
0.8169776249370759,
0.7704128974852538,
0.7180677297366471,
0.6621908486626576,
0.6051674996057059,
0.5491802148161155,
0.4959746194288092,
0.446759447045054,
0.40222568437858125,
0.3626355304208198,
0.3279325301453059,
0.2978444651585476,
0.27196845936089,
0.24983714114995553,
0.23096821621698577,
0.21490059150299018,
0.20121996394108788,
0.18957625764921887,
0.1796947088714202,
0.17138182760243176,
0.1645269122418696,
0.15909923984222352,
0.15514047124404018,
0.15275116318343251,
0.15206952731728562,
0.15323966976126002,
0.15636542414310217,
0.16144654330490205
],
[
0.4389896213354554,
0.4620280166829145,
0.4878494652968125,
0.516320278718893,
0.5472264139688271,
0.5802747014495367,
0.6150944000022731,
0.6512375215467665,
0.6881765832362434,
0.7252987086605327,
0.7618952049502145,
0.797146194477359,
0.830106386605521,
0.8597170829153535,
0.8848485181890489,
0.9043493984978163,
0.917097293214592,
0.9220514659607169,
0.9183171621430084,
0.9052383515161054,
0.8825111956420997,
0.8502880579231584,
0.8092555367156737,
0.7606878968257196,
0.7064670800438176,
0.6489480865405449,
0.5906142666204801,
0.5337163651837713,
0.480020343611876,
0.4307082539363381,
0.3864138905278512,
0.3473305231665754,
0.31333377906739185,
0.28409081693381566,
0.25914761493558053,
0.23799524758747181,
0.22011867202246205,
0.20503173711301403,
0.1923015918361738,
0.18156499272685617,
0.1725383584683774,
0.16502281764689491,
0.1589049273983385,
0.1541531785493564,
0.15080981492181267,
0.14897684463898553,
0.14879436774585264,
0.15040843782917956,
0.1539245743748192,
0.15934491669324025
],
[
0.44935203642140087,
0.4725014707326484,
0.4983339655329182,
0.5267180276717041,
0.5574447596846841,
0.5902277920870463,
0.6247034743581283,
0.6604300177256662,
0.6968844077483028,
0.7334560544761073,
0.7694362397827647,
0.8040025091590469,
0.8362023359995053,
0.8649651377296338,
0.8891475471941639,
0.9075840370461499,
0.9191380130751277,
0.9227547120886803,
0.9175249293367329,
0.9027833988957102,
0.8782338556395409,
0.844062750846266,
0.801022320924118,
0.7504823636611452,
0.6944328296290834,
0.6353313913608041,
0.5757560163534299,
0.5180231509862177,
0.4639146858066676,
0.4145800946522859,
0.370591496641648,
0.33207150664238433,
0.298828250459739,
0.270469742369838,
0.24649259189374817,
0.22634800946465594,
0.20948965747756465,
0.19540750996208522,
0.18365108829275523,
0.1738446539038,
0.16569623957698404,
0.15900177629262402,
0.15364499205906512,
0.14959318939399247,
0.14688841510703754,
0.14563288286649645,
0.14596675460491626,
0.14803549297182483,
0.1519431370058193,
0.15769246998961994
],
[
0.45954695958869207,
0.48279812260703614,
0.5086339314237591,
0.5369245481860515,
0.5674654711560189,
0.5999762589908659,
0.6340994294338219,
0.6693984609021373,
0.7053538759326068,
0.7413564295481749,
0.7766964108206523,
0.8105480298379386,
0.8419522715114172,
0.869829019880406,
0.8930238332077474,
0.9103593064919404,
0.920686922186571,
0.9229403626154293,
0.9161984473777197,
0.8997887803545414,
0.8734244037135577,
0.8373274429647857,
0.7923170403340613,
0.7398575639726233,
0.6820435125596711,
0.6214320543828594,
0.5606929022906134,
0.5022058229573784,
0.4477639940059065,
0.39847838038293615,
0.35485576970255656,
0.316947676808514,
0.28449626790460364,
0.25705264667817657,
0.23406625938928616,
0.21495034901179755,
0.19912881136897942,
0.18606892948083348,
0.17530347903883015,
0.16644484061017573,
0.15919302487098697,
0.15333887677122937,
0.1487631334726962,
0.14543143341786458,
0.1433847753567915,
0.14272427084362882,
0.14358828854259797,
0.14611927554063198,
0.15041735818217328,
0.15648511972358492
],
[
0.4695445742658331,
0.49288680101479543,
0.5187167036881069,
0.5469055923277407,
0.5772526572330533,
0.6094825535019279,
0.643243062926209,
0.6781019866897653,
0.7135424122449376,
0.7489554424206617,
0.7836293450181673,
0.8167340089896085,
0.8473047493094484,
0.8742547874852916,
0.8964215706859098,
0.9126187636166815,
0.9216888362892237,
0.9225569985238862,
0.9142938100349282,
0.8962232620571144,
0.8680698353392198,
0.8300921988045535,
0.7831752923118647,
0.7288732306244721,
0.6693786732992123,
0.6073441269874981,
0.5455284557830125,
0.48637271160452816,
0.4316766718932225,
0.38250717018075725,
0.3393033225939671,
0.30204665120155266,
0.270416042280959,
0.24390857536042454,
0.22192905134849533,
0.20385475785284002,
0.1890813643180867,
0.1770546077208775,
0.1672913373139564,
0.15939259366709713,
0.1530506511589611,
0.14805130054683024,
0.14427204688466722,
0.14167631233329092,
0.14030313018458174,
0.1402511653832268,
0.1416551900212223,
0.14465253506385867,
0.14933783772899178,
0.15571316902351517
],
[
0.4793160971304459,
0.5027371881046805,
0.5285502384532111,
0.5566272226596833,
0.5867703572441075,
0.618708595523167,
0.6520940912047906,
0.6864980035584136,
0.721404959055215,
0.756205337615631,
0.7901843110576394,
0.8225066702671406,
0.8522030016723766,
0.8781827022226334,
0.8992784491819636,
0.9142985610619812,
0.922080255585346,
0.9215440901784879,
0.9117575131782785,
0.8920459819512747,
0.8621478750985841,
0.8223584035745312,
0.7736247631025056,
0.7175827137572465,
0.6565139289258564,
0.5931600595986168,
0.5303658624840275,
0.47063189667002037,
0.41576003315725907,
0.3667682210070841,
0.3240275087561887,
0.28745229939454914,
0.256661935272047,
0.23110285601221803,
0.21013791755703293,
0.19311049322655505,
0.1793895276151115,
0.16840029081662344,
0.15964444929647192,
0.15271216578934121,
0.14728818475303973,
0.14315319580121044,
0.14018115488003535,
0.13833264883463092,
0.13764378444611458,
0.13820945002487983,
0.1401591751581599,
0.1436235354235279,
0.14869081166155385,
0.15536251498649323
],
[
0.488833712100722,
0.5123197691054902,
0.5381030794184335,
0.5660558144782873,
0.5959825816701398,
0.6276158620377194,
0.6606112969024018,
0.6945424144645932,
0.7288942951440515,
0.7630554529890533,
0.7963069116325528,
0.8278080007383813,
0.8565856194001272,
0.8815478646562636,
0.9015262107358255,
0.9153278096550896,
0.9217892918671883,
0.9198316248674223,
0.9085258019851252,
0.8872051670420841,
0.8556248513847751,
0.8141157369100005,
0.7636814538692827,
0.7060285555484287,
0.6435160648547364,
0.5789659281550911,
0.5153036357119342,
0.4550872066877292,
0.4001164974926761,
0.35135753068991954,
0.3091155188595579,
0.27324244116816465,
0.2433026915678158,
0.2186957610357988,
0.19874531863534556,
0.18276282581133707,
0.17009193454754618,
0.1601384517286587,
0.15238953004820688,
0.146424843685928,
0.14192174218770803,
0.13865569822372414,
0.1364967393666644,
0.13540195239813602,
0.13540354918263753,
0.13659138791183278,
0.1390883537515154,
0.1430171134163567,
0.14845922768621767,
0.15541572099074819
],
[
0.4980705217412645,
0.5216058045372896,
0.5473443590082262,
0.5751580952898422,
0.6048534011145454,
0.6361655394704165,
0.6687527634081523,
0.702189961601214,
0.7359615373662814,
0.7694529599713057,
0.8019401599369693,
0.8325769608951503,
0.8603876411543514,
0.8842812431585084,
0.9030916645187619,
0.915629575080078,
0.9207365933538642,
0.9173407995815926,
0.9045248759597314,
0.8816376305422613,
0.8484543832504476,
0.8053400320946444,
0.7533466884115474,
0.6942385373457468,
0.6304382030408344,
0.5648363075006964,
0.5004307214825534,
0.4398335392327089,
0.3848391350332609,
0.3363614719280726,
0.29464532082235817,
0.25948654289828404,
0.23039974085894271,
0.20674126360486128,
0.18779831468825758,
0.17285237262856323,
0.16122315621414463,
0.15229794809668107,
0.14554999770471477,
0.14054882442379668,
0.1369644639941029,
0.1345670059088414,
0.13322212970522085,
0.1328827411355269,
0.1335762237445669,
0.1353862851021771,
0.13842805438397832,
0.14281557109462129,
0.14862364179353005,
0.15585292534468143
],
[
0.5070005174998337,
0.5305673261474682,
0.5562438293093754,
0.5839012216996996,
0.6133470824914321,
0.6443187361678246,
0.6764761868001077,
0.7093946718200682,
0.7425567707721799,
0.7753437418141421,
0.8070255994697593,
0.8367507561507139,
0.8635418879746638,
0.8863110355646742,
0.9038981355102047,
0.9151225048560192,
0.9188372727181453,
0.9139858463253083,
0.8996721239427365,
0.8752692818900993,
0.8405771372086763,
0.795992220695422,
0.7426050392921958,
0.6822223407554342,
0.6173151299259176,
0.5508287744853406,
0.48582099574039306,
0.42495145489301445,
0.37000662889739977,
0.32185273077124055,
0.2806826658090265,
0.24624358448921935,
0.21800568894946598,
0.1952859658658075,
0.1773377988946927,
0.16341454788377674,
0.1528133124669928,
0.14490375750423323,
0.13914581212590038,
0.13509914725794736,
0.13242653784004632,
0.13089249896469957,
0.1303579300228489,
0.1307708922494354,
0.13215308342461152,
0.1345811136396191,
0.1381615422058412,
0.14299941719296294,
0.14916296070566737,
0.15665259842678203
],
[
0.5155985694583929,
0.53917715680286,
0.5647719223961034,
0.5922528923021517,
0.6214282691679287,
0.6520367481110471,
0.6837392510053978,
0.7161103734404433,
0.7486297476044472,
0.7806733047621783,
0.8115044014700001,
0.8402661158878337,
0.8659804231409576,
0.8875642742627157,
0.9038672579514041,
0.913722904164856,
0.9160032876931018,
0.9096765180050584,
0.8938783785155499,
0.8680168094501355,
0.8319218512379493,
0.7860185011395728,
0.7314233265047375,
0.6699690795151935,
0.6041590742356405,
0.5369781002856332,
0.47152704927543987,
0.41050097526597323,
0.3556779186225622,
0.30788644013117805,
0.26727846754640877,
0.23356030001146388,
0.20616312524414154,
0.18436827788773857,
0.16739792430959355,
0.1544791612821178,
0.1448877956875705,
0.13797680005944746,
0.13319338232892808,
0.1300876806917418,
0.1283152663971967,
0.12763489424786123,
0.12790227011538957,
0.129059998496584,
0.13112334416186744,
0.13416106855450183,
0.13827062514388466,
0.14354797736430303,
0.1500550519566055,
0.15779216699388
],
[
0.5238404356548381,
0.5474089537866679,
0.572899838667293,
0.6001814939422807,
0.629062200324551,
0.6592813693380365,
0.6905000507135853,
0.7222912567175672,
0.754130610010939,
0.7853876731359517,
0.815318429923096,
0.843060566531326,
0.8676360700898633,
0.8879685850728429,
0.9029210004624384,
0.9113470736622645,
0.9121460694300265,
0.9043210103078283,
0.8870510735118271,
0.8597906516317636,
0.8224077559128116,
0.7753517616842193,
0.7197508249424757,
0.6574460647171844,
0.5909565566127619,
0.5232906412795842,
0.45757311418183066,
0.39651466767612226,
0.34188724358919953,
0.29449710752913216,
0.25446692000058757,
0.22147000134883393,
0.19490386629039708,
0.17401791645387155,
0.15800576409698253,
0.14607018718664966,
0.13746712058902022,
0.13153385497367143,
0.1277055447937434,
0.1255231631202406,
0.12463517472202668,
0.12479442620438186,
0.12585106683551495,
0.12774171401600765,
0.1304745873620582,
0.13411004973415885,
0.13873615648336401,
0.14443989187586626,
0.15127724071910476,
0.15924852390035604
],
[
0.5317027905232159,
0.5552372743233803,
0.5805996610748273,
0.6076562778967406,
0.6362149640491452,
0.666015238334322,
0.6967175481431204,
0.7278924569314399,
0.7590106100197057,
0.7894342494777632,
0.8184112637648902,
0.8450736792893612,
0.8684439426813544,
0.8874540230513245,
0.9009838249337293,
0.9079137963465739,
0.9071793250259199,
0.8978291618997858,
0.879097999892914,
0.8504992687726862,
0.8119482648089835,
0.7639141044699751,
0.707520763643258,
0.6445992018352369,
0.5776672458420132,
0.5097405774702802,
0.443947675216637,
0.38299143163972615,
0.3286409934774308,
0.28169705945703505,
0.2422647062589549,
0.20999216315816127,
0.18424872876991133,
0.16425577383352802,
0.14918123239284597,
0.13820571919294455,
0.13056690734051746,
0.12558757391206332,
0.12269161223913949,
0.1214112940331128,
0.12138815163348271,
0.12236904581151298,
0.12419828579210135,
0.1268060786002082,
0.13019313680109745,
0.1344110693006192,
0.13953844574666263,
0.14565351742650812,
0.1528067101149575,
0.1609984397080838
],
[
0.539163271617661,
0.5626376616920105,
0.5878444926069166,
0.6146475620526048,
0.6428537785223335,
0.672202212433589,
0.7023520528899238,
0.7328706471704282,
0.7632228155775526,
0.7927626343517704,
0.8207291640180752,
0.8462482669280065,
0.868342946414714,
0.885954923639514,
0.8979849125737771,
0.9033469180637068,
0.9010219534339565,
0.8901157574353489,
0.8699310991422167,
0.84005364625104,
0.8004550321284349,
0.7516201746802247,
0.694653139008131,
0.6313553242066655,
0.5642257128322878,
0.4962706511464716,
0.43060200122631787,
0.36989573352187116,
0.3159180097441099,
0.26947698937733644,
0.2306715374825571,
0.19913287523454082,
0.17420788109917384,
0.15509417937680836,
0.1409372759154618,
0.1308981138733485,
0.12419799841164292,
0.12014658952509083,
0.1181574898297112,
0.11775487142748198,
0.11857361943435585,
0.12035463080202224,
0.12293619602541672,
0.1262418142469981,
0.13026438569201082,
0.13504659004376263,
0.1406575903746239,
0.147167247718905,
0.15462081962499052,
0.16301889074958675
],
[
0.546200543532161,
0.5695867499844594,
0.5946086140815934,
0.6211269549746478,
0.6489472958720136,
0.6778077635032788,
0.7073657174640314,
0.7371846349139465,
0.7667228020582237,
0.7953254094577082,
0.8222219773081139,
0.846531499399806,
0.8672772077702259,
0.8834117222174737,
0.8938604203475543,
0.897578002108615,
0.8936010491374948,
0.8811038514168275,
0.8594699511952976,
0.8283704698499059,
0.7878415324323402,
0.738381127198528,
0.6810588284983079,
0.6176265451698316,
0.5505463619930099,
0.4827984667123243,
0.41745947424091856,
0.35716487336680874,
0.303673873456475,
0.25780874645759777,
0.21967205644585003,
0.18888616496720606,
0.1647817662633762,
0.14653754419065668,
0.1332803269790771,
0.12415431554504353,
0.1183667021737177,
0.11521571304859135,
0.11410585314029964,
0.11455396983790911,
0.11618872627594601,
0.11874520150891765,
0.12205561275728383,
0.12603659138740342,
0.13067307575161158,
0.13599880251659235,
0.14207373998501627,
0.14895976554047574,
0.1566973543274227,
0.16528731640030392
],
[
0.552794377805413,
0.5760623854127562,
0.6008676591696026,
0.6270675977487151,
0.6544659236435594,
0.6827993893673868,
0.7117230437651154,
0.7407959612016561,
0.7694693351329166,
0.7970788968795077,
0.8228439826441463,
0.8458759089169492,
0.8651973863332724,
0.8797727138486375,
0.8885557509948048,
0.8905490606959251,
0.8848550162351654,
0.8707281929332049,
0.8476453000237802,
0.8153755065100001,
0.7740270026106006,
0.7241093907457744,
0.6666449777571278,
0.6033164507753863,
0.5365309943654768,
0.4692263497365111,
0.40442771168702446,
0.34471965616285305,
0.29184799790039767,
0.24664994472631124,
0.20923890912520676,
0.1792360809943394,
0.15596252924220366,
0.13858334570875153,
0.12621098893742666,
0.11797634210668373,
0.11307514910835503,
0.11079621052812683,
0.1105363797452632,
0.11180615228131752,
0.11422855546135402,
0.11753313767118934,
0.12154612521389019,
0.12617726460266654,
0.13140353213854028,
0.13724984889022418,
0.14376730379502367,
0.15101023741058817,
0.15901471601464157,
0.16778181667771735
],
[
0.5589257476071608,
0.5820437620566311,
0.6065988035700329,
0.6324444195889063,
0.6593821591654618,
0.6871470361799119,
0.7153913971126132,
0.7436695030374723,
0.7714250531207084,
0.7979839139925704,
0.8225547170120305,
0.8442402965099172,
0.8620618512682929,
0.8749957545278816,
0.8820278213466448,
0.8822153687957057,
0.8747368447326891,
0.8589389167621427,
0.8344031596145414,
0.8010082939822784,
0.7589416708797756,
0.708724521131634,
0.6513216108842368,
0.5883277783705871,
0.5220780304848072,
0.455452237467189,
0.39140972054920636,
0.33247472161001684,
0.28037172590524007,
0.2359496209299493,
0.19933661133186104,
0.17015933644424802,
0.147735831093328,
0.13122337946043627,
0.11972490763786081,
0.11236190149023062,
0.108321740116463,
0.10688614343248715,
0.10744602419072291,
0.10950670850297128,
0.1126863460109685,
0.1167093923450987,
0.12139630788125133,
0.12665007912558257,
0.1324398590213126,
0.1387820013522424,
0.14571911050335407,
0.15329846033714367,
0.1615520657490659,
0.17048129982003601
],
[
0.5645769361401732,
0.5875115700647378,
0.6117809653835081,
0.6372344033442408,
0.6636709322768083,
0.6908235271369174,
0.7183415243847766,
0.7457740787673135,
0.7725571543958708,
0.7980065410351473,
0.821319831468902,
0.8415906935256923,
0.8578378809816992,
0.8690499187940282,
0.8742472845981937,
0.8725483351642838,
0.8632175893716503,
0.8457056161932883,
0.819709703839709,
0.785228030131087,
0.7425333504325314,
0.6921602850527013,
0.6350093710771304,
0.5725711917588062,
0.5070925289788308,
0.4413803246605545,
0.378313915918667,
0.32034769824339243,
0.2691761416826932,
0.22565414104792647,
0.189925763333266,
0.16162825563467498,
0.14008289694068887,
0.12444518382377212,
0.1138137692567518,
0.10730510017296668,
0.10410166148074429,
0.10348075648749133,
0.10482932450970572,
0.10764891126338405,
0.11155371889045562,
0.11626369968039119,
0.12159391445547618,
0.12744085020846485,
0.13376610071091533,
0.1405778021421572,
0.14791052867725185,
0.15580496888207174,
0.1642894261004434,
0.1733655881954344
],
[
0.56973165796313,
0.5924481545785832,
0.6163950139599044,
0.6414168572191173,
0.6673099518957407,
0.6938049925052931,
0.7205480715059611,
0.7470830530374357,
0.7728380887291703,
0.7971189035541638,
0.8191119916091794,
0.8379014679973344,
0.8525029925689122,
0.8619170636275495,
0.8652005987998816,
0.8615383261639797,
0.8502900328732387,
0.8310217926067749,
0.8035568165170591,
0.7680202857738334,
0.7247750855126875,
0.6743729074158571,
0.6176482633268943,
0.5559748409934469,
0.4914964429774752,
0.4269309978988464,
0.3650629464872983,
0.3082670391710941,
0.25819894624997175,
0.21571273059026747,
0.18096718792244454,
0.15361375685501233,
0.13298263080120742,
0.11823353245283696,
0.10846635730894694,
0.10279720027889405,
0.1004074379539458,
0.10057289372811862,
0.10267872747996076,
0.10622428208589152,
0.1108209034579789,
0.11618477378924152,
0.12212605429976897,
0.12853511775257564,
0.13536637306187171,
0.14262017148626105,
0.15032355453822788,
0.1585111095493985,
0.1672077501434331,
0.1764154897410401
],
[
0.5743751928496221,
0.5968376840447468,
0.6204239848510965,
0.6449736892508201,
0.6702800517890544,
0.6960712950788619,
0.7219900933289503,
0.7475749335306223,
0.7722462429590065,
0.795299952668984,
0.8159117725398073,
0.8331563730015235,
0.8460461121318507,
0.8535931479434969,
0.8548917589446721,
0.8491972023894433,
0.8359723747025267,
0.8149095661227297,
0.7859679455192329,
0.7494038907927375,
0.705673264171763,
0.6553502466786087,
0.5992072698770872,
0.5384945127912144,
0.4752387248898882,
0.4120497390689092,
0.35160115304277845,
0.29617842768748703,
0.2473900998280985,
0.20608221778418095,
0.17242564770565227,
0.14608812829978712,
0.12641363564378705,
0.11257188892125858,
0.10366960023804461,
0.09882738046384809,
0.09722949446946538,
0.09815342317694176,
0.10098491958009215,
0.10522285793317288,
0.11047695895752507,
0.11646049631371203,
0.12297935152811101,
0.1299182786105345,
0.13722496940955686,
0.14489248884634642,
0.15294087300808124,
0.16139908846818563,
0.17028896327087412,
0.17961284111523557
],
[
0.5784945323552876,
0.6006663271323732,
0.6238532990004854,
0.6478896814147318,
0.6725655307362186,
0.6976064440332773,
0.722651546329697,
0.7472339470091576,
0.7707666040254102,
0.7925362146581201,
0.8117084830224219,
0.8273493983153648,
0.8384684216394241,
0.8440891448276582,
0.8433434696524599,
0.8355601699923925,
0.8203114165072134,
0.7974244238248009,
0.7670034904744512,
0.7294369854587824,
0.6852752486663513,
0.6351213986544559,
0.5796947479417464,
0.5201242418940757,
0.45830472931032823,
0.39671451917274086,
0.3379003731587678,
0.2840496087299255,
0.2367160818980713,
0.1967307485159751,
0.1642728956607526,
0.1390274008813699,
0.12035599820185094,
0.10744372777918965,
0.09940954553904047,
0.09538345800265935,
0.09455669812808776,
0.09621165123734632,
0.09973715109081649,
0.10463345071498487,
0.11050998629576514,
0.11707809063899155,
0.12414008699820134,
0.1315756988274377,
0.1393264447966971,
0.14737865209724144,
0.15574589696747032,
0.1644519974329804,
0.17351598298129695,
0.18294052785420128
],
[
0.5820785399782007,
0.6039224381979453,
0.626670984986921,
0.6501527607149333,
0.6741544821541748,
0.6983989889185918,
0.7225217518457177,
0.7460505779701178,
0.7683913775694803,
0.788822481195919,
0.8065008833636026,
0.8204854196056948,
0.8297838750331705,
0.8334314557577664,
0.830597570938542,
0.820686494806702,
0.8033841155327069,
0.7786584435538929,
0.7467640720724541,
0.7082209873617418,
0.6636751682463115,
0.6137654675630486,
0.5591695389692479,
0.5009068672885995,
0.4407237739376707,
0.3809409745104065,
0.32396374164965785,
0.27187349584501747,
0.22616268632315656,
0.1876403480381567,
0.15648990518321215,
0.1324131776979549,
0.11479272939950569,
0.10283364346635504,
0.09567220592778725,
0.09245253488577843,
0.09237685522465522,
0.09473570975418744,
0.0989235419726493,
0.10444389233484797,
0.11090732590308627,
0.1180242810477079,
0.12559432358866818,
0.13349280787119588,
0.1416556817249066,
0.15006311852794163,
0.15872278888875035,
0.16765382257430778,
0.1768727210165304,
0.18638248604173863
],
[
0.5851181266757759,
0.6065967521589295,
0.6288679040520327,
0.6517542653175286,
0.6750391082083601,
0.6984423843203476,
0.7215958151042832,
0.7440220496788585,
0.7651205373076481,
0.7841624158563529,
0.8002977903105788,
0.8125806786106827,
0.8200194249547004,
0.8216618279850303,
0.8167146490029706,
0.8046588304002227,
0.7852965616491792,
0.7587387178505046,
0.7253900703581536,
0.6859014356571533,
0.6410163472733652,
0.5914167171166174,
0.537750674793475,
0.48094154716521553,
0.42257298281838207,
0.3647845808393486,
0.3098271732943034,
0.25966944423107335,
0.21573632002782694,
0.17880828457826903,
0.14906820344911909,
0.12623383654995868,
0.10971078766967601,
0.09872819073076433,
0.092444236331655,
0.09002153861256157,
0.09067714278872974,
0.093712901554737,
0.09853135993100348,
0.10464125911610289,
0.11165573818971364,
0.11928543549216541,
0.12732801521007497,
0.13565517667805305,
0.14419794019088905,
0.15293093093246268,
0.1618564683252871,
0.17098943924956767,
0.18034407154522847,
0.18992368931896841
],
[
0.5876064445488228,
0.608682590771304,
0.6304379788141059,
0.6526892047071917,
0.6752160134264021,
0.6977353145601708,
0.7198749831601144,
0.7411527244625489,
0.7609622776298393,
0.7785690532553808,
0.7931185707972915,
0.8036631408873214,
0.8092150417772183,
0.8088368648684392,
0.801772929033351,
0.7875813059684773,
0.766180828888597,
0.7378229126157068,
0.7030578643641803,
0.6626653489799293,
0.6174893002080196,
0.5682628642930208,
0.515615777623,
0.46038213223795205,
0.4039757230245477,
0.34833931662114814,
0.29555837714363764,
0.24748266990535883,
0.2054638311440456,
0.17024725124474221,
0.14201029545440602,
0.12048507457503244,
0.10510164999444316,
0.09511642482539873,
0.08971341594026616,
0.08807763789299938,
0.08944445994959127,
0.09312999387482845,
0.09854726331048114,
0.10521207083616191,
0.11274156394183299,
0.12084769108698534,
0.12932710008706294,
0.13804858114045604,
0.1469388943527229,
0.15596773152058818,
0.16513260816122566,
0.17444459615930302,
0.18391588850001567,
0.19355012446699926
],
[
0.5895391027109456,
0.6101760836678383,
0.6313784280329959,
0.6529565138999521,
0.674686472620095,
0.6962819666144657,
0.7173669232331987,
0.7374543979932008,
0.7559333384693708,
0.7720651610896057,
0.7849935153555528,
0.7937727734497493,
0.7974236399939054,
0.7950272955928204,
0.7858666928982266,
0.7695768122525573,
0.746190766917624,
0.7160939530163893,
0.6799739835233086,
0.6387353962151401,
0.5933253015002284,
0.5445364198811673,
0.49298795387626926,
0.439426328802617,
0.3850946874822364,
0.33173291018197293,
0.28125350654291076,
0.2353819160164975,
0.1953909569516185,
0.16198443457779743,
0.13532921911302664,
0.11516981136299353,
0.10096143153066883,
0.09199013458866556,
0.08746892574198262,
0.08660852372672567,
0.08866569085922071,
0.09297345308781413,
0.0989575039675683,
0.1061424611506836,
0.11415086292185694,
0.1226970618897747,
0.13157757896400224,
0.1406590525079503,
0.14986465782650393,
0.159159765930594,
0.16853762203835498,
0.1780058911945815,
0.1875749546697416,
0.19724875828151467
],
[
0.590914410681268,
0.6110764091112697,
0.6316900115358404,
0.6525593025855492,
0.6734566669926638,
0.6940922380457826,
0.7140859020130055,
0.7329464613188993,
0.7500591681584812,
0.764683423964439,
0.7759640543736341,
0.7829617502374804,
0.7847110353348293,
0.7803172256869501,
0.7691045468179033,
0.750783951255945,
0.7254973096463887,
0.6937539040022843,
0.6563676950058118,
0.6143614886065673,
0.5687865310521079,
0.5205021304637794,
0.470121001140401,
0.4183017551828133,
0.36612145030415805,
0.3151193831441483,
0.26703180834106643,
0.22345558938578997,
0.18557954456030806,
0.15405958453323854,
0.12904731817931747,
0.11029750889919143,
0.09729058747915265,
0.08934378474162552,
0.08570142752128518,
0.08560255642700954,
0.08832787736888359,
0.09322961826114873,
0.09974808786687273,
0.10741831780431121,
0.11586952989268173,
0.1248195290260058,
0.1340655790292834,
0.1434729160613215,
0.1529617993356327,
0.1624938792572334,
0.1720586449693926,
0.18166074109799374,
0.1913089447146517,
0.20100749801448026
],
[
0.5917336558866563,
0.6113860612469496,
0.631377291365818,
0.6515050997751775,
0.6715378797843948,
0.6911818650244549,
0.7100528466063337,
0.7276559054367527,
0.7433738888607356,
0.7564663966362145,
0.7660827428276429,
0.7712945158051088,
0.7711559969867176,
0.7648036181568576,
0.7516078795003241,
0.7313539517803256,
0.7042834687099491,
0.6710170795193113,
0.6324822481205923,
0.5898104175932359,
0.5441540641282948,
0.49644308910065194,
0.4472849745141386,
0.39725198257599503,
0.34726457707339425,
0.2986699156401496,
0.2530288093777028,
0.21180668234639644,
0.1761037477525928,
0.14652224395926616,
0.12319436284293583,
0.10588300365966885,
0.09409325910236588,
0.08717420385401675,
0.0844029640268662,
0.08504878829746276,
0.08841830564687203,
0.09388481495620771,
0.10090489364664357,
0.10902539259777089,
0.11788338822420408,
0.1272011137026997,
0.13677740451532738,
0.14647681935095913,
0.15621735021688754,
0.16595750570853857,
0.17568350880909112,
0.18539734666390656,
0.1951063839024092,
0.20481514727665445
],
[
0.5920014222967592,
0.6111111526910311,
0.630448917010966,
0.6498060908453804,
0.6689466375780968,
0.6875724535604507,
0.7052952694053428,
0.7216171471677526,
0.7359200329702154,
0.7474661707805124,
0.7554129075657594,
0.7588475257381629,
0.7568502427041917,
0.7485962342991302,
0.7335097678493288,
0.7114475655891722,
0.6827390477280433,
0.6481025511886239,
0.6085650612186095,
0.5653540478644449,
0.5197146280943503,
0.4726464674751773,
0.4247520769123564,
0.3765232231851553,
0.3287377072176506,
0.28256303623170037,
0.23938862997273141,
0.20054683756556463,
0.1670454370478462,
0.13942834103797186,
0.11780518987519584,
0.10194497754569343,
0.09137634812658835,
0.08548007016947712,
0.08356671098084678,
0.08493687919247239,
0.08892451601881945,
0.09492541409225863,
0.10241375164059507,
0.11094938251664432,
0.12017826210893512,
0.12982793411678695,
0.13969957509871433,
0.14965775125273217,
0.15961880511896143,
0.16953865326332518,
0.17940071397566448,
0.18920465490407867,
0.19895660404873383,
0.2086613589677695
],
[
0.5917259535674498,
0.6102617635417721,
0.6289179422686904,
0.6474793321252053,
0.6657047748617917,
0.6832913955265969,
0.6998470427516582,
0.7148716625938747,
0.7277480295898286,
0.7377437109049984,
0.7440278500513234,
0.7457084003885601,
0.7418978115500241,
0.7318176896909452,
0.71495390833438,
0.6912315966111322,
0.6610551138146821,
0.625226400571801,
0.5848573485202385,
0.5412564836231306,
0.49574655713744975,
0.4493890179023422,
0.402783023317466,
0.35635205135342857,
0.31074847626114876,
0.2669749719098308,
0.22625596523174518,
0.18978990433902238,
0.1584890889157241,
0.13283640584191025,
0.11291707437371512,
0.09850421773732476,
0.08914841853548838,
0.08426125778442739,
0.08318661908443115,
0.08525692762482129,
0.08983424919107974,
0.0963378434086658,
0.10426048769415774,
0.11317598464520173,
0.12274002916560811,
0.13268624767199977,
0.14281885338172184,
0.15300305307652506,
0.16315411709901023,
0.1732258845067543,
0.18319939858547096,
0.1930723193541231,
0.20284969788048834,
0.21253658652221735
],
[
0.5909195422876641,
0.6088523503224799,
0.6268021673477032,
0.6445469021523735,
0.6618393894027994,
0.6783716514234762,
0.6937480152931342,
0.7074674252259352,
0.7189154379054183,
0.7273678442622821,
0.7320095455719432,
0.7319742851630524,
0.7264130638937721,
0.7146011897636078,
0.6960915387672272,
0.6708746152158132,
0.6394183728540223,
0.6025942532093468,
0.5615840389871385,
0.5177608448660733,
0.47250501193544514,
0.4269224314163032,
0.38161449881954834,
0.336954735458828,
0.29348892637941715,
0.2520708703949926,
0.2137682007350888,
0.17964528502230054,
0.15051649887859297,
0.12680374871231392,
0.10856707592014936,
0.0955818266179147,
0.0874185302381103,
0.08351810981939489,
0.08325698779560742,
0.08599924316719443,
0.09113534449741512,
0.09810856094987042,
0.10643093748514576,
0.11569092843124396,
0.125554655809046,
0.13576248025019821,
0.14612226286784025,
0.15650042295181066,
0.16681168821984693,
0.17700829466372692,
0.1870693059747076,
0.19699065948696004,
0.20677647281453965,
0.21643203452058618
]
],
"zauto": true,
"zmax": 0.9229403626154293,
"zmin": -0.9229403626154293
},
{
"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.17970548478273776,
0.17982678855419995,
0.18456550520800252,
0.19228818995647978,
0.20119898292319813,
0.20976745183646922,
0.21686571324588566,
0.2217449220664542,
0.22396279543871125,
0.22331514127206126,
0.2197884873940025,
0.21353615601347056,
0.20487473607927714,
0.19429471685200778,
0.18247455012915717,
0.17027943595006723,
0.15871384086186505,
0.1487860831209452,
0.1412593916628379,
0.13635628988156712,
0.13372728320530936,
0.13287488996242977,
0.13361666214421603,
0.1362697133135673,
0.14146496976065842,
0.14968105721173036,
0.16089325206940178,
0.17462047940303838,
0.19011903412827294,
0.20656307564210863,
0.22317108876466962,
0.23927656409111644,
0.25435540373926857,
0.268025785937612,
0.28003392892525025,
0.2902349179868733,
0.29857388902624354,
0.30507016307411905,
0.3098052474378654,
0.31291458891778434,
0.31458227317533427,
0.31503732295956244,
0.3145497871257485,
0.3134244848573089,
0.31199025595754754,
0.31058314874048976,
0.3095234058865293,
0.3090883561698096,
0.3094857873446003,
0.31083388424172886
],
[
0.17953374942469585,
0.17937243545353002,
0.18376851828111798,
0.1911198619508024,
0.19965232518979045,
0.20784706606446424,
0.2145817387696762,
0.21911030492051503,
0.22099206672035948,
0.22002361868237816,
0.2161917186061369,
0.2096501078669419,
0.20071761172119806,
0.18989120061768303,
0.17786245857411556,
0.16551686992280878,
0.1538820186028853,
0.1439805585211751,
0.13656465749438595,
0.13181392646461762,
0.12931826137448452,
0.12852031236934422,
0.12920228976524226,
0.13168652696166497,
0.13665373224645486,
0.14466530422327814,
0.1557800079822975,
0.16956033558686326,
0.18525681096226068,
0.20200416013288555,
0.21897035703598336,
0.23544305453958808,
0.2508631258206817,
0.26482456879548577,
0.2770580025327988,
0.28740902253748996,
0.2958174992689755,
0.3023005746565301,
0.3069402113880853,
0.30987506777641716,
0.3112957690825188,
0.31144207542957475,
0.31059991175706037,
0.3090957786519587,
0.3072859207425106,
0.30553816143899076,
0.3042059096573127,
0.3035965836596178,
0.3039399068812756,
0.3053636686304156
],
[
0.18055862942699627,
0.1800569186373124,
0.18398115876696827,
0.190797176501364,
0.19878379354297349,
0.20645268161794703,
0.21269590153414566,
0.21677325386889906,
0.21824586789914008,
0.21691016570433624,
0.21275163292380828,
0.20592262370225278,
0.19674224517895372,
0.18571205967523965,
0.17353510222050053,
0.16111522169876555,
0.14949912282797667,
0.1397145670275703,
0.13248744956260242,
0.1279443162160491,
0.12561956695721951,
0.12490400360195246,
0.12554448537146223,
0.12785804118219068,
0.1325607027980121,
0.14029583237138066,
0.15122472153731165,
0.164972950440057,
0.1807940065021556,
0.19778301796332726,
0.21505433470648372,
0.231847224096877,
0.24756615016133882,
0.26178022649038246,
0.27420394295386236,
0.2846727824000641,
0.2931205485808274,
0.29956123583458316,
0.3040761857056095,
0.3068061766197978,
0.3079474011719503,
0.30774969248796463,
0.3065147436365495,
0.304591468364517,
0.3023653272980931,
0.30023886501264735,
0.29860244311847506,
0.29779746685920455,
0.29807857120837533,
0.29958425308999925
],
[
0.18268473663274204,
0.1817945028129611,
0.18513437812250222,
0.19126724129897021,
0.19855297052918153,
0.20555234116365542,
0.21118152085857117,
0.2147102196683729,
0.21570252272392343,
0.2139543569532671,
0.20944878110637194,
0.20233497539487322,
0.19293003748796975,
0.18173756364576762,
0.16946949844711104,
0.15704537723002826,
0.1455267609649201,
0.13593806492687974,
0.12896719231359577,
0.12468124975167351,
0.12256283287280874,
0.12195904235146862,
0.12258234337444975,
0.12473446107900829,
0.12915296269813972,
0.136560154640613,
0.14723220477893895,
0.16087489965204366,
0.17675359627079534,
0.19392463057166728,
0.21144706368847108,
0.2285106980553435,
0.24448329753769688,
0.2589090240749022,
0.27148600088869146,
0.28203905586527767,
0.29049508895461457,
0.29686388018044135,
0.30122493664497674,
0.3037198970095493,
0.30454935045582554,
0.30397231845519984,
0.30230593871599637,
0.2999221131058002,
0.2972373102762935,
0.29469193763647206,
0.2927175263945345,
0.29169393628437396,
0.29190418602201496,
0.29349877213470815
],
[
0.18577541898532302,
0.18445950822289475,
0.18712473770540186,
0.19245022018150118,
0.19889951458103736,
0.205099769888832,
0.2100016684101926,
0.21289017481983033,
0.2133346644513191,
0.2111311722173924,
0.20625974322996637,
0.19886474627621187,
0.18925865326858624,
0.1779437287186661,
0.16563712088282598,
0.15327024358789682,
0.14191489223476328,
0.1325852137856096,
0.12592372899570017,
0.1219353544207,
0.12005434112830171,
0.11959160692243047,
0.12022707972709502,
0.12223901596797972,
0.1263742188445603,
0.13342761794496505,
0.14379512342204345,
0.15727533553441916,
0.17315388598005022,
0.19045056642087266,
0.20816970987564892,
0.22545256800932925,
0.24163121700109355,
0.25622548032111836,
0.26891715544963535,
0.27951993327907976,
0.28795292667635186,
0.29422053666039577,
0.2983990920059589,
0.3006296688738578,
0.3011158816514512,
0.3001248182381941,
0.2979884855612758,
0.2951021382612437,
0.29191496962433033,
0.28890855482347333,
0.2865602601946104,
0.2852935077759582,
0.2854237511237788,
0.2871150017927235
],
[
0.18966882254626174,
0.1879008015791538,
0.18982503896174507,
0.19424630304686402,
0.1997475805074767,
0.20503724897720713,
0.20911116062542717,
0.21127611328055035,
0.21111046213961765,
0.20841208733584518,
0.20315820245390345,
0.19548703199532647,
0.1857035587391105,
0.17430450627748276,
0.16200717996328945,
0.1497496851293096,
0.13860904061872636,
0.12958410000537904,
0.12326865353633182,
0.11960603886006838,
0.11798664366634648,
0.11769231534731599,
0.11837321113613677,
0.12027850158958724,
0.12415342801948792,
0.13085542307075232,
0.14089733403562338,
0.15417738976425985,
0.17000866287154057,
0.18737844379016302,
0.2052397771230349,
0.22268861613287025,
0.2390237291006363,
0.25374185311107933,
0.2665087285255803,
0.27712645758486154,
0.2855054289953211,
0.2916434101304365,
0.2956120926750113,
0.2975504201957239,
0.2976634672334456,
0.2962250185054611,
0.293581087488688,
0.29015037483624245,
0.2864163661206306,
0.28290521779835814,
0.28014524676448566,
0.27860925324232794,
0.27864984657951225,
0.28044633156585236
],
[
0.19419294592467043,
0.19195592015561544,
0.19309558083923467,
0.19654360702858223,
0.20101106105988137,
0.20529910199804444,
0.2084589869714363,
0.20982686296509284,
0.20899507687949415,
0.20576633325960167,
0.2001161317725309,
0.1921756978265891,
0.18223955929374583,
0.17079392849424435,
0.1585498558180254,
0.1464454286918363,
0.13555735619504666,
0.12686589113957497,
0.12091606242949804,
0.1175933886410856,
0.11625079633471737,
0.11614843272854632,
0.11691044831348035,
0.1187539496299665,
0.1224132089935471,
0.12879443976912724,
0.13851703141248925,
0.15157920568134786,
0.1673268782486859,
0.18472099354689392,
0.20267006364430962,
0.22023040431252386,
0.23667111097148943,
0.25146760617264774,
0.2642699959938758,
0.27486834367685864,
0.2831633245751526,
0.28914474744930396,
0.2928781209765952,
0.2944985662088777,
0.2942108777167679,
0.2922939190028735,
0.2891065292651921,
0.2850906102644501,
0.2807652660856624,
0.2767046729804582,
0.2734936385487082,
0.27166092266092956,
0.27160177755879633,
0.2735128858406164
],
[
0.1991778184268075,
0.19646283269497344,
0.19679421886220347,
0.19922578614965458,
0.20259894084716232,
0.20581540104151633,
0.2079909526376168,
0.20849908000456588,
0.20695226373718345,
0.20316225979439906,
0.19710502969227703,
0.18890460204738574,
0.17884218038128294,
0.16738792672320793,
0.15523898638792327,
0.14332513686414938,
0.13271640287942263,
0.12437223974424044,
0.118791359311102,
0.11580817980704011,
0.11474707803221312,
0.11485476195121708,
0.11573418403683754,
0.11756977129160054,
0.12107679634648606,
0.12719368377915025,
0.13662882717010205,
0.1494740663864879,
0.16511160137368808,
0.1824846611583346,
0.2004673950831932,
0.21808428614711278,
0.23457937573414092,
0.24940889666919,
0.2622078229472375,
0.27275371385184094,
0.2809365073447635,
0.2867366925792485,
0.2902120035864157,
0.2914919702954872,
0.29077922469312706,
0.28835585520061896,
0.2845920058446462,
0.27995212797102026,
0.27499191754152413,
0.2703369147119673,
0.2666343183752743,
0.2644762301739788,
0.2643068937560493,
0.26634280670523924
],
[
0.20446408345306122,
0.20126849508472847,
0.20078423010315113,
0.2021784997814355,
0.20442018356547256,
0.2065155354231063,
0.20765232051512877,
0.20724929305914297,
0.20494603562899816,
0.20056874592356871,
0.19409715448622725,
0.1856487213060231,
0.1754887794819143,
0.16406560589732114,
0.1520538177708104,
0.14036504507808575,
0.130054931195755,
0.1220601652501244,
0.11683722324501586,
0.11417894171276796,
0.11339288543204915,
0.11372183022806091,
0.11475330577024627,
0.11664038757621213,
0.12007276036381809,
0.12600279690310157,
0.13520421531544957,
0.14784929342272787,
0.16335816610412768,
0.18066783845896464,
0.19863126229808534,
0.21625044899440257,
0.23274962249000664,
0.24756813433774347,
0.2603263553619969,
0.27078886924959955,
0.27883385480897144,
0.28443113490778266,
0.2876290871138276,
0.28854985833200925,
0.287391941287371,
0.28443858937986766,
0.28006938356210326,
0.27477020285422366,
0.2691338279849372,
0.2638402514889049,
0.25960520539121074,
0.25709231017170314,
0.25680209336687243,
0.25897370282860643
],
[
0.2099081668958088,
0.2062342285364162,
0.2049397213492061,
0.20529432830442423,
0.2063877800081859,
0.2073313717133323,
0.20739027118777584,
0.2060358799429488,
0.2029423138677404,
0.1979566094633422,
0.1910667263784316,
0.18238515089617674,
0.1721593434362843,
0.16080986843386344,
0.1489795897959686,
0.13755080066970274,
0.12755523199196175,
0.11990402144992858,
0.11501636129313121,
0.11265570315637197,
0.11212735150176438,
0.11268088256709713,
0.11389494002105709,
0.1158940965176428,
0.11933735435195775,
0.12517240309343866,
0.1342102824068881,
0.14668389581170965,
0.16205172736556972,
0.17925901232626018,
0.19715258746120073,
0.21472213370022786,
0.23117754898217505,
0.2459436685492471,
0.2586268025087342,
0.268978117839136,
0.27686307233450363,
0.2822395555489997,
0.28514508493932916,
0.2856926782132082,
0.2840746833634445,
0.28057330339285613,
0.27557535641077263,
0.2695865072529181,
0.263236497179998,
0.25726239758633435,
0.252454664118036,
0.24955733511840456,
0.24913550859795047,
0.25145425447640773
],
[
0.2153846910248145,
0.21123844506184794,
0.209148800804361,
0.2084760849673316,
0.2084217931414475,
0.20819983803256928,
0.20715604809189753,
0.20482088140482507,
0.2009105029261008,
0.19529998139198237,
0.18799108755416616,
0.17909399238224594,
0.16883700164574927,
0.1576074180909173,
0.14600693883938654,
0.13487639613415997,
0.12521195351976425,
0.11789447752231315,
0.11331108924256726,
0.11121058746222262,
0.11091286654899933,
0.11168586468894795,
0.11310638269701134,
0.11527452509766413,
0.11881496671530067,
0.12465286453055488,
0.13360692649900804,
0.14594535004506137,
0.16116485080048168,
0.17823530292965195,
0.19601290437671937,
0.2134851957658212,
0.22985322028885458,
0.24452965719295477,
0.2571073417674305,
0.2673236777241495,
0.27503057415733717,
0.2801728764821455,
0.2827758945395008,
0.282941896907385,
0.28085513440799353,
0.27679446328419605,
0.2711514521430655,
0.26444936716317496,
0.25735403616714686,
0.25066152477584014,
0.24524296612780952,
0.2419322610255112,
0.24136834489527148,
0.2438459384016102
],
[
0.22078692152661167,
0.2161774141126348,
0.21331496279050424,
0.21163870052198241,
0.2104514003324564,
0.2090648616623569,
0.20690670516074974,
0.20357158155536853,
0.19882493983370275,
0.19257762051275631,
0.18485182573100215,
0.17575917365017046,
0.1655083555970706,
0.15444831623967198,
0.1431303441063966,
0.13234137340464852,
0.12302852537251656,
0.11603471359328274,
0.11172012647877408,
0.10983575704566864,
0.10973401236584801,
0.1107129176108526,
0.11235479710695287,
0.11474033766913785,
0.11845756121457342,
0.12439273827596131,
0.13334356096286168,
0.14558675565575777,
0.16065616482506306,
0.1775619387225168,
0.19518423051417588,
0.21251815129898066,
0.22876116985682443,
0.2433161594236632,
0.2557631699366433,
0.2658256701404083,
0.2733414097773085,
0.2782413170274764,
0.2805373854030268,
0.28031972888251716,
0.27776269805875026,
0.27313952462472074,
0.26684383615189994,
0.2594137924640335,
0.25154957587043864,
0.2441071704541347,
0.2380437101806742,
0.23429262249940208,
0.2335768025700983,
0.23622479196346888
],
[
0.2260259541349622,
0.22096472539485432,
0.21735717935715965,
0.21470995983770472,
0.21241603544205134,
0.20987866191723295,
0.20660641679231187,
0.2022618057055012,
0.19666617786703866,
0.1897741486533952,
0.18163587326791003,
0.17236926322684534,
0.1621637708276829,
0.15132537892334602,
0.14034610346473494,
0.12994686908691,
0.12101160765489405,
0.11433434186334954,
0.11025334216622337,
0.10853938819779921,
0.10859450790748804,
0.10975797067086733,
0.11162531628778663,
0.11426390972339076,
0.1182240075772341,
0.12433860249125714,
0.1333587871334225,
0.14554705854223593,
0.16047110149862046,
0.17719307638645485,
0.19462981015370062,
0.21179279206231078,
0.2278808744803299,
0.2422894738655487,
0.25458671313685405,
0.2644822097664979,
0.2717992411266429,
0.27645426138413376,
0.2784451587962817,
0.27784879229998816,
0.27482806527156756,
0.26964844890953626,
0.26270285724400294,
0.25454118991958374,
0.24589533658960647,
0.23768084750612645,
0.2309450419910822,
0.22673022898934558,
0.22585393808753268,
0.22868306547530193
],
[
0.2310291849453558,
0.22552997152567067,
0.2212091349395196,
0.2176303841949521,
0.21426578086335285,
0.21060244580485407,
0.20622734023760436,
0.20087290094103877,
0.19442206728274908,
0.18688118294390307,
0.17833658711472639,
0.16891833507925186,
0.15879778274135123,
0.14823375157984292,
0.13765052224573146,
0.12769164933745392,
0.11916450476813611,
0.11280226334834478,
0.10892558656235964,
0.10734041658808012,
0.10751270517399365,
0.10883292986068603,
0.11091808198075805,
0.11382950571020438,
0.1180798119144668,
0.12443689526419663,
0.13358491165189662,
0.14575540848356433,
0.16054495835737587,
0.17707402293399482,
0.1943057401850365,
0.2112753680068452,
0.22718759842080558,
0.24143271777747805,
0.25356799245416006,
0.2632895915705723,
0.270406371730747,
0.2748201398700944,
0.27651428211776236,
0.27555169313885797,
0.2720826486345661,
0.2663630069892613,
0.258782281057165,
0.24989865763371483,
0.2404721973259063,
0.23147613900614636,
0.2240504253397204,
0.21935450867525327,
0.21831121266930845,
0.22133050740823904
],
[
0.2357384424533142,
0.22981702645984048,
0.22481794417918377,
0.2203525190425448,
0.21596116770527224,
0.21120657585099858,
0.20575003817842738,
0.1993943716226801,
0.19208859176809034,
0.18389832882334647,
0.1749547941451977,
0.16540690976092096,
0.15540972427542443,
0.1451709432994317,
0.13503898266540362,
0.12556970236397588,
0.11748255649208639,
0.11144114655875004,
0.10775092564954893,
0.10626272701089992,
0.10651605801149736,
0.10796083742470967,
0.11024460763726919,
0.11343125326391103,
0.11799722065895021,
0.12463681906235008,
0.13395350448627472,
0.14613709506233974,
0.16080746661148937,
0.17714452011965526,
0.194163310329292,
0.21092824553508094,
0.22665355343668778,
0.24072661538022735,
0.25269512667519684,
0.2622425644027424,
0.26916382449559906,
0.27334632527315683,
0.27475900239075096,
0.27345054239856,
0.26955788465790437,
0.26332585645344087,
0.25513816706777914,
0.24555776031763774,
0.2353685795947848,
0.22559799482286758,
0.21747860393720667,
0.21229310176135244,
0.2110793208776647,
0.2142948848768811
],
[
0.2401080235216345,
0.23378216861800652,
0.22814259675476228,
0.2228398349515747,
0.21747252828072486,
0.21167028482519107,
0.20516347709346466,
0.19782414237387771,
0.18967040863686413,
0.18083397578787105,
0.17149975271096504,
0.16184294555645556,
0.15200459630099877,
0.14213744277865223,
0.1325062377238464,
0.12357029340216781,
0.11595328698011384,
0.11024557487814998,
0.10673817378108465,
0.10532928187651334,
0.1056348952165098,
0.10717033511402707,
0.10962375553514064,
0.11307100380371242,
0.11795534450394836,
0.12489303496944762,
0.13440000883384337,
0.1466189772149354,
0.1611876882771923,
0.17734251869415865,
0.19415176306978155,
0.2107118797907443,
0.22624928135860076,
0.24015043977556993,
0.25195493916128275,
0.261334673095806,
0.26807146032164925,
0.2720390445356466,
0.2731924455246552,
0.2715664175473732,
0.26728441595523683,
0.26057939695464155,
0.2518273669363829,
0.24159270376446082,
0.23067845790905614,
0.22016089512132422,
0.21136227340392982,
0.20569112944662843,
0.20430769723899472,
0.2077211714405484
],
[
0.2441027773869604,
0.23739220272869652,
0.2311522936755868,
0.2250653976964616,
0.21877902247889863,
0.2119810088216831,
0.2044646194512036,
0.19616841802502802,
0.18718102584596968,
0.17770580953851464,
0.16798993781660357,
0.15824278659299776,
0.14859408954037084,
0.139137823865513,
0.13004778600201108,
0.12167995432764316,
0.1145588376547208,
0.10920260562033843,
0.10588792395447431,
0.10455650579100824,
0.104895854510395,
0.10648988515771884,
0.109077600724416,
0.11275606545154349,
0.11793992276580871,
0.12516744423473058,
0.1348670288399745,
0.14713373362892068,
0.16161837973850562,
0.17760787508190373,
0.19422114042163327,
0.21058690534511357,
0.22594514151361128,
0.23968303644965497,
0.25133362512898527,
0.26055864406493373,
0.26712812602590674,
0.27090330504059823,
0.2718263101913926,
0.2699187860117135,
0.26529117851613615,
0.2581644305183534,
0.24890565736095296,
0.23807787217851012,
0.22649834747676165,
0.21528553991871827,
0.20584489386337282,
0.19970839617514455,
0.1981619009963216,
0.20176867394642634
],
[
0.24769631686673618,
0.24062266983227365,
0.23382478123684017,
0.2270104206060238,
0.21986743736973796,
0.2121334049072418,
0.20365762986283859,
0.19444110792338928,
0.18464253370836686,
0.1745409228620295,
0.16445350913014964,
0.15463190385964723,
0.14519755538704204,
0.13618205626729396,
0.12766182300374943,
0.11988528938189248,
0.11327887977126322,
0.10829340238771218,
0.10519118844607715,
0.10394938546121997,
0.10431575627746487,
0.10594248743954045,
0.10862747654855034,
0.11249677147548139,
0.11794248269455906,
0.12542985541876198,
0.13530626306370572,
0.1476228017721793,
0.1620394130803211,
0.17788556447865173,
0.19432492650912492,
0.21051615373325605,
0.22571277939843068,
0.23930384921012285,
0.2508174296676222,
0.2599067851442643,
0.2663318175299265,
0.2699428341925461,
0.27067056729760003,
0.2685249150568446,
0.26360443351476026,
0.25611868136100874,
0.24642556916662414,
0.235084768610161,
0.2229232192220077,
0.21109381094327098,
0.2010750880211178,
0.19451370632766296,
0.19281796734925338,
0.19660530442692697
],
[
0.2508693959187461,
0.2434561942114925,
0.2361447496790094,
0.22866278108599236,
0.2207308421719877,
0.212128117071004,
0.2027527218774859,
0.19266278665924896,
0.18208479989287504,
0.1713753792046575,
0.16092827493302023,
0.15104520067555555,
0.14184263529916677,
0.13328662172444228,
0.12535116263340046,
0.11817576439140251,
0.11209363410493778,
0.10749568495785489,
0.10463012382746019,
0.10349930118203227,
0.10389794618616158,
0.10554179676938724,
0.10829046565887936,
0.1123038603020238,
0.11795880559670954,
0.1256576139790251,
0.1356792586565099,
0.14803812083608184,
0.16240017475418972,
0.17812820257534634,
0.1944222811643119,
0.21046643863587383,
0.2255264632941068,
0.23899387147103576,
0.2503932861679736,
0.25937136912561526,
0.2656798432614611,
0.26916003087770574,
0.26973317780656686,
0.2673992980045287,
0.2622467964144452,
0.2544752582962377,
0.2444340315384569,
0.23267850453137096,
0.2200414653416835,
0.20770198215943828,
0.19719828951707533,
0.19027563234601358,
0.1884529431634117,
0.19239836801094187
],
[
0.25360846977727136,
0.24588099220268267,
0.2381023392452176,
0.2300155626411137,
0.22136717000106174,
0.21197035704382797,
0.2017646869069644,
0.19085918096376275,
0.17954404157593115,
0.16825306639919468,
0.15746093056287877,
0.1475266079299475,
0.13856520986890222,
0.13047501013527468,
0.12312459731432152,
0.11654597402611556,
0.11098670920291814,
0.10678680625986164,
0.10418094374062002,
0.10318652074425212,
0.10363267541490234,
0.10529015281767147,
0.1080764652835615,
0.11218566537254812,
0.11798675940602717,
0.1258344515005328,
0.13595729895483674,
0.14834293024488623,
0.1626610466992153,
0.1782978278036753,
0.19447975243383622,
0.21040999519338918,
0.22536419667102903,
0.23873645537764576,
0.2500493690827328,
0.2589449722218655,
0.26516897334567313,
0.2685559277560927,
0.26901984276967816,
0.2665531303864792,
0.26123632615043374,
0.2532611674361579,
0.2429700066818766,
0.23091410537638052,
0.21792927482931826,
0.20521255290623322,
0.19434583183274923,
0.18714961928684162,
0.18523138176142329,
0.18930178609908044
],
[
0.25590444185809524,
0.24788955502673798,
0.2396917822947483,
0.23106567140165438,
0.22177779290729538,
0.21166837500284474,
0.20071117174234504,
0.1890592093626931,
0.177060719748757,
0.16522368626753883,
0.1541053404534905,
0.14412768033879242,
0.13540833052787754,
0.12777722253231652,
0.1209973029040778,
0.11499704519076165,
0.1099474184140734,
0.10614697236897078,
0.10381804311339546,
0.10298474632461611,
0.10349989514418621,
0.10517832897350016,
0.10798581133396451,
0.11214515408911677,
0.1180237516141434,
0.12594896820556636,
0.1361208082759233,
0.148511925420486,
0.1627941538724134,
0.1783669926261355,
0.19447242983645238,
0.2103255054607764,
0.22520854019587436,
0.23851792586792808,
0.24977552314941065,
0.25862074316178285,
0.264795562354302,
0.26813016411699275,
0.2685337995877692,
0.26599387044910866,
0.26058574149632907,
0.25249599767491027,
0.24206233223522455,
0.22983300664318232,
0.21664503025616616,
0.2037055955437937,
0.19262252208182765,
0.1852623320743437,
0.1832886468709795,
0.1874406815506126
],
[
0.25775159609458376,
0.24947751158179898,
0.24091020256071968,
0.23181256920715573,
0.22196615553374263,
0.21123190734735334,
0.1996108051650806,
0.18729266078545148,
0.1746767709066594,
0.162339776502061,
0.15091966694633477,
0.14090494177744556,
0.13241986418867846,
0.1252280332150747,
0.1189900521019853,
0.11353693088817875,
0.10897221333612282,
0.10556193926813827,
0.10351795831438365,
0.10286548285304511,
0.10347267614926486,
0.10518660913668397,
0.10800759822583328,
0.11217697325528199,
0.11806441934014322,
0.12599328717441888,
0.13615865601042854,
0.1485310505079429,
0.16278356606704103,
0.17831925020899936,
0.19438454580756417,
0.2101986789711898,
0.2250471030823022,
0.2383279639521239,
0.24956354220142293,
0.25839258528422443,
0.2645556368930061,
0.26788097009287976,
0.268275677547727,
0.265724915804898,
0.26030182847746813,
0.25219090101192526,
0.24172800191526664,
0.22946017277434771,
0.2162245189589387,
0.20323098920538452,
0.19209476219324978,
0.1846955570173489,
0.18271327039235577,
0.18689563436710543
],
[
0.25914671141853585,
0.2506426745318788,
0.24175658856248813,
0.23225716096959242,
0.2219365324315613,
0.21067070074526395,
0.1984813119823856,
0.18558767831253106,
0.17243231255231967,
0.15965277782641676,
0.147962247979638,
0.13791583848939662,
0.12964873940412233,
0.12286397371996312,
0.11712718710977417,
0.11217945066990949,
0.10806491571045812,
0.1050245807417982,
0.10326221675403383,
0.10280157097225104,
0.10352066710297593,
0.10528710990440035,
0.1081197548926133,
0.11226576603277563,
0.11809964324536779,
0.12596240737138006,
0.13606765322261816,
0.14839712883710524,
0.1626250962031287,
0.17814911714108006,
0.1942095518650662,
0.21002238319068145,
0.22487268678094594,
0.23815974141943144,
0.24940728332575832,
0.25825524215648715,
0.2644449437654872,
0.2678051642097602,
0.26824342351769126,
0.2657454218504022,
0.2603850911668092,
0.25234797113375773,
0.2419710886805904,
0.22980224518333806,
0.21667776570276195,
0.2038031000068331,
0.19278200246553676,
0.18547358557692195,
0.18353190271770328,
0.18769046637353884
],
[
0.2600883548994067,
0.2513842720456411,
0.24223095549335677,
0.2324008700484612,
0.22169297171195468,
0.20999321828591033,
0.197337784515764,
0.18396830115003956,
0.17036213237321818,
0.15720837515169675,
0.1452863072155295,
0.13521336353439753,
0.12713997167983923,
0.12071931060585948,
0.11543353637344148,
0.11094207418669771,
0.10723554638713065,
0.10453494060425664,
0.10303864823266431,
0.10276962390350342,
0.1036133564940511,
0.10544729107610464,
0.10829227823692357,
0.11238875792560499,
0.11811772703281276,
0.12585451022908578,
0.13585235989182254,
0.14811741478464574,
0.1623257637626778,
0.17786156148890922,
0.19394969691168426,
0.20979633533770436,
0.22468308415569338,
0.23800980682947145,
0.24930261543361645,
0.258204286172482,
0.2644589594053881,
0.26789816737336064,
0.2684323054509204,
0.2660502783067655,
0.2608296792263993,
0.2529600877016914,
0.24278244797827375,
0.23084700416830956,
0.21798808197820474,
0.20539914489060684,
0.1946540400612953,
0.1875589688079381,
0.1857034958864014,
0.18978818620536325
],
[
0.26057635053013956,
0.25170236702260806,
0.24233370727734865,
0.23224493013816924,
0.22123848087526352,
0.2092056295583423,
0.196191294004499,
0.182452383774613,
0.16849246657308284,
0.15504170146282764,
0.14293386071148503,
0.13283972231975444,
0.12492912076700023,
0.11882167110853321,
0.11393073431678001,
0.10984264036137178,
0.10649772412496979,
0.10409864215054525,
0.10284109798005975,
0.10275132719059796,
0.10372291631125245,
0.10563410079586616,
0.10849248500577663,
0.11252089068458106,
0.11810720042511537,
0.12567200606737197,
0.1355251018988464,
0.1477090206968378,
0.1619029108155799,
0.17747102560265562,
0.19361512864372932,
0.20952637936064286,
0.2244805555008754,
0.2378777396652962,
0.2492472145327883,
0.2582360185802845,
0.26459286622507655,
0.2681540372771168,
0.2688349973202531,
0.2666302489090103,
0.26162360156360737,
0.2540112456937388,
0.24414024211877508,
0.2325642327504948,
0.2201135219338191,
0.20796164874226616,
0.19763505274467552,
0.19085882737317042,
0.18912779446533223,
0.1930970960350063
],
[
0.2606114212371889,
0.25159746500946173,
0.24206520728188996,
0.23178991495293677,
0.22057449813218166,
0.20831116830379004,
0.19504800541325112,
0.18105021775165037,
0.16683870266658862,
0.15317348336753236,
0.14092979386991822,
0.13081999997848218,
0.12303749325173446,
0.11718830267972084,
0.11263366462049958,
0.10889547638959722,
0.10586482389186563,
0.10372378319331371,
0.10266779051936249,
0.10273374617002203,
0.1038263948584057,
0.1058178277846933,
0.10868991883822425,
0.11263933257348079,
0.11805980409213832,
0.1254227294934155,
0.13510590841929915,
0.14719805924636953,
0.16138288812476295,
0.1769999606013221,
0.19322253645808093,
0.20922338543346872,
0.22427102080677405,
0.23776560587291887,
0.24924023047947647,
0.25834729775971055,
0.2648415060071152,
0.2685655277202379,
0.2694417446778115,
0.267472267287619,
0.26274921002109336,
0.2554773374347862,
0.24601122100011058,
0.23490784927488298,
0.22299046382083235,
0.21140439337710967,
0.2016130649461718,
0.1952385898806665,
0.1936613227389401,
0.19748415923333468
],
[
0.2601950021747347,
0.2510703110929454,
0.2414255623096875,
0.2310355179362779,
0.21970067477357627,
0.20730990906622632,
0.19390890399526678,
0.17976409870346446,
0.16540457189685165,
0.15160847357809162,
0.13927884232435286,
0.12915875420815923,
0.12146984094935365,
0.11582401108113645,
0.1115478918807035,
0.10810775318190596,
0.10534537631533569,
0.10341676132746194,
0.10251895408417645,
0.10270893864815721,
0.10390708847328373,
0.10597489476893945,
0.1088597708009345,
0.11272651024288435,
0.11797254816564083,
0.125120610070466,
0.13462198498344227,
0.14661827191286583,
0.16079918767322438,
0.1764768389730728,
0.1927933655413177,
0.20890182896680548,
0.22406302698049876,
0.23767726351262755,
0.2492818610757057,
0.2585353196558405,
0.2651993240050224,
0.2691241773282634,
0.2702406056548176,
0.2685598709787836,
0.26418391401229846,
0.25732730914935936,
0.2483526029768633,
0.23781899087406896,
0.2265386610391942,
0.21562051205201785,
0.20645216998840143,
0.20053828636952567,
0.1991351037367409,
0.20279096592002835
],
[
0.25932922372756756,
0.2501218749734746,
0.2404146203219197,
0.2299805842265574,
0.21861497330956892,
0.20619897256132375,
0.1927701585588276,
0.1785889127547692,
0.16418305730769786,
0.15033688206486134,
0.13796806436448092,
0.12784258245761118,
0.12021561872496514,
0.1147214391196855,
0.1106688404862611,
0.10747727369252633,
0.1049391016652594,
0.10317839604955673,
0.10239466581373778,
0.10267323396466893,
0.10395503195717426,
0.10608924169376302,
0.10898454223383601,
0.11277144271878588,
0.11784834025459338,
0.12478530009983418,
0.13410635309862548,
0.14600890616909587,
0.1601899012546938,
0.1759336363734191,
0.19235166430092848,
0.20857813433454564,
0.22386656939235267,
0.23761758120882345,
0.24937287827424282,
0.25879737943768405,
0.26566031963381054,
0.2698204316028314,
0.2712177583033579,
0.2698737466099645,
0.26590106976686984,
0.25952458185106597,
0.25111434143515177,
0.24122962730878827,
0.23066694010736757,
0.22049116946640535,
0.21200481060114162,
0.20658779999302243,
0.2053708525118856,
0.20884875158870184
],
[
0.25801706299576627,
0.24875352244606228,
0.23903217846600486,
0.22862338756818457,
0.21731406553848134,
0.20497312649656277,
0.19162405498324714,
0.17751361461821208,
0.16315876470433485,
0.14933819414675162,
0.13697262237139327,
0.126846185937411,
0.11925322676736884,
0.11386364096980969,
0.10998305180332223,
0.10699270782182693,
0.10463642734167354,
0.1030029756141227,
0.10229377721403002,
0.10262644065982436,
0.1039666342503431,
0.10615229446988267,
0.10905406993103758,
0.11276947120125089,
0.11769509964459313,
0.12444049027633966,
0.13359539677786164,
0.14541166530256633,
0.15959444661381644,
0.17540284405608,
0.19192168338797472,
0.20826890404553464,
0.22369186737489968,
0.23759164311705627,
0.24951415701869947,
0.25913064611479036,
0.26621802022346136,
0.27064380106694763,
0.27235786205881224,
0.2713923535403444,
0.2678709783732512,
0.26202861230457947,
0.2542415457003578,
0.24506627795088065,
0.23527877671202965,
0.22589353416403302,
0.21812225210290767,
0.2132190700609997,
0.2121936868384552,
0.21549047133945703
],
[
0.2562626630026744,
0.24696737095515492,
0.2372783950487563,
0.2269621372463058,
0.21579399802170343,
0.20362571355893916,
0.19046035924799534,
0.17652330752604778,
0.16231114463627674,
0.14858600745077075,
0.13626205450757548,
0.12613896091398774,
0.11855567246857,
0.11322823923980786,
0.10947122254031955,
0.10663621425700218,
0.1044214863690809,
0.1028802572191167,
0.10221396566369194,
0.10257101061684348,
0.10394352413518691,
0.10616173914780874,
0.10906428427364183,
0.11272074762351424,
0.11752358884707248,
0.1241109140528704,
0.1331252341510771,
0.14486668551004353,
0.1590496380483608,
0.17491419380831172,
0.19152541864784764,
0.20798919098324606,
0.22354820940760353,
0.23760402024102098,
0.2497062588996844,
0.2595319815562906,
0.2668654931179621,
0.2715830565423762,
0.2736444589526132,
0.27309259092912386,
0.2700619254909158,
0.2647964734733151,
0.25767684567991267,
0.2492534758740345,
0.24027718501882994,
0.23170725583290486,
0.22466239423650164,
0.2202745814196245,
0.21944076540637572,
0.22255925152211772
],
[
0.25407181955616964,
0.24476682699746036,
0.2351543976246772,
0.22499569557895036,
0.21405108239023468,
0.20214981834939139,
0.18926793115654325,
0.17560156659748047,
0.16161786512612905,
0.14805267232588054,
0.13580582630288374,
0.12569090460646476,
0.11809617366228638,
0.1127921093184602,
0.10911220470472222,
0.10638736292948102,
0.10427598412203723,
0.10279811241264022,
0.10215223222678911,
0.10251098647473987,
0.10389069968947562,
0.10611949316595017,
0.10901525889028812,
0.11262806207754962,
0.11734448472074772,
0.1238183446128252,
0.1327270569585475,
0.14440769119367353,
0.15858540824633557,
0.17449143696116098,
0.19118036546757422,
0.20775099905110087,
0.22344299058800202,
0.23765818696516777,
0.2499491195335437,
0.25999783188297204,
0.2675954084319603,
0.2726264603753473,
0.27506039906595564,
0.27495047413894597,
0.27244120137541267,
0.26778435154123964,
0.26136253624770694,
0.25371673662756006,
0.245568610486213,
0.23781916375863196,
0.2314948627633725,
0.22761240381411035,
0.22696623720590872,
0.22991345408908773
],
[
0.25145263660426753,
0.24215730401888683,
0.23266307957545276,
0.22272448548491353,
0.21208296557507775,
0.2005395827827916,
0.18803641364961604,
0.17473267833464168,
0.16105777094846618,
0.14771297270128542,
0.13557749046978804,
0.12547707741438102,
0.11785265239117625,
0.11253554928661987,
0.1088869787949295,
0.10622717992699662,
0.10418284442664172,
0.10274494567798126,
0.10210530462136932,
0.10245055090860271,
0.10381417659625986,
0.10602946460212069,
0.10890923614490657,
0.11249472329554075,
0.11716547944709144,
0.12357730481486082,
0.13242183074833186,
0.14405677806632566,
0.15822082977575758,
0.17414967565740205,
0.19089779943047133,
0.20756220317140356,
0.2233810576239116,
0.2377561519547985,
0.25024187999458686,
0.2605242126227729,
0.2684001602159104,
0.27376202984745496,
0.2765882744960506,
0.27694178990982,
0.2749760506589286,
0.2709488826046524,
0.26524239506553293,
0.2583849091266883,
0.25106574315272406,
0.24412626888718011,
0.23850378208813205,
0.23510850380421233,
0.23464334170080264,
0.23742904624257383
],
[
0.2484163519019503,
0.23914712095606708,
0.22981007924932165,
0.2201515697668176,
0.20988983953010823,
0.19879159243228114,
0.18675786002347483,
0.17390356876630558,
0.16061310120703504,
0.14754648629649114,
0.13555707788032179,
0.12548014515838857,
0.11781046975236416,
0.11244514641910688,
0.10878179543530987,
0.10614157806523739,
0.10412938669105741,
0.10271195188684171,
0.10207014680105551,
0.10239229835338977,
0.10371874847866146,
0.10589591888801861,
0.10874932883258326,
0.11232320214699797,
0.11698934797185079,
0.12339181442093344,
0.13221526935944766,
0.14382002522528825,
0.1579614554424351,
0.17389381221439182,
0.19068188479961892,
0.2074260524050871,
0.22336445202001545,
0.23789835367690293,
0.25058288906660975,
0.26110679978711027,
0.26927204800424676,
0.2749778262512739,
0.27821084663532886,
0.2790427049811306,
0.2776345147415223,
0.2742482806744556,
0.2692631234746961,
0.2631918868054566,
0.25668932717036536,
0.25053735114397624,
0.24558880102946823,
0.24265714776905228,
0.24236456382735888,
0.24500007099550433
],
[
0.2449783354577219,
0.23574858327711243,
0.22660493825106257,
0.2172838877641723,
0.20747575864701645,
0.19690627816391879,
0.18542821612380897,
0.17310531824649922,
0.16027087990878622,
0.1475385933848218,
0.13573164968696355,
0.12569083225956595,
0.11796311425633615,
0.11251492118653422,
0.1087900551056836,
0.10612386470005303,
0.10410999155318491,
0.10269547048927975,
0.10204542714057382,
0.10233700146469693,
0.10360752741108861,
0.10572330631887117,
0.10853943449918924,
0.11211505954561554,
0.11681376451065519,
0.12325483116114168,
0.13209639560296882,
0.14368651919457412,
0.15779902933854614,
0.1737185626356665,
0.19052981816100692,
0.20734135731585002,
0.22339260120580479,
0.23808384400527313,
0.25096988563827743,
0.2617411279651076,
0.27020351426323136,
0.27626226039434504,
0.2799114526373751,
0.281230308884451,
0.2803861434473051,
0.2776432350888173,
0.2733754059423484,
0.26807772729307433,
0.2623691285321359,
0.2569734784785026,
0.2526649303550492,
0.25017010958586855,
0.2500406073087331,
0.2525379184699284
],
[
0.24115926284167394,
0.23197924946301487,
0.2230624376650253,
0.2141336389668719,
0.20485004204970628,
0.1948893001124255,
0.1840486286531551,
0.17233427504593463,
0.16002359672491784,
0.14768038903260602,
0.13609427230493373,
0.12610641998644426,
0.1183108943932329,
0.11274575649050655,
0.10891291366514476,
0.10617630516985846,
0.10412825693315493,
0.10269952426900548,
0.10203441790934294,
0.10228710628603509,
0.10348455333952872,
0.1055178975306427,
0.108285540345084,
0.11187232750592208,
0.1166331232958232,
0.12315101991396975,
0.13204199030060815,
0.14363209376527397,
0.1577139209488177,
0.17361015776215416,
0.19043305217542913,
0.20730337365965743,
0.22346295530669025,
0.23831075173783825,
0.25140035108161457,
0.2624228847617279,
0.27118742675203583,
0.2776044028616097,
0.2816743783723827,
0.28348307769358133,
0.2832025651033277,
0.28109757694779813,
0.27753461581527206,
0.2729892681472228,
0.26804425149195943,
0.2633677857267376,
0.2596616507442147,
0.2575752209712125,
0.2575987467460371,
0.2599699296398014
],
[
0.23698646283910213,
0.22786338501200926,
0.21920411113100174,
0.21071980447293426,
0.20202874305504936,
0.19275289682323668,
0.1826265892644145,
0.17159285738293312,
0.15986942977986934,
0.1479679848258467,
0.13664206316975183,
0.1267277387661136,
0.11885800741700428,
0.11314362621820424,
0.10915897632248749,
0.10631088186905062,
0.1041985900513845,
0.10273827001860518,
0.10204854981868529,
0.10225140039078821,
0.10335892516933186,
0.1052907172647426,
0.1079981564722235,
0.11160010456025805,
0.11644195804609098,
0.12306175128877336,
0.13202321100234118,
0.14362554567018881,
0.15767962104295186,
0.17354946511845964,
0.19037946147062013,
0.20730529815541685,
0.22357201266149304,
0.2385769856085766,
0.25187200219013756,
0.2631482796830125,
0.27221738892654296,
0.27899428545531196,
0.2834851868156914,
0.28578125103523555,
0.2860579144001091,
0.2845787296060771,
0.2817012140559968,
0.2778803406773187,
0.27366298583892473,
0.2696647842269137,
0.2665216287597989,
0.2648146309304094,
0.2649809304560467,
0.2672376974705969
],
[
0.2324954323032351,
0.22343360120356323,
0.21505992935146606,
0.20706979274625675,
0.19903616515954284,
0.19051718522304514,
0.1811769378942945,
0.17089016085521594,
0.1598123068438522,
0.14840180119633312,
0.13737436296509375,
0.12755576892903459,
0.1196089466824414,
0.11371773908019474,
0.10954368813809003,
0.10654944536531595,
0.10434709177692365,
0.1028378249674694,
0.10211032806503861,
0.10224857893807254,
0.10324846504477093,
0.10506077391543846,
0.10769527722074361,
0.11130980675540932,
0.11623913675113143,
0.12297074285098585,
0.13201215172535855,
0.14363519311177872,
0.1576681870961088,
0.17351599862986172,
0.19035616781765952,
0.20734021028833338,
0.22371662936150594,
0.23888110796460219,
0.25238337850350007,
0.26391445611524517,
0.27328805686203456,
0.28042317905836944,
0.28533099257956385,
0.2881071193132365,
0.28892912491336575,
0.28805796776959375,
0.28584089560281145,
0.2827116816691857,
0.27918234018218463,
0.27581940652670817,
0.2731992696350235,
0.27184300363835456,
0.2721418602756567,
0.2742952957795952
],
[
0.22773149767868847,
0.21873266397830615,
0.2106701384224711,
0.20322118234071945,
0.19590638924849535,
0.18821138349109087,
0.1797227350257254,
0.17024246352834868,
0.15986204450790906,
0.14898636146940833,
0.1382921746053485,
0.12859046140388156,
0.12056718910563455,
0.11448000826490626,
0.11008902487329801,
0.10692342694628482,
0.10461153193480802,
0.10303691373406158,
0.1022547236674644,
0.10230912862787295,
0.10318206585929167,
0.10485766703567334,
0.10740514214204237,
0.11102236856587054,
0.11603196009083876,
0.12286928514493103,
0.13198774049810175,
0.14363493115258166,
0.15765571553799312,
0.17349222553297156,
0.19035267082157764,
0.20740324231441384,
0.22389547423254652,
0.2392232893145529,
0.25293446551328097,
0.26471990836052084,
0.27439543823747947,
0.2818838329012183,
0.28720067515917835,
0.29044522177818144,
0.29179609810566237,
0.2915105142927947,
0.28992453816248354,
0.28745063122001785,
0.28456738343560223,
0.28179592992929337,
0.2796592510089164,
0.2786257863164369,
0.2790471734475748,
0.28110756935984427
],
[
0.2227515786528997,
0.21381543495350785,
0.20608720972291328,
0.19922350679955858,
0.19268474722640155,
0.18587489816456934,
0.1782959747143013,
0.16967365477987204,
0.16003466360892607,
0.14973078540094745,
0.1393993057328623,
0.12983325782700914,
0.1217381294293164,
0.1154464642964054,
0.11082378717623628,
0.10747321724884316,
0.10504023171469659,
0.1033859407814729,
0.10252866196458459,
0.10247539700745391,
0.10320046631628452,
0.10472297432897866,
0.10716812449956716,
0.11077070764382654,
0.11583947374010214,
0.12276051735210836,
0.13194066277938438,
0.1436094247166839,
0.157627276043959,
0.17346767208941272,
0.19036393196645024,
0.20749374193301895,
0.22411047405358794,
0.23960624252526827,
0.2535272885659848,
0.26556486245347627,
0.27553714802955004,
0.2833706609586016,
0.28908502542647857,
0.29278245884274157,
0.2946417633776268,
0.29491550463727856,
0.29392800361643723,
0.29207068939994596,
0.28979048511750194,
0.2875668739748638,
0.2858751214836471,
0.2851376142959659,
0.285671786816337,
0.28764855467446065
],
[
0.21762596956466917,
0.2087508657055297,
0.20137781585082382,
0.19513998089481,
0.1894291307605257,
0.1835581710615668,
0.17693805705801463,
0.16921552774507329,
0.16035280413178127,
0.15064978235290055,
0.14070457876713183,
0.13129098243987472,
0.1231332848042974,
0.11663984463047186,
0.11178436602043326,
0.10824728112829915,
0.10568982432799195,
0.10394433192538169,
0.10298864499582286,
0.1028001012609914,
0.10335555178045872,
0.10471013338347256,
0.10703723189888978,
0.11060089481813813,
0.1156945608414217,
0.12266253766596813,
0.1318771841510808,
0.14355827921283382,
0.15758100824498214,
0.17344246889112797,
0.19039310653102315,
0.20761720224311198,
0.22436809365805363,
0.24003603398931336,
0.25416641173979715,
0.2664515799919643,
0.27671259683802574,
0.2848798629933555,
0.2909768219956917,
0.2951081240561529,
0.29745204482281584,
0.29825584738926736,
0.2978318351998562,
0.2965509885973685,
0.2948305182952319,
0.29311193087062376,
0.2918280077130969,
0.2913608807261811,
0.29199842459079056,
0.2939000604485009
],
[
0.21243999240599395,
0.20362390038239309,
0.196624677936334,
0.1910489979062021,
0.18621095999786488,
0.18132312620261368,
0.17569988300834627,
0.16890779542450265,
0.1608460187601673,
0.15176467080664127,
0.14222401529146797,
0.13297903811156317,
0.12477363728740612,
0.1180920716185775,
0.11301552846882594,
0.109301098265413,
0.10662229650426967,
0.10477630513562897,
0.10369713537694368,
0.10334394389882738,
0.10370858879663349,
0.1048828358034529,
0.10707690097060879,
0.11057166362506085,
0.11564466147063589,
0.12261033368490228,
0.1318218612165711,
0.14349912911526397,
0.15753122399654415,
0.17343009187629344,
0.19045367764485394,
0.20778676057091244,
0.22468030863685615,
0.24052267680355016,
0.2548592814104623,
0.2673845484163863,
0.27792309115052044,
0.2864094705529458,
0.29287083632402455,
0.297413862602925,
0.3002157502854534,
0.30151800630571185,
0.3016208858846582,
0.30087572410154917,
0.2996720679467854,
0.29841696262353007,
0.29750544840690807,
0.2972844753723663,
0.2980163290819056,
0.2998504140990475
],
[
0.20729528585208992,
0.19853704268130926,
0.19192802772498907,
0.18704513216773597,
0.18311555965846596,
0.17924300143527672,
0.1746413910742673,
0.16879764149229548,
0.16155065756729636,
0.15310389809868644,
0.14398212167204727,
0.13492313387912713,
0.12669141909384812,
0.11984562517475719,
0.11457065110175824,
0.11069598322067872,
0.10790233801568365,
0.10594671002324141,
0.1047192963887762,
0.10417322319184055,
0.10432800757080257,
0.10531235169012329,
0.10736000519259575,
0.11075223177798564,
0.11575128137746679,
0.12265662042503725,
0.13181914915780454,
0.1434695972687763,
0.15751040380700587,
0.17345912057731427,
0.19057079809800026,
0.20802410175957045,
0.22506515095788868,
0.24108042651778566,
0.2556163650423735,
0.26837052873113837,
0.2791718301343471,
0.2879593118887587,
0.2947637677999601,
0.29969356426356997,
0.3029243975826133,
0.3046917258648511,
0.3052839060052227,
0.3050335735394019,
0.3043046718345935,
0.30347308177120563,
0.3029003585294353,
0.30290268462157144,
0.30372014265344194,
0.30549336724230247
],
[
0.20231037633236235,
0.1936112073429574,
0.18740629120724717,
0.18323926404869983,
0.18024161040391432,
0.17740130932979425,
0.1738303407827171,
0.16893861519307465,
0.16250907908655912,
0.15470265316736995,
0.14601178423710343,
0.13715918180242975,
0.1289299312910417,
0.12195317979350925,
0.11651082376664217,
0.1124975940886454,
0.10959573871575079,
0.10752006831562774,
0.1061215262719763,
0.10535802557829303,
0.10528730642944588,
0.10607472484841626,
0.10796382264082607,
0.11121930664604167,
0.11608871162994765,
0.12287164440325483,
0.1319338321732805,
0.14352801122650533,
0.15756995149566175,
0.1735738541654896,
0.19078168214561117,
0.20835963785413159,
0.22554673747861878,
0.2417277219980182,
0.25645105111521777,
0.26941844202548193,
0.28046379035937474,
0.28953089411316185,
0.2966541125740677,
0.301943199612929,
0.3055719916821471,
0.3077697187730461,
0.30881311165982595,
0.3090171263502681,
0.3087221098079832,
0.30827582184864355,
0.30801011855757354,
0.30821423898444017,
0.3091089442792336,
0.31082714736515066
],
[
0.1976200397939818,
0.1889853121267956,
0.18319544138641952,
0.1797573254644469,
0.17769928648323607,
0.1758896696490455,
0.17334017773176583,
0.16938873263667267,
0.1637680209850765,
0.15660136617888124,
0.1483526022209959,
0.1397312305802072,
0.1315411819430621,
0.12447513767830803,
0.11890231732176347,
0.11477359239440477,
0.11176802670500743,
0.10956056261127713,
0.10797093871877503,
0.10697083495400957,
0.10666326412753432,
0.1072487922862011,
0.10896793500767121,
0.11205504337813073,
0.11674226518655023,
0.12334182659250423,
0.13225004407800742,
0.1437526470964378,
0.15777950881139893,
0.17383361917030696,
0.19113491871587648,
0.20883187620488575,
0.226154727510586,
0.24248674137619433,
0.25737929506929746,
0.2705390886003655,
0.2818054977345804,
0.29112720567484435,
0.2985419724259467,
0.3041606089239303,
0.3081547654619422,
0.31074733064155863,
0.3122037500113015,
0.312822337333669,
0.31292174977669096,
0.31282439719721755,
0.3128357794419491,
0.3132214923195391,
0.31418542281509165,
0.31585364042856906
],
[
0.19337283925610893,
0.1848139088722446,
0.17944632627536747,
0.17673708817464762,
0.17560669817024918,
0.17480431950924286,
0.17324690249231806,
0.17020775214719103,
0.16537611190333265,
0.1588431141947474,
0.15104776102185066,
0.14268755715756856,
0.13458137889548727,
0.1274749626915981,
0.12181211231617987,
0.11758984939995469,
0.11448196436830722,
0.11213048202156792,
0.1103340417465774,
0.10908479169141155,
0.1085340534603988,
0.10891477162381466,
0.11045389502164721,
0.11334574966101477,
0.11780571576173601,
0.12416684986510017,
0.13286848015358285,
0.14423916036351167,
0.1582245749381161,
0.1743106020821239,
0.19168861599567316,
0.20948593792215967,
0.22692319915905731,
0.2433825750505493,
0.25841901761216307,
0.27174470716696864,
0.28320469431078366,
0.29275244710291193,
0.300428812417631,
0.3063452538248187,
0.3106708955505292,
0.31362219424365,
0.3154536732981438,
0.316448013072544,
0.31690395352340883,
0.31712104801100605,
0.31738137222188223,
0.3179297170059323,
0.3189551696768963,
0.32057768897190103
],
[
0.18972618070646471,
0.18126207978873782,
0.17631923733555904,
0.1743224623536516,
0.17408438546181637,
0.17424126343799087,
0.17362501396895247,
0.17145373662140945,
0.1673806767080381,
0.16147017153588272,
0.15413980876350794,
0.1460753411370775,
0.13810463856993185,
0.13101257352522744,
0.12530156797345576,
0.12100500725295286,
0.1177933890118804,
0.11528686609282922,
0.1132737959304778,
0.11177079323248834,
0.11097646403364235,
0.11115202985622681,
0.11250330326555756,
0.11517916888711228,
0.11937710805593349,
0.12545465150914467,
0.1339013404571381,
0.14509583421804095,
0.1590021796219017,
0.1750860844239641,
0.19250735666457058,
0.2103712557977144,
0.22788898588697282,
0.24444205300334831,
0.2595892842740384,
0.2730483954133044,
0.2846699158106584,
0.29441170258780447,
0.3023171783073185,
0.30849794221093063,
0.3131202037180892,
0.3163938834280958,
0.318562930038509,
0.3198953363210721,
0.32067154230605166,
0.3211704646215924,
0.32165331099917915,
0.3223465003251836,
0.3234260750790017,
0.32500649117518976
],
[
0.1868383716033321,
0.17849696333755938,
0.1739751687988345,
0.1726550398978587,
0.1732479096612401,
0.1742902817275173,
0.1745427926409925,
0.17317917619624845,
0.16982414862126838,
0.16452012933727964,
0.15766593207201407,
0.14993468007973082,
0.14215567987484806,
0.13513646087814116,
0.12941881228412921,
0.1250639327724005,
0.12174589705615416,
0.11907678445814039,
0.11684509169603371,
0.11509304395549078,
0.11406158345193526,
0.11403494499516495,
0.11519335955015633,
0.11763930543514818,
0.12155234147577622,
0.12731397417527607,
0.13546471110090744,
0.1464364138667567,
0.16021448148997208,
0.17624508717471807,
0.193658061637918,
0.2115385693875325,
0.22908957329939708,
0.24569230002783804,
0.2609093168959438,
0.27446342603932183,
0.2862100030909123,
0.2961105689571523,
0.30421038651800586,
0.3106205371878791,
0.3155038533474484,
0.3190635748629828,
0.3215333794007642,
0.3231674308859025,
0.3242293202674868,
0.3249792842590592,
0.3256598785073174,
0.3264812287915065,
0.32760781377119474,
0.3291490877071595
],
[
0.1848576045719244,
0.1766757622690418,
0.17256375676865265,
0.17186318674764284,
0.17319906964363205,
0.1750283393571252,
0.1760573910709973,
0.17542708279498617,
0.17274051750261615,
0.1680221242353888,
0.16165347674452088,
0.1542929847595513,
0.14676276183124143,
0.13987556657176897,
0.1341909440636264,
0.12979136731609509,
0.12636553762117816,
0.1235321878824051,
0.12108928298449177,
0.11910327054590075,
0.11784888095099559,
0.11762677297098334,
0.1185902584330455,
0.12079917672731856,
0.12441678210850478,
0.12984472616904066,
0.13766854903427306,
0.14837065484539208,
0.16196044735645287,
0.1778696741910587,
0.19520503331396222,
0.21303644037206693,
0.2305607161971748,
0.24715912603223433,
0.2623974064874222,
0.2760025028363439,
0.28783357651506636,
0.2978547616054595,
0.3061122007052099,
0.3127156608535815,
0.3178240496288741,
0.3216337242391432,
0.32436833285155836,
0.32626896781295417,
0.3275836525981306,
0.3285556534359124,
0.3294107844143316,
0.33034464875901015,
0.33151140802050066,
0.3330159247007412
],
[
0.18390858169276655,
0.1759309779429925,
0.17220881270353502,
0.17204984489956007,
0.1740168426544178,
0.17651324253588457,
0.17821034683973236,
0.1782275419343593,
0.1761522805390783,
0.17199372499796425,
0.16611645475318257,
0.15916086554134598,
0.15193259233018058,
0.14523269408942144,
0.1396180010563455,
0.135187573472673,
0.13165689337410902,
0.12866551203616733,
0.12602883661436382,
0.12383440191336158,
0.12237934445577917,
0.12197232745997069,
0.12274158582778263,
0.124712797190412,
0.12803613357751503,
0.13312726551162546,
0.14060512598715288,
0.15099326375532598,
0.16432622035230157,
0.18003151797735745,
0.19720465582726623,
0.2149076162266001,
0.23233398753797674,
0.24886538428230487,
0.26406981003605173,
0.27767700825774144,
0.2895485057855798,
0.2996497186395899,
0.30802650950248983,
0.3147864034438333,
0.32008375123787336,
0.324107762288394,
0.32707222581426126,
0.32920581257098686,
0.3307420948811333,
0.33190884938453014,
0.3329167875318454,
0.33394849316617387,
0.3351488572696503,
0.3366184826775511
],
[
0.18407859768111295,
0.17635473469501298,
0.17299354759225263,
0.17328114770117972,
0.17574960715719623,
0.17877854863462592,
0.18102416186394704,
0.18159518355847812,
0.18006830175324337,
0.17643891375643878,
0.17105358353718125,
0.1645303228197916,
0.15764879293528736,
0.15118312375588883,
0.14567198462286776,
0.1412274859291145,
0.13760159379861722,
0.1344670928244951,
0.13166332556826174,
0.12929494321048102,
0.12766879970937023,
0.12709087223966925,
0.12766945864403254,
0.12940821649871012,
0.13244845982554396,
0.13721255456086648,
0.14433752498271918,
0.15437249443237971,
0.1673753900583229,
0.1827847310277643,
0.19970041220160667,
0.21718564496140919,
0.23443450095191584,
0.2508294426782095,
0.26593971900289914,
0.2794962961505652,
0.2913614086836089,
0.30150022469588467,
0.3099570197464769,
0.3168360477184843,
0.3222864003207035,
0.326489814883833,
0.32965032103889025,
0.3319847122074464,
0.3337130698784411,
0.33504895444882893,
0.33618937413628364,
0.3373051656693758,
0.33853282540570107,
0.339968962601773
]
]
},
{
"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.634 (SEM: None)
lr: 1.3359e-06
momentum: 1",
"Arm 11_0
accuracy: 0.896833 (SEM: None)
lr: 7.62591e-05
momentum: 0.519881",
"Arm 12_0
accuracy: 0.9235 (SEM: None)
lr: 9.05666e-05
momentum: 0.798665",
"Arm 13_0
accuracy: 0.099 (SEM: None)
lr: 0.000202674
momentum: 1",
"Arm 14_0
accuracy: 0.726833 (SEM: None)
lr: 0.00101878
momentum: 0.199338",
"Arm 15_0
accuracy: 0.109833 (SEM: None)
lr: 0.00101147
momentum: 0.629143",
"Arm 16_0
accuracy: 0.772667 (SEM: None)
lr: 1.60926e-05
momentum: 0.490386",
"Arm 17_0
accuracy: 0.877333 (SEM: None)
lr: 0.000109182
momentum: 0",
"Arm 18_0
accuracy: 0.904333 (SEM: None)
lr: 0.000163595
momentum: 0.325695",
"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.9275 (SEM: None)
lr: 0.000399505
momentum: 0.41368",
"Arm 5_0
accuracy: 0.951 (SEM: None)
lr: 0.00035092
momentum: 0.826669",
"Arm 6_0
accuracy: 0.926667 (SEM: None)
lr: 0.000160271
momentum: 0.632927",
"Arm 7_0
accuracy: 0.151167 (SEM: None)
lr: 1e-06
momentum: 0",
"Arm 8_0
accuracy: 0.856333 (SEM: None)
lr: 0.000519225
momentum: 0",
"Arm 9_0
accuracy: 0.1015 (SEM: None)
lr: 0.00114307
momentum: 1"
],
"type": "scatter",
"x": [
2.1216593661487738e-05,
1.335901717944627e-06,
7.625909949622975e-05,
9.056658973323309e-05,
0.00020267356319257114,
0.0010187831410945006,
0.0010114677295762766,
1.6092626866645958e-05,
0.00010918214875380044,
0.00016359492171124078,
3.418102921796241e-05,
0.30446023318884685,
7.354792459527615e-05,
0.0003995053549220097,
0.00035092038639375316,
0.00016027088366303525,
1e-06,
0.0005192253094399174,
0.00114306787370732
],
"xaxis": "x",
"y": [
0.7110699415206909,
1.0,
0.5198810654623373,
0.7986654986264948,
1.0,
0.19933786240256632,
0.6291429910122956,
0.4903859800775452,
0.0,
0.32569540781567263,
0.9521583393216133,
0.42647070437669754,
0.2430550940334797,
0.4136803150177002,
0.8266688276419804,
0.6329273342257,
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.634 (SEM: None)
lr: 1.3359e-06
momentum: 1",
"Arm 11_0
accuracy: 0.896833 (SEM: None)
lr: 7.62591e-05
momentum: 0.519881",
"Arm 12_0
accuracy: 0.9235 (SEM: None)
lr: 9.05666e-05
momentum: 0.798665",
"Arm 13_0
accuracy: 0.099 (SEM: None)
lr: 0.000202674
momentum: 1",
"Arm 14_0
accuracy: 0.726833 (SEM: None)
lr: 0.00101878
momentum: 0.199338",
"Arm 15_0
accuracy: 0.109833 (SEM: None)
lr: 0.00101147
momentum: 0.629143",
"Arm 16_0
accuracy: 0.772667 (SEM: None)
lr: 1.60926e-05
momentum: 0.490386",
"Arm 17_0
accuracy: 0.877333 (SEM: None)
lr: 0.000109182
momentum: 0",
"Arm 18_0
accuracy: 0.904333 (SEM: None)
lr: 0.000163595
momentum: 0.325695",
"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.9275 (SEM: None)
lr: 0.000399505
momentum: 0.41368",
"Arm 5_0
accuracy: 0.951 (SEM: None)
lr: 0.00035092
momentum: 0.826669",
"Arm 6_0
accuracy: 0.926667 (SEM: None)
lr: 0.000160271
momentum: 0.632927",
"Arm 7_0
accuracy: 0.151167 (SEM: None)
lr: 1e-06
momentum: 0",
"Arm 8_0
accuracy: 0.856333 (SEM: None)
lr: 0.000519225
momentum: 0",
"Arm 9_0
accuracy: 0.1015 (SEM: None)
lr: 0.00114307
momentum: 1"
],
"type": "scatter",
"x": [
2.1216593661487738e-05,
1.335901717944627e-06,
7.625909949622975e-05,
9.056658973323309e-05,
0.00020267356319257114,
0.0010187831410945006,
0.0010114677295762766,
1.6092626866645958e-05,
0.00010918214875380044,
0.00016359492171124078,
3.418102921796241e-05,
0.30446023318884685,
7.354792459527615e-05,
0.0003995053549220097,
0.00035092038639375316,
0.00016027088366303525,
1e-06,
0.0005192253094399174,
0.00114306787370732
],
"xaxis": "x2",
"y": [
0.7110699415206909,
1.0,
0.5198810654623373,
0.7986654986264948,
1.0,
0.19933786240256632,
0.6291429910122956,
0.4903859800775452,
0.0,
0.32569540781567263,
0.9521583393216133,
0.42647070437669754,
0.2430550940334797,
0.4136803150177002,
0.8266688276419804,
0.6329273342257,
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": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter"
}
],
"scatter3d": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter3d"
}
],
"scattercarpet": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattercarpet"
}
],
"scattergeo": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergeo"
}
],
"scattergl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergl"
}
],
"scattermapbox": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattermapbox"
}
],
"scatterpolar": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolar"
}
],
"scatterpolargl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolargl"
}
],
"scatterternary": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterternary"
}
],
"surface": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "surface"
}
],
"table": [
{
"cells": {
"fill": {
"color": "#EBF0F8"
},
"line": {
"color": "white"
}
},
"header": {
"fill": {
"color": "#C8D4E3"
},
"line": {
"color": "white"
}
},
"type": "table"
}
]
},
"layout": {
"annotationdefaults": {
"arrowcolor": "#2a3f5f",
"arrowhead": 0,
"arrowwidth": 1
},
"autotypenumbers": "strict",
"coloraxis": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"colorscale": {
"diverging": [
[
0,
"#8e0152"
],
[
0.1,
"#c51b7d"
],
[
0.2,
"#de77ae"
],
[
0.3,
"#f1b6da"
],
[
0.4,
"#fde0ef"
],
[
0.5,
"#f7f7f7"
],
[
0.6,
"#e6f5d0"
],
[
0.7,
"#b8e186"
],
[
0.8,
"#7fbc41"
],
[
0.9,
"#4d9221"
],
[
1,
"#276419"
]
],
"sequential": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"sequentialminus": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
]
},
"colorway": [
"#636efa",
"#EF553B",
"#00cc96",
"#ab63fa",
"#FFA15A",
"#19d3f3",
"#FF6692",
"#B6E880",
"#FF97FF",
"#FECB52"
],
"font": {
"color": "#2a3f5f"
},
"geo": {
"bgcolor": "white",
"lakecolor": "white",
"landcolor": "#E5ECF6",
"showlakes": true,
"showland": true,
"subunitcolor": "white"
},
"hoverlabel": {
"align": "left"
},
"hovermode": "closest",
"mapbox": {
"style": "light"
},
"paper_bgcolor": "white",
"plot_bgcolor": "#E5ECF6",
"polar": {
"angularaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"radialaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"scene": {
"xaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"yaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"zaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
}
},
"shapedefaults": {
"line": {
"color": "#2a3f5f"
}
},
"ternary": {
"aaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"baxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"caxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"title": {
"x": 0.05
},
"xaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
},
"yaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
}
}
},
"width": 950,
"xaxis": {
"anchor": "y",
"autorange": false,
"domain": [
0.05,
0.45
],
"exponentformat": "e",
"range": [
-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": [
"