{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Loop API Example on Hartmann6\n", "\n", "The loop API is the most lightweight way to do optimization in Ax. The user makes one call to `optimize`, which performs all of the optimization under the hood and returns the optimized parameters.\n", "\n", "For more customizability of the optimization procedure, consider the Service or Developer API." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "data": { "text/html": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:43:45] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n" ] }, { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import numpy as np\n", "\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.metrics.branin import branin\n", "from ax.utils.measurement.synthetic_functions import hartmann6\n", "from ax.utils.notebook.plotting import render, init_notebook_plotting\n", "\n", "init_notebook_plotting()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 1. Define evaluation function\n", "\n", "First, we define an evaluation function that is able to compute all the metrics needed for this experiment. This function needs to accept a set of parameter values and can also accept a weight. It should produce a dictionary of metric names to tuples of mean and standard error for those metrics." ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": true }, "outputs": [], "source": [ "def hartmann_evaluation_function(parameterization):\n", " x = np.array([parameterization.get(f\"x{i+1}\") for i in range(6)])\n", " # In our case, standard error is 0, since we are computing a synthetic function.\n", " return {\"hartmann6\": (hartmann6(x), 0.0), \"l2norm\": (np.sqrt((x ** 2).sum()), 0.0)}" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If there is only one metric in the experiment – the objective – then evaluation function can return a single tuple of mean and SEM, in which case Ax will assume that evaluation corresponds to the objective. It can also return only the mean as a float, in which case Ax will treat SEM as unknown and use a model that can infer it. For more details on evaluation function, refer to the \"Trial Evaluation\" section in the docs." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 2. Run optimization\n", "The setup for the loop is fully compatible with JSON. The optimization algorithm is selected based on the properties of the problem search space." ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:43:45] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x2. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:43:45] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x3. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:43:45] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x4. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:43:45] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x5. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:43:45] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x6. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:43:45] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 6 trials, GPEI for subsequent trials]). Iterations after 6 will take longer to generate due to model-fitting.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:43:45] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:43:45] ax.service.managed_loop: Running optimization trial 1...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:43:45] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:43:45] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:43:45] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:43:45] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:43:45] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:43:45] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/models/torch/utils.py:274: UserWarning:\n", "\n", "This overload of nonzero is deprecated:\n", "\tnonzero()\n", "Consider using one of the following signatures instead:\n", "\tnonzero(*, bool as_tuple) (Triggered internally at /pytorch/torch/csrc/utils/python_arg_parser.cpp:882.)\n", "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:43:50] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:43:55] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:44:00] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:44:03] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:44:09] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:44:13] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:44:17] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:44:20] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:44:23] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:44:27] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:44:30] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:44:34] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:44:36] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:44:40] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:44:43] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:44:47] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:44:51] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:44:54] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:44:58] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:44:59] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:45:03] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:45:05] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 18:45:06] ax.service.managed_loop: Running optimization trial 30...\n" ] } ], "source": [ "best_parameters, values, experiment, model = optimize(\n", " parameters=[\n", " {\n", " \"name\": \"x1\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " \"value_type\": \"float\", # Optional, defaults to inference from type of \"bounds\".\n", " \"log_scale\": False, # Optional, defaults to False.\n", " },\n", " {\n", " \"name\": \"x2\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x3\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x4\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x5\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x6\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " ],\n", " experiment_name=\"test\",\n", " objective_name=\"hartmann6\",\n", " evaluation_function=hartmann_evaluation_function,\n", " minimize=True, # Optional, defaults to False.\n", " parameter_constraints=[\"x1 + x2 <= 20\"], # Optional.\n", " outcome_constraints=[\"l2norm <= 1.25\"], # Optional.\n", " total_trials=30, # Optional.\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "And we can introspect optimization results:" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'x1': 0.19298453986701336,\n", " 'x2': 0.1717481315220384,\n", " 'x3': 0.4799388516061354,\n", " 'x4': 0.2636397782441414,\n", " 'x5': 0.3036170698911488,\n", " 'x6': 0.6394931400039491}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'l2norm': 0.9315164494228187, 'hartmann6': -3.3007077845813684}" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "means, covariances = values\n", "means" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For comparison, minimum of Hartmann6 is:" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "-3.32237" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "hartmann6.fmin" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 3. Plot results\n", "Here we arbitrarily select \"x1\" and \"x2\" as the two parameters to plot for both metrics, \"hartmann6\" and \"l2norm\"." ] }, { "cell_type": "code", "execution_count": 7, "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": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y", "z": [ [ -2.231444735502834, -2.2858427222292987, -2.3370274492170062, -2.3844084816824944, -2.427384542829264, -2.4653566648763556, -2.4977444373124094, -2.5240053252207977, -2.5436564950816707, -2.5562977028758453, -2.5616328184282637, -2.5594870203368076, -2.549817043257005, -2.532713044791496, -2.508392180179924, -2.4771852640131606, -2.4395186435845173, -2.3958935846985328, -2.346865226650548, -2.29302269071959, -2.23497138719053, -2.173318067246815, -2.1086587658576015, -2.0415695002710055, -1.9725994207710473, -1.902266035686245, -1.8310521243889628, -1.7594039836345452, -1.6877307024451471, -1.616404214218953, -1.5457599239276711, -1.4760977502372512, -1.4076834571339363, -1.3407501782930182, -1.2755000611944047, -1.212105977697239, -1.1507132638648403, -1.0914414644858117, -1.0343860671378762, -0.9796202170557222, -0.9271964079011876, -0.8771481453200025, -0.8294915804826095, -0.7842271102135838, -0.7413409393063473, -0.7008065995818498, -0.662586419444561, -0.6266329372658581, -0.592890251935632, -0.5612953043491873 ], [ -2.268661702663894, -2.325109534959424, -2.3783215954980053, -2.4276782950980182, -2.472545028710658, -2.5122856259347612, -2.5462793110863275, -2.573941401855609, -2.594747452168389, -2.6082594094979914, -2.6141508685902832, -2.612227546406193, -2.6024394882352704, -2.584883166993202, -2.5597937124916057, -2.527529153147053, -2.4885493901825715, -2.443392711806579, -2.3926522471362333, -2.336954121617472, -2.2769384028791793, -2.2132433354299885, -2.146492910106262, -2.077287513392916, -2.0061972389958225, -1.9337573896202422, -1.8604657148635704, -1.7867809877394716, -1.7131225917977286, -1.6398708572403782, -1.5673679408315428, -1.4959190896821521, -1.4257941649686003, -1.3572293307563403, -1.290428837224351, -1.2255668477477415, -1.162789275848287, -1.1022156110163341, -1.0439407218933243, -0.9880366315096267, -0.9345542626432755, -0.8835251525116201, -0.8349631356125118, -0.7888659922538479, -0.7452170587117639, -0.7039867934638124, -0.6651342928303812, -0.6286087487666225, -0.5943508415082586, -0.5622940602411219 ], [ -2.3018513268724647, -2.360213576587925, -2.4153273965666933, -2.4665459780263217, -2.5132032363995997, -2.554627431358737, -2.590158630628077, -2.6191705438053727, -2.6410968588509194, -2.655460842023153, -2.661904764526469, -2.6602141137587445, -2.650331979534975, -2.6323613224672746, -2.6065556190723775, -2.5733004086480546, -2.533089150387241, -2.4864967414612975, -2.4341534379772956, -2.37672109943112, -2.3148728652552113, -2.249276689358825, -2.180582656191018, -2.109413686501879, -2.0363590900583173, -1.9619703956367849, -1.8867589388905814, -1.8111947739997336, -1.7357065650860821, -1.6606821917997947, -1.5864698651733016, -1.5133795964720633, -1.4416848975165273, -1.371624619685861, -1.3034048629903028, -1.237200907225293, -1.173159134385146, -1.1113989249831349, -1.0520145205675697, -0.9950768507177445, -0.9406353256502362, -0.888719595988865, -0.8393412800629143, -0.7924956570677395, -0.748163322191336, -0.7063117978454982, -0.6668970937267353, -0.6298652076963587, -0.5951535594125925, -0.562692349188441 ], [ -2.3306135855415175, -2.390722331621045, -2.4475790016643773, -2.5005119235855324, -2.5488259283812424, -2.591816059911374, -2.628785375740586, -2.65906764816787, -2.682055663707327, -2.6972342996045313, -2.7042144373193993, -2.702761237259589, -2.692810815756048, -2.6744725803642164, -2.648018105944607, -2.613859829856257, -2.572523710299755, -2.5246197437717885, -2.4708134094049123, -2.411800100408129, -2.3482836526993496, -2.2809593066207543, -2.210500886260017, -2.1375516541125026, -2.0627181656950255, -1.9865664564998553, -1.9096199822645212, -1.8323588505963326, -1.7552199926469898, -1.67859801185253, -1.6028465109819499, -1.5282797443657912, -1.4551744761865313, -1.3837719534234336, -1.3142799262134144, -1.246874669713267, -1.1817029796182301, -1.1188841276574433, -1.0585117732918288, -1.0006558336259364, -0.9453643158018281, -0.892665115751559, -0.8425677851145306, -0.7950652652787487, -0.7501355846081654, -0.7077435124759055, -0.6678421620266477, -0.6303745327407815, -0.5952749838362317, -0.5624706301966245 ], [ -2.3545734480550347, -2.416228333378722, -2.4746354033066638, -2.529100858073019, -2.5789033119013665, -2.623307565068332, -2.6615826704809105, -2.693025315322285, -2.7169898233153305, -2.7329245631819896, -2.7404103771444266, -2.7391929470894594, -2.7292016877633305, -2.7105520459139627, -2.683532568536749, -2.6485807949787166, -2.6062528273047025, -2.5571909867276696, -2.5020929279864683, -2.4416844020769775, -2.3766967743088863, -2.307849537141573, -2.2358374538399137, -2.1613216312416403, -2.0849237096462363, -2.007222407461081, -1.9287517908056713, -1.8500007891591912, -1.771413607965002, -1.6933907840099798, -1.6162906927003793, -1.540431358440251, -1.4660924502910353, -1.3935173714667137, -1.3229153756508887, -1.2544636656166124, -1.1883094490311565, -1.124571941466017, -1.0633443169125212, -1.0046956116680588, -0.9486725890449086, -0.8953015710461723, -0.844590240113513, -0.7965294103301743, -0.751094763874808, -0.7082485456082594, -0.6679412067209427, -0.6301129874418336, -0.5946954288338941, -0.561612804504241 ], [ -2.3733897058089157, -2.4363588875052855, -2.496091109409396, -2.551873547058214, -2.6029619054323763, -2.6485942478261784, -2.6880093644450223, -2.7204708378083606, -2.745298598296575, -2.761908331460633, -2.7698539689609247, -2.768863688133394, -2.758860726426582, -2.7399656179736014, -2.712481658671138, -2.6768683167577114, -2.63370804934062, -2.58367138655578, -2.527483944653631, -2.4658976977415366, -2.3996676253769174, -2.3295338852671286, -2.2562089967244057, -2.1803691694545058, -2.102648829062583, -2.0236374890924305, -1.9438783008998077, -1.8638677979668863, -1.7840564972190804, -1.7048501169179997, -1.6266112291758736, -1.5496612012981394, -1.474282307231967, -1.4007199156038554, -1.3291846861522938, -1.259854730701747, -1.1928777160685222, -1.1283729026805212, -1.0664331234329185, -1.007126712603642, -0.9504993954691447, -0.8965761469299578, -0.8453630233655416, -0.7968489672962364, -0.7510075801423755, -0.707798855005447, -0.667170859219687, -0.629061355464013, -0.5933993503522663, -0.5601065604131945 ], [ -2.386763828818405, -2.450785858494842, -2.511586875077514, -2.5684385030466164, -2.6205773150751983, -2.6672187055027154, -2.7075756646667974, -2.74088373584386, -2.766434168932297, -2.783615816416093, -2.791960647296643, -2.7911823732014307, -2.7811987090872683, -2.7621336638403853, -2.7343018884411787, -2.698180207257298, -2.65437222994683, -2.6035712888181, -2.546525650334261, -2.4840084985322863, -2.41679384807627, -2.345638463904016, -2.2712691282912454, -2.194374227434825, -2.115598577197728, -2.03554056117615, -1.9547508880414788, -1.8737324933452901, -1.792941268231704, -1.7127873912684861, -1.6336370893662482, -1.555814682160651, -1.4796047872012335, -1.4052545880100842, -1.3329760942153346, -1.262948349941809, -1.1953195702347807, -1.130209203166527, -1.0677099265053718, -1.0078895927838913, -0.9507931365336879, -0.8964444539977401, -0.8448482604237448, -0.7959919244561335, -0.749847274166928, -0.7063723654820617, -0.6655132014082046, -0.6272053895229253, -0.5913757254676315, -0.5579436914012912 ], [ -2.3944487973120987, -2.4592355787879865, -2.5208207149946134, -2.578464109545525, -2.6313875075590722, -2.678788412890803, -2.7198593934727335, -2.753814203523497, -2.77992262376895, -2.797554153448158, -2.8062250932343744, -2.805638441512598, -2.7957070341204866, -2.776556123833042, -2.748507308031078, -2.712048995893332, -2.667799535491926, -2.6164685456643375, -2.5588206917105487, -2.4956446100893857, -2.427728221141003, -2.3558404613338446, -2.2807186445727057, -2.203060270963238, -2.1235180825193973, -2.042697378214739, -1.9611548874116564, -1.8793987476676792, -1.7978892950547627, -1.7170404600367721, -1.637221599754566, -1.5587596173060425, -1.4819412380371402, -1.407015338220046, -1.3341952515403865, -1.2636610091956548, -1.1955614957565632, -1.130016522425327, -1.067118831000006, -1.0069360463529897, -0.9495125941596492, -0.8948715959493214, -0.8430167471887919, -0.7939341775828155, -0.7475942871425512, -0.7039535474207945, -0.6629562548403667, -0.6245362221667246, -0.5886183946420416, -0.5551203787725942 ], [ -2.3962577590016183, -2.461498845025676, -2.523559376018447, -2.5816916889179256, -2.6351075763339322, -2.6829923029757166, -2.7245245556938764, -2.758903852015055, -2.7853868890847044, -2.8033321507415896, -2.812247087752761, -2.8118279542863918, -2.8019832554098434, -2.7828368583966347, -2.754712250745875, -2.7181028499873108, -2.6736344687498597, -2.6220256749010113, -2.5640505656626087, -2.5005069015573547, -2.432190961407397, -2.359879136845564, -2.2843153676679693, -2.206203102239241, -2.1262004826983087, -2.044917727251043, -1.9629160174677223, -1.8807074670353594, -1.7987559080999957, -1.717478302435047, -1.6372466085646016, -1.5583899472713174, -1.4811969250462793, -1.405918002395879, -1.3327678278935302, -1.2619274932348814, -1.1935466938813004, -1.1277458009588746, -1.0646178620885536, -1.0042305527361548, -0.9466280975039358, -0.89183317487125, -0.83984881138199, -0.7906602638504912, -0.7442368819274383, -0.7005339389111924, -0.659494416156132, -0.6210507256697553, -0.5851263561819255, -0.5516374297229008 ], [ -2.3920720753676066, -2.4574405170784432, -2.5196497679335295, -2.5779490509538636, -2.6315456483789488, -2.679619128837197, -2.721341985036986, -2.7559081518848703, -2.7825702860156376, -2.8006842893802957, -2.8097553883837403, -2.8094768832849253, -2.7997534067920338, -2.780704724065492, -2.752650972218187, -2.716083680470385, -2.671628422530394, -2.620004903709357, -2.5619892382369187, -2.498381611596125, -2.4299808406862597, -2.3575658718920085, -2.281883244837999, -2.2036391053702102, -2.1234943984260015, -2.0420621973333137, -1.959906501343722, -1.8775421136189827, -1.7954353620819008, -1.714005479572465, -1.6336264695118348, -1.5546292874708125, -1.4773041854993314, -1.4019030967024524, -1.3286419761820636, -1.2577030530963862, -1.1892369808784533, -1.1233648951950574, -1.060180401412803, -0.9997515165576756, -0.9421225874488173, -0.8873161995411585, -0.835335082411979, -0.7861640095812554, -0.7397716836124437, -0.696112592756585, -0.6551288228680225, -0.6167518077187975, -0.5809040017834548, -0.5475004616094366 ], [ -2.38184799014799, -2.447007676306905, -2.509028918059879, -2.567162547277677, -2.6206172510147225, -2.668574114250841, -2.710207852829555, -2.744715985130384, -2.771356206773107, -2.789489854145409, -2.7986260082524645, -2.7984584747295966, -2.788888471379056, -2.770029163213783, -2.742192349417666, -2.705860926214506, -2.6616525327943306, -2.610280094936816, -2.552514172762635, -2.489150526069895, -2.420984570249215, -2.3487928183049793, -2.2733203103724127, -2.1952725624446026, -2.1153106362744403, -2.0340482971488956, -1.9520506261465265, -1.869833734802621, -1.787865365445796, -1.7065661966410661, -1.6263116703968272, -1.54743415698536, -1.470225290639926, -1.394938344165103, -1.3217905540460702, -1.2509653504247313, -1.1826144813044355, -1.1168600440968546, -1.0537964498257182, -0.9934923477711974, -0.9359925339268835, -0.8813198583530633, -0.8294771369391163, -0.7804490641420683, -0.7342041161189037, -0.6906964288405177, -0.6498676332976896, -0.6116486295014716, -0.5759612821919673, -0.5427200235052587 ], [ -2.3656210113163496, -2.430235059816635, -2.49173063178653, -2.549365081079838, -2.602354669618848, -2.6498894557807486, -2.691154887242396, -2.7253610243784503, -2.7517791459806915, -2.769783322119059, -2.7788919338811437, -2.7788024539424163, -2.7694132762835943, -2.7508289341287036, -2.7233485003508724, -2.687440045232394, -2.6437059879101783, -2.592844817128971, -2.535614115495391, -2.4727984478771474, -2.405183931194222, -2.333539666906885, -2.258605068860779, -2.1810816281878393, -2.1016277356914848, -2.0208555632825957, -1.93932941131936, -1.8575652002412069, -1.7760309027253844, -1.695147732772563, -1.6152918958604088, -1.536796700881162, -1.4599548541657987, -1.3850207950651925, -1.3122129807147935, -1.241716074035142, -1.1736830262567952, -1.1082370699140993, -1.045473650340358, -0.9854623254372108, -0.9282486580930183, -0.8738561163619611, -0.8222879861470673, -0.7735292916393104, -0.7275487113292156, -0.6843004725159774, -0.6437262048687835, -0.6057567334012812, -0.5703137927008513, -0.5373116468702417 ], [ -2.3435072618448536, -2.4072467631062957, -2.4678875237564677, -2.5246983688827367, -2.5769092515847998, -2.6237264183657345, -2.6643540353440143, -2.6980228585123687, -2.724025336080947, -2.741754668508708, -2.750743340648687, -2.7506954274422593, -2.741507331795312, -2.7232735511250334, -2.696276880425202, -2.6609652322727064, -2.6179192793824386, -2.567816021063088, -2.51139309057526, -2.4494174081117728, -2.382660103221901, -2.3118779979432, -2.2378007767495594, -2.1611224631316306, -2.0824958906725106, -2.0025292264384067, -1.9217839940974901, -1.8407742968861394, -1.759967041041983, -1.6797829684730505, -1.6005982895221345, -1.5227467028540556, -1.4465216118393336, -1.372178389937127, -1.2999365994999328, -1.2299821176559211, -1.162469161793113, -1.097522232403804, -1.0352380029536226, -0.9756871875596309, -0.9189164110848826, -0.8649500962570147, -0.8137923714743522, -0.7654289931059737, -0.7198292684998138, -0.6769479610391909, -0.6367271563632175, -0.5990980688952383, -0.5639827695599728, -0.531295818441919 ], [ -2.3157014461345082, -2.3782538088964755, -2.4377280184029475, -2.4934091540897176, -2.544546603502841, -2.5903693563819736, -2.630107314921175, -2.663018895559664, -2.6884240874731575, -2.705740593311929, -2.7145191350566327, -2.714473108555983, -2.7054980231522907, -2.687677621599717, -2.661275835859482, -2.6267161675803843, -2.584552060994634, -2.5354328874092813, -2.480070095667412, -2.419207060112984, -2.3535946043615206, -2.28397261707831, -2.2110570367075093, -2.1355309678636534, -2.058038729812542, -1.9791819684218228, -1.8995173169718766, -1.819555318149472, -1.7397604047642394, -1.660551737788456, -1.582304680688407, -1.5053526865103004, -1.4299893992386803, -1.356470817029483, -1.285017419349825, -1.2158162110301864, -1.1490226760395812, -1.084762659294197, -1.0231342065269438, -0.964209392932593, -0.908036164626542, -0.854640206510541, -0.804026838873448, -0.7561829350276583, -0.7110788446618368, -0.6686703028065177, -0.6289003022544264, -0.5917009075219317, -0.556994990403741, -0.5246978702654872 ], [ -2.2824715238325117, -2.3435477971374863, -2.4015687478078673, -2.4558401250130113, -2.5056358597251047, -2.550213296262829, -2.588833867059866, -2.620789238040933, -2.6454319777423803, -2.6622085630457937, -2.6706913559092933, -2.670605509311095, -2.6618469319196922, -2.644488536671517, -2.618773802966049, -2.5850987700183508, -2.5439854206372225, -2.4960505197050797, -2.4419740744850613, -2.3824707632154856, -2.3182663069009863, -2.2500793280575566, -2.178608166754275, -2.104521611068431, -2.028452491294569, -1.950993356531406, -1.8726937546333506, -1.794058832599006, -1.7155490468615069, -1.6375807715295498, -1.560527574634912, -1.4847219324453138, -1.4104571791478384, -1.337989536892442, -1.267540126643984, -1.1992969118267665, -1.1334165667576315, -1.0700262873434068, -1.0092255730863346, -0.9510880099371972, -0.89566307668249, -0.8429779869843845, -0.7930395678771693, -0.745836165523889, -0.701339561513753, -0.6595068783466997, -0.6202824508794089, -0.5835996409470168, -0.5493825745322298, -0.5175477841209724 ], [ -2.2441505459848137, -2.303491291021308, -2.359803268375345, -2.4124167818005597, -2.4606346082857127, -2.5037469671204637, -2.5410512974686066, -2.571876687691113, -2.5956119755795917, -2.6117355567147165, -2.6198440412914716, -2.61967638926787, -2.61113027034519, -2.5942682233740415, -2.5693126242904762, -2.5366302250666672, -2.4967086672228263, -2.450128446244837, -2.397534019388875, -2.339607127801351, -2.277044248394324, -2.210538835161089, -2.1407680341404807, -2.0683830546575135, -1.9940023193255483, -1.9182067093952084, -1.841536462332537, -1.7644894401556934, -1.6875205481893272, -1.6110420832246244, -1.5354247760708408, -1.4609992966444643, -1.3880580184259987, -1.3168568869541852, -1.2476172920091984, -1.1805278940513932, -1.1157463949946131, -1.053401268583686, -0.9935934771294348, -0.9363982019164399, -0.8818666079029245, -0.8300276529678434, -0.7808899408634964, -0.7344436072517084, -0.6906622208888051, -0.649504677589813, -0.6109170629131688, -0.5748344601125106, -0.5411826822041035, -0.5098799103893634 ], [ -2.2011263404024968, -2.258505830562499, -2.312888223135283, -2.363631623193779, -2.41007106629927, -2.4515330401060154, -2.4873541693423253, -2.5169037804490184, -2.539609381964805, -2.554983328690393, -2.56264825861781, -2.562358509440589, -2.5540148076920537, -2.5376701581198406, -2.5135259977214153, -2.481919121184908, -2.4433012917774235, -2.3982144323780807, -2.347264572013576, -2.291097283576883, -2.2303764201153156, -2.1657669003474678, -2.097921437814467, -2.0274706299689664, -1.9550157135002197, -1.8811234081518429, -1.8063224455469147, -1.7311015045870741, -1.6559083250046895, -1.5811497720292131, -1.5071926162060647, -1.4343647988559707, -1.362956982980959, -1.293224236093811, -1.2253877445914187, -1.1596365085106335, -1.0961290038629024, -1.0349948243963134, -0.9763363260877658, -0.9202302985345436, -0.8667296811871597, -0.8158653325083103, -0.7676478495150714, -0.7220694257753906, -0.6791057289303537, -0.6387177746154891, -0.6008537721410918, -0.5654509180247351, -0.5324371158637442, -0.5017326044942068 ], [ -2.1538298398488522, -2.209058544988065, -2.2613281061275607, -2.3100269853684536, -2.354524987600317, -2.394187177738583, -2.428391341034836, -2.456548622689929, -2.478126431068894, -2.492672093732172, -2.499835245372867, -2.4993866465616508, -2.491231205415293, -2.47541346911007, -2.452114750139513, -2.421642215955287, -2.3844114387059037, -2.3409247574878407, -2.2917481117806706, -2.2374887194402704, -2.1787752612865177, -2.116241379727028, -2.050512571663538, -1.9821961129752683, -1.9118735021805047, -1.8400949550929149, -1.76737559271328, -1.6941930526724325, -1.6209862925052905, -1.5481553559777443, -1.4760618696476244, -1.40503004620318, -1.335348000288891, -1.2672692269533483, -1.201014143053985, -1.1367716385805493, -1.0747006214945645, -1.014931563558871, -0.9575680660812302, -0.9026884658546843, -0.8503474960792015, -0.8005780079605178, -0.7533927487405832, -0.7087861830764846, -0.6667363380843012, -0.6272066484335568, -0.5901477765276137, -0.5554993836258917, -0.5231918301988099, -0.49314778727572284 ], [ -2.102722851567037, -2.1556483041723453, -2.2056597096929673, -2.2521777448938827, -2.2946086330696285, -2.3323573336126895, -2.364843700976271, -2.391521205814969, -2.4118973689551293, -2.425554601792794, -2.4321697676970953, -2.4315305800924047, -2.4235470227948, -2.408256370275447, -2.3858210921297522, -2.3565198491997927, -2.3207327328833567, -2.2789226197156505, -2.231614817244689, -2.1793770138431814, -2.1228010250607645, -2.062487163303164, -1.9990314590143354, -1.9330155634521735, -1.8649989882436107, -1.79551332220947, -1.7250581197548582, -1.6540982079478588, -1.583062184159346, -1.5123418789533094, -1.4422925585157373, -1.373233652329397, -1.3054498200491578, -1.2391922128992485, -1.1746798313678182, -1.112100924336036, -1.0516144092334898, -0.9933513156922809, -0.9374162665981742, -0.883889012409085, -0.8328260300323211, -0.7842621894345958, -0.7382124820797116, -0.6946737971248365, -0.6536267251790073, -0.6150373657863968, -0.5788591135954659, -0.5450343990454933, -0.5134963618245305, -0.48417043878084587 ], [ -2.048285993507916, -2.0987922382337096, -2.1464371842845393, -2.1906749107582164, -2.2309489214099667, -2.2667045177551217, -2.297403626341187, -2.3225416571419797, -2.3416656196561156, -2.3543923754223894, -2.360425627980837, -2.359570116040076, -2.351741545699851, -2.336971111899066, -2.315404013018078, -2.287292084882037, -2.2529814280181886, -2.2128964928456574, -2.1675223713105045, -2.117386969698344, -2.0630443749422698, -2.0050602257740326, -1.9439994215041505, -1.8804161542992728, -1.8148460658956274, -1.7478002719085528, -1.6797610045437243, -1.611178645912961, -1.5424699351274844, -1.4740171329669467, -1.406167929315992, -1.3392358908251216, -1.2735012728135355, -1.20921205715323, -1.146585120060506, -1.0858074733666578, -1.0270375547710722, -0.9704065642641737, -0.9160198552463963, -0.8639583914994873, -0.8142802776200668, -0.7670223635154294, -0.7222019154717176, -0.6798183389122394, -0.6398549323649614, -0.6022806488271402, -0.5670518396493605, -0.5341139569473417, -0.5034031929154896, -0.4748480377516633 ], [ -1.9910073943689368, -2.0390132873873257, -2.084218433284692, -2.1261108846778636, -2.1641715966465305, -2.1978859273675537, -2.2267571410141183, -2.2503214942062013, -2.268164212380843, -2.279935400233105, -2.285364730230663, -2.284273666185978, -2.2765840488606304, -2.2623221241481235, -2.241617526798297, -2.214697292155442, -2.1818755518272948, -2.1435400445057633, -2.1001368273157146, -2.0521545603700844, -2.000109497286811, -1.944531949629204, -1.8859546208749456, -1.8249029120360658, -1.7618871192683563, -1.6973963587618974, -1.6318940274775027, -1.5658146036961156, -1.4995615890368579, -1.4335063903072074, -1.3679879407937383, -1.3033128723657628, -1.2397560738858733, -1.1775615050832473, -1.1169431726734034, -1.0580862111789786, -1.0011480400850372, -0.946259589273621, -0.8935265958336156, -0.8430309786052552, -0.7948322943394217, -0.7489692735189555, -0.7054614268655788, -0.6643107070007461, -0.6255032047009508, -0.5890108561819425, -0.5547931369080599, -0.522798718297597, -0.49296706596566753, -0.46522996134810346 ], [ -1.9313725952286724, -1.9768292472581563, -2.019553328706513, -2.059066890949805, -2.0948879268884437, -2.1265409726808113, -2.153569323289795, -2.1755484615297314, -2.1921000866023395, -2.2029059324264995, -2.207720424342258, -2.2063811709168344, -2.198816355586764, -2.1850482979003556, -2.1651927909631996, -2.1394542523756246, -2.1081171770795146, -2.071534758030281, -2.0301157614727012, -1.9843107691043558, -1.9345987498946833, -1.8814746668903695, -1.8254385417473171, -1.7669861582026125, -1.7066014167571533, -1.6447502542713248, -1.5818759925341073, -1.5183959555442517, -1.45469918124794, -1.391145045295871, -1.3280626138679938, -1.2657505526365616, -1.2044774399495064, -1.144482361639675, -1.085975697815711, -1.0291400435797584, -0.974131231910148, -0.9210794457372415, -0.8700904170772852, -0.8212467149019265, -0.7746091219741662, -0.7302180962313283, -0.6880953063667201, -0.648245225577539, -0.610656763016745, -0.5753049098176135, -0.542152375744628, -0.5111511933693904, -0.48224426881776505, -0.455366861168895 ], [ -1.8698559240675596, -1.912743575602864, -1.9529739994758961, -1.9901028055306742, -2.0236841363936535, -2.053280369287487, -2.0784731036276103, -2.0988750615985134, -2.114142364249218, -2.123986501042433, -2.128185212299004, -2.1265914766676874, -2.1191398597342177, -2.105849645660438, -2.0868244358939108, -2.0622482295995357, -2.03237834764717, -1.9975358595060297, -1.9580943602521137, -1.914467991656267, -1.8670995154790406, -1.8164490709970782, -1.7629840391577996, -1.707170241879102, -1.6494645548258486, -1.5903089105568062, -1.530125606347168, -1.4693137932398432, -1.4082469995999625, -1.347271529260605, -1.2867055710439135, -1.2268388637850793, -1.1679327783848774, -1.1102207032543774, -1.0539086477983042, -0.9991760061009825, -0.9461764463295321, -0.8950389085200694, -0.8458687037934964, -0.798748712281564, -0.7537406765385408, -0.7108865836954301, -0.67021012476395, -0.6317182146877545, -0.5954025529183795, -0.5612412019693276, -0.5292001607101069, -0.49923490996781195, -0.47129191000980186, -0.44531003232443145 ], [ -1.806913461268425, -1.8472380486372237, -1.8849872406958736, -1.9197493839711415, -1.9511135144089682, -1.978678178972283, -2.0020612703645897, -2.020910534740628, -2.034914286393969, -2.043811757527897, -2.047402444109475, -2.045553797848482, -2.038206672802153, -2.0253780690395153, -2.0071609199705045, -1.9837209237970421, -1.9552906864734343, -1.9221616771898935, -1.884674654770209, -1.8432092797151383, -1.7981735836670028, -1.7499938515100522, -1.6991053190535583, -1.6459439370024216, -1.590939323100815, -1.5345089273987802, -1.4770533679405373, -1.4189528486573244, -1.3605645414455196, -1.3022207968248285, -1.244228041079941, -1.186866221929567, -1.1303886782801222, -1.0750223299696535, -1.020968107139395, -0.9684015624146043, -0.917473629491047, -0.8683115071517697, -0.8210196575188664, -0.7756809118472303, -0.7323576774682565, -0.6910932370114411, -0.6519131272041043, -0.6148265805917896, -0.5798280103058331, -0.546898516029418, -0.5160073887484247, -0.4871135926375494, -0.46016720428853897, -0.43511079212534276 ], [ -1.742977588299306, -1.7807672145543347, -1.816068937629037, -1.848502719846433, -1.8776909636310095, -1.9032664884705242, -1.9248812975395981, -1.942215828631228, -1.9549882884672944, -1.962963592568128, -1.9659613881263138, -1.9638626367203023, -1.9566142858502498, -1.94423166641834, -1.9267984126494346, -1.9044638963752265, -1.8774383732257212, -1.8459862216300857, -1.8104177860101425, -1.7710803939801978, -1.7283491019913826, -1.6826176495882659, -1.6342899940075024, -1.5837726795851998, -1.5314681891084678, -1.4777693362650686, -1.4230546913189785, -1.3676849834970408, -1.312000389968087, -1.256318600373616, -1.2009335363373848, -1.1461146062086205, -1.0921063849117862, -1.0391286247784848, -0.9873765226314155, -0.9370211881316903, -0.8882102759427697, -0.8410687579172589, -0.7956998205616463, -0.7521858776367523, -0.7105896887004639, -0.6709555728282213, -0.6333107038553532, -0.5976664703299839, -0.5640198807332848, -0.5323549928946909, -0.5026443460948724, -0.474850375076467, -0.4489267868892801, -0.4248198839238755 ], [ -1.6784530196512746, -1.7137544942673544, -1.7466602971450833, -1.7768206630951455, -1.8038896499618668, -1.8275323177630232, -1.8474325166059482, -1.8633010127295813, -1.8748836098476969, -1.8819688675401025, -1.8843949893835528, -1.8820554590426966, -1.8749030482046949, -1.8629519075637893, -1.8462775769000288, -1.825014901404822, -1.7993540004304251, -1.769534578993658, -1.7358389798164768, -1.6985844297801724, -1.6581149361103318, -1.6147932425681162, -1.5689931801771542, -1.521092658205815, -1.471467453789836, -1.4204858817094852, -1.368504363125951, -1.3158638637857827, -1.2628871371806114, -1.2098766851448302, -1.1571133363229014, -1.1048553406914792, -1.053337884268649, -1.0027729400889975, -0.9533493868808818, -0.905233343054002, -0.8585686783877042, -0.8134776776742207, -0.7700618387781524, -0.728402792113602, -0.6885633299656511, -0.6505885332728532, -0.6145069814211555, -0.580332028178068, -0.5480631248130097, -0.5176871701560513, -0.4891798670457461, -0.46250706531487684, -0.4376260730264725, -0.4144869198925174 ], [ -1.6137141595775197, -1.646589722650923, -1.6771656269623565, -1.705120882313981, -1.730139379611694, -1.751916326086153, -1.770165144458481, -1.7846245985427889, -1.7950658535041557, -1.8012991393007032, -1.8031796676011491, -1.8006124613043317, -1.7935557952288272, -1.7820230171187204, -1.7660826163270555, -1.7458565250264866, -1.7215167604403934, -1.6932806302871908, -1.6614048117596347, -1.6261786657862642, -1.5879171593057881, -1.546953742925706, -1.503633479481218, -1.4583066527460344, -1.4113230158514232, -1.3630267737354356, -1.3137523376246905, -1.2638208439624203, -1.2135373956468278, -1.1631889595813227, -1.1130428406886348, -1.063345647693431, -1.014322668664998, -0.9661775826081371, -0.9190924450875726, -0.8732278987608304, -0.8287235718756181, -0.785698637889662, -0.7442525166530471, -0.7044657019253329, -0.6664007017313065, -0.6301030778531578, -0.5956025693922571, -0.5629142835597922, -0.5320399352753145, -0.5029691161748673, -0.47568057346246184, -0.45014347971672786, -0.4263186761968256, -0.40415987421267485 ], [ -1.5491035956203967, -1.579627900253255, -1.607951388427434, -1.6337802516116893, -1.656826339491819, -1.676812908801834, -1.693480721242475, -1.7065942836695231, -1.7159479830466522, -1.7213718404216254, -1.7227365972983653, -1.7199578580887995, -1.7129990460622389, -1.7018729873511458, -1.6866420152257224, -1.6674165787642257, -1.6443524367655904, -1.6176466078065128, -1.5875323194747977, -1.554273245582233, -1.518157335954307, -1.479490530941324, -1.4385906180967993, -1.3957814396904347, -1.3513876049949975, -1.3057298071740153, -1.2591207955428767, -1.2118620125066062, -1.1642408717563968, -1.1165286306409183, -1.0689787947469154, -1.0218259858708016, -0.9752852045145386, -0.9295514231754425, -0.8847994551658596, -0.8411840536368784, -0.7988402052602852, -0.7578835914273647, -0.7184111961342765, -0.6805020437242166, -0.6442180515399862, -0.6096049827826822, -0.5766934840787474, -0.5455001910379211, -0.5160288839489731, -0.48827167507295166, -0.4622102089553466, -0.43781685784498836, -0.4150558956222514, -0.3938846354740888 ], [ -1.484931533561575, -1.5131889263626168, -1.5393462596731826, -1.56313526562007, -1.5842938730848664, -1.6025713285796843, -1.6177335759029239, -1.6295687155452268, -1.637892334381657, -1.6425524762352717, -1.643434017927836, -1.6404622260868411, -1.633605298632366, -1.6228757412352106, -1.6083304907558877, -1.5900697700437032, -1.5682347346172187, -1.543004043406715, -1.514589544736816, -1.4832313086691988, -1.4491922544709224, -1.4127526177365586, -1.3742044791237424, -1.3338465412160772, -1.2919792976307682, -1.2489006944095573, -1.204902342002533, -1.1602662994823296, -1.1152624225972136, -1.0701462446185328, -1.025157343730297, -0.9805181424718883, -0.9364330825330289, -0.8930881207036474, -0.850650497478709, -0.8092687371627183, -0.7690728459301457, -0.7301746811058909, -0.6926684702583659, -0.6566314622750051, -0.6221246944894301, -0.5891938604761386, -0.5578702627779248, -0.5281718340675563, -0.5001042094899391, -0.473661832501584, -0.44882907660597415, -0.42558136604494434, -0.40388627971697333, -0.3837046242585207 ], [ -1.4214759862906177, -1.4475581006158809, -1.4716419719856924, -1.493483222887364, -1.512844011794109, -1.5294975834229534, -1.5432330073281644, -1.5538599505524409, -1.5612133073294432, -1.5651574948448381, -1.5655902213242412, -1.5624455430412396, -1.5556960510659243, -1.5453540662995768, -1.5314717706509906, -1.5141402595529287, -1.493487561338586, -1.469675726291766, -1.4428971364576055, -1.4133702216908315, -1.3813347851496793, -1.34704714224227, -1.3107752629195057, -1.2727940817878676, -1.2333811080539867, -1.1928124319309796, -1.1513591892936734, -1.1092845146468804, -1.0668409855916376, -1.0242685408989287, -0.9817928393529931, -0.939624017482847, -0.8979558004870389, -0.8569649210561334, -0.816810804190707, -0.7776354812356567, -0.7395637020474426, -0.7027032195534026, -0.667145225330299, -0.6329649179229477, -0.6002221874301712, -0.5689624006092149, -0.539217270722961, -0.5110057959485825, -0.4843352497258764, -0.4592022062129095, -0.4355935842055296, -0.4134876935369183, -0.39285526909315394, -0.37366047909206923 ], [ -1.358983546080919, -1.3829872048640615, -1.4050947149067183, -1.4250839590761513, -1.4427395314630043, -1.457856771885238, -1.4702459341996201, -1.4797363559280379, -1.4861804797544536, -1.4894575677378472, -1.4894769484204806, -1.4861806466391052, -1.479545266269059, -1.469583026907646, -1.4563418950993072, -1.4399047964155924, -1.4203879427773463, -1.3979383554313682, -1.372730703529846, -1.3449636076034186, -1.3148555740467436, -1.2826407304582512, -1.2485645233765212, -1.2128795219867823, -1.175841446776154, -1.1377055140589394, -1.0987231586295905, -1.0591391698384447, -1.0191892528005264, -0.9790980072908002, -0.9390773026331911, -0.8993250175342888, -0.8600241089086345, -0.8213419725347926, -0.7834300599190933, -0.7464237190114427, -0.7104422304606681, -0.6755890151269814, -0.641951992027646, -0.6096040684725073, -0.5786037457782287, -0.548995824745304, -0.5208121952714373, -0.4940726943381233, -0.4687860164135227, -0.4449506602840476, -0.422555896604873, -0.4015827411174231, -0.3820049195211943, -0.3637898113605196 ], [ -1.297670591220664, -1.3196960046122284, -1.3399269395306352, -1.358161951582791, -1.3742063498895214, -1.387875767361782, -1.3989998229115277, -1.4074257621151092, -1.4130219502189547, -1.4156810847214745, -1.4153229953826338, -1.4118969082696764, -1.4053830676242685, -1.395793634513725, -1.3831728131710594, -1.367596192569495, -1.349169329304067, -1.3280256349882675, -1.304323663801151, -1.2782439207021654, -1.2499853262591802, -1.2197614793099967, -1.187796854313881, -1.1543230577675876, -1.1195752496114377, -1.0837888135302158, -1.0471963367584156, -1.0100249374065862, -0.972493956965286, -0.9348130185590793, -0.897180438278296, -0.8597819676398144, -0.8227898396709354, -0.7863620887403211, -0.7506421143541846, -0.7157584608961189, -0.681824787940666, -0.6489400086531367, -0.6171885764105658, -0.5866409018452663, -0.5573538839140633, -0.5293715393805001, -0.5027257154125448, -0.4774368700483482, -0.4535149052739684, -0.43096003756430235, -0.4097636910860951, -0.3899093994141871, -0.37137370257905644, -0.3541270275131212 ], [ -1.237724800632272, -1.257874036722642, -1.2763294214191543, -1.2929086534721423, -1.3074361213145367, -1.3197460568286108, -1.329685749174495, -1.3371187216877076, -1.341927765458185, -1.3440177187186153, -1.343317882540506, -1.3397839711599246, -1.3333995096821887, -1.3241766125587149, -1.3121561021058559, -1.297406955850013, -1.280025102513855, -1.2601316165430112, -1.2378703877143618, -1.2134053633797328, -1.186917474733589, -1.15860136444577, -1.1286620312553635, -1.097311498645026, -1.0647656010181117, -1.0312409636741222, -0.9969522341385695, -0.9621096036912362, -0.926916640595004, -0.8915684415297127, -0.8562500956713168, -0.8211354469476673, -0.7863861341489051, -0.7521508854168972, -0.7185650426547152, -0.6857502919682334, -0.6538145777619557, -0.6228521800145463, -0.5929439361348694, -0.5641575903715814, -0.5365482548909057, -0.5101589673479932, -0.48502133014539717, -0.46115621673950025, -0.43857453047473327, -0.41727800163240425, -0.3972600087767677, -0.37850641112238614, -0.3609963795465836, -0.3447032150083793 ], [ -1.1793068720063578, -1.1976825753430387, -1.2144634729782933, -1.2294849458382093, -1.2425889174412976, -1.2536266348833913, -1.262461485873473, -1.268971769071284, -1.2730533280001666, -1.2746219558583318, -1.273615480319583, -1.2699954443138717, -1.2637483108785528, -1.254886137132417, -1.2434466834598834, -1.2294929478693857, -1.2131121405901717, -1.1944141384342368, -1.1735294803760836, -1.1506069835032315, -1.1258110707124511, -1.0993189076177425, -1.0713174460948358, -1.0420004663113247, -1.011565699036579, -0.9802120968202519, -0.9481373076843385, -0.9155353896279863, -0.8825947896376998, -0.8494965979024007, -0.8164130771268581, -0.7835064584934903, -0.7509279899465509, -0.7188172188474795, -0.6873014893012341, -0.6564956341183725, -0.6265018419750099, -0.5974096814224752, -0.5692962646236797, -0.5422265348085935, -0.5162536623121576, -0.49141953465419697, -0.46775532648599927, -0.4452821354553065, -0.4240116702389247, -0.4039469772631714, -0.3850831930556442, -0.3674083097946854, -0.35090394245925727, -0.3355460870172169 ], [ -1.122552358963287, -1.139256690332085, -1.1544632194942783, -1.1680236237512127, -1.1797959119202206, -1.1896468722927902, -1.1974545387864177, -1.2031106048124403, -1.2065227092106667, -1.207616516727936, -1.2063375174473117, -1.2026524755959307, -1.1965504682937986, -1.1880434687600345, -1.1771664456406183, -1.1639769695048978, -1.1485543379358418, -1.1309982505933922, -1.1114270837065214, -1.0899758283360463, -1.0667937674394532, -1.042041972679386, -1.015890702948363, -0.9885167830929635, -0.9601010340385738, -0.9308258154216871, -0.9008727300143122, -0.8704205267469012, -0.8396432269497973, -0.8087084873020884, -0.7777762034333788, -0.746997350465038, -0.7165130510793072, -0.6864538578534733, -0.6569392343403551, -0.6280772183775452, -0.5999642509984422, -0.572685154748088, -0.5463132458822455, -0.5209105656343656, -0.4965282163412761, -0.4732067886765319, -0.4509768665620446, -0.4298595965704546, -0.4098673088660887, -0.3910041770361392, -0.3732669045949861, -0.3566454265411676, -0.3411236151206456, -0.32667997989120257 ], [ -1.0675735603517653, -1.0827073315681586, -1.0964378733865465, -1.1086318522618914, -1.119162007201238, -1.1279093006271905, -1.1347650743739441, -1.139633150894476, -1.1424318159343527, -1.1430956177993414, -1.1415769202837118, -1.1378471515346524, -1.1318976995986212, -1.1237404168844654, -1.1134077097827308, -1.1009522054585634, -1.086446004427975, -1.069979543847428, -1.0516601113731405, -1.031610061956842, -1.009964799227492, -0.9868705886621398, -0.9624822714226557, -0.9369609457323755, -0.9104716774852488, -0.8831812941354831, -0.8552563066351828, -0.8268609941177036, -0.7981556759424759, -0.7692951862718269, -0.7404275580220929, -0.7116929161158239, -0.6832225745781357, -0.6551383281296552, -0.6275519263725657, -0.6005647172068216, -0.5742674454751526, -0.5487401927465578, -0.5240524443705652, -0.500263270285739, -0.477421606425112, -0.45556662387144886, -0.4347281731669126, -0.4149272914056219, -0.39617675997808033, -0.3784817011474997, -0.3618402020598741, -0.34624395535275077, -0.3316789062393324, -0.3181258967985994 ], [ -1.0144614099003242, -1.0281233885718541, -1.0404739579810585, -1.0513935461424273, -1.060768360113951, -1.0684922721036154, -1.0744687013699554, -1.0786124410692457, -1.080851376384105, -1.0811280396476846, -1.0794009500314043, -1.0756456898316624, -1.069855676454242, -1.06204259864995, -1.0522364970062523, -1.0404854815644111, -1.0268550929722973, -1.0114273269578349, -0.9942993542516994, -0.9755819785971154, -0.9553978835085659, -0.9338797235508389, -0.9111681179375788, -0.8874096032953065, -0.8627545988402467, -0.8373554314897576, -0.811364461202835, -0.7849323387767941, -0.7582064200489924, -0.731329352505393, -0.7044378431042331, -0.6776616099641022, -0.6511225155817071, -0.6249338754501081, -0.5991999332532649, -0.5740154920569105, -0.5494656898992929, -0.5256259077013863, -0.5025617972763541, -0.48032941727059386, -0.4589754650062805, -0.43853759235869094, -0.419044793968963, -0.40051785627497116, -0.38296985606590495, -0.3664066975624267, -0.3508276774239676, -0.33622606760588347, -0.32258970663955777, -0.3099015906798184 ], [ -0.963287327177569, -0.975573688147769, -0.9866374457254061, -0.9963716408244425, -1.0046747763290305, -1.011452467458444, -1.0166190814634504, -1.0200993236047728, -1.0218297242943433, -1.021759981997427, -1.0198541182021506, -1.016091404564089, -1.0104670282020591, -1.0029924688928746, -0.9936955712747009, -0.9826203056675906, -0.9698262221836869, -0.9553876137776516, -0.9393924141065568, -0.921940864896416, -0.9031439944262238, -0.8831219533762691, -0.8620022564773242, -0.839917978176469, -0.8170059481247391, -0.793404988062318, -0.7692542260990243, -0.7446915179719558, -0.7198519981130029, -0.6948667767241381, -0.6698617929004125, -0.6449568284187488, -0.6202646822727165, -0.5958905024276067, -0.5719312685570317, -0.5484754176003885, -0.5256026027097815, -0.503383575382891, -0.4818801801576451, -0.4611454510534645, -0.44122379888957863, -0.42215127863652246, -0.40395592603389296, -0.3866581528343189, -0.3702711902209572, -0.3548015702131653, -0.3402496352405009, -0.32661006653978397, -0.3138724226179386, -0.30202167971677696 ], [ -0.9141050014172483, -0.9251089036183917, -0.9349757867525643, -0.9436102329664053, -0.9509219547121803, -0.9568272353539724, -0.9612503548514724, -0.964124964174526, -0.9653953705872507, -0.9650176958721275, -0.9629608710968138, -0.9592074347306612, -0.9537541057718255, -0.9466121099166847, -0.9378072444477341, -0.9273796760819222, -0.91538347506535, -0.9018858978180602, -0.8869664388989129, -0.8707156804767104, -0.8532339734385412, -0.8346299884319972, -0.8150191773662709, -0.7945221861784695, -0.7732632581494396, -0.7513686639866168, -0.7289651906316617, -0.7061787156892065, -0.6831328889094572, -0.6599479366575818, -0.6367396000750911, -0.6136182129121392, -0.5906879209350533, -0.5680460414549537, -0.5457825588789662, -0.5239797501981227, -0.5027119329005969, -0.4820453268273954, -0.4620380208584758, -0.4427400349337598, -0.42419346769877775, -0.4064327199666462, -0.389484784175943, -0.37336959008851567, -0.35810039711266506, -0.3436842238650697, -0.3301223059079297, -0.3174105730222776, -0.3055401379036291, -0.2944977887857416 ], [ -0.8669520884892072, -0.8767633580426939, -0.8855198125021069, -0.8931365777747067, -0.8995335710995587, -0.9046367551343413, -0.9083793745503135, -0.9107031445519953, -0.9115593596332325, -0.9109098909411453, -0.9087280419598833, -0.9049992349001861, -0.8997215041702795, -0.8929057785047343, -0.8845759395532513, -0.8747686517093645, -0.8635329653476531, -0.8509297030456118, -0.8370306453830376, -0.821917539143145, -0.8056809558438076, -0.7884190322477951, -0.7702361266871449, -0.7512414256578714, -0.7315475342783087, -0.7112690820403249, -0.6905213720722669, -0.66941909817659, -0.6480751495153803, -0.6265995182905899, -0.6050983213605661, -0.5836729426523721, -0.562419299611653, -0.5414272338546877, -0.5207800236718392, -0.500554014052174, -0.48081835839784026, -0.4616348649983901, -0.4430579405586821, -0.4251346225449695, -0.4079046917693714, -0.39140085642815836, -0.37564899871438606, -0.36066847512528355, -0.3464724616757304, -0.3330683354103561, -0.32045808388344654, -0.30863873464690816, -0.2976027972505808, -0.28733871080802764 ], [ -0.8218518084055273, -0.83055671090788, -0.8382855061099033, -0.844962937048644, -0.8505181976728307, -0.8548860211846605, -0.8580077495933298, -0.8598323588539944, -0.860317413161785, -0.8594299220967967, -0.8571470754610677, -0.8534568328537435, -0.8483583482821988, -0.841862214327673, -0.8339905154319669, -0.8247766855392002, -0.8142651713524653, -0.8025109085451407, -0.789578624080939, -0.7755419830325998, -0.760482602668825, -0.7444889598868285, -0.7276552201660826, -0.7100800170603772, -0.6918652108712673, -0.6731146536789214, -0.6539329855308296, -0.6344244835309054, -0.6146919820746624, -0.5948358787781403, -0.5749532369631523, -0.5551369920644131, -0.5354752661438664, -0.5160507919160937, -0.49694044533982207, -0.47821488391305245, -0.45993828629161015, -0.44216818768379285, -0.4249554046011994, -0.40834404191166596, -0.3923715746955576, -0.37706899711351394, -0.36246103032456944, -0.3485663814322242, -0.33539804547395047, -0.32296364260240673, -0.3112657828333818, -0.3003024510532566, -0.2900674053823684, -0.28055058247251163 ], [ -0.7788144364759755, -0.7864955234327913, -0.7932756367945066, -0.799088277261506, -0.803871059256819, -0.8075666520931939, -0.8101237020056353, -0.8114977136882706, -0.8116518693883996, -0.8105577637613406, -0.8081960336434848, -0.8045568636922922, -0.7996403514637496, -0.7934567188937609, -0.7860263612176108, -0.7773797289434845, -0.7675570433949213, -0.7566078513185097, -0.7445904288677692, -0.7315710496724135, -0.7176231354593752, -0.702826310624421, -0.687265384137332, -0.6710292831412927, -0.6542099625931306, -0.636901314361126, -0.6191980974833853, -0.6011949089603592, -0.582985211696408, -0.5646604332089176, -0.5463091456631497, -0.5280163348179248, -0.5098627626971011, -0.49192442631505706, -0.4742721126245597, -0.45697104803614064, -0.4400806393676182, -0.4236543018919503, -0.4077393692245632, -0.3923770790867951, -0.37760262846357007, -0.363445291310013, -0.34992859172903645, -0.3370705254246067, -0.324883822221669, -0.3133762425283759, -0.3025509007926255, -0.29240660926990936, -0.2829382357650374, -0.2741370694288876 ], [ -0.7378386857717758, -0.7445747020554936, -0.7504812597512782, -0.7554998210959505, -0.7595756317806428, -0.7626585315490328, -0.7647037460125616, -0.7656726419906101, -0.7655334282549966, -0.7642617837033263, -0.7618413957582157, -0.7582643932167055, -0.7535316598573094, -0.7476530178139194, -0.7406472729734637, -0.7325421183344152, -0.723373895227081, -0.7131872163661852, -0.7020344586872624, -0.6899751376118428, -0.6770751776089703, -0.6634060965165745, -0.6490441229426982, -0.634069267122602, -0.6185643658545876, -0.6026141216215597, -0.5863041548151151, -0.5697200862377167, -0.5529466649101258, -0.536066953804444, -0.5191615836020047, -0.5023080820662542, -0.48558028422770816, -0.4690478263764133, -0.4527757248959934, -0.43682403927557467, -0.42124761720360504, -0.4060959184686508, -0.39141291344297446, -0.37723705117950823, -0.3636012915834512, -0.35053319570309815, -0.3380550679000478, -0.32618414349196323, -0.31493281540031615, -0.3043088933729412, -0.2943158894797504, -0.2849533237934241, -0.2762170444573284, -0.2680995567022808 ], [ -0.6989129820889957, -0.7047788230813055, -0.7098830863133945, -0.7141744589280046, -0.7176050910431697, -0.7201312906400066, -0.7217142005196253, -0.7223204427922065, -0.7219227160439055, -0.7205003304487694, -0.7180396666949953, -0.7145345457043695, -0.7099864977460668, -0.7044049216620811, -0.6978071274832223, -0.6902182586429009, -0.6816710931823107, -0.6722057266513828, -0.6618691426938585, -0.6507146804045971, -0.6388014103110256, -0.6261934331271375, -0.6129591171535802, -0.5991702912893431, -0.5849014110557662, -0.5702287148342129, -0.5552293867416098, -0.5399807413021933, -0.5245594434262371, -0.509040775294985, -0.49349795969150256, -0.4780015472159451, -0.46261887277229063, -0.44741358478136006, -0.43244524881265556, -0.41776902576422703, -0.40343542336696236, -0.38949011864675454, -0.3759738480329682, -0.3629223610385277, -0.3503664328369358, -0.33833193060739797, -0.32683992819384855, -0.3159068634154043, -0.3055447322625273, -0.29576131420714025, -0.2865604229383052, -0.2779421769997388, -0.26990328504451067, -0.26243734072575675 ], [ -0.6620166352653538, -0.6670833439918249, -0.6714527315072611, -0.6750800289586816, -0.6779236219656226, -0.6799456431030959, -0.6811125476523059, -0.6813956607930256, -0.6807716841708573, -0.6792231498584529, -0.6767388101762879, -0.6733139526702172, -0.6689506307728217, -0.663657802297257, -0.6574513698988305, -0.6503541199407408, -0.6423955587385803, -0.6336116478360894, -0.6240444426652394, -0.6137416415418666, -0.6027560543192456, -0.5911450020520812, -0.5789696606197114, -0.566294362355569, -0.5531858702982231, -0.5397126397206511, -0.5259440811426341, -0.5119498381472174, -0.49779909208610884, -0.4835599042606382, -0.46929860449937966, -0.4550792333078537, -0.4409630430206566, -0.4270080617040348, -0.4132687219883844, -0.3997955555862265, -0.3866349529915636, -0.37382898676678566, -0.3614152959017738, -0.34942702796769964, -0.33789283517395496, -0.32683691995833253, -0.31627912538573666, -0.30623506538821577, -0.29671628973995534, -0.28773047861547174, -0.27928166162104184, -0.27137045630932155, -0.2639943213779161, -0.25714782000528036 ], [ -0.6271209126129915, -0.6314557086822625, -0.6351538477445999, -0.6381764761508575, -0.640487599820498, -0.6420545862442859, -0.6428486511809008, -0.6428453205464275, -0.6420248578065391, -0.6403726472253497, -0.6378795236295671, -0.6345420399386241, -0.6303626646061553, -0.6253499023234224, -0.6195183328403631, -0.6128885645369762, -0.6054871013756102, -0.5973461240138058, -0.5885031880686549, -0.5790008446979367, -0.568886190697306, -0.5582103571076995, -0.5470279467991253, -0.5353964325814737, -0.5233755280520314, -0.51102654361259, -0.49841173989191856, -0.4855936902321447, -0.4726346629974856, -0.4595960333106899, -0.446537732490472, -0.4335177420269136, -0.4205916374578116, -0.407812186056443, -0.3952290008558459, -0.38288825225081213, -0.37083243725880544, -0.35910020549659416, -0.3477262400451375, -0.3367411906283291, -0.3261716559168524, -0.31604021127770365, -0.3063654779148912, -0.2971622290787095, -0.2884415288511053, -0.2802108989357175, -0.2724745088851124, -0.2652333852771882, -0.2584856354993377, -0.25222668200498743 ], [ -0.5941900214877069, -0.5978563550088547, -0.6009431543579893, -0.6034169009448993, -0.6052466555983185, -0.606404480783814, -0.6068658490766932, -0.6066100303789121, -0.6056204502122084, -0.6038850114193892, -0.6013963717844366, -0.598152170466848, -0.5941551967570726, -0.5894134955145365, -0.5839404047526806, -0.5777545221745446, -0.5708795990101891, -0.5633443612138669, -0.5551822598797143, -0.5464311545501113, -0.5371329348350675, -0.5273330873486257, -0.5170802163218085, -0.5064255273086746, -0.49542228411990896, -0.4841252494767534, -0.4725901198793645, -0.4608729648515151, -0.4490296800974416, -0.4371154632398093, -0.42518431975835713, -0.4132886055784737, -0.40147861152499753, -0.3898021936112668, -0.37830445191951334, -0.36702745968118555, -0.35601004310735185, -0.3452876115678638, -0.3348920368800412, -0.3248515797473459, -0.3151908607839857, -0.3059308730684549, -0.29708903278250287, -0.2886792642050946, -0.2807121151369385, -0.2731948987234132, -0.26613185761464764, -0.25952434644469324, -0.25337102871852135, -0.24766808435914167 ], [ -0.5631820087117967, -0.5662396335803868, -0.5687713730929187, -0.5707485089883331, -0.5721446377988786, -0.572936022881753, -0.573101934331262, -0.5726249709578781, -0.5714913583830386, -0.5696912172530884, -0.5672187956444821, -0.5640726599396213, -0.5602558388250864, -0.5557759156263373, -0.5506450649592858, -0.5448800306551054, -0.5385020430862044, -0.5315366753591064, -0.5240136392954133, -0.5159665236333952, -0.5074324783777073, -0.4984518506289888, -0.4890677784674098, -0.47932575048425896, -0.46927313930769476, -0.4589587179258141, -0.4484321677647354, -0.4377435873415303, -0.42694300990861866, -0.4160799378760902, -0.4052029009871492, -0.3943590442801932, -0.3835937508472844, -0.3729503033394541, -0.3624695871138226, -0.35218983689906436, -0.3421464278992141, -0.3323717113796991, -0.3228948939948557, -0.3137419594299238, -0.30493563034405735, -0.29649536811401456, -0.2884374074873082, -0.2807748229545599, -0.27351762343863517, -0.2666728717662641, -0.26024482533111093, -0.25423509436773895, -0.2486428143279804, -0.24346482897603372 ], [ -0.5340495847886739, -0.5365546468048046, -0.5385840796020935, -0.5401134729084005, -0.5411204825949492, -0.5415851211389593, -0.5414900376028244, -0.5408207827580216, -0.5395660548534269, -0.5377179214402084, -0.5352720126376755, -0.5322276812818911, -0.528588125571976, -0.5243604701472115, -0.5195558020165068, -0.5141891584355334, -0.5082794646866176, -0.5018494207458555, -0.49492533698762275, -0.48753692032972595, -0.47971701350259854, -0.47150129136794616, -0.4629279193503839, -0.4540371800220968, -0.44487107464787723, -0.435472907024824, -0.4258868572217722, -0.4161575528392347, -0.4063296451874525, -0.3964473973448972, -0.38655429044844336, -0.3766926538202249, -0.36690332369549505, -0.3572253344226006, -0.3476956450947297, -0.3383489036762708, -0.32921724982843625, -0.32033015683915567, -0.31171431233424896, -0.30339353680001113, -0.29538873838510926, -0.28771790197522096, -0.28039611014477517, -0.27343559328503897, -0.2668458059823293, -0.26063352656963845, -0.25480297669432783, -0.24935595772763874, -0.24429200088230307, -0.23960852799581644 ], [ -0.506740880675016, -0.508746016886038, -0.5103224805309705, -0.5114497165633356, -0.5121090035959719, -0.5122836905309152, -0.5119594243119061, -0.5111243656454745, -0.5097693894109057, -0.5078882663526272, -0.5054778225383534, -0.5025380729988347, -0.49907232597303053, -0.49508725429972067, -0.490592930756379, -0.485602824570474, -0.480133756930357, -0.474205814095205, -0.4678422176262085, -0.46106915229452206, -0.45391555331650535, -0.4464128556643465, -0.4385947092413647, -0.4304966646394819, -0.4221558349648735, -0.4136105397910419, -0.40489993765633314, -0.3960636536584645, -0.38714140861971136, -0.378172656021333, -0.36919623246192823, -0.3602500268144513, -0.3513706725754986, -0.3425932671533405, -0.33395112106107194, -0.3254755391961821, -0.3171956356242833, -0.3091381825596682, -0.3013274935660515, -0.2937853403960491, -0.286530902354988, -0.27958074661685384, -0.2729488375385989, -0.26664657271230574, -0.2606828432612007, -0.25506411572052423, -0.24979453274449193, -0.2448760298399728, -0.2403084653412566, -0.2360897609014425 ] ], "zauto": true, "zmax": 2.812247087752761, "zmin": -2.812247087752761 }, { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 1, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(255,247,251)" ], [ 0.14285714285714285, "rgb(236,231,242)" ], [ 0.2857142857142857, "rgb(208,209,230)" ], [ 0.42857142857142855, "rgb(166,189,219)" ], [ 0.5714285714285714, "rgb(116,169,207)" ], [ 0.7142857142857143, "rgb(54,144,192)" ], [ 0.8571428571428571, "rgb(5,112,176)" ], [ 1.0, "rgb(3,78,123)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x2", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y2", "z": [ [ 0.2279155614781867, 0.21041027937283266, 0.194587550075889, 0.18090553899190992, 0.16983822630130688, 0.16181184209276467, 0.15711397073067668, 0.1558059670522338, 0.15768685239602975, 0.16233648611169524, 0.16921639557003584, 0.177776822878209, 0.1875315417423718, 0.19809230600170996, 0.2091736258491448, 0.22058170789881457, 0.23219733023801326, 0.24395784635103349, 0.255840580851281, 0.26784844820014936, 0.2799980485961368, 0.2923102814081569, 0.3048034081755904, 0.3174883987028533, 0.3303662941349751, 0.34342723993697244, 0.35665079909335123, 0.37000715803079764, 0.38345887739334666, 0.3969629017919242, 0.4104726113867328, 0.42393976222855834, 0.437316215888622, 0.45055540082940776, 0.463613479580906, 0.47645021926474523, 0.4890295802722208, 0.5013200502527421, 0.5132947587721913, 0.5249314125346556, 0.5362120923488565, 0.5471229515620722, 0.557653852086108, 0.5677979690759307, 0.5775513894638251, 0.5869127235024072, 0.5958827427129012, 0.6044640525148951, 0.6126608035346587, 0.6204784422326848 ], [ 0.21241764524812964, 0.193803561421113, 0.17685720154490547, 0.16209804879410233, 0.15009652222042694, 0.14139992441321245, 0.13640375676645453, 0.13520966204397367, 0.1375583398424327, 0.1428966014265324, 0.15053713592856285, 0.15981369171375312, 0.17017225539521647, 0.18119904782338406, 0.19261151307473623, 0.20423493043416727, 0.21597674772844616, 0.227803288082057, 0.23971997711047205, 0.2517550572234382, 0.26394654525809974, 0.27633223611657515, 0.28894257790416567, 0.30179618475650194, 0.31489764690266275, 0.3282371997520249, 0.3417917653756531, 0.3555268926906917, 0.36939918492076906, 0.3833588910396144, 0.39735242929941694, 0.41132469080558925, 0.42522103355994334, 0.43898892300259235, 0.4525792073550988, 0.465947038848205, 0.47905246807575147, 0.4918607499182184, 0.504342406526918, 0.5164730961610655, 0.5282333365986595, 0.5396081289133436, 0.5505865223016436, 0.5611611541288506, 0.5713277922008521, 0.5810848991322257, 0.5904332320857306, 0.5993754854510871, 0.6079159793936637, 0.616060393680228 ], [ 0.19890793652879626, 0.17926239791159881, 0.16122879466804002, 0.14537609709319876, 0.1323724002769224, 0.12291058580506604, 0.11753655206063714, 0.1164226875725724, 0.11924213182396917, 0.1252707640244594, 0.13363996020354008, 0.14355715141505818, 0.1544081275106352, 0.1657673854050589, 0.1773682047595911, 0.18906450049012935, 0.200796662141896, 0.21256378033239762, 0.22440150417186946, 0.23636440450471216, 0.24851211646112709, 0.2608989146171896, 0.2735665246865855, 0.28653992332565353, 0.29982572846867683, 0.31341264301668464, 0.32727335050041784, 0.34136728742796096, 0.3556438104043455, 0.3700453989694489, 0.3845106545268067, 0.39897695303097624, 0.4133826794581453, 0.42766901931738577, 0.4417813133340402, 0.4556700019788287, 0.4692912006105055, 0.48260695552663474, 0.4955852368246497, 0.5081997258602532, 0.5204294535043008, 0.532258340854176, 0.54367468730952, 0.5546706428576755, 0.5652416928973106, 0.5753861756963021, 0.5851048451775293, 0.5944004854909772, 0.6032775789099247, 0.6117420249782046 ], [ 0.18778890905219078, 0.16727368097516382, 0.14828284205718437, 0.13141108530461626, 0.11740573879588036, 0.1071107498671252, 0.10126066207331717, 0.1001400534194717, 0.1033557841083796, 0.10998196321827249, 0.11894767537127668, 0.12933787127780177, 0.14049469885846327, 0.1519972798858505, 0.16360589110917037, 0.1752091317090274, 0.18678288152582126, 0.19835956532622354, 0.21000463459735086, 0.22179809129480396, 0.233820011720281, 0.24613974031253258, 0.2588086554698382, 0.27185630600194766, 0.28528947412133127, 0.2990935080096499, 0.3132351781230556, 0.3276663582454685, 0.3423279707525034, 0.35715380508790223, 0.3720739721225692, 0.3870178726154668, 0.4019166339485245, 0.41670501500909196, 0.4313228059257738, 0.44571576598028784, 0.4598361541991182, 0.4736429146515149, 0.48710158255095515, 0.5001839776823481, 0.5128677485153349, 0.5251358241186848, 0.5369758225231831, 0.5483794545108471, 0.5593419519193514, 0.569861540249245, 0.5799389672130811, 0.5895770921857015, 0.598780536403509, 0.6075553901527669 ], [ 0.17941983228834354, 0.1582945877616002, 0.13860066899925502, 0.1209287366382129, 0.10606409653232739, 0.0949662528746686, 0.08855755373380582, 0.08726844862808426, 0.09066630969734049, 0.09763203781237503, 0.10690721873331373, 0.11747872218586448, 0.12866639846211045, 0.14006600853222073, 0.15146867829705143, 0.16279666250846184, 0.17405813737360895, 0.18531514435128965, 0.19665947125601402, 0.20819355554633207, 0.22001531848003994, 0.23220681522438072, 0.2448268276154103, 0.25790729827250286, 0.2714531082205281, 0.28544438064690103, 0.2998403761313557, 0.3145841281810252, 0.3296071722973891, 0.34483395316994614, 0.3601856885677696, 0.37558360134050184, 0.3909515083343258, 0.4062177948924049, 0.4213168233830573, 0.43618983534268996, 0.4507854145859987, 0.46505958417716503, 0.4789756128588843, 0.4925036056299569, 0.5056199484637667, 0.518306669190672, 0.5305507663376887, 0.5423435464236924, 0.5536799989654227, 0.5645582281370877, 0.5749789512191766, 0.5849450669504301, 0.5944612916989438, 0.6035338578589107 ], [ 0.1740557262656811, 0.15266498873925266, 0.13264339711091658, 0.11455443604718801, 0.09916962814528145, 0.08748057823361495, 0.0805139033874275, 0.07882450621290818, 0.08200103140489784, 0.08882654210359096, 0.09793513475553757, 0.10826173808837744, 0.11912080600926461, 0.13012429408664625, 0.14108601499620044, 0.15195155662462959, 0.16275157806638596, 0.17356947943987538, 0.18451687639913816, 0.19571364978507286, 0.2072716896995622, 0.21928261100914598, 0.23180989785026698, 0.24488550757978716, 0.25851035121138105, 0.2726576103429939, 0.28727770970101085, 0.3023039105315036, 0.3176577878741872, 0.3332541646494908, 0.3490053139221245, 0.3648243870245687, 0.38062809783132745, 0.39633872237442874, 0.41188548281919096, 0.4272053895123297, 0.44224361928360517, 0.45695351224653663, 0.47129627115407957, 0.48524044542050837, 0.49876127580485197, 0.5118399660740589, 0.524462935959098, 0.5366210968021238, 0.5483091787407216, 0.5595251270337771, 0.5702695757741507, 0.5805453999846587, 0.5903573419180522, 0.5997117040637192 ], [ 0.17178923118478248, 0.1505137891996827, 0.13060113867288495, 0.11257749268316403, 0.09715718031422188, 0.08526096844268682, 0.0778637670095135, 0.07553841075913398, 0.07795977752891656, 0.08399507882942042, 0.09232013932982226, 0.10188352644164475, 0.11200441841852989, 0.12229806278052563, 0.13258210013108498, 0.1428073799238936, 0.1530119001649264, 0.1632885530925046, 0.1737598591810825, 0.18455657215111854, 0.19579969302579428, 0.20758669961089773, 0.21998286164856418, 0.23301781552040943, 0.24668668008144917, 0.2609543747999794, 0.27576165113466145, 0.29103159127422373, 0.3066757503327438, 0.3225995213054784, 0.33870658501919554, 0.35490245986667623, 0.3710972261557306, 0.3872075127978416, 0.4031578319824365, 0.41888134581477837, 0.4343201510278587, 0.4494251714943905, 0.4641557499204228, 0.4784790275129812, 0.49236919302464655, 0.5058066712110957, 0.5187773069479245, 0.5312715867359111, 0.5432839255239771, 0.5548120347067806, 0.5658563773598276, 0.5764197094174512, 0.5865067004508584, 0.5961236246609722 ], [ 0.1725223375272233, 0.1517084225782728, 0.13230050220654432, 0.11478205249865196, 0.09977968127188283, 0.08806362159519995, 0.08042018371708122, 0.07731583571572728, 0.07852880910952861, 0.0831697659077284, 0.09011692203693533, 0.09841439565137962, 0.10740456157742324, 0.11669518933908632, 0.12608826261029352, 0.13552031813447982, 0.1450199276456451, 0.15467614278427305, 0.16461225846065763, 0.17496242987236907, 0.18585133826051134, 0.19737838332902552, 0.20960776707645518, 0.22256479773932, 0.2362375110119922, 0.2505819008823735, 0.26552891244479004, 0.2809917252682763, 0.2968724288045189, 0.3130676959116447, 0.3294733823229849, 0.3459881287239431, 0.36251608185691614, 0.37896884447631896, 0.3952667498582459, 0.4113395500705561, 0.42712660884110665, 0.44257669446738684, 0.4576474705692964, 0.4723047796326011, 0.48652180571897713, 0.5002781896380016, 0.513559154273405, 0.5263546816536863, 0.5386587683791042, 0.5504687732201214, 0.5617848605936587, 0.5726095362713234, 0.5829472668477798, 0.5928041717997761 ], [ 0.1759860550697478, 0.15588499695427804, 0.13724991869439238, 0.12051158147142142, 0.10618829357363463, 0.09486611102194081, 0.08709745950065369, 0.08319219314480493, 0.08300380220525018, 0.08592170100564825, 0.09111079366774281, 0.0977856204186307, 0.10534967701354392, 0.11341146996201595, 0.12175019842656377, 0.13027536522306044, 0.13899272824475353, 0.14797555935717205, 0.15733815999202558, 0.16721055380278732, 0.17771557160922472, 0.18895067877571145, 0.2009765172909378, 0.21381268669809936, 0.22743966301730634, 0.24180474768345508, 0.2568298236728772, 0.272419229021873, 0.2884667939737867, 0.3048616906289033, 0.3214930934490858, 0.3382537839572774, 0.355042847373537, 0.3717675825424954, 0.3883447227101542, 0.40470105638067416, 0.4207735410911907, 0.4365090101089454, 0.45186357587838794, 0.46680183115363283, 0.4812959389652522, 0.495324687678081, 0.5088725699210943, 0.5219289264950852, 0.5344871802816658, 0.54654417176472, 0.5580995974686761, 0.5691555453742626, 0.579716116846992, 0.5897871223105675 ], [ 0.18180089763287485, 0.16254580352525083, 0.1447985266251072, 0.12892605803823262, 0.1153318724427554, 0.10442772152131985, 0.09656313199045556, 0.09191278623884301, 0.09037361275459756, 0.09155682786849177, 0.09489922775063657, 0.09981695573114838, 0.10581428911778064, 0.11252620327189876, 0.11971897481730168, 0.12727438716975448, 0.13516936067340446, 0.14345347084385, 0.15222419262509623, 0.1616007041365476, 0.17169885304844915, 0.18261072894073066, 0.1943915586872842, 0.2070547328351128, 0.22057372204743478, 0.23488841910661848, 0.24991334804204043, 0.26554586586904716, 0.2816733680779925, 0.29817919241668384, 0.31494727886790985, 0.3318657583906121, 0.34882963228799074, 0.365742661902265, 0.3825185597600767, 0.3990815672035589, 0.4153665117738439, 0.4313184486918947, 0.44689199652446776, 0.4620504741699725, 0.47676493510928963, 0.4910131779911562, 0.5047787931925414, 0.5180502857606766, 0.5308202980377225, 0.5430849413513735, 0.5548432357583785, 0.5660966497801182, 0.5768487279022237, 0.5871047917295065 ], [ 0.18955048593021792, 0.17117063031794152, 0.15430372555227928, 0.1392487631775811, 0.1263040364849583, 0.11574175119407945, 0.10776620464380592, 0.10246143192736999, 0.09975016274039732, 0.09939224653774377, 0.10103126260980465, 0.10426697841029033, 0.10872134523154849, 0.1140813045420535, 0.12011948226313549, 0.12669972670344354, 0.13377226587771374, 0.14136039365318012, 0.14953996548072332, 0.15841416804974034, 0.16808758699249415, 0.17864418262869752, 0.1901327215945652, 0.20256087436448178, 0.21589674306577442, 0.23007514172499727, 0.24500584469915765, 0.26058180463924346, 0.27668633044893637, 0.2931989490782887, 0.3100000392585299, 0.3269744199375389, 0.3440140473096612, 0.36101992469557653, 0.37790330298163805, 0.39458624992733393, 0.4110016818416198, 0.4270929669892443, 0.44281321780601, 0.4581243857150864, 0.4729962594377606, 0.4874054486301711, 0.5013344132240939, 0.5147705780918079, 0.5277055546197238, 0.540134476462318, 0.5520554463583368, 0.5634690841063225, 0.5743781620213366, 0.5847873127400939 ], [ 0.19884098609821377, 0.1812956980093653, 0.16523110422929194, 0.15088301240578583, 0.13846465417531753, 0.128148954201425, 0.12004805492790549, 0.11419424585207301, 0.11052893296051661, 0.10890552863615735, 0.10910721202452353, 0.11087494380523383, 0.11393919928419913, 0.11805036091945709, 0.1230043839011352, 0.12866085886077008, 0.13495093710241066, 0.14187375194441568, 0.14948199628297598, 0.15785967686745211, 0.1670969820500075, 0.17726779206490703, 0.18841413462051232, 0.20053928427652332, 0.2136084801360867, 0.227554603371638, 0.2422859811081671, 0.25769427956226976, 0.27366146488431525, 0.2900655515337282, 0.3067852125816017, 0.323703408048865, 0.34071015294661733, 0.35770450085073974, 0.37459580199931003, 0.39130430641077824, 0.40776120645522385, 0.4239082343357904, 0.439696939387348, 0.45508776608543944, 0.4700490387397435, 0.48455593744313297, 0.49858952635560744, 0.5121358731964184, 0.5251852799649807, 0.5377316303103263, 0.5497718486651796, 0.5613054597808035, 0.5723342339222312, 0.5828619019336161 ], [ 0.20933445077645824, 0.19254777993707314, 0.17718149798220562, 0.16341905484920963, 0.15141143595725057, 0.14126714038617405, 0.13304523850136024, 0.12675293830825868, 0.12234754227320137, 0.11974102448516435, 0.11880542462167241, 0.1193794836613487, 0.1212793605420476, 0.1243157905053843, 0.12831634526065477, 0.13314753646965252, 0.13873031343243653, 0.1450443832157953, 0.15212024988431802, 0.16002140338672077, 0.16882166395939568, 0.1785835718587259, 0.1893425914303673, 0.20109929911760357, 0.2138189320691604, 0.2274359266223122, 0.24186078053179716, 0.2569872709078908, 0.2726990070457124, 0.2888749968493771, 0.3053942396500846, 0.3221394365347429, 0.33899988377994494, 0.35587358482912945, 0.3726686165017808, 0.3893038112138875, 0.4057088510027798, 0.42182389550792476, 0.43759887699263983, 0.45299259047643997, 0.4679716899622879, 0.48250967799660666, 0.4965859503685595, 0.5101849342428144, 0.5232953384869478, 0.5359095201689287, 0.5480229610399325, 0.5596338416559966, 0.5707426977918914, 0.5813521431086427 ], [ 0.22075868089169293, 0.20464516263268653, 0.1898753338073379, 0.17659304712227508, 0.16490745872500973, 0.1548888016670598, 0.14656893790995443, 0.13994626534308613, 0.134992342596011, 0.13165643236191765, 0.1298656428060586, 0.12952229053102246, 0.13050376360065913, 0.13267016178259758, 0.13588075982620748, 0.14001494622424554, 0.14499045455525914, 0.15077266195628292, 0.15737219300649333, 0.1648320739031332, 0.17320875898171822, 0.18255262700710836, 0.1928927539581646, 0.2042284572980034, 0.2165274915438218, 0.22972903527375135, 0.24374917908519927, 0.2584871348120395, 0.27383117610898927, 0.28966392637403154, 0.3058669084904396, 0.32232435100787227, 0.33892623977106356, 0.3555705988840598, 0.3721650080619816, 0.3886274069850783, 0.4048862825086438, 0.42088036662302647, 0.4365579855871586, 0.4518761947701469, 0.4667998146923668, 0.48130045793394377, 0.495355609480666, 0.5089477984944063, 0.522063879453532, 0.5346944257390578, 0.5468332287614704, 0.5584768898645734, 0.5696244895686912, 0.5802773183114905 ], [ 0.2329023745800682, 0.21738230995471897, 0.20312260493948064, 0.19023937840863098, 0.17881596865333055, 0.16890234923959555, 0.16051919139258494, 0.1536652406684485, 0.1483247889343577, 0.1444714251567746, 0.1420660222457759, 0.1410506829244791, 0.1413438680869001, 0.14284240319761704, 0.1454326801634631, 0.1490082860091904, 0.15348779899226755, 0.15882637191506888, 0.16501741207603077, 0.17208442349178577, 0.18006625416490935, 0.18900055002813218, 0.19890984252463031, 0.2097928632437585, 0.22162144530837413, 0.23434177397350245, 0.24787821745909738, 0.262138255191978, 0.27701759545792715, 0.29240504388038197, 0.30818692726355745, 0.32425095537878623, 0.34048942027297147, 0.356801656256564, 0.37309573243824995, 0.3892894122443793, 0.4053104717453839, 0.4210965070508803, 0.43659437586864364, 0.4517594122953322, 0.4665545336216686, 0.4809493306690978, 0.49491920491989916, 0.5084445904150919, 0.5215102780731096, 0.5341048452414223, 0.5462201835167764, 0.5578511122794577, 0.568995062968647, 0.5796518189224725 ], [ 0.24560384767094165, 0.23061038724400784, 0.216793950787603, 0.20425257333483757, 0.19305526799398917, 0.18324336630973584, 0.1748357227688449, 0.16783616998322437, 0.16224022588645334, 0.1580378414546076, 0.15521061399617786, 0.15372499193807707, 0.15352589946361797, 0.15453586161381144, 0.15666230003454587, 0.1598115191199977, 0.1639045293253585, 0.16888904417696185, 0.17474376320332535, 0.18147415252900415, 0.18910184527052978, 0.19765142754580428, 0.20713837409969518, 0.21756060032928906, 0.22889435075800424, 0.2410937926125208, 0.2540931166201487, 0.2678100283100743, 0.28214986171172096, 0.29700985907355454, 0.3122833297011909, 0.3278634651108308, 0.3436466204913803, 0.3595349209243412, 0.37543812300485024, 0.39127474324922096, 0.4069725343151861, 0.42246843569662706, 0.4377081438900988, 0.452645442191832, 0.46724141000471114, 0.48146360386897297, 0.4952852738029121, 0.5086846530798684, 0.5216443392836572, 0.5341507698247153, 0.5461937855641296, 0.5577662708351349, 0.5688638559138607, 0.5794846678962925 ], [ 0.2587386880598455, 0.24421977047536772, 0.2307983228820505, 0.21856146017262817, 0.2075715559783532, 0.19786834630499517, 0.18947399975005488, 0.18239959572689654, 0.1766505025082852, 0.17222815165875832, 0.16912707619240316, 0.167328486773191, 0.1667939192685906, 0.1674631327946742, 0.1692587853472251, 0.17209724533073836, 0.1759020018832241, 0.18061503931147518, 0.1862025655406201, 0.19265382839518064, 0.19997419315609338, 0.20817520788038718, 0.21726464607969662, 0.22723870728745263, 0.2380773001862582, 0.24974227409907152, 0.2621779288508111, 0.27531306519830817, 0.28906399065625027, 0.30333805560430993, 0.3180373822061047, 0.3330624856873749, 0.34831552334255605, 0.36370296978049577, 0.37913760558162396, 0.39453980143705836, 0.4098381601739417, 0.424969632072648, 0.4398792419040142, 0.45451956406844246, 0.46885006355019, 0.48283639370155734, 0.49644971390843234, 0.5096660652632972, 0.5224658225546142, 0.5348332266234431, 0.5467559919226944, 0.5582249789796813, 0.5692339193469463, 0.5797791805607768 ], [ 0.27220894388491973, 0.2581265398947031, 0.2450676029414374, 0.23311327188329115, 0.22232408030600065, 0.21274212918262336, 0.20439542100236016, 0.19730299675691534, 0.19147889263458692, 0.18693304615588574, 0.1836683796014988, 0.18167510786178553, 0.1809250223075945, 0.18136905921540425, 0.18294033610667698, 0.18556249079853906, 0.18916082387418706, 0.19367262200591043, 0.19905354489701718, 0.20527862647336192, 0.21233836089148325, 0.2202317023309933, 0.2289582211938622, 0.23851123586695935, 0.24887290916949226, 0.2600115253257226, 0.2718807024842314, 0.2844201429893299, 0.2975575328619294, 0.3112112381577039, 0.3252934574243189, 0.3397134919589436, 0.35438082178429137, 0.36920774036952025, 0.38411139600062977, 0.39901518986327333, 0.4138495682464199, 0.42855230548876805, 0.443068402499948, 0.45734972778370675, 0.4713545124267916, 0.48504678625457587, 0.49839581622508317, 0.511375584575878, 0.5239643254227254, 0.5361441249564269, 0.5479005816308538, 0.5592225178628112, 0.5701017327514878, 0.5805327852402608 ], [ 0.2859346509159811, 0.2722628747934745, 0.25954666876121946, 0.24786438295957722, 0.23727746859867363, 0.22783235444164052, 0.2195638289654892, 0.21249880815121064, 0.20665897284461002, 0.20206091957896768, 0.198713332373169, 0.19661204369690138, 0.1957351180185334, 0.1960405339855743, 0.19746826150091779, 0.19994680390691147, 0.20340245467443713, 0.207768499921246, 0.21299178322559173, 0.219035186666978, 0.22587602982092012, 0.2335015162732483, 0.24190283072665486, 0.25106933893715433, 0.2609838442859967, 0.2716193263178451, 0.2829372187843752, 0.29488709935442653, 0.30740758381810224, 0.32042816749820824, 0.33387170864848287, 0.34765721749549355, 0.3617026234695123, 0.37592724938956007, 0.3902538120030611, 0.40460986949795336, 0.4189287256446994, 0.4331498630027731, 0.44721901038291884, 0.46108795658513724, 0.47471421133105846, 0.48806059374143484, 0.5010948055166992, 0.5137890246349558, 0.5261195381532648, 0.5380664202192897, 0.5496132533170733, 0.5607468862609127, 0.5714572205746263, 0.5817370167851851 ], [ 0.2998476020080004, 0.28657052018702733, 0.2741871501518764, 0.26277495364194237, 0.2523976838020387, 0.24310680678420457, 0.23494391834056472, 0.2279432617890316, 0.22213321504115666, 0.2175357911033427, 0.21416387400440048, 0.21201692807662617, 0.2110768480556089, 0.21130594683270593, 0.21264851692094736, 0.21503612637642883, 0.218395410281864, 0.22265625278065398, 0.22775826111488745, 0.2336541871625862, 0.24031001561972778, 0.24770234408396796, 0.25581415375515465, 0.26463009291922734, 0.2741321342518491, 0.28429612970442236, 0.2950895102656082, 0.30647019437673745, 0.31838664550260265, 0.3307789189372407, 0.3435804513760952, 0.356720289506534, 0.37012544388219065, 0.3837230953402733, 0.3974424596588666, 0.4112162089962093, 0.42498143366771196, 0.43868019052312535, 0.4522597197315236, 0.46567242295323075, 0.47887568955659915, 0.4918316414327338, 0.5045068475216844, 0.5168720407408105, 0.5289018549059014, 0.5405745882106812, 0.5518719926648918, 0.5627790848952648, 0.573283972059114, 0.5833776865329857 ], [ 0.31388694005253714, 0.3009964356291649, 0.2889434937321729, 0.2778056949532007, 0.2676495898487462, 0.25853162419815395, 0.2504996705764103, 0.24359446825242592, 0.23785014283025602, 0.23329315663961442, 0.2299395759429418, 0.22779130138149467, 0.22683258454216887, 0.22702838194168934, 0.22832567376084265, 0.23065791900384955, 0.23395174650449485, 0.23813426948829985, 0.2431393294227866, 0.24891146657649038, 0.25540718652633543, 0.262593806636859, 0.270446606358819, 0.2789451282799466, 0.2880693736449171, 0.2977964379326951, 0.30809793453734474, 0.31893839131199314, 0.3302746682951825, 0.34205632252285867, 0.3542267400196219, 0.36672478175391443, 0.379486664547672, 0.392447822104778, 0.4055445533626667, 0.4187153447182796, 0.43190182887433654, 0.4450494019684731, 0.4581075565725628, 0.4710300024309632, 0.4837746448898719, 0.49630347946728104, 0.5085824457033821, 0.5205812683628254, 0.5322733014836261, 0.5436353815155993, 0.5546476897843307, 0.5652936212080667, 0.5755596548842346, 0.5854352221804611 ], [ 0.3279961351588398, 0.3154899404255535, 0.30377045716802453, 0.29291579662332295, 0.28299524554544325, 0.27406971382337547, 0.2661924973549326, 0.2594098203315823, 0.2537605649709246, 0.2492747725770823, 0.24597092633971296, 0.24385259676706925, 0.2429055170122638, 0.2430962993870242, 0.24437366658046503, 0.24667234159280943, 0.24991891611589673, 0.2540384431292039, 0.25896038209600036, 0.26462284385427726, 0.27097464155795276, 0.2779752135964929, 0.28559287547445955, 0.29380202900066865, 0.30257995184136377, 0.3119036880045076, 0.32174742524066335, 0.3320806094834291, 0.34286691527597113, 0.3540640658986458, 0.3656243866469797, 0.3774958949395177, 0.38962369450533774, 0.40195145004253585, 0.41442276366759984, 0.4269823379979351, 0.4395768750489191, 0.4521557122772653, 0.46467123098472685, 0.47707908800747917, 0.48933832312287395, 0.5014113872577325, 0.5132641253032136, 0.5248657357183735, 0.536188719224915, 0.5472088216094602, 0.5579049709817474, 0.5682592073718381, 0.5782566017124365, 0.5878851614814937 ], [ 0.342120999925351, 0.33000091197211884, 0.31862156076407533, 0.30806161595943443, 0.29839270385703587, 0.2896794235635374, 0.28197946481138264, 0.2753434239268631, 0.2698139092761367, 0.2654236956387642, 0.2621930294740481, 0.26012661507571144, 0.2592111553643478, 0.25941439815215517, 0.2606863575023741, 0.2629628121652724, 0.26617054502356724, 0.2702333289792635, 0.2750775407436668, 0.28063649124526696, 0.2868529692546119, 0.2936799326462852, 0.30107962009438055, 0.3090215431256855, 0.3174798691332054, 0.3264306660062345, 0.33584939203805364, 0.3457089069889573, 0.35597816367483515, 0.3666216227208202, 0.3775993280948517, 0.38886750213031157, 0.4003794769298784, 0.41208677657554144, 0.4239401940584029, 0.4358907546149022, 0.44789050851129414, 0.4598931399185217, 0.4718544084446652, 0.4837324553536104, 0.49548801015455557, 0.507084529205259, 0.5184882902289073, 0.5296684582300213, 0.5405971310423511, 0.5512493674494514, 0.5616031975691317, 0.5716396136727614, 0.5813425393540111, 0.5906987755041629 ], [ 0.3562085019595615, 0.3444787780846865, 0.33344827563570667, 0.32319601238240786, 0.3137953692795884, 0.30531373196485917, 0.29781208218153776, 0.2913442432638021, 0.2859555124846581, 0.28168057033883476, 0.27854083257321943, 0.27654173062339293, 0.2756706432294582, 0.2758962285931563, 0.27716966523773146, 0.2794278604772378, 0.2825981875322478, 0.28660394757547025, 0.2913696366199034, 0.29682523335986977, 0.3029090249023698, 0.30956883103346305, 0.3167617754473371, 0.32445293625731697, 0.33261328719158506, 0.3412173398786261, 0.35024084526975485, 0.35965882996257786, 0.3694441449616571, 0.37956660178359747, 0.3899926764151807, 0.40068568832089213, 0.4116063187284557, 0.4227133220477467, 0.433964301166878, 0.4453164510526209, 0.45672721388070237, 0.4681548234089801, 0.4795587411221837, 0.49090000054224814, 0.5021414806482879, 0.5132481275986034, 0.5241871390040095, 0.5349281193135245, 0.5454432099670604, 0.5557071945355881, 0.5656975772003372, 0.5753946323712211, 0.5847814236283605, 0.5938437911038467 ], [ 0.37020620865298154, 0.3588721489624621, 0.3481998412660701, 0.33826830365808247, 0.32915199863586514, 0.32092015927985174, 0.3136359632855694, 0.30735534640362766, 0.30212529651979086, 0.29798161342212265, 0.29494634061917874, 0.2930253124889854, 0.2922064179988351, 0.2924591727902896, 0.2937359812501388, 0.2959751098421094, 0.2991050015061317, 0.3030492710890099, 0.3077316188773948, 0.31307999018109345, 0.31902953365499426, 0.3255241821596206, 0.33251692194130433, 0.33996898651762, 0.34784830197769645, 0.3561275323359765, 0.3647820457489459, 0.37378806181408436, 0.3831211604848372, 0.3927552465109488, 0.4026619818284264, 0.4128106331191973, 0.42316824055765845, 0.43369999870427, 0.4443697478804646, 0.4551404963734993, 0.46597492148554437, 0.4768358232210746, 0.4876865237227392, 0.4984912169762895, 0.5092152777253101, 0.519825538100288, 0.5302905375118256, 0.5405807477838903, 0.5506687725195365, 0.5605295178496306, 0.5701403310810113, 0.5794811041188633, 0.5885343395612916, 0.5972851787246424 ], [ 0.3840622394276203, 0.37312897575535203, 0.36282362927712947, 0.3532248037367314, 0.3444073516445833, 0.33644144333940573, 0.32939142136218275, 0.32331430232763897, 0.31825784950799074, 0.31425826779671184, 0.3113377489565398, 0.30950226814868487, 0.3087401326572112, 0.3090217502293789, 0.31030090034571206, 0.31251749992736644, 0.31560154515323935, 0.3194776806336583, 0.324069759237544, 0.329304817551255, 0.33511606191791327, 0.341444674833623, 0.348240453332243, 0.3554614438008173, 0.36307282910576594, 0.3710453582798735, 0.37935359817723163, 0.38797424363879285, 0.39688466010340184, 0.40606176172013814, 0.4154812597591405, 0.42511725994017024, 0.43494214958371163, 0.4449266982148327, 0.45504029590745204, 0.46525126657032834, 0.4755272117977422, 0.4858353589973508, 0.49614290153511664, 0.5064173272179235, 0.5166267350271481, 0.5267401400964427, 0.5367277652078529, 0.5465613149906384, 0.5562142274631603, 0.5656618969651309, 0.5748818629040151, 0.5838539598775196, 0.5925604263372826, 0.6009859707370857 ], [ 0.3977256152804022, 0.3871971277705957, 0.3772659531041987, 0.3680098495883371, 0.3595033990260849, 0.3518168737625744, 0.3450148572742162, 0.3391545368959709, 0.33428365254587733, 0.33043819738459623, 0.3276401050499441, 0.3258952821744436, 0.32519240296002083, 0.3255028344632258, 0.3267819001593572, 0.32897145155283264, 0.33200347105472855, 0.33580424591469493, 0.34029857930372814, 0.3454135471990105, 0.35108143961811145, 0.35724169559414803, 0.3638418086701407, 0.3708373134499009, 0.37819105069789366, 0.3858719486294243, 0.3938535586915468, 0.40211255535423157, 0.41062736169305086, 0.4193770060266613, 0.42834025903144096, 0.43749505350716356, 0.446818155564433, 0.4562850382319938, 0.46586990470886164, 0.4755458146520192, 0.4852848780289636, 0.49505849276429625, 0.5048376117438153, 0.5145930305027896, 0.524295689315192, 0.5339169834286096, 0.5434290740929963, 0.5528051918606757, 0.5620199230586116, 0.57104947062408, 0.5798718816174593, 0.5884672354665261, 0.5968177890733083, 0.6049080770581952 ], [ 0.4111468981043156, 0.4010252731618517, 0.3914731995684205, 0.38256717880863156, 0.374380925855583, 0.36698408491912893, 0.3604406900400118, 0.35480733336054404, 0.35013106839912433, 0.34644717127093705, 0.34377699037552784, 0.34212620174292, 0.34148381576324405, 0.3418222253069637, 0.343098444913115, 0.345256496151704, 0.34823069721779915, 0.3519494685198296, 0.3563392050081609, 0.36132779576143426, 0.36684747144231117, 0.37283679644871504, 0.3792417607507299, 0.38601604165313436, 0.3931205854055151, 0.40052270038950555, 0.4081948618366062, 0.416113410188328, 0.42425728994159206, 0.43260693180037024, 0.44114333617558427, 0.449847377090551, 0.4586993166751372, 0.4676785032658242, 0.4767632196686847, 0.48593064953520504, 0.4951569354539868, 0.5044173090128801, 0.5136862785088223, 0.5229378631973571, 0.5321458640486744, 0.5412841606101984, 0.5503270226583399, 0.5592494246170667, 0.5680273507021317, 0.5766380795809369, 0.5850604389388283, 0.5932750224884656, 0.6012643643737259, 0.6090130683446464 ], [ 0.4242790136444839, 0.4145639436405768, 0.40539314614849936, 0.3968414990959985, 0.3889813403986805, 0.38188107776466595, 0.3756035510560957, 0.37020414387822453, 0.3657287015360898, 0.3622113923586388, 0.3596727314225338, 0.35811804415523957, 0.35753665554171116, 0.3579020323180995, 0.3591729839371264, 0.36129586846372846, 0.3642075914758915, 0.3678390691083511, 0.37211877619832573, 0.37697602155124654, 0.3823436699727888, 0.3881601395150669, 0.39437061602173035, 0.40092752526157827, 0.4077903742432867, 0.41492511430097667, 0.42230319151811846, 0.4299004405300103, 0.4376959526405458, 0.4456710156904023, 0.45380818784889787, 0.462090535847919, 0.4705010436810697, 0.4790221818791671, 0.48763561958969626, 0.4963220598707674, 0.5050611803032634, 0.5138316638616387, 0.5226113073144998, 0.5313771954970928, 0.5401059296268554, 0.5487738969142314, 0.5573575677012785, 0.5658338057941352, 0.5741801778719189, 0.5823752489380419, 0.590398852616539, 0.598232327454322, 0.6058587129983698, 0.6132629020213383 ], [ 0.4370781577648579, 0.4277666686190896, 0.418976331993903, 0.41078009593148196, 0.4032485078925816, 0.3964482579204631, 0.390440492903589, 0.3852789236956866, 0.3810078014125492, 0.3776599046198442, 0.3752547404723353, 0.37379720029454033, 0.3732769048649115, 0.37366841701556264, 0.37493239431238845, 0.3770176233437078, 0.3798637498707119, 0.383404425374369, 0.38757054941642893, 0.39229330225657383, 0.39750672269248205, 0.4031496731313987, 0.40916712713020253, 0.41551079767119825, 0.42213918723901395, 0.42901717954112867, 0.436115308447338, 0.44340883636628964, 0.4508767572617824, 0.4585008146555346, 0.4662645976751116, 0.4741527528689658, 0.4821503290432398, 0.49024225804608085, 0.49841296599528456, 0.5066461056025343, 0.5149243992073, 0.5232295822104246, 0.5315424366000835, 0.5398429036385903, 0.548110263537086, 0.556323368449845, 0.5644609138499993, 0.5725017327102687, 0.5804250971350634, 0.588211013204365, 0.5958404966630291, 0.6032958194902154, 0.61056072004723, 0.6176205721798645 ], [ 0.44950469733212867, 0.44059107829637245, 0.4321773685959795, 0.4243343485369196, 0.41713046108384483, 0.4106303212903726, 0.40489302173343744, 0.39997027358988024, 0.39590447079636987, 0.392726817300386, 0.390455702251477, 0.38909552999704117, 0.3886361979697338, 0.38905336063786594, 0.39030952763163834, 0.39235593602217134, 0.39513503388149407, 0.39858333690623055, 0.40263438624577474, 0.40722154647503656, 0.4122804300747831, 0.4177508045455537, 0.4235779146631812, 0.42971322221893743, 0.4361146203004538, 0.44274621499450817, 0.4495777844704192, 0.456584026493981, 0.4637436947010167, 0.47103870605435666, 0.47845328117502683, 0.48597315922990075, 0.49358491217554185, 0.5012753705304925, 0.509031164454011, 0.5168383789079655, 0.5246823188521049, 0.5325473785964288, 0.5404170077700416, 0.5482737644780745, 0.5560994441281046, 0.563875270394989, 0.5715821332224698, 0.5792008579358605, 0.5867124896243215, 0.5940985779425675, 0.6013414492428772, 0.6084244552560406, 0.615332190140156, 0.6220506703683695 ], [ 0.4615239931605282, 0.4529998954553896, 0.4449561017515598, 0.43746105706516625, 0.4305808812415394, 0.4243778711805733, 0.41890882693132975, 0.4142232533935392, 0.410361530281243, 0.4073531845176578, 0.4052154310979437, 0.40395215935581513, 0.4035535227181047, 0.4039962389693666, 0.4052446308697181, 0.407252347622831, 0.4099646242374646, 0.4133208750269751, 0.4172573899658226, 0.42170991044794254, 0.4266158983472781, 0.43191636834178593, 0.4375572160424486, 0.4434900330294601, 0.44967244722686156, 0.45606805961879665, 0.46264606575468137, 0.46938065467140994, 0.4762502719279831, 0.4832368210271171, 0.4903248620611023, 0.49750085082862033, 0.5047524479023443, 0.5120679161851607, 0.5194356175000572, 0.5268436132121341, 0.5342793699755147, 0.5417295686358001, 0.5491800115290636, 0.5566156206484356, 0.5640205164375548, 0.5713781645428961, 0.5786715759993004, 0.5858835452698485, 0.5929969104307382, 0.5999948205674739, 0.6068609969982441, 0.613579977056091, 0.6201373316052647, 0.626519850009816 ], [ 0.4731070907371728, 0.4649617583306447, 0.4572785643150442, 0.4501235181509236, 0.443560284837748, 0.43764870042622595, 0.43244313977537985, 0.4279907958922784, 0.42432996456187133, 0.42148846019149816, 0.41948231060861185, 0.4183148815823754, 0.41797656030118063, 0.41844508030910327, 0.41968650430200877, 0.4216568070978725, 0.4243039330558077, 0.42757015294180306, 0.4313945226943922, 0.43571525227752345, 0.44047182242025607, 0.44560673226496633, 0.4510668122970194, 0.45680408598841343, 0.4627762043541428, 0.4689465069101743, 0.47528377967407465, 0.4817617870680246, 0.4883586522052525, 0.49505615186856355, 0.501838981264648, 0.5086940316577985, 0.5156097128777265, 0.522575343342906, 0.5295806228602344, 0.5366151977887853, 0.5436683236824156, 0.5507286267311833, 0.557783961832259, 0.5648213617858654, 0.5718270689867214, 0.5787866382563851, 0.5856850973668865, 0.5925071505277009, 0.5992374097374772, 0.6058606394177022, 0.6123620010275218, 0.6187272862197158, 0.6249431293194739, 0.6309971922759748 ], [ 0.4842312425583563, 0.4764518386325052, 0.46911768507443014, 0.462292316350503, 0.45603688638016976, 0.4504087123784273, 0.44545969818247877, 0.4412347006094775, 0.4377699308168554, 0.43509150718941586, 0.4332142904046649, 0.43214112890930517, 0.4318626204050988, 0.43235745260551506, 0.4335933298438586, 0.4355284303981428, 0.4381132836125992, 0.4412929157515465, 0.4450090950203849, 0.4492025104588213, 0.45381474307093095, 0.45878992422963744, 0.4640760186662087, 0.4696257104970858, 0.47539690578824695, 0.48135289130437475, 0.4874622055290974, 0.4936982855035537, 0.5000389532172927, 0.5064658003427034, 0.5129635221802444, 0.5195192426131308, 0.5261218629937551, 0.532761459977601, 0.539428750654189, 0.5461146377983698, 0.5528098433833256, 0.5595046343360195, 0.5661886406489482, 0.5728507623129899, 0.5794791581747905, 0.5860613069129259, 0.5925841280602961, 0.5990341495286634, 0.6053977074890173, 0.6116611647089633, 0.6178111344413447, 0.6238346985321529, 0.6297196103755629, 0.6354544754934704 ], [ 0.49488024217712295, 0.48745223763645723, 0.4804537405800401, 0.4739458232050294, 0.4679871347502287, 0.4626324840060035, 0.45793132640315964, 0.45392622096976004, 0.4506513456495218, 0.4481311778139058, 0.44637945512389565, 0.44539852579712685, 0.4451791746237318, 0.4457009729315839, 0.4469331519610777, 0.44883594740439775, 0.4513623168258896, 0.4544598987786538, 0.45807306720923036, 0.462144937998086, 0.466619203571665, 0.47144170147126696, 0.4765616577381264, 0.4819325805773536, 0.48751280990420826, 0.4932657516154856, 0.49915984090869525, 0.5051682870890837, 0.511268654282032, 0.5174423299319089, 0.5236739275929092, 0.529950663766746, 0.5362617415151402, 0.5425977669518445, 0.5489502187957277, 0.5553109859535549, 0.5616719834512441, 0.5680248527644256, 0.5743607485895392, 0.5806702103244056, 0.5869431130717313, 0.593168689985713, 0.5993356154113738, 0.6054321366468683, 0.6114462413540401, 0.6173658476374834, 0.6231790045200968, 0.628874091822654, 0.6344400101353692, 0.6398663534745758 ], [ 0.5050445635833081, 0.4979521582474557, 0.4912745531207302, 0.48507041321283856, 0.4793959389173236, 0.47430349363071483, 0.46984015837181287, 0.466046278709373, 0.4629540880415188, 0.460586504639841, 0.4589562038653667, 0.45806505845543416, 0.45790401760838634, 0.45845346130383374, 0.45968402419733984, 0.4615578398114288, 0.46403011746254574, 0.4670509372108694, 0.4705671355504161, 0.4745241571193277, 0.47886776329151237, 0.48354551318614136, 0.4885079617645593, 0.49370954892806923, 0.4991091795105354, 0.504670514675669, 0.5103620096303453, 0.5161567409216338, 0.522032069759695, 0.527969187025918, 0.5339525821869934, 0.539969473407229, 0.5460092306367121, 0.5520628179442716, 0.5581222761641553, 0.5641802621159695, 0.5702296561932485, 0.5762632459151587, 0.5822734890482815, 0.5882523561483192, 0.5941912489304284, 0.6000809878814827, 0.605911860115778, 0.6116737167572484, 0.617356108162496, 0.6229484450712559, 0.6284401742140634, 0.6338209579026415, 0.639080848529844, 0.6442104505572991 ], [ 0.5147213100631352, 0.5079478620759839, 0.5015754495391762, 0.49566041760602864, 0.4902566103695174, 0.485414046944883, 0.4811775441117999, 0.4775853496997752, 0.4746678658816049, 0.47244655098215915, 0.47093308921102345, 0.4701289077140497, 0.4700250990511903, 0.4706027763672195, 0.4718338519461531, 0.47368219275198054, 0.4761050744521408, 0.4790548328347935, 0.48248060110872615, 0.4863300236714224, 0.4905508498240195, 0.49509233145781956, 0.49990637321255016, 0.5049484084838486, 0.5101779971442747, 0.5155591591362269, 0.521060471387632, 0.5266549638113797, 0.5323198540764675, 0.5380361613017581, 0.5437882368323986, 0.5495632467448242, 0.5553506364327282, 0.5611416030683576, 0.5669285972070833, 0.5727048704342895, 0.5784640817648682, 0.5841999714829517, 0.5899061072536863, 0.5955757036926961, 0.601201513230323, 0.6067757831735607, 0.6122902714682751, 0.617736311893069, 0.623104918325148, 0.6283869173050183, 0.6335730983359482, 0.6386543720884865, 0.643621927815604, 0.6484673826848598 ], [ 0.5239139844281718, 0.5174424282831338, 0.5113590030216387, 0.5057178437404949, 0.5005705557711125, 0.49596494024771987, 0.49194368297227736, 0.4885430689261228, 0.4857917966538684, 0.4837099731137642, 0.4823083680628912, 0.48158799615528, 0.4815400746912032, 0.4821463771443781, 0.48337997059146787, 0.4852062933480867, 0.48758450193232317, 0.49046899752436063, 0.49381103340500504, 0.49756030664610834, 0.5016664481582854, 0.5060803425171821, 0.5107552297607352, 0.5156475626854118, 0.520717612744711, 0.5259298339227273, 0.5312530061681336, 0.5366601880534834, 0.5421285126802611, 0.5476388621705514, 0.5531754551583064, 0.5587253792619975, 0.5642780972012947, 0.569824951460325, 0.5753586884813425, 0.5808730194455441, 0.5863622308286949, 0.5918208541393727, 0.5972434005914292, 0.6026241629889061, 0.6079570838986899, 0.6132356863590039, 0.618453061024666, 0.6236019018662685, 0.6286745813668847, 0.6336632555990138, 0.6385599895745177, 0.6433568937626104, 0.6480462635617189, 0.6526207146742143 ], [ 0.5326320979238804, 0.5264453359759457, 0.5206345843956878, 0.5152518914752181, 0.5103467559387104, 0.5059649013587024, 0.5021470279636894, 0.4989276019589764, 0.4963337518189011, 0.4943843449915585, 0.4930893152568236, 0.49244929964146206, 0.49245562465173304, 0.49309065639943034, 0.4943285009719515, 0.49613601382932465, 0.4984740537578316, 0.5012989008512392, 0.5045637507081971, 0.5082201986272745, 0.512219636831101, 0.5165145025395693, 0.5210593325406927, 0.5258115983792442, 0.5307323134463079, 0.5357864177775338, 0.5409429575666651, 0.5461750841407854, 0.5514599016981383, 0.5567781949967954, 0.5621140680189991, 0.5674545230228252, 0.5727890068418757, 0.578108948194084, 0.5834073063767854, 0.5886781482185702, 0.5939162666221885, 0.599116850526917, 0.6042752126992507, 0.609386578496087, 0.6144459357199269, 0.6194479429959991, 0.6243868918379925, 0.6292567158055495, 0.6340510389358752, 0.6387632549601389, 0.6433866286620704, 0.6479144110386982, 0.6523399605957941, 0.6566568640551789 ], [ 0.540890638766981, 0.5349718950024405, 0.5294177517853895, 0.524278299332622, 0.5196010676497043, 0.5154298480723278, 0.5118035039071995, 0.5087548278896603, 0.5063095114540772, 0.5044852929580156, 0.5032913476143149, 0.5027279703903484, 0.5027865850667482, 0.5034500897228076, 0.5046935238067511, 0.506485017818928, 0.5087869665264522, 0.5115573528782381, 0.5147511436400971, 0.5183216792378097, 0.5222219883264799, 0.5264059704115921, 0.530829405337561, 0.5354507646185576, 0.5402318147585301, 0.5451380157415693, 0.5501387281456253, 0.5552072496772975, 0.5603207065220012, 0.5654598271449858, 0.5706086265522659, 0.5757540280162319, 0.5808854473186904, 0.5859943620042394, 0.5910738852144518, 0.5961183605527639, 0.6011229912191235, 0.6060835134298099, 0.6109959209698193, 0.6158562446858774, 0.6206603878987684, 0.6254040161796747, 0.6300824977769626, 0.6346908892617494, 0.6392239597221053, 0.643676246086119, 0.6480421318714039, 0.6523159417937768, 0.6564920451508273, 0.6605649616445954 ], [ 0.5487094236230876, 0.5430425517546811, 0.5377295084993685, 0.5328185534304463, 0.5283553841225097, 0.5243820024814272, 0.5209355797839168, 0.5180473757047633, 0.5157417722333416, 0.514035484119752, 0.5129370022800919, 0.5124463151281514, 0.5125549357531902, 0.5132462418731484, 0.5144961129575173, 0.5162738275701364, 0.5185431663949598, 0.5212636545049087, 0.5243918711984443, 0.5278827571181706, 0.5316908554496756, 0.5357714352462345, 0.5400814585528914, 0.5445803672943635, 0.5492306794234278, 0.5539983955956943, 0.5588532270768537, 0.5637686625199134, 0.5687218957862551, 0.5736936394267804, 0.5786678491795283, 0.5836313842824267, 0.588573626909728, 0.5934860819172891, 0.5983619755514786, 0.6031958690012555, 0.6079832997676768, 0.6127204608765787, 0.6174039250434373, 0.6220304180883739, 0.6265966432703831, 0.631099155839808, 0.635534285067437, 0.6398980993540472, 0.644186408791717, 0.6483947987487195, 0.652518687668404, 0.656553402270947, 0.6604942636685314, 0.6643366784810342 ], [ 0.5561123568235643, 0.550682097526697, 0.5455954593329929, 0.540898991797015, 0.5366366889317311, 0.5328488977507893, 0.5295712333232806, 0.526833553230737, 0.5246590486148327, 0.5230635086744946, 0.5220548097050958, 0.5216326684665189, 0.5217886835652488, 0.5225066692017675, 0.5237632652323204, 0.5255287884182437, 0.5277682741811162, 0.5304426477600697, 0.5335099591680084, 0.5369266176811298, 0.5406485679374903, 0.5446323597312431, 0.5488360757264468, 0.5532200940918621, 0.5577476752391681, 0.56238537254646, 0.5671032756529795, 0.5718751014352378, 0.5766781521881884, 0.5814931630726236, 0.5863040618714198, 0.5910976638620079, 0.5958633234753082, 0.6005925626377974, 0.6052786934920938, 0.6099164507192855, 0.6145016460598436, 0.6190308549402695, 0.6235011424369216, 0.6279098332193525, 0.6322543276839659, 0.6365319642835717, 0.6407399261413718, 0.6448751884589089, 0.6489345020189158, 0.6529144072577602, 0.6568112729285844, 0.660621353265849, 0.6643408577492729, 0.667966027993611 ], [ 0.5631266230043006, 0.5579188074055117, 0.5530448953978104, 0.5485498360928148, 0.5444760370185034, 0.5408623123403236, 0.5377428438662772, 0.5351462054319732, 0.5330945045034753, 0.5316026937008232, 0.5306780988231137, 0.5303201988858938, 0.5305206784502013, 0.53126375461205, 0.532526762397395, 0.5342809650901458, 0.5364925421129366, 0.53912369785091, 0.5421338309005547, 0.5454807045238447, 0.5491215648372456, 0.5530141622849851, 0.5571176428805487, 0.5613932872448616, 0.5658050865336919, 0.5703201541422688, 0.5749089801333273, 0.5795455414726858, 0.5842072854126416, 0.5888750059248433, 0.5935326342170704, 0.5981669643625249, 0.6027673342009215, 0.6073252801758316, 0.6118341828454379, 0.6162889175940542, 0.6206855226950359, 0.6250208944234328, 0.6292925164659715, 0.633498228496419, 0.6376360365415408, 0.641703965718013, 0.6456999541281213, 0.6496217852054255, 0.6534670546299134, 0.6572331670974856, 0.6609173577251404, 0.6645167326784172, 0.6680283236850472, 0.6714491514018792 ], [ 0.5697818392691976, 0.5647835377472178, 0.5601098372981378, 0.5558041820997623, 0.5519074954439234, 0.5484571653476326, 0.5454860479388379, 0.5430215370281245, 0.5410847506779382, 0.5396898838453416, 0.5388437698448824, 0.5385456825951278, 0.5387873971809982, 0.5395535095863628, 0.5408219993244961, 0.5425650030134201, 0.5447497543808851, 0.547339637919708, 0.5502952999798763, 0.5535757623454333, 0.5571394886106377, 0.5609453618830976, 0.5649535422940951, 0.5691261833267977, 0.5734279961079479, 0.5778266598381678, 0.5822930840302293, 0.5868015340046343, 0.5913296351756784, 0.5958582742006499, 0.600371416286034, 0.6048558580998397, 0.609300935072341, 0.6136982005944795, 0.6180410929229063, 0.622324603616134, 0.6265449591699426, 0.6306993252820298, 0.634785540930957, 0.6388018872688238, 0.6427468942607684, 0.646619186111981, 0.6504173648519874, 0.6541399300345335, 0.6577852313853302, 0.661351450400843, 0.6648366063661719, 0.6682385820016356, 0.6715551639368986, 0.6747840934101555 ], [ 0.5761091929657584, 0.571308810020994, 0.5668240659497731, 0.5626969795696053, 0.5589670755406837, 0.5556704054544571, 0.5528385906271904, 0.5504979329297223, 0.5486686417146344, 0.547364222724949, 0.5465910684434071, 0.5463482788798133, 0.5466277281024156, 0.5474143762225457, 0.548686810691343, 0.5504179863735283, 0.5525761224122632, 0.5551257064223127, 0.5580285534931333, 0.5612448687044925, 0.5647342667183933, 0.568456709554283, 0.5723733327918449, 0.5764471401310362, 0.5806435555929623, 0.5849308310217343, 0.5892803135491591, 0.593666583137565, 0.5980674742249986, 0.6024639979872305, 0.6068401829982562, 0.6111828523382564, 0.6154813546847918, 0.6197272658269267, 0.6239140755300993, 0.628036872887696, 0.6320920413321129, 0.6360769724308021, 0.6399898055337252, 0.6438291983297694, 0.6475941314659384, 0.6512837486330142, 0.6548972319665971, 0.6584337112860256, 0.6618922046184014, 0.665271586641769, 0.6685705811291107, 0.6717877731701593, 0.6749216368677654, 0.6779705743184756 ], [ 0.5821405906560886, 0.5775279081127942, 0.5732221694669716, 0.5692640309942655, 0.5656916869534058, 0.5625399246873554, 0.5598392044892456, 0.5576148085723929, 0.5558861046791962, 0.5546659673690033, 0.5539603935898375, 0.5537683390235097, 0.554081788693959, 0.5548860606948546, 0.5561603271485533, 0.5578783232091904, 0.5600092044022686, 0.5625185057646152, 0.5653691534947279, 0.5685224809953104, 0.571939205699138, 0.5755803300419576, 0.5794079383924031, 0.5833858707174341, 0.5874802624498026, 0.5916599478381477, 0.5958967306301496, 0.6001655310969584, 0.6044444221462111, 0.6087145696973207, 0.6129600937785927, 0.6171678671510239, 0.6213272678683619, 0.6254299012296771, 0.6294693052260377, 0.6334406519561517, 0.6373404556913622, 0.6411662963922671, 0.6449165655865009, 0.6485902396679472, 0.6521866839218933, 0.6557054889616808, 0.6591463398166633, 0.6625089166674868, 0.6657928252027542, 0.6689975537809824, 0.6721224540233153, 0.6751667411256409, 0.678129510044866, 0.6810097637575305 ], [ 0.5879078427768915, 0.5834740149382008, 0.5793386331654992, 0.5755410373682875, 0.5721181424755846, 0.5691035265546468, 0.566526546043189, 0.5644115205087695, 0.562777030117033, 0.5616353662750392, 0.560992169537406, 0.5608462791135426, 0.5611898059705434, 0.5620084277663109, 0.5632818900815321, 0.5649846860684344, 0.5670868769064128, 0.5695550091669398, 0.5723530826760447, 0.575443523574094, 0.5787881214655463, 0.5823488960237792, 0.586088866262065, 0.5899727040289533, 0.5939672613960787, 0.598041968928992, 0.6021691080195297, 0.6063239653486888, 0.6104848811273368, 0.6146332051186113, 0.6187531757337789, 0.6228317378940137, 0.6268583150478888, 0.6308245498983325, 0.6347240271710959, 0.6385519902724981, 0.6423050620374795, 0.6459809780405557, 0.6495783391978386, 0.6530963886821971, 0.6565348165516437, 0.6598935939917682, 0.663172837728424, 0.6663727040018453, 0.6694933105251493, 0.6725346840877477, 0.675496730908006, 0.6783792264817514, 0.6811818214988772, 0.6839040603881 ], [ 0.5934419067048576, 0.5891794122874002, 0.5852069976740452, 0.5815627168528501, 0.5782822403503762, 0.5753979758248575, 0.5729382175420668, 0.5709263652649796, 0.5693802535129637, 0.5683116292864705, 0.5677258100845535, 0.5676215446765387, 0.5679910873766405, 0.5688204836190038, 0.5700900517474716, 0.5717750344233089, 0.573846384014831, 0.5762716405035917, 0.5790158581179176, 0.5820425379434114, 0.5853145276587407, 0.5887948555661329, 0.5924474733962986, 0.5962378901630065, 0.6001336869393212, 0.6041049093129316, 0.6081243401238648, 0.6121676597356228, 0.616213504519098, 0.6202434365145888, 0.6242418385182208, 0.6281957492808327, 0.6320946532801524, 0.6359302387900142, 0.6396961368631968, 0.6433876524846235, 0.6470014976352091, 0.6505355344110322, 0.6539885347302871, 0.6573599615825735, 0.6606497752734748, 0.6638582667266859, 0.6669859186543058, 0.6700332943148759, 0.673000952663287, 0.6758893879646108, 0.6786989913960473, 0.6814300317913056, 0.6840826524775661, 0.6866568810991328 ], [ 0.5987722084087531, 0.5946747651182338, 0.5908591072893028, 0.5873620192691398, 0.5842179476224698, 0.5814581540592039, 0.5791098985409134, 0.5771956912362856, 0.5757326521431979, 0.5747320142516301, 0.5741988000062777, 0.5741316918615551, 0.5745231066248663, 0.5753594710953845, 0.5766216844360352, 0.5782857419648629, 0.580323486623796, 0.5827034489494991, 0.5853917341984624, 0.5883529162324437, 0.5915509013878404, 0.5949497311549212, 0.5985142993124811, 0.6022109664567218, 0.6060080619943778, 0.6098762701587969, 0.6137889021423153, 0.6177220608636614, 0.6216547081779571, 0.6255686465545875, 0.6294484285182813, 0.6332812076231907, 0.6370565445668539, 0.6407661814001415, 0.644403795783163, 0.6479647459878165, 0.6514458159473963, 0.6548449681767712, 0.6581611108927401, 0.6613938842011576, 0.6645434688240729, 0.6676104195476269, 0.6705955244047419, 0.6734996895844915, 0.676323849195307, 0.6790688983087328, 0.6817356471750503, 0.6843247941267845, 0.686836914460696, 0.689272462498683 ], [ 0.6039260595668311, 0.5999885079991462, 0.5963244670069964, 0.5929694554829986, 0.5899567041277328, 0.587316340904128, 0.585074607578246, 0.5832531441597483, 0.5818683779780913, 0.5809310511521233, 0.5804459142845486, 0.5804116056620459, 0.5808207247523498, 0.5816600973320861, 0.5829112182740137, 0.5845508479723037, 0.5865517305106066, 0.5888833965937249, 0.5915130122123577, 0.5944062348684647, 0.5975280425318573, 0.6008435057035585, 0.6043184793207669, 0.6079201980635355, 0.6116177653222389, 0.6153825322060414, 0.6191883682189063, 0.6230118294487078, 0.6268322332737478, 0.630631650744025, 0.6343948290528024, 0.6381090570168478, 0.6417639863783827, 0.6453514211689513, 0.6488650864607955, 0.6523003866822082, 0.6556541623782018, 0.6589244529281233, 0.6621102713445781, 0.6652113959184598, 0.6682281821790306, 0.6711613974343259, 0.6740120790678332, 0.6767814168089012, 0.6794706583778078, 0.6820810372376959, 0.6846137206654347, 0.6870697759777208, 0.6894501525088368, 0.6917556768200985 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.720980679616332, 0.45928286166302285, 0.40902231818030943, 0.36086899305807657, 0.2523889292857108, 0.15033710032010159, 0.22069965108541728, 0.21415606189206712, 0.26368708401367214, 0.17921651510619876, 0.13701447293963231, 0.9176421882584691, 0.1928498790100948, 0.1755083516825499, 0.1791541413992838, 0.14207345461422838, 0.184858918174533, 0.1822815968714624, 0.23294109646302133, 0.19298453986701336, 0.19426651136444736, 0.6194232506677508, 0.7289748759940267, 0.5233828192576766, 0.19197882246226072, 0.6741061822677927, 0.5808269217490215, 0.5500585613170781, 0.4955024039725692 ], "xaxis": "x", "y": [ 0.03939337842166424, 0.2643891143020152, 0.2502333407258234, 0.22805965048226826, 0.26037217655680767, 0.2839057262433098, 0.33331731990135377, 0.22042058750104238, 0.1976267302350175, 0.1450762398590863, 0.12359556954971598, 0.7765104928985238, 0.10734572543409701, 0.15103539941288865, 0.16978522464500273, 0.1735714045226036, 0.1667252614227098, 0.15530351808613088, 0.16036864478726232, 0.1717481315220384, 0.2013190907393805, 0.33481294196099043, 0.9124056249856949, 0.2083984324708581, 0.9806723333895206, 0.31646653544803993, 0.3563762475205161, 0.308752605717964, 0.2890373801184649 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.720980679616332, 0.45928286166302285, 0.40902231818030943, 0.36086899305807657, 0.2523889292857108, 0.15033710032010159, 0.22069965108541728, 0.21415606189206712, 0.26368708401367214, 0.17921651510619876, 0.13701447293963231, 0.9176421882584691, 0.1928498790100948, 0.1755083516825499, 0.1791541413992838, 0.14207345461422838, 0.184858918174533, 0.1822815968714624, 0.23294109646302133, 0.19298453986701336, 0.19426651136444736, 0.6194232506677508, 0.7289748759940267, 0.5233828192576766, 0.19197882246226072, 0.6741061822677927, 0.5808269217490215, 0.5500585613170781, 0.4955024039725692 ], "xaxis": "x2", "y": [ 0.03939337842166424, 0.2643891143020152, 0.2502333407258234, 0.22805965048226826, 0.26037217655680767, 0.2839057262433098, 0.33331731990135377, 0.22042058750104238, 0.1976267302350175, 0.1450762398590863, 0.12359556954971598, 0.7765104928985238, 0.10734572543409701, 0.15103539941288865, 0.16978522464500273, 0.1735714045226036, 0.1667252614227098, 0.15530351808613088, 0.16036864478726232, 0.1717481315220384, 0.2013190907393805, 0.33481294196099043, 0.9124056249856949, 0.2083984324708581, 0.9806723333895206, 0.31646653544803993, 0.3563762475205161, 0.308752605717964, 0.2890373801184649 ], "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 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "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": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "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": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "xaxis2": { "anchor": "y2", "autorange": false, "domain": [ 0.6, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "yaxis": { "anchor": "x", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x2" }, "type": "linear" }, "yaxis2": { "anchor": "x2", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "type": "linear" } } }, "text/html": [ "