{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Visualizations\n", "\n", "This tutorial illustrates the core visualization utilities available in Ax." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "data": { "text/html": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 15:15:25] ipy_plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n" ] }, { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import numpy as np\n", "from ax import (\n", " Arm,\n", " ComparisonOp,\n", " RangeParameter,\n", " ParameterType,\n", " SearchSpace, \n", " SimpleExperiment, \n", " OutcomeConstraint, \n", ")\n", "\n", "from ax.metrics.l2norm import L2NormMetric\n", "from ax.modelbridge.cross_validation import cross_validate\n", "from ax.modelbridge.registry import Models\n", "from ax.plot.contour import interact_contour, plot_contour\n", "from ax.plot.diagnostic import interact_cross_validation\n", "from ax.plot.scatter import(\n", " interact_fitted,\n", " plot_objective_vs_constraints,\n", " tile_fitted,\n", ")\n", "from ax.plot.slice import plot_slice\n", "from ax.utils.measurement.synthetic_functions import hartmann6\n", "from ax.utils.notebook.plotting import render, init_notebook_plotting\n", "\n", "init_notebook_plotting()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 1. Create experiment and run optimization\n", "\n", "The vizualizations require an experiment object and a model fit on the evaluated data. The routine below is a copy of the Developer API tutorial, so the explanation here is omitted. Retrieving the experiment and model objects for each API paradigm is shown in the respective tutorials" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### 1a. Define search space and evaluation function" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "noise_sd = 0.1\n", "param_names = [f\"x{i+1}\" for i in range(6)] # x1, x2, ..., x6\n", "\n", "def noisy_hartmann_evaluation_function(parameterization):\n", " x = np.array([parameterization.get(p_name) for p_name in param_names])\n", " noise1, noise2 = np.random.normal(0, noise_sd, 2)\n", "\n", " return {\n", " \"hartmann6\": (hartmann6(x) + noise1, noise_sd),\n", " \"l2norm\": (np.sqrt((x ** 2).sum()) + noise2, noise_sd)\n", " }\n", "\n", "hartmann_search_space = SearchSpace(\n", " parameters=[\n", " RangeParameter(\n", " name=p_name, parameter_type=ParameterType.FLOAT, lower=0.0, upper=1.0\n", " )\n", " for p_name in param_names\n", " ]\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### 1b. Create Experiment" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "exp = SimpleExperiment(\n", " name=\"test_branin\",\n", " search_space=hartmann_search_space,\n", " evaluation_function=noisy_hartmann_evaluation_function,\n", " objective_name=\"hartmann6\",\n", " minimize=True,\n", " outcome_constraints=[\n", " OutcomeConstraint(\n", " metric=L2NormMetric(\n", " name=\"l2norm\", param_names=param_names, noise_sd=0.2\n", " ),\n", " op=ComparisonOp.LEQ,\n", " bound=1.25,\n", " relative=False,\n", " )\n", " ],\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### 1c. Run the optimization and fit a GP on all data\n", "\n", "After doing (`N_BATCHES=15`) rounds of optimization, fit final GP using all data to feed into the plots." ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "N_RANDOM = 5\n", "BATCH_SIZE = 1\n", "N_BATCHES = 15\n", "\n", "sobol = Models.SOBOL(exp.search_space)\n", "exp.new_batch_trial(generator_run=sobol.gen(N_RANDOM))\n", "\n", "for i in range(N_BATCHES):\n", " intermediate_gp = Models.GPEI(experiment=exp, data=exp.eval())\n", " exp.new_trial(generator_run=intermediate_gp.gen(BATCH_SIZE))\n", "\n", "model = Models.GPEI(experiment=exp, data=exp.eval())" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 2. Contour plots\n", "\n", "The plot below shows the response surface for `hartmann6` metric as a function of the `x1`, `x2` parameters.\n", "\n", "The other parameters are fixed in the middle of their respective ranges, which in this example is 0.5 for all of them." ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "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": [ [ -0.26698911704643646, -0.2646248132191922, -0.26232673032909304, -0.2601021334410569, -0.2579582836767942, -0.25590239774921564, -0.2539416048804355, -0.2520829013267385, -0.250333102812375, -0.2486987952583326, -0.24718628428000278, -0.2458015440159862, -0.24455016593560752, -0.2434373083510104, -0.24246764742663052, -0.24164533052986004, -0.2409739327975191, -0.24045641779937288, -0.24009510315924643, -0.23989163194414798, -0.23984695055145266, -0.23996129371433206, -0.24023417710864337, -0.24066439788436078, -0.24125004326686939, -0.24198850718474785, -0.24287651468860272, -0.24391015373811054, -0.24508491375952635, -0.2463957302209121, -0.24783703434339044, -0.24940280696876904, -0.2510866355399526, -0.25288177312206184, -0.2547811983984958, -0.2567776756152209, -0.25886381351455445, -0.26103212239200446, -0.26327506852065063, -0.26558512531132084, -0.26795482070741916, -0.2703767804451791, -0.2728437669382362, -0.2753487136656023, -0.27788475505089183, -0.280445251915707, -0.2830238126698401, -0.2856143104648443, -0.28821089658564425, -0.29080801038800863 ], [ -0.26165284599161387, -0.25919570815975224, -0.2568108465925305, -0.254506005380992, -0.2522889146183511, -0.2501672461821556, -0.24814856666135965, -0.24624028766775252, -0.24444961385946318, -0.24278348909986658, -0.2412485412756633, -0.23985102639976041, -0.23859677272387225, -0.23749112567757336, -0.23653889452984966, -0.2357443017304477, -0.23511093592625398, -0.23464170965771092, -0.23433882271787287, -0.23420373209941459, -0.23423712936155616, -0.2344389261202826, -0.23480824820400947, -0.23534343882794495, -0.23604207093029017, -0.23690096859042242, -0.23791623722252742, -0.23908330201758132, -0.24039695390184024, -0.24185140209991185, -0.24344033224268014, -0.2451569688505486, -0.24699414095427352, -0.24894434959038048, -0.2509998359248884, -0.2531526488146967, -0.25539471070584585, -0.25771788088572745, -0.26011401524537026, -0.2625750218606755, -0.26509291186086337, -0.26765984521149777, -0.27026817119240776, -0.27291046349264536, -0.27557954997141754, -0.27826853724315037, -0.2809708303348737, -0.2836801477345141, -0.28639053219988386, -0.2890963577312584 ], [ -0.25664560355008237, -0.25410872685106844, -0.25165053279319016, -0.24927923086039283, -0.2470030033284174, -0.2448299571240371, -0.2427680726009247, -0.2408251494896092, -0.23900875037749802, -0.23732614218256587, -0.23578423619820965, -0.23438952740314534, -0.23314803384441207, -0.23206523700795878, -0.231146024183839, -0.23039463390523962, -0.22981460558601619, -0.2294087344941984, -0.22917903317416188, -0.2291267003643307, -0.22925209834894833, -0.2295547395322648, -0.23003328283471092, -0.23068554028892296, -0.2315084939668952, -0.23249832310790164, -0.23365044105154897, -0.23495954132307295, -0.23641965198072867, -0.2380241971283028, -0.2397660643286319, -0.24163767653312718, -0.2436310670718289, -0.24573795622957095, -0.24794982796491105, -0.2502580054054191, -0.2526537238696158, -0.2551282003144859, -0.2576726982795339, -0.2602785875847171, -0.26293739823163786, -0.2656408681469522, -0.26838098458713855, -0.2711500191888374, -0.273940556794642, -0.2767455183076757, -0.27955817792804827, -0.2823721752001418, -0.2851815223523926, -0.2879806074425475 ], [ -0.2520909715038422, -0.2494912919903165, -0.24697703038861252, -0.2445568364730364, -0.2422393158452969, -0.2400329777165835, -0.23794617939574425, -0.2359870677621072, -0.23416351811086566, -0.2324830708792498, -0.23095286688984595, -0.2295795818791635, -0.22836936120941975, -0.22732775578323783, -0.22645966028728437, -0.22576925497420652, -0.22525995224500428, -0.2249343493090734, -0.224794188170649, -0.2248403241140362, -0.2250727037339375, -0.22549035338208445, -0.22609137868110074, -0.22687297549776675, -0.22783145248035264, -0.2289622649601668, -0.23026005970976926, -0.23171872975334074, -0.23333147815284727, -0.23509088945930223, -0.23698900733246786, -0.2390174167022734, -0.24116732877558578, -0.24342966718364556, -0.24579515361593995, -0.2482543913901767, -0.2507979455573295, -0.2534164183258647, -0.25610051879958995, -0.2588411262482233, -0.26162934635835633, -0.264456560135476, -0.26731446533714176, -0.2701951105067837, -0.2730909218422921, -0.2759947232706874, -0.27889975020838365, -0.28179965756608727, -0.28468852260950883, -0.2875608433140975 ], [ -0.248129774142555, -0.24548860731108357, -0.24293988701732339, -0.24049266444224005, -0.23815592526482976, -0.23593853323719016, -0.23384917027932883, -0.2318962733978036, -0.23008796885333216, -0.2284320041363399, -0.22693567845268015, -0.225605772569621, -0.22444847901845066, -0.2234693337874607, -0.22267315075918237, -0.2220639602398473, -0.22164495298809195, -0.22141843116570326, -0.2213857675986044, -0.22154737464639052, -0.2219026838311815, -0.22245013717232132, -0.22318719091701933, -0.2241103320565272, -0.22521510768434938, -0.22649616690153995, -0.22794731462056528, -0.22956157628035823, -0.23133127217770255, -0.2332480998587887, -0.23530322281195337, -0.23748736356682998, -0.23979089924107067, -0.24220395758375912, -0.24471651164093955, -0.24731847130618645, -0.2499997702077359, -0.2527504466115671, -0.25556071727401286, -0.2584210434450276, -0.26132218849192723, -0.2642552668722731, -0.2672117844245254, -0.27018367015903566, -0.2731632999149869, -0.2761435123981475, -0.27911761822888237, -0.2820794027104254, -0.2850231230760245, -0.2879435009932918 ], [ -0.24492128720247264, -0.24226491335241596, -0.2397082556823229, -0.23726071140042437, -0.2349315859318888, -0.23273003219553412, -0.23066498624230314, -0.2287450995909741, -0.22697866873048733, -0.22537356240693973, -0.22393714747288174, -0.22267621424150708, -0.22159690245167485, -0.22070462910284605, -0.22000401955255278, -0.219498843372538, -0.21919195652301626, -0.21908525141798485, -0.219179616410073, -0.2194749061153789, -0.21996992382457403, -0.220662417007629, -0.22154908662124329, -0.22262561058033836, -0.2238866813714535, -0.2253260573835565, -0.22693662712966445, -0.22871048515079528, -0.23063901805123566, -0.23271299882815466, -0.2349226874429713, -0.23725793544593943, -0.2397082924136391, -0.24226311199099726, -0.24491165543958027, -0.24764319077301233, -0.25044708579582786, -0.253312893639404, -0.25623042969229526, -0.2591898391371541, -0.2621816546181934, -0.26519684385949716, -0.268226847325272, -0.2712636062507816, -0.2742995815721865, -0.27732776444226226, -0.28034167913659025, -0.28333537923275465, -0.28630343798632585, -0.28924093383586014 ], [ -0.24264439348519518, -0.24000469521265022, -0.2374721507722486, -0.23505642828697826, -0.23276707234765293, -0.23061343896261066, -0.22860462674002724, -0.22674940467631433, -0.22505613707289118, -0.22353270626915878, -0.2221864340573796, -0.22102400282880352, -0.2200513776817501, -0.21927373089147517, -0.21869537028760466, -0.21831967319588008, -0.21814902766509725, -0.21818478270674557, -0.21842720921470926, -0.21887547309955346, -0.2195276219637774, -0.22038058636320756, -0.22143019635233752, -0.22267121360986697, -0.22409737900140114, -0.22570147497926274, -0.22747540176703662, -0.2294102658518946, -0.2314964789329046, -0.23372386516781285, -0.23608177433910393, -0.2385591984324753, -0.2411448890909189, -0.24382747347345712, -0.24659556620166168, -0.24943787530733075, -0.2523433003855833, -0.2553010214915836, -0.25830057767800296, -0.2613319344362457, -0.26438553966153244, -0.26745236809613027, -0.27052395450562927, -0.27359241610208396, -0.2766504649403809, -0.2796914111782387, -0.2827091582062111, -0.28569819072448066, -0.2886535568720672, -0.29157084550649315 ], [ -0.24149865180888308, -0.23891381122773248, -0.23644363230143361, -0.2340979553017517, -0.23188645935810603, -0.22981859315378594, -0.2279035017492772, -0.22614994995037185, -0.22456624280561344, -0.22316014400354867, -0.22193879313967324, -0.22090862302810188, -0.2200752784343354, -0.21944353779125314, -0.21901723961790864, -0.21879921547626213, -0.21879123136123524, -0.21899393941243872, -0.2194068417517825, -0.22002826808373444, -0.22085536844249232, -0.22188412213632192, -0.2231093635330228, -0.22452482486665604, -0.2261231957442813, -0.22789619851600929, -0.22983467816842484, -0.2319287049365235, -0.2341676874276919, -0.23654049373389685, -0.23903557779119988, -0.2416411081383265, -0.2443450962310625, -0.2471355215822748, -0.2500004512080418, -0.2529281511532355, -0.25590718822594827, -0.2589265204684672, -0.2619755753118358, -0.2650443147812398, -0.2681232875224784, -0.2712036677907208, -0.2742772818700965, -0.2773366226685754, -0.2803748534527335, -0.2833858018502302, -0.2863639453557074, -0.28930438963217076, -0.29220284091004833, -0.2950555737565539 ], [ -0.2417052340799899, -0.23922050004692674, -0.23685787879972064, -0.23462725553164598, -0.23253831060645958, -0.230600446238437, -0.2288227092050108, -0.22721371005719782, -0.22578153948296364, -0.2245336826903941, -0.22347693290406534, -0.22261730529984014, -0.2219599529284466, -0.22150908638280198, -0.22126789913271705, -0.22123850056767358, -0.22142185883858923, -0.22181775555970695, -0.22242475431175301, -0.22324018467174267, -0.2242601431830542, -0.2254795122777311, -0.2268919976839725, -0.22849018431434187, -0.2302656100584659, -0.23220885632608135, -0.23430965363233414, -0.23655700001686975, -0.2389392896688336, -0.24144444881369176, -0.24406007572065147, -0.24677358161975604, -0.24957232937546392, -0.25244376694126713, -0.2553755529032593, -0.2583556717899429, -0.26137253725797405, -0.2644150817342954, -0.26747283157985957, -0.2705359673163299, -0.2735953689051629, -0.2766426464725904, -0.2796701572226441, -0.2826710095662006, -0.28563905571376513, -0.28856887413358523, -0.29145574336780644, -0.29429560873326266, -0.2970850434170036, -0.2998212054179581 ], [ -0.24350766841434113, -0.24117620683226915, -0.23897409279170634, -0.23691109477204986, -0.23499672666649385, -0.23324017093897398, -0.23165019770855144, -0.23023508027034167, -0.22900250778237075, -0.2279594960938196, -0.227112297952895, -0.2264663140998846, -0.22602600700756237, -0.22579481925963818, -0.22577509873967383, -0.22596803291900658, -0.22637359456531114, -0.22699050112910912, -0.2278161898936777, -0.22884681069045976, -0.23007723758990628, -0.23150110048707218, -0.2331108369299646, -0.23489776391128947, -0.23685216869083936, -0.23896341707000257, -0.2412200769363595, -0.24361005436827843, -0.24612073916582777, -0.24873915637778454, -0.25145212023949304, -0.2542463869281715, -0.25710880267713754, -0.2600264440558726, -0.2629867475995109, -0.2659776264342981, -0.2689875720673005, -0.27200574006028044, -0.27502201886194233, -0.2780270816048591, -0.2810124211627336, -0.283970369194261, -0.28689410026083206, -0.2897776223905535, -0.2926157556690423, -0.29540410057027766, -0.2981389978037978, -0.30081748145515186, -0.3034372271437247, -0.30599649682558216 ], [ -0.24717230324569073, -0.2450561459612468, -0.24307615926253212, -0.24124179148875347, -0.23956218082339742, -0.23804607580979997, -0.23670175164690432, -0.23553692280125849, -0.23455865273198429, -0.233773261818625, -0.23318623489528711, -0.23280213011215323, -0.23262449114720596, -0.2326557650542369, -0.2328972282339825, -0.23334892313041045, -0.23400960826292727, -0.23487672409191074, -0.23594637696998366, -0.2372133430537886, -0.2386710935483638, -0.2403118420459618, -0.24212661402879654, -0.24410533786416933, -0.2462369558687345, -0.24850955329720215, -0.25091050245954394, -0.25342661862619376, -0.25604432397275856, -0.25874981556536336, -0.2615292333059338, -0.2643688238434394, -0.2672550967020968, -0.27017496926145657, -0.2731158977196657, -0.2760659917489514, -0.27901411117831554, -0.2819499436797108, -0.28486406306032785, -0.2877479683488322, -0.2905941043866047, -0.2933958650811097, -0.2961475808382461, -0.2988444919600486, -0.3014827099746069, -0.30405916896128526, -0.30657156895448145, -0.30901831346308395, -0.3113984430418617, -0.3137115667067505 ], [ -0.2529883773487942, -0.2511594865748603, -0.24947294561587063, -0.2479376282987238, -0.24656203740570226, -0.24535422400479412, -0.24432170233059303, -0.24347136073856568, -0.24280936957000265, -0.24234108712351876, -0.24207096531534278, -0.24200245700263645, -0.24213792731454786, -0.24247857165381448, -0.24302434326554767, -0.24377389338912447, -0.244724526988092, -0.245872176873577, -0.24721139869068987, -0.24873538872851797, -0.2504360258584448, -0.25230393813070107, -0.2543285937036013, -0.25649841488963876, -0.2588009132277016, -0.26122284268141294, -0.26375036736677515, -0.26636923966706316, -0.2690649842286985, -0.27182308316518267, -0.2746291578312223, -0.2774691427568656, -0.2803294477315619, -0.2831971045711561, -0.2860598957511631, -0.2889064628081379, -0.29172639315826143, -0.2945102847214123, -0.29724978843730376, -0.2999376293914928, -0.3025676078131303, -0.30513458165070695, -0.30763443277068503, -0.31006401905650405, -0.31242111481715873, -0.3147043419538955, -0.3169130942920746, -0.3190474573760529, -0.3211081258617876, -0.3230963204384345 ], [ -0.2612675432639968, -0.25980900797624673, -0.2584980905727221, -0.25734277376251824, -0.25635060365715634, -0.25552861019911854, -0.2548832227836497, -0.2544201815055609, -0.2541444448479422, -0.25406009507889515, -0.2541702431143036, -0.2544769351087057, -0.2549810635141816, -0.2556822857558456, -0.2565789539669332, -0.25766805936493253, -0.2589451947984789, -0.2604045387305305, -0.2620388634400974, -0.2638395695335125, -0.2657967479856176, -0.26789926992646484, -0.27013490330765144, -0.2724904544899618, -0.2749519317579807, -0.2775047268518527, -0.2801338098662851, -0.282823932343905, -0.28555983310983235, -0.28832644136513164, -0.29110907177029777, -0.2938936066825595, -0.29666666132720954, -0.29941572843948183, -0.3021292997614937, -0.3047969626694873, -0.307409471093929, -0.30995879073822774, -0.3124381193674328, -0.3148418836013538, -0.31716571419056283, -0.3194064021707266, -0.3215618385798378, -0.32363094058970376, -0.3256135669578173, -0.327510425662058, -0.32932297645451714, -0.33105333087858635, -0.33270415205203885, -0.334278556243782 ], [ -0.2723426470675794, -0.2713500243895073, -0.2705090791894471, -0.2698265104406383, -0.2693085109494857, -0.2689606923287813, -0.26878800463732744, -0.2687946508911456, -0.26898399712608323, -0.26935847926509027, -0.2699195086878079, -0.27066737907324123, -0.2716011777337679, -0.2727187052178053, -0.2740164073636313, -0.2754893241769598, -0.27713105983092334, -0.27893377771898575, -0.2808882238237522, -0.28298378071922525, -0.28520855334969664, -0.28754948639676936, -0.2899925116450084, -0.2925227223824709, -0.29512457061878106, -0.29778208185423494, -0.3004790813540241, -0.30319942541479694, -0.3059272309737875, -0.30864709709655624, -0.31134431235869964, -0.3140050428636256, -0.316616496554188, -0.31916706051645716, -0.3216464090743556, -0.32404558157353835, -0.3263570297984728, -0.3285746359152846, -0.3306937026525685, -0.33271091810264597, -0.3346242980370151, -0.3364331089816941, -0.33813777549848223, -0.33973977518017007, -0.3412415248092897, -0.3426462609708545, -0.34395791817087007, -0.3451810072146546, -0.346320496261749, -0.34738169661486684 ], [ -0.28656551711172895, -0.2861483240999516, -0.2858853426932897, -0.28578150291574733, -0.28584115537345167, -0.28606800581578273, -0.2864650436449818, -0.2870344641315099, -0.28777758467472925, -0.28869475618802265, -0.2897852715495479, -0.2910472739866652, -0.2924776691757993, -0.29407204564703204, -0.2958246086850762, -0.29772813322200786, -0.29977394114701506, -0.3019519079694206, -0.3042505028574216, -0.30665686477383614, -0.30915691582109495, -0.3117355111046618, -0.3143766225633675, -0.31706355244024054, -0.3197791705131581, -0.3225061679831689, -0.3252273201086884, -0.3279257493163803, -0.3305851806153557, -0.33319018165591796, -0.3357263806447768, -0.3381806564731793, -0.3405412967410566, -0.34279812077628447, -0.34494256616725405, -0.34696773867478603, -0.34886842660696393, -0.35064108178522635, -0.35228377007611855, -0.3537960950995973, -0.35517909915368984, -0.3564351456287769, -0.35756778724269855, -0.3585816243345272, -0.35948215723764454, -0.36027563643915106, -0.36096891384954, -0.3615692980785492, -0.36208441616227116, -0.36252208373140626 ], [ -0.30430346085793625, -0.30458680898031054, -0.30502505746826647, -0.3056207700113338, -0.3063758534739105, -0.3072915092282973, -0.30836817755499446, -0.3096054740753542, -0.31100211788240606, -0.31255585198952107, -0.31426335788329274, -0.31612016726981507, -0.31812057543075944, -0.3202575618177421, -0.3225227244574944, -0.324906235268295, -0.32739682337884446, -0.3299817929204434, -0.3326470805211892, -0.33537735592688445, -0.3381561669346391, -0.34096612733344034, -0.34378914401455307, -0.34660667706278026, -0.349400024664843, -0.35215062322757884, -0.3548403522815142, -0.3574518335856465, -0.35996871431671806, -0.36237592523959505, -0.3646599061974529, -0.36680879299431757, -0.36881256162770115, -0.3706631277340875, -0.3723544009225759, -0.3738822953038621, -0.37524469891158585, -0.37644140582500074, -0.37747401562350213, -0.3783458053406945, -0.3790615793594627, -0.37962750273041035, -0.3800509232407716, -0.38034018724852836, -0.38050445386562926, -0.38055351156152795, -0.3804976006962839, -0.3803472449096159, -0.3801130937120598, -0.3798057780653088 ], [ -0.3259341164250191, -0.3270604609265906, -0.32834025120428034, -0.32977295253528527, -0.33135728977365275, -0.3330912254360754, -0.33497192993504976, -0.33699574161805, -0.33915811508132787, -0.3414535574421176, -0.343875553834708, -0.34641648524592616, -0.3490675437659172, -0.35181865219075004, -0.35465839643481534, -0.3575739801533895, -0.36055121113725885, -0.36357452829403547, -0.3666270763494357, -0.3696908328781703, -0.3727467891113556, -0.37577518245659336, -0.3787557751469144, -0.3816681702458715, -0.38449215367329637, -0.3872080491939305, -0.38979707254136287, -0.3922416710383603, -0.3945258361330315, -0.3966353780375982, -0.3985581539284031, -0.40028424372298654, -0.40180607008295244, -0.40311846181900357, -0.40421866215487867, -0.4051062852422811, -0.4057832258534897, -0.4062535282943651, -0.40652322129013574, -0.40660012593417116, -0.4064936438050637, -0.4062145321063606, -0.40577467222518937, -0.40518683749766304, -0.40446446526227664, -0.40362143752308466, -0.4026718737700501, -0.4016299387451765, -0.4005096672231441, -0.3993248072106499 ], [ -0.35183826009796615, -0.35396920782089025, -0.35624976184059687, -0.3586753972550767, -0.3612407542747129, -0.3639396565864066, -0.3667651212009917, -0.3697093553973738, -0.3727637372431516, -0.375918777677811, -0.37916406426998805, -0.38248818938933904, -0.38587866844688334, -0.3893218567420649, -0.39280287593146856, -0.39630556281053386, -0.39981245363188944, -0.4033048163434607, -0.4067627408569572, -0.4101652938893181, -0.4134907403822188, -0.41671682846896485, -0.419821129969592, -0.42278142398934637, -0.42557610781928346, -0.4281846172889898, -0.4305878381221433, -0.43276849064354694, -0.43471147218482553, -0.4364041444402036, -0.437836556491783, -0.4390015979149611, -0.43989507998629596, -0.44051574630761126, -0.44086521696326564, -0.44094787254582246, -0.4407706859863607, -0.44034301112755303, -0.4396763374355017, -0.43878402023832264, -0.43768099549481043, -0.4363834874264507, -0.4349087164768577, -0.43327461407140455, -0.4314995496019882, -0.42960207401040806, -0.42760068332976586, -0.425513604596383, -0.4233586056849503, -0.42115282985889224 ], [ -0.3823901413606823, -0.38570822182638875, -0.3891695448550123, -0.39276451758140163, -0.3964825981236135, -0.4003123720728061, -0.4042416206287123, -0.40825737293018216, -0.41234593591792557, -0.4164928968434838, -0.4206830963372301, -0.42490057365297895, -0.42912849002721454, -0.43334904056386003, -0.4375433690854791, -0.44169150332985674, -0.44577232912547204, -0.44976362133635206, -0.4536421462917115, -0.4573838453098438, -0.4609641023154838, -0.4643580912089955, -0.4675411914641634, -0.4704894542626048, -0.4731800969960869, -0.47559200159265647, -0.4777061919528076, -0.4795062676402069, -0.4809787744642602, -0.48211349720034646, -0.482903664864047, -0.48334606417500026, -0.48344106169430057, -0.48319253929472783, -0.4826077509471729, -0.48169711121058145, -0.48047392731708816, -0.478954087432242, -0.47715571766519416, -0.47509881984636104, -0.4728049011232449, -0.47029660518230676, -0.46759735350291054, -0.4647310035857095, -0.46172152964875846, -0.4585927299069752, -0.4553679632838128, -0.4520699172724181, -0.4487204076799043, -0.44534021015558567 ], [ -0.4179449146117875, -0.42265516877854603, -0.42749979823359263, -0.43246285284887875, -0.4375272848434588, -0.4426751062421941, -0.44788753995625163, -0.45314515263405575, -0.45842795786207247, -0.463715480212497, -0.4689867741939724, -0.4742203972926047, -0.4793943426365792, -0.4844859437125262, -0.4894717700750648, -0.4943275380516179, -0.4990280630280304, -0.5035472792516889, -0.5078583489174249, -0.5119338748987448, -0.5157462217142539, -0.519267938464884, -0.5224722670131821, -0.5253337099747042, -0.5278286271857437, -0.529935826740088, -0.5316371174644248, -0.5329177933893177, -0.5337670266246566, -0.5341781521807047, -0.5341488358178472, -0.5336811232175642, -0.5327813750926664, -0.5314600979546398, -0.5297316839817916, -0.5276140757926919, -0.5251283730469261, -0.5222983978596707, -0.5191502352505928, -0.5157117634756614, -0.5120121873214603, -0.5080815854552487, -0.5039504808673791, -0.49964944142805967, -0.4952087156889624, -0.4906579073451205, -0.48602569026440623, -0.48133956470343353, -0.4766256542591749, -0.47190854224482126 ], [ -0.45882277683052086, -0.465153954807936, -0.4716083878262478, -0.4781622465915887, -0.48479039781378264, -0.49146667080430007, -0.4981641230564615, -0.5048552869116352, -0.5115123789824854, -0.5181074557270042, -0.5246125028439566, -0.530999453071634, -0.5372401361392822, -0.5433061751261672, -0.5491688539000645, -0.554798988874887, -0.5601668432724092, -0.5652421220129649, -0.5699940796882406, -0.5743917631972641, -0.5784043959813541, -0.5820018945530119, -0.5851554926406108, -0.5878384359902014, -0.5900267032306055, -0.5916997058679272, -0.5928409231806389, -0.5934384345812047, -0.593485321532387, -0.5929799218930838, -0.5919259303031355, -0.5903323478807565, -0.588213292439778, -0.585587686319017, -0.582478842718388, -0.5789139733245856, -0.5749236402770586, -0.5705411745223348, -0.5658020806876058, -0.5607434461000322, -0.5554033687660371, -0.549820416228469, -0.5440331244068943, -0.5380795429140135, -0.5319968310027945, -0.5258209062728763, -0.5195861465627123, -0.513325144068397, -0.5070685096405312, -0.5008447243885825 ], [ -0.5052895223958369, -0.5134946055042724, -0.5218101297483684, -0.5302026208724855, -0.538637002529085, -0.5470770051306213, -0.55548558473242, -0.5638253261666677, -0.5720588025132596, -0.5801488638391681, -0.5880588328086451, -0.5957525936923986, -0.603194574220324, -0.6103496354555442, -0.6171829012924857, -0.623659573445279, -0.6297447868346118, -0.6354035615705962, -0.6406009000222468, -0.6453020613145204, -0.6494730233925539, -0.6530811182709637, -0.6560958034145665, -0.6584895149903527, -0.6602385392751566, -0.6613238374278279, -0.6617317652455204, -0.6614546414749498, -0.6604911333365284, -0.658846443811774, -0.6565323000510217, -0.6535667546952235, -0.6499738213024786, -0.6457829712749763, -0.6410285229170904, -0.6357489539711525, -0.6299861677279774, -0.6237847401603822, -0.6171911719966361, -0.6102531656731351, -0.6030189430242352, -0.5955366156333384, -0.5878536161524919, -0.5800161956992929, -0.572068989707633, -0.5640546523511774, -0.5560135578559318, -0.5479835656340228, -0.5399998451577561, -0.5320947558001519 ], [ -0.5575334132579484, -0.567889089434539, -0.5783416482995949, -0.5888459668028394, -0.5993548829204034, -0.6098197832198311, -0.6201912202823698, -0.6304195245646687, -0.6404553701837785, -0.6502502528807486, -0.6597568426487737, -0.6689291843288865, -0.677722737033029, -0.6860942662453522, -0.6940016278654391, -0.7014035067752962, -0.7082591885125129, -0.7145284466989468, -0.7201716184849558, -0.7251499160882711, -0.7294259885688135, -0.7329647107511814, -0.735734142812422, -0.7377065803565308, -0.7388596040290949, -0.7391770400832467, -0.7386497564783225, -0.7372762393133745, -0.735062917591558, -0.7320242269513164, -0.7281824225735298, -0.7235671665773871, -0.7182149254138048, -0.7121682183175058, -0.7054747594785848, -0.6981865351253258, -0.6903588530788629, -0.6820493973699351, -0.6733173148818714, -0.6642223552297606, -0.6548240795799534, -0.6451811491026878, -0.6353506993725291, -0.625387803344581, -0.6153450225382746, -0.605272043715432, -0.5952153965820588, -0.5852182467986342, -0.5753202577729317, -0.5655575142558535 ], [ -0.6156385603693819, -0.6284431916217468, -0.6413318113802862, -0.6542454378091358, -0.6671224135121407, -0.6798992082636248, -0.6925112838878587, -0.7048939750557726, -0.7169833300021404, -0.728716850012429, -0.7400340686999576, -0.750876923945689, -0.761189898045816, -0.7709199340713131, -0.7800161747511747, -0.7884296074768344, -0.796112726562311, -0.803019333349212, -0.8091045810494012, -0.8143253349339546, -0.8186408664052143, -0.8220138429185917, -0.8244115268997386, -0.8258070651656695, -0.8261807401274152, -0.8255210639682301, -0.8238256218329961, -0.8211016029230862, -0.8173659927089714, -0.812645430294699, -0.8069757593531152, -0.800401317885647, -0.7929740215825964, -0.7847522988233753, -0.7757999337819454, -0.7661848691582658, -0.755978013061855, -0.7452520866087229, -0.7340805406723896, -0.7225365625200983, -0.7106921861217661, -0.6986175139305908, -0.6863800529659732, -0.6740441640616714, -0.6616706201008042, -0.6493162668395234, -0.6370337784049827, -0.624871498621143, -0.6128733588549644, -0.6010788629834696 ], [ -0.6795554448493941, -0.695124985042741, -0.7107681893793836, -0.7264098678438562, -0.741971245383507, -0.7573710108259146, -0.772526476404578, -0.7873547909303273, -0.8017741332257036, -0.8157048008773062, -0.8290701068757302, -0.8417970075614922, -0.8538164125047081, -0.8650631706194635, -0.8754757824833237, -0.884995946689685, -0.8935680940615505, -0.9011390829719321, -0.9076582118188316, -0.9130776506213791, -0.9173533140529808, -0.9204461127430319, -0.9223234494188748, -0.9229607863547344, -0.9223431053334148, -0.9204661059370062, -0.9173370317112896, -0.9129750646517606, -0.9074112767396402, -0.9006881667019228, -0.8928588380856807, -0.883985891084087, -0.8741401069023609, -0.8633990020985061, -0.8518453236710718, -0.8395655458321555, -0.8266484181173344, -0.8131836030127483, -0.7992604304775981, -0.7849667871216062, -0.7703881496142462, -0.7556067652220095, -0.7407009771340112, -0.7257446883128493, -0.7108069548264455, -0.6959516977947615, -0.6812375220439022, -0.666717629134258, -0.6524398124737076, -0.6384465226171987 ], [ -0.7490697895856968, -0.7677310647382516, -0.7864606257161815, -0.8051646928724384, -0.8237446390980568, -0.8420983032966074, -0.8601214817801652, -0.87770953191195, -0.8947589973797017, -0.911169143751695, -0.9268432823894597, -0.9416897671666167, -0.9556225778021528, -0.9685614586272353, -0.980431658460912, -0.9911634032904686, -1.000691307368461, -1.0089539651495143, -1.0158939469107588, -1.0214583418621461, -1.025599872294978, -1.0282784750247602, -1.029463147979398, -1.0291338131810694, -1.0272829557653431, -1.0239168489786656, -1.019056246939585, -1.0127365012404117, -1.0050071210303635, -0.9959308426290147, -0.985582302878646, -0.9740464225413381, -0.961416605749925, -0.9477928527522615, -0.9332798694334582, -0.917985241123237, -0.9020177219857209, -0.8854856761483171, -0.868495693402463, -0.851151391138235, -0.8335524052105499, -0.8157935655509114, -0.7979642473081603, -0.7801478848521366, -0.7624216338250356, -0.7448561653107595, -0.7275155758746186, -0.7104573974992845, -0.6937326921372278, -0.6773862165765085 ], [ -0.8237717160891178, -0.8458525048360838, -0.868003869791738, -0.890111174232107, -0.9120532412631561, -0.9337039297978611, -0.954933975049554, -0.975613023446505, -0.9956117572691783, -1.0148039721277031, -1.0330684481957415, -1.050290453529834, -1.0663627448034467, -1.0811859942973534, -1.0946686709730624, -1.106726523803463, -1.11728192785184, -1.1262634182067193, -1.1336057186644997, -1.1392504608151888, -1.1431476126403863, -1.1452574515470042, -1.1455527848111604, -1.1440210740983006, -1.140666156991692, -1.1355093487412584, -1.1285898166862398, -1.1199642204541511, -1.1097056878959959, -1.0979022453642702, -1.084654843826541, -1.0700751250952651, -1.0542830615144294, -1.037404583483898, -1.019569286704113, -1.0009082881578069, -0.9815522786280094, -0.9616298010920248, -0.9412657690838656, -0.920580227102701, -0.899687346119769, -0.8786946408219204, -0.8577023909965228, -0.8368032469832677, -0.8160819980018046, -0.7956154820680572, -0.7754726168503581, -0.7557145319560614, -0.7363947845965664, -0.7175596422125428 ], [ -0.9030279382544846, -0.9288434349299568, -0.9547422845416441, -0.9805870112152328, -1.006231413682499, -1.0315223750356817, -1.056302040231711, -1.0804102931023989, -1.103687420486434, -1.1259768065875986, -1.1471274644999112, -1.1669961961796291, -1.1854491910840876, -1.2023629395267474, -1.2176244535343428, -1.2311309430304385, -1.2427892525971087, -1.2525154669727132, -1.260235083468282, -1.2658840021547384, -1.2694103383397097, -1.2707768085714595, -1.2699632760625734, -1.2669690088796384, -1.2618142866893913, -1.2545411359183902, -1.2452131250520262, -1.2339142765528088, -1.2207472355292892, -1.2058308784269776, -1.1892975555486278, -1.1712901491756793, -1.1519591037405568, -1.1314595532210239, -1.1099486388379654, -1.0875830804475592, -1.0645170394357075, -1.0409002900933462, -1.0168767003395907, -0.9925830108375773, -0.9681478933987725, -0.943691264425536, -0.9193238263550846, -0.8951468090660016, -0.8712518835034753, -0.8477212209732179, -0.8246276733318433, -0.8020350514217185, -0.7799984813811216, -0.7585648207757114 ], [ -0.985960543462674, -1.0157960963566333, -1.0457407937688328, -1.0756327958317646, -1.1052988241961792, -1.13455614746657, -1.1632150488653992, -1.1910817171812726, -1.2179614499364924, -1.2436620019613904, -1.2679968624427649, -1.2907882128753863, -1.3118693245632729, -1.3310862146540492, -1.3482985040794413, -1.3633796009147932, -1.376216530249177, -1.386709874964407, -1.394774296467292, -1.4003399252126159, -1.4033545948511743, -1.4037865740865128, -1.4016272634174134, -1.3968933233931895, -1.3896278449143402, -1.379900375882773, -1.3678058096973311, -1.3534622812083879, -1.33700829586484, -1.3185993459964123, -1.2984042590152982, -1.2766014905074559, -1.2533755327287535, -1.2289135644427065, -1.2034024266315178, -1.177025973151673, -1.1499628168970193, -1.1223844703772432, -1.0944538641089365, -1.0663242158723345, -1.0381382176773024, -1.010027504241717, -0.9821123660752871, -0.9545016711883791, -0.9272929614576764, -0.9005726923554322, -0.8744165877717185, -0.8488900848027887, -0.8240488464860898, -0.799939323429674 ], [ -1.0714365097878567, -1.1055270225917546, -1.1397672450217802, -1.1739700494253853, -1.2079336280385933, -1.241443568194598, -1.2742755288472067, -1.3061984767022103, -1.3369783828890625, -1.3663822170135687, -1.3941820138606236, -1.4201587435254284, -1.4441057074701125, -1.4658312312505952, -1.4851605436512836, -1.5019369177906956, -1.5160223653863207, -1.5272983420226431, -1.535666937216488, -1.5410528263459569, -1.5434059041411592, -1.5427041664174532, -1.5389562262300702, -1.5322028975782325, -1.522517486855318, -1.5100046874756607, -1.4947981907152235, -1.477057267608497, -1.4569626410718777, -1.434711970975423, -1.4105152393019476, -1.384590267152768, -1.3571585344639057, -1.3284414159155602, -1.2986568974017594, -1.268016798320497, -1.2367244957318786, -1.2049731260056227, -1.1729442264232786, -1.140806771742577, -1.1087165575325457, -1.0768158819275842, -1.0452334793424902, -1.0140846628787954, -0.983471636069205, -0.9534839388439961, -0.9241989968788792, -0.8956827476115382, -0.8679903200783227, -0.8411667492588926 ], [ -1.1580722708487068, -1.1965793007462255, -1.2352918729242983, -1.2739973462483332, -1.312464667080973, -1.3504464255608253, -1.3876816307593678, -1.4238991886855568, -1.4588220080942866, -1.4921715906831814, -1.5236728933021804, -1.5530591945533254, -1.5800766758196099, -1.604488458137719, -1.6260779366182834, -1.6446514209653884, -1.6600402891500858, -1.672103015128452, -1.6807274412711595, -1.6858334723345192, -1.6873760258719177, -1.6853477528091223, -1.679780909464916, -1.6707478653094054, -1.6583599878724966, -1.6427649327000753, -1.6241425905140123, -1.602700069987731, -1.5786661290160229, -1.5522854360050884, -1.523812974600952, -1.4935088240044654, -1.4616334682092702, -1.4284437195890438, -1.3941892884970888, -1.3591099909608075, -1.3234335595147013, -1.287374005414489, -1.251130471541777, -1.2148865121101569, -1.1788097360468632, -1.1430517542557332, -1.1077483758202389, -1.073020003823913, -1.0389721873260316, -1.005696291786104, -0.973270255666134, -0.941759405932125, -0.9112173096688381, -0.8816866430000162 ], [ -1.244257140700416, -1.2872454171408885, -1.330509164982884, -1.3738107531362016, -1.416889995282264, -1.4594660632710132, -1.5012402305766397, -1.5418994649147004, -1.5811208327786659, -1.6185766106796948, -1.6539399258788456, -1.6868906862816064, -1.7171215224413174, -1.7443434731610716, -1.7682912132159407, -1.7887277439082552, -1.805448612527953, -1.818285830560399, -1.8271116454219727, -1.8318421499364386, -1.8324404463967643, -1.8289188618747132, -1.8213396727544304, -1.8098139670466504, -1.7944985681536159, -1.7755912395076845, -1.7533245961812869, -1.727959237646995, -1.699776602335894, -1.6690719665669607, -1.6361479043819582, -1.60130841730132, -1.5648538490566888, -1.5270766260956479, -1.4882578106487405, -1.4486644170620093, -1.408547420479678, -1.3681403762587305, -1.3276585655525481, -1.2872985847382625, -1.2472383018041424, -1.2076371100137755, -1.168636417114918, -1.1303603163926543, -1.0929163935592454, -1.0563966305851458, -1.0208783739881686, -0.9864253407716087, -0.9530886401502168, -0.920907793467175 ], [ -1.3281981233957558, -1.3756137964015096, -1.4233859178951371, -1.4712531601161374, -1.5189272189859313, -1.5660944557597432, -1.6124184692015069, -1.6575436630176088, -1.7010998246890474, -1.7427076693287067, -1.7819852310365853, -1.818554914256942, -1.8520509627292256, -1.8821270788663291, -1.9084639421479486, -1.9307764283340803, -1.9488203975942744, -1.9623989541175055, -1.971368036592616, -1.9756410693239657, -1.9751922463616753, -1.9700579448047293, -1.96033585662512, -1.946181689745111, -1.9278036255537576, -1.905455009775076, -1.8794259158448963, -1.8500342413530504, -1.8176169144690542, -1.7825216500687942, -1.7450995476248545, -1.7056986911945942, -1.6646588075306608, -1.6223069632236342, -1.5789542326050499, -1.5348932397099482, -1.490396464557202, -1.4457152016287536, -1.4010790629237149, -1.3566959264833782, -1.3127522418085242, -1.2694136147639385, -1.2268256055278441, -1.1851146833951185, -1.144389291524233, -1.104740982930712, -1.0662455961747763, -1.0289644453249431, -0.9929455039905322, -0.9582245676037022 ], [ -1.4079865994452325, -1.4596398668717827, -1.5117367028406092, -1.5639941459517042, -1.6160977537800782, -1.6677028531494862, -1.7184368051975059, -1.7679024055775145, -1.8156825049890961, -1.861345883711484, -1.9044543472250017, -1.944570932847089, -1.9812690374684894, -2.014142203955579, -2.042814247357035, -2.066949364091788, -2.0862618392544046, -2.1005249310009253, -2.109578452020272, -2.1133344975827533, -2.1117807397365054, -2.1049807937424574, -2.0930714116407, -2.076256632825518, -2.054799408273753, -2.0290114873425584, -1.9992424482884046, -1.9658686814242792, -1.929282961250887, -1.8898850391895392, -1.848073498828103, -1.804238963488757, -1.7587586366155126, -1.7119920848191728, -1.6642781336246633, -1.6159327287684766, -1.5672476140032137, -1.5184896839952822, -1.4699008837927448, -1.42169854156051, -1.3740760369392806, -1.327203722355393, -1.2812300282895883, -1.2362826956442525, -1.1924700888817177, -1.1498825526111667, -1.1085937819108187, -1.0686621830418694, -1.030132206502277, -0.9930356387343271 ], [ -1.4816848154489468, -1.53723960233145, -1.593324711264854, -1.6496383462187731, -1.7058429026545634, -1.761565734324737, -1.816400995346371, -1.8699127395864443, -1.9216394433922193, -1.971100083354795, -2.017801843802484, -2.0612494458019652, -2.100955979672, -2.1364549893869693, -2.16731340791648, -2.193144790763985, -2.2136221572008576, -2.2284896420531664, -2.237572103243936, -2.240781845612596, -2.238121745356439, -2.229684328371845, -2.21564677086979, -2.196262278769559, -2.1718487270266507, -2.142775674767486, -2.1094508748852165, -2.072307218538206, -2.031790789228922, -1.9883504300589325, -1.9424289994376247, -1.8944563220887223, -1.8448437318509636, -1.7939800401855623, -1.7422287369718403, -1.6899262265632236, -1.6373809129109522, -1.584872966054387, -1.5326546238466274, -1.4809509045914033, -1.4299606267140392, -1.3798576499066229, -1.3307922681168138, -1.2828926983255442, -1.2362666204656843, -1.1910027333187423, -1.1471722990519915, -1.1048306554724538, -1.0640186803024831, -1.0247641960204965 ], [ -1.547427301601727, -1.606400365446627, -1.6659824939505727, -1.7258564902066487, -1.7856655087586737, -1.8450132953408145, -1.9034655305767247, -1.960552519643898, -2.015773477500809, -2.0686026484563884, -2.1184974590502335, -2.164908821471224, -2.2072935680786965, -2.245128797968259, -2.2779276585888923, -2.305255794591495, -2.326747421774756, -2.342119791999642, -2.3511847685710765, -2.3538563705781566, -2.3501534745228554, -2.3401973530621736, -2.324204316072298, -2.302474285858677, -2.275376550369766, -2.243334098436516, -2.2068078441881607, -2.16628177339846, -2.1222497012338346, -2.075204005685377, -2.025626440991955, -1.9739809540698279, -1.9207083176359188, -1.866222340811441, -1.8109074043941544, -1.755117078747931, -1.699173606035874, -1.6433680576031964, -1.58796100696418, -1.5331835864868408, -1.4792388203314017, -1.4263031471582543, -1.3745280637045316, -1.3240418348743066, -1.274951227906103, -1.227343237881323, -1.1812867796910533, -1.136834327909924, -1.0940234911086582, -1.052878511199673 ], [ -1.6035296057822876, -1.665300823526924, -1.727743756220961, -1.790529679142459, -1.8532871837657, -1.9156019142965424, -1.977017401216375, -2.0370372821506337, -2.09512923287618, -2.1507309485715593, -2.2032585016674155, -2.252117335156324, -2.296716001309454, -2.3364825003175316, -2.3708827041145764, -2.3994398989639802, -2.4217540322414077, -2.43751893675839, -2.4465357644697248, -2.4487211607267936, -2.4441093117787873, -2.4328477663933024, -2.4151876908282737, -2.3914698076569465, -2.36210759493952, -2.327569361192821, -2.2883606123199027, -2.2450077813280505, -2.1980439999675556, -2.1479972321116496, -2.0953808071489926, -2.0406862016409373, -1.9843778106826184, -1.9268894075288032, -1.868621989762191, -1.8099427343706913, -1.7511848193477615, -1.6926479074450465, -1.6345991238256206, -1.5772743914255687, -1.5208800151610586, -1.4655944288407714, -1.4115700372425175, -1.3589351008869583, -1.3077956231814636, -1.2582372093429715, -1.2103268742907716, -1.1641147829020881, -1.1196359109499947, -1.076911618941059 ], [ -1.6485943705413384, -1.7124289832088695, -1.7769742995008346, -1.8418941061388847, -1.9068075399497975, -1.9712884210694066, -2.0348656455065783, -2.0970249557793696, -2.157212462294878, -2.214840333287456, -2.2692950891543213, -2.319948897985296, -2.366174130926267, -2.4073611517436344, -2.442938853866027, -2.4723968435043195, -2.4953075162734346, -2.511345801120992, -2.5203042846646255, -2.5221018998804694, -2.516785270983081, -2.504522882067442, -2.4855931719419964, -2.4603682376123186, -2.429295011247894, -2.392875655229366, -2.3516486202523854, -2.306171422663627, -2.257005786903549, -2.2047054265616484, -2.1498064464948152, -2.0928201557344974, -2.0342279788206326, -1.9744781199806725, -1.9139836455392882, -1.853121684396716, -1.792233489951877, -1.7316251508764762, -1.6715687783185231, -1.6123040317411843, -1.554039874467682, -1.4969564735846714, -1.4412071778918865, -1.386920522842977, -1.334202223599898, -1.2831371270163827, -1.2337911010651612, -1.1862128463248094, -1.1404356189631586, -1.096478858448474 ], [ -1.6816032095758722, -1.746685388498991, -1.8124877057886801, -1.8786703902574677, -1.9448482793866124, -2.0105899150445823, -2.075417644114146, -2.1388090483529054, -2.200200095119885, -2.258990466594571, -2.314551572356898, -2.3662377462172532, -2.4134010212301344, -2.455409599237024, -2.4916696221702117, -2.5216491105248995, -2.544902090803811, -2.5610902819216568, -2.5699996021872353, -2.571549365367018, -2.5657931908464224, -2.5529119843391577, -2.533200468167348, -2.5070493364482735, -2.474925133262579, -2.4373496563764196, -2.3948803036911346, -2.3480923730937175, -2.2975639185407415, -2.243863394793949, -2.187540033222454, -2.1291167019245996, -2.0690849079708533, -2.0079015743486655, -1.94598724261123, -1.8837253925274515, -1.8214626175962907, -1.7595094418171946, -1.6981416046862772, -1.637601676726581, -1.578100897036205, -1.5198211480207564, -1.4629170015156108, -1.4075177857268522, -1.3537296345554846, -1.301637490524766, -1.2513070401991002, -1.2027865670605191, -1.1561087116114654, -1.1112921322518958 ], [ -1.701982685418673, -1.767457967931938, -1.8336302478057291, -1.9001598470533343, -1.9666622007899281, -2.03270691742728, -2.0978177893258185, -2.1614740643373844, -2.2231133588467142, -2.2821366673897034, -2.337915988330149, -2.3898051091289987, -2.4371540246517287, -2.4793272187543893, -2.515725538166587, -2.5458105974900476, -2.5691296962371384, -2.585338440682309, -2.5942180866109537, -2.595685272507422, -2.589793055834142, -2.5767235895562686, -2.5567740904197924, -2.53033844874822, -2.497886718698153, -2.4599442914383705, -2.417072124613067, -2.369848996955597, -2.3188563590645446, -2.2646659897586887, -2.207830385004914, -2.1488756240471916, -2.0882963674897668, -2.0265526206955697, -1.9640679163044636, -1.9012286105622156, -1.8383840354090735, -1.7758472940728374, -1.7138965286596017, -1.6527765228307, -1.5927005312482587, -1.5338522507466341, -1.4763878669705535, -1.4204381253091067, -1.3661103870421958, -1.3134906412816905, -1.262645451004824, -1.2136238176214138, -1.1664589533939664, -1.1211699548847638 ], [ -1.7096346649954348, -1.7746568880120916, -1.8403211033248252, -1.9062910938527164, -1.972187408532653, -2.0375865845180208, -2.1020212762749497, -2.164981574990422, -2.22591786500509, -2.284245633272468, -2.339352712179161, -2.3906094701434712, -2.4373824198870047, -2.479051514861474, -2.5150309599482377, -2.544792625037981, -2.5678902138931026, -2.583981520298441, -2.5928458410487316, -2.594394161141195, -2.588670884766027, -2.575847287733367, -2.556208238504973, -2.5301345044598813, -2.4980828725753157, -2.4605658741315497, -2.41813246829063, -2.371350636074104, -2.3207924483606943, -2.267021823627482, -2.2105849200571788, -2.1520029301765535, -2.0917669569790642, -2.030334626262248, -1.9681281059320608, -1.9055332392756215, -1.8428995423631132, -1.7805408582617113, -1.7187364990580642, -1.657732739574461, -1.5977445541293442, -1.5389575102728237, -1.4815297518276482, -1.4255940184852136, -1.3712596612663948, -1.3186146228849132, -1.267727359880383, -1.218648689673305, -1.171413550722229, -1.1260426679677313 ], [ -1.7049258198647825, -1.7687027780285238, -1.8330394360899813, -1.897606243512429, -1.962033040572792, -2.0259085980715894, -2.0887810307546855, -2.1501593330115054, -2.209516334949392, -2.2662934303979667, -2.3199074775335324, -2.369760298348434, -2.4152511674192185, -2.4557925221379118, -2.49082877021974, -2.5198574679798096, -2.5424513538376727, -2.5582789795941236, -2.5671213426631168, -2.568882244834923, -2.563591049632073, -2.5513978002508937, -2.5325619004156064, -2.507436305849624, -2.476449267356731, -2.4400853734939267, -2.398867245782137, -2.353338844053565, -2.304050965605618, -2.2515491923808244, -2.196364282361627, -2.1390048280452976, -2.0799519103797524, -2.0196554426271054, -1.9585319040733071, -1.8969631903822963, -1.8352963431689622, -1.773843958499497, -1.7128851086224148, -1.6526666416717233, -1.5934047500092887, -1.535286719543776, -1.4784727902787187, -1.4230980730566012, -1.3692744795008847, -1.3170926319716998, -1.266623728330834, -1.2179213427806301, -1.1710231492664032, -1.1259525581330587 ], [ -1.688637537048965, -1.7504694185851544, -1.8127590665089586, -1.8751867539752534, -1.9373955193749208, -1.9989911121317956, -2.059542778953427, -2.1185850990966477, -2.1756211097979263, -2.2301269957853043, -2.281558643785845, -2.329360371158584, -2.3729761022048077, -2.411863145243477, -2.4455084651369603, -2.473446909307967, -2.495280254415915, -2.5106953376556422, -2.519479171725193, -2.5215290572652376, -2.5168563686678356, -2.505583717928769, -2.487936242281326, -2.4642284729856554, -2.434848492764031, -2.4002409809727725, -2.360890456642148, -2.317305682904579, -2.270005853259239, -2.2195088752198164, -2.1663218235014505, -2.110933463533674, -2.053808643198523, -1.9953843029467626, -1.9360668451109244, -1.8762306170850482, -1.8162172885909744, -1.7563359329606134, -1.6968636518651534, -1.638046610021852, -1.5801013702386166, -1.523216439576654, -1.46755395463661, -1.4132514483625096, -1.3604236526993136, -1.3091643013046836, -1.2595479046325289, -1.2116314763599965, -1.165456195562328, -1.1210489934551777 ], [ -1.661884389879686, -1.7211904394331385, -1.7808418685666336, -1.8405318615380168, -1.8999202406696207, -1.9586338317130747, -2.0162676233442247, -2.0723868861407344, -2.1265304327419474, -2.1782152145912272, -2.226942458177974, -2.272205537831373, -2.3134997488493036, -2.350334059630149, -2.3822447496262202, -2.4088105480362696, -2.429668476281377, -2.4445291414838133, -2.4531898939972145, -2.4555442437383057, -2.4515863273417917, -2.4414099442558834, -2.4252024926114544, -2.4032347777499243, -2.375848000942339, -2.3434392760812837, -2.3064468631571606, -2.2653360491131753, -2.2205863212044608, -2.1726802105745806, -2.1220939609555782, -2.0692900111387957, -2.0147111701203664, -1.9587763023494325, -1.9018773153128676, -1.8443772407534855, -1.7866092141925105, -1.7288761779128827, -1.6714511554829112, -1.6145779685218562, -1.5584722873106847, -1.5033229254327356, -1.449293304757096, -1.396523030861638, -1.3451295306515294, -1.2952097137170875, -1.2468416271444147, -1.2000860802769648, -1.154988221533417, -1.1115790539986525 ], [ -1.6260143753891878, -1.6823458276970022, -1.7389088141362732, -1.7954122681814764, -1.8515358668093251, -1.9069307632875132, -1.9612210475394403, -2.014006056526273, -2.064863661149886, -2.1133546570018575, -2.1590283825815177, -2.2014296773406854, -2.240107265799192, -2.274623598052167, -2.304566067007774, -2.3295593316528582, -2.34927819500799, -2.363460156429428, -2.371916487056881, -2.374540602983293, -2.371312723285495, -2.3623002711063577, -2.3476540633053125, -2.3276008611682037, -2.3024331990743647, -2.2724975382285586, -2.2381817460997118, -2.1999027435489467, -2.158094951703354, -2.11319995498348, -2.065657604496742, -2.0158986324497685, -1.964338737573653, -1.9113740305443427, -1.8573776896722827, -1.8026976621553188, -1.7476552470208675, -1.6925444061823152, -1.6376316652141836, -1.5831564824707256, -1.5293319821790927, -1.4763459631034739, -1.424362108808728, -1.3735213382832925, -1.3239432467272443, -1.2757275957828442, -1.2289558205338555, -1.183692527391175, -1.139986962676514, -1.0978744364623494 ], [ -1.5825056900458527, -1.635545850142517, -1.6887096686447451, -1.741724167567066, -1.7942911973288045, -1.8460884430182705, -1.8967710738763088, -1.945974120491425, -1.9933156613501748, -2.0384008954012454, -2.080827170264838, -2.120190025486998, -2.1560902921977574, -2.188142253911146, -2.215982800119236, -2.239281374956935, -2.257750330514239, -2.2711550641371514, -2.2793231191653724, -2.282151349227779, -2.279610352994644, -2.2717456764754527, -2.258675677948154, -2.240586346550058, -2.2177236670780034, -2.1903842865195666, -2.1589052660649743, -2.123653628662035, -2.085016278090254, -2.043390708208272, -1.9991767678382886, -1.9527696145150903, -1.9045538867946312, -1.854899051015822, -1.804155831151582, -1.752653604465659, -1.7006986354976084, -1.648573021382439, -1.5965342286221835, -1.5448151121768725, -1.4936243200795527, -1.4431469993854042, -1.3935457313511042, -1.3449616348822537, -1.2975155872923207, -1.2513095202384212, -1.2064277563725951, -1.162938358851862, -1.1208944714861626, -1.0803356320767534 ], [ -1.5328727062960343, -1.5824271247097825, -1.632008464897403, -1.681363480381347, -1.7302176112650207, -1.778276157293611, -1.8252260013240797, -1.870737938147071, -1.9144696584223766, -1.9560694316098017, -1.9951805255851989, -2.031446393162606, -2.0645166430219906, -2.094053786040096, -2.1197406949692112, -2.1412886233162434, -2.1584454955476624, -2.171004023691132, -2.1788090677766436, -2.181763594493044, -2.1798326418973506, -2.173044872821216, -2.1614915580122376, -2.145323108661491, -2.1247435150302385, -2.100003204046679, -2.07139089320294, -2.0392250025643195, -2.003845114649229, -1.965603868975307, -1.924859566091957, -1.881969650605851, -1.8372851533047971, -1.7911461028658204, -1.7438778678103342, -1.69578835703553, -1.6471659890415482, -1.59827833235087, -1.5493713193939, -1.5006689407083087, -1.452373333691983, -1.404665188944727, -1.3577044064736654, -1.3116309431091664, -1.2665658010169936, -1.2226121150038465, -1.1798563033149712, -1.1383692528022902, -1.098207514730416, -1.0594144921406832 ], [ -1.4785893301192397, -1.524569844974749, -1.5704945630450111, -1.616130842841962, -1.6612282246800352, -1.7055196746377803, -1.7487232881325272, -1.7905444875633902, -1.83067874356202, -1.8688148446222965, -1.9046387352972745, -1.937837937425234, -1.9681065583137385, -1.9951508679892864, -2.0186953862479275, -2.0384893527571104, -2.0543133606395845, -2.0659858291731834, -2.0733689009422327, -2.0763733053383397, -2.0749617587123, -2.0691505769805922, -2.0590093407684016, -2.0446586413165537, -2.0262661092315275, -2.0040410585942494, -1.978228152037542, -1.949100508903086, -1.9169526493028228, -1.8820936071271235, -1.844840470046935, -1.8055125269264474, -1.7644261315865273, -1.7218903315872713, -1.6782032636116222, -1.6336492829412084, -1.5884967719293221, -1.5429965592050519, -1.4973808753902573, -1.4518627703672, -1.406635919915196, -1.3618747545169545, -1.3177348493347139, -1.2743535210727264, -1.231850584202151, -1.1903292255224929, -1.1498769620888654, -1.1105666530512153, -1.0724575408926635, -1.0355963019196972 ], [ -1.4210329680083382, -1.4634391018282398, -1.5057217213252883, -1.5476689446464214, -1.589054139259386, -1.6296371637867997, -1.6691659879281762, -1.7073787118918762, -1.7440060029155813, -1.7787739628995682, -1.8114074375117495, -1.841633771817706, -1.8691870074889578, -1.89381249749457, -1.9152718811493643, -1.9333483127708857, -1.9478517732893357, -1.9586242254404351, -1.9655443157880363, -1.9685312993665436, -1.9675478795145618, -1.9626017203544557, -1.9537454934673608, -1.9410754447579541, -1.9247285897697548, -1.9048787462946524, -1.8817316799441943, -1.8555196679183774, -1.8264957821236403, -1.7949281630089386, -1.7610945095152997, -1.725276957318725, -1.6877574642478748, -1.6488137733026658, -1.6087159828801516, -1.5677237216886324, -1.526083902230408, -1.4840290107398324, -1.4417758817992705, -1.39952490116047, -1.3574595793006816, -1.3157464398457979, -1.2745351703078371, -1.2339589869244065, -1.1941351702438636, -1.1551657331094443, -1.1171381876120292, -1.080126382245358, -1.044191384815112, -1.0093823905757402 ], [ -1.3614483984131072, -1.4003487043997564, -1.4390724176344243, -1.477427980699134, -1.515211716726544, -1.5522090205959502, -1.58819585896342, -1.622940592575623, -1.656206131399198, -1.6877524302194384, -1.7173393288856829, -1.7447297358914482, -1.769693144230958, -1.7920094517263705, -1.8114730319066161, -1.8278969654147645, -1.8411172983797643, -1.850997149696768, -1.8574304534516046, -1.8603451064025482, -1.859705301557985, -1.8555128699251267, -1.847807519038135, -1.8366659387097655, -1.82219982855932, -1.8045529758803693, -1.7838975673529869, -1.760429949680609, -1.734366062633345, -1.7059367567332828, -1.6753831822696446, -1.6429524022632338, -1.6088933446251965, -1.5734531721649003, -1.5368741160867168, -1.4993907907507502, -1.4612279853499675, -1.4225989116612747, -1.3837038756054265, -1.3447293332206929, -1.3058472879716967, -1.2672149852674792, -1.2289748609347129, -1.1912547025832512, -1.1541679858327556, -1.1178143508721563, -1.082280188525352, -1.0476393087015223, -1.0139536676839263, -0.98127413407124 ] ], "zauto": true, "zmax": 2.595685272507422, "zmin": -2.595685272507422 }, { "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.7981698240100435, 0.7970777756323228, 0.7959670829061063, 0.794842347559319, 0.7937087183729311, 0.7925718783051862, 0.79143801969571, 0.79031380656348, 0.7892063232919291, 0.7881230093495167, 0.7870715801208825, 0.7860599344128831, 0.7850960497364493, 0.7841878670284852, 0.783343167041803, 0.7825694411647591, 0.7818737599023962, 0.7812626426234484, 0.7807419324204192, 0.7803166800158524, 0.7799910405573639, 0.7797681868676785, 0.7796502422565774, 0.7796382353749405, 0.7797320788251498, 0.7799305723761631, 0.780231430712907, 0.7806313347302422, 0.7811260045139017, 0.7817102913830137, 0.7823782857418597, 0.7831234370324969, 0.7839386818122546, 0.7848165759051068, 0.7857494266850319, 0.7867294218231676, 0.787748751240751, 0.7887997195227131, 0.7898748466259913, 0.7909669553259663, 0.7920692444504532, 0.7931753475244483, 0.7942793769671855, 0.7953759544292062, 0.7964602282206794, 0.7975278790587103, 0.7985751155516128, 0.7995986609471724, 0.8005957327080111, 0.8015640164507296 ], [ 0.7954425747446001, 0.7942040591607762, 0.7929446820113661, 0.7916697174717052, 0.7903850719931128, 0.789097270863688, 0.787813430904766, 0.7865412180575557, 0.7852887889310992, 0.784064715793933, 0.7828778949945078, 0.7817374393798043, 0.780652555930745, 0.7796324105223728, 0.7786859824145446, 0.7778219117470235, 0.7770483439090338, 0.776372775133669, 0.7758019039899933, 0.7753414935738849, 0.7749962491059167, 0.7747697153171389, 0.7746641974435658, 0.7746807088764139, 0.7748189475633679, 0.7750773021765889, 0.7754528879170375, 0.7759416106792055, 0.7765382572231613, 0.7772366080542135, 0.7780295689463553, 0.7789093165013472, 0.7798674528314706, 0.78089516439371, 0.7819833801730524, 0.7831229247853709, 0.7843046626080603, 0.7855196297047455, 0.7867591510420376, 0.788014941255686, 0.7892791879690845, 0.7905446173638957, 0.7918045423233849, 0.7930528939950157, 0.7942842380392576, 0.7954937771430328, 0.7966773415817179, 0.7978313697209986, 0.7989528803705727, 0.8000394388494064 ], [ 0.7924258453972878, 0.7910272800916508, 0.7896056912747647, 0.7881671087730747, 0.786718286983927, 0.7852666906090927, 0.783820464388924, 0.7823883852999596, 0.7809797960344899, 0.7796045190524494, 0.7782727510821671, 0.7769949386372338, 0.7757816358931693, 0.7746433471010974, 0.7735903565680653, 0.7726325500582927, 0.7717792322136103, 0.7710389451988984, 0.7704192941952809, 0.7699267855425602, 0.7695666832370787, 0.7693428891026391, 0.7692578512712563, 0.7693125046604399, 0.7695062459593168, 0.769836944301316, 0.7703009873847985, 0.7708933613911471, 0.7716077617288751, 0.7724367304812677, 0.7733718155188004, 0.7744037456016339, 0.7755226154652128, 0.7767180748540142, 0.7779795157243509, 0.7792962523389763, 0.7806576896735169, 0.7820534763897029, 0.78347363954325, 0.7849086991280754, 0.7863497614627978, 0.7877885912586982, 0.7892176629393984, 0.7906301923910953, 0.7920201507980044, 0.7933822625594389, 0.7947119894986792, 0.7960055036711017, 0.7972596510753172, 0.7984719084839049 ], [ 0.789095137369728, 0.7875221944208826, 0.7859242256224337, 0.7843081147017095, 0.7826815688924241, 0.7810531032493361, 0.7794320066211425, 0.7778282874284197, 0.7762525977910136, 0.7747161350870765, 0.7732305207039113, 0.7718076565494534, 0.7704595608118864, 0.7691981854506221, 0.768035218929321, 0.7669818787041935, 0.7660486988932603, 0.7652453193048115, 0.764580282527285, 0.7640608460170412, 0.7636928160183251, 0.763480409685159, 0.7634261509478759, 0.7635308045057608, 0.7637933508883358, 0.7642110038925134, 0.7647792699708161, 0.7654920474264982, 0.7663417616736804, 0.7673195314431887, 0.7684153597372148, 0.7696183426121967, 0.7709168885245268, 0.7722989410037622, 0.7737521977924812, 0.7752643202590968, 0.7768231277834239, 0.7784167728606558, 0.7800338937929603, 0.7816637429695066, 0.7832962898152307, 0.7849222984680899, 0.7865333810895856, 0.788122028402965, 0.7896816195791768, 0.7912064139542577, 0.7926915272736406, 0.794132895235223, 0.7955272270640767, 0.7968719517194814 ], [ 0.7854222589634592, 0.7836596014355123, 0.7818701939439194, 0.7800618928319335, 0.7782434832488119, 0.7764246609799316, 0.7746159933481871, 0.7728288570054781, 0.7710753508781379, 0.7693681831416265, 0.76772053187987, 0.7661458800242504, 0.7646578262438382, 0.7632698746343004, 0.7619952072746139, 0.7608464449203722, 0.7598354022006578, 0.7589728445961684, 0.7582682551140105, 0.7577296188624308, 0.7573632336075197, 0.7571735538303067, 0.7571630747958812, 0.7573322617315704, 0.757679527459949, 0.7582012598470927, 0.7588918983325019, 0.7597440567414536, 0.7607486876785351, 0.7618952821836243, 0.763172097093856, 0.7645664017590179, 0.7660647354280448, 0.7676531667488682, 0.7693175473585272, 0.7710437524157019, 0.7728179020578597, 0.7746265590570863, 0.7764568993108134, 0.7782968531528126, 0.7801352167361023, 0.7819617338690887, 0.7837671496428045, 0.7855432379504296, 0.7872828055649329, 0.7889796758132518, 0.7906286550817169, 0.7922254854294338, 0.7937667864997594, 0.7952499897318676 ], [ 0.781374375102738, 0.7794052400177767, 0.7774080333951107, 0.7753917302589777, 0.7733663462908696, 0.7713429154688216, 0.7693334438741372, 0.7673508371607788, 0.7654087996858984, 0.7635217039978299, 0.7617044302746803, 0.7599721763936479, 0.7583402405634625, 0.756823779826531, 0.7554375491709054, 0.7541956274041902, 0.7531111372363536, 0.7521959680917366, 0.7514605109178194, 0.7509134145852768, 0.7505613733078428, 0.7504089538110658, 0.7504584697463791, 0.750709909126363, 0.7511609184387033, 0.7518068447088887, 0.7526408342814964, 0.7536539846460607, 0.7548355434109905, 0.7561731466724249, 0.7576530876449126, 0.7592606055849095, 0.7609801847669586, 0.762795853541659, 0.7646914742511748, 0.7666510159103582, 0.7686588029707107, 0.7706997350559014, 0.772759474181667, 0.7748245975526563, 0.7768827154853362, 0.7789225552814627, 0.780934012934008, 0.7829081753695897, 0.7848373165179677, 0.7867148708629337, 0.7885353882924739, 0.7902944740581277, 0.7919887175057324, 0.7936156129845554 ], [ 0.7769130884358488, 0.7747186873064436, 0.7724954121546898, 0.7702535384594958, 0.7680045018525238, 0.7657608690447127, 0.763536281572482, 0.7613453695587603, 0.7592036332650369, 0.7571272910164583, 0.7551330931185198, 0.7532381026417052, 0.7514594454010447, 0.7498140330504898, 0.7483182648735045, 0.7469877154853797, 0.7458368171553865, 0.7448785466831301, 0.7441241275981858, 0.74358275878293, 0.7432613803597873, 0.7431644867903172, 0.7432939956094238, 0.743649178123831, 0.7442266558546823, 0.7450204636607595, 0.7460221775341769, 0.7472211022197847, 0.7486045112695949, 0.7501579300723797, 0.7518654509194906, 0.7537100683494683, 0.7556740228669097, 0.7577391416122327, 0.7598871655808856, 0.7621000544344626, 0.7643602616768668, 0.766650974848479, 0.7689563172922529, 0.7712615098582504, 0.773552992551755, 0.7758185075350558, 0.7780471460299183, 0.7802293625248202, 0.7823569602750023, 0.78442305241519, 0.7864220031149662, 0.788349353131286, 0.7902017338896575, 0.7919767738926117 ], [ 0.7719936931418553, 0.7695524101725396, 0.7670820595816159, 0.7645944444740088, 0.7621026578386838, 0.7596210432604732, 0.7571651244525435, 0.754751500546593, 0.7523977047703276, 0.7501220250919174, 0.7479432866248286, 0.7458805970515339, 0.7439530580064642, 0.7421794471965365, 0.7405778779435213, 0.7391654446920594, 0.7379578647048608, 0.7369691275149823, 0.7362111645775886, 0.7356935518306175, 0.7354232574397462, 0.7354044458223757, 0.7356383471343303, 0.736123198845205, 0.7368542629719904, 0.7378239191869284, 0.7390218305995435, 0.7404351757789445, 0.7420489377588018, 0.7438462385416591, 0.745808706120934, 0.7479168603293939, 0.7501505038939946, 0.7524891058585123, 0.754912165908447, 0.757399549946759, 0.7599317893601831, 0.762490338623321, 0.7650577880669994, 0.7676180306695811, 0.7701563835263977, 0.7726596661558427, 0.7751162389826487, 0.7775160061961398, 0.7798503877301838, 0.7821122653826695, 0.7842959081250396, 0.7863968814904382, 0.7884119456168635, 0.7903389461016491 ], [ 0.7665647842953056, 0.7638511675844271, 0.7611089367323058, 0.7583517057122986, 0.7555945232040393, 0.7528538184843131, 0.7501473111674763, 0.7474938815285735, 0.7449133990007932, 0.7424265075929376, 0.7400543684249057, 0.7378183613108414, 0.735739749284839, 0.7338393120866009, 0.7321369567958734, 0.7306513158868144, 0.7293993448056589, 0.728395932584681, 0.7276535398250624, 0.7271818784676592, 0.7269876470254807, 0.7270743333396052, 0.7274420944816847, 0.728087720281455, 0.7290046833008952, 0.7301832741590566, 0.7316108172160862, 0.7332719580359082, 0.7351490110190517, 0.7372223533285629, 0.7394708498462139, 0.7418722934337796, 0.7444038451950729, 0.7470424606305434, 0.7497652893896192, 0.7525500385704419, 0.7553752919992435, 0.7582207804608194, 0.761067600291102, 0.7638983799600939, 0.7666973961827426, 0.7694506426471198, 0.7721458556260203, 0.7747725015485369, 0.777321732080653, 0.7797863124399167, 0.7821605285975874, 0.7844400787535525, 0.7866219540548304, 0.7887043130138676 ], [ 0.7605684413042664, 0.7575520040937374, 0.7545080092121227, 0.7514522318572288, 0.7484020499162911, 0.7453763692848779, 0.7423955066161145, 0.7394810260789977, 0.7366555278140675, 0.7339423872275794, 0.731365446055987, 0.7289486582282019, 0.7267156958881525, 0.7246895234127143, 0.722891949731498, 0.7213431715543422, 0.7200613220461688, 0.7190620408568916, 0.7183580820299537, 0.7179589760282258, 0.717870760843171, 0.7180957948861149, 0.7186326611853189, 0.7194761685080642, 0.7206174506517986, 0.7220441606165112, 0.7237407520176198, 0.72568883624499, 0.7278676007887449, 0.7302542720273006, 0.7328246047039316, 0.7355533803037022, 0.7384148974928505, 0.7413834395380858, 0.744433705979127, 0.7475411985603915, 0.7506825543179585, 0.7538358215700403, 0.756980677213675, 0.7600985860699522, 0.7631729049707238, 0.7661889358069733, 0.769133932861662, 0.7719970704525421, 0.7747693772556462, 0.7774436437211633, 0.7800143087881005, 0.782477331710323, 0.7848300542785526, 0.7870710581092695 ], [ 0.7539412276567635, 0.7505851047756522, 0.747202921209541, 0.7438130412792224, 0.7404356355718626, 0.7370925789020835, 0.7338072971527008, 0.7306045594305712, 0.7275102134609913, 0.7245508640433289, 0.7217534966791738, 0.7191450511039943, 0.7167519523038073, 0.7145996095349352, 0.7127118967007503, 0.7111106299542509, 0.7098150603515918, 0.7088414005464396, 0.708202404687733, 0.7079070197252311, 0.7079601241872298, 0.7083623672287174, 0.7091101165243177, 0.7101955186705203, 0.7116066705168002, 0.7133278946580526, 0.7153401075818655, 0.717621265017468, 0.7201468661391613, 0.7228904965879344, 0.725824389826315, 0.7289199870588805, 0.7321484776696899, 0.7354813046215055, 0.7388906222723258, 0.7423496973331197, 0.7458332469798306, 0.7493177112451614, 0.752781459602298, 0.7562049340151957, 0.7595707326174915, 0.762863639584211, 0.7660706076988056, 0.7691807006368815, 0.7721850021454835, 0.7750764991578865, 0.777849945514268, 0.7805017124208211, 0.7830296311301095, 0.7854328326124088 ], [ 0.7466162547276739, 0.742875793307471, 0.7391108871468095, 0.7353430034441751, 0.7315956729730734, 0.7278943532274623, 0.7242662288127645, 0.7207399452843547, 0.7173452746868015, 0.7141127136167437, 0.7110730176706458, 0.7082566795438561, 0.7056933616596405, 0.703411297808873, 0.7014366816061705, 0.6997930623177891, 0.6985007704868362, 0.6975763964979773, 0.6970323445804563, 0.696876482642783, 0.6971119047948452, 0.697736818617825, 0.6987445635006878, 0.7001237600947467, 0.7018585846288856, 0.7039291559684417, 0.706312018330816, 0.7089806988307895, 0.7119063167251863, 0.7150582204206383, 0.7184046289218825, 0.7219132562393797, 0.7255519000734041, 0.7292889795369749, 0.7330940104592156, 0.7369380106383917, 0.7407938310523774, 0.7446364123048352, 0.7484429683702867, 0.7521931019395875, 0.7558688573463148, 0.7594547181987971, 0.7629375575028235, 0.7663065483033205, 0.7695530427737703, 0.7726704273149079, 0.7756539606601918, 0.7785006012885529, 0.781208829669963, 0.7837784700620365 ], [ 0.738526538703403, 0.7343479412320006, 0.7301461092831697, 0.7259462164958799, 0.7217758364668495, 0.717664763725575, 0.7136447559514385, 0.7097491930991807, 0.7060126519720669, 0.7024703983544712, 0.6991578029958092, 0.6961096923528154, 0.6933596497875408, 0.6909392875432334, 0.6888775138764885, 0.6871998227808632, 0.685927635383996, 0.6850777220037655, 0.6846617318102558, 0.6846858530416252, 0.6851506209525996, 0.6860508835260952, 0.6873759270093416, 0.6891097552048575, 0.691231508830862, 0.6937160047746826, 0.6965343701650583, 0.6996547431643865, 0.7030430113036168, 0.7066635589326913, 0.7104799976673675, 0.7144558572083355, 0.7185552181768979, 0.7227432732468153, 0.7269868074942957, 0.7312545932484648, 0.7355176985951867, 0.7397497119402169, 0.7439268876168532, 0.7480282194294243, 0.7520354503002515, 0.755933026904947, 0.7597080084248907, 0.7633499384073545, 0.7668506882916272, 0.7702042805151352, 0.7734066983285454, 0.7764556885835925, 0.7793505628610949, 0.7820920014178325 ], [ 0.72960983100849, 0.7249290120859024, 0.7202249903191562, 0.7155273354490013, 0.710868466721174, 0.7062834258702686, 0.7018095493008479, 0.6974860338946908, 0.6933533949108135, 0.689452819499766, 0.6858254252771475, 0.682511439910901, 0.6795493243489331, 0.6769748685962085, 0.6748202942028124, 0.6731134011833008, 0.6718767983563195, 0.6711272546420991, 0.670875204512974, 0.6711244337098696, 0.6718719620048799, 0.6731081289912092, 0.6748168775992316, 0.6769762193150564, 0.6795588558729898, 0.6825329252464595, 0.6858628355112133, 0.6895101487049803, 0.6934344779579962, 0.6975943644808583, 0.7019481058887491, 0.7064545131855797, 0.7110735799340427, 0.7157670531965382, 0.7204989013697415, 0.7252356788053208, 0.7299467909842968, 0.7346046669647759, 0.7391848478972867, 0.7436660016913262, 0.7480298745394252, 0.7522611900882015, 0.7563475067132854, 0.7602790427194492, 0.7640484784465542, 0.767650743297315, 0.7710827946795256, 0.7743433948236735, 0.7774328904342417, 0.7803529991861393 ], [ 0.7198150177627918, 0.7145568828923455, 0.7092733340083359, 0.7039990966263475, 0.6987723526364507, 0.6936344634539843, 0.6886295622267622, 0.683804006879928, 0.6792056914016408, 0.6748832199742036, 0.670884957125458, 0.6672579765741716, 0.6640469411839622, 0.6612929555116674, 0.6590324397752122, 0.6572960785859427, 0.6561078985500678, 0.6554845252345477, 0.6554346618997167, 0.6559588202962939, 0.6570493187563213, 0.658690546273002, 0.6608594749851158, 0.6635263891293677, 0.6666557874574569, 0.670207409187526, 0.6741373310364153, 0.6783990844663191, 0.6829447472495535, 0.687725970823308, 0.6926949136134897, 0.6978050595744891, 0.7030119098257546, 0.7082735429058297, 0.7135510454848675, 0.7188088202569869, 0.7240147812100823, 0.729140448682994, 0.734160957765724, 0.7390549938949305, 0.7438046691551958, 0.7483953520052204, 0.7528154620657214, 0.7570562403590524, 0.7611115040759334, 0.7649773936324126, 0.7686521185188868, 0.7721357072641776, 0.7754297657599425, 0.7785372472232753 ], [ 0.7091100547745057, 0.7031884592665593, 0.6972356060760854, 0.691292171272533, 0.6854031062576436, 0.679617317166476, 0.6739871727952206, 0.6685678275849941, 0.6634163538302863, 0.658590687485596, 0.6541484044729757, 0.6501453586061801, 0.6466342270527985, 0.6436630231352777, 0.6412736474046774, 0.6395005544252238, 0.638369612971987, 0.6378972303939041, 0.638089797701536, 0.6389434915745512, 0.6404444450459509, 0.642569272920675, 0.645285914061125, 0.6485547332311853, 0.6523298121511154, 0.6565603536322505, 0.6611921238968501, 0.6661688653119336, 0.6714336230804986, 0.6769299430512873, 0.6826029119720362, 0.688400024812896, 0.6942718752686796, 0.7001726747026795, 0.7060606114931499, 0.7118980671359759, 0.717651707863803, 0.7232924713612846, 0.728795467795087, 0.7341398132068014, 0.7393084116482409, 0.744287700515615, 0.7490673715409872, 0.753640077949184, 0.7580011364634963, 0.7621482311872859, 0.7660811249194434, 0.7698013821816062, 0.7733121071357789, 0.7766176986385246 ], [ 0.6974912200480303, 0.690809916163207, 0.6840861486834102, 0.6773673122211704, 0.670706171875435, 0.6641605189162673, 0.6577926019932808, 0.6516683106315738, 0.6458560976949352, 0.6404256416635757, 0.6354462678560506, 0.6309851692964423, 0.6271054911225673, 0.6238643647264349, 0.6213109960275064, 0.6194849229932549, 0.6184145577698797, 0.6181161167918773, 0.6185930180594242, 0.6198357905945654, 0.6218225010194119, 0.6245196615469224, 0.6278835478701921, 0.6318618289308287, 0.6363953959799544, 0.6414202762056894, 0.6468695250205508, 0.652675008047301, 0.6587690054778826, 0.6650855944850035, 0.6715617870384635, 0.678138418987695, 0.6847608006755919, 0.6913791494519762, 0.6979488305962396, 0.7044304359865479, 0.7107897301389935, 0.7169974917437881, 0.7230292762130364, 0.728865121560608, 0.7344892165562119, 0.7398895468046641, 0.745057531365623, 0.7499876598373617, 0.75467713751245, 0.7591255442680375, 0.7633345112508723, 0.7673074181179658, 0.7710491125547638, 0.7745656529716273 ], [ 0.6849932103946363, 0.6774481345043866, 0.6698419811185418, 0.6622295066218025, 0.6546722778882303, 0.6472383468205213, 0.6400016340719267, 0.6330409815865151, 0.6264388454269953, 0.6202796192064982, 0.6146476046519204, 0.6096246786085416, 0.6052877428000173, 0.6017060797848537, 0.5989387701674017, 0.5970323458403891, 0.5960188560385279, 0.5959145036383215, 0.5967189684343871, 0.5984154763297601, 0.6009716065593896, 0.6043407634098305, 0.6084641843493724, 0.6132733204496279, 0.6186924108533736, 0.6246410799313443, 0.6310368093563289, 0.6377971713995281, 0.644841747851816, 0.6520936956204314, 0.6594809514611831, 0.6669370924968026, 0.6744018857043639, 0.6818215690757337, 0.6891489109225404, 0.696343093285558, 0.7033694620361135, 0.7101991812321266, 0.7168088235494284, 0.7231799228140326, 0.7292985092399457, 0.7351546431688872, 0.740741959014265, 0.746057227740115, 0.7510999435073517, 0.7558719380148705, 0.7603770244602321, 0.7646206718524627, 0.7686097095439127, 0.7723520612360608 ], [ 0.6716992653571563, 0.6631825387746595, 0.654576442940735, 0.6459434729588528, 0.6373547816046073, 0.6288899488978246, 0.6206363834676771, 0.6126882870303463, 0.6051451251736335, 0.5981095707446275, 0.5916849222120236, 0.5859720484364214, 0.5810659705675795, 0.5770522549824798, 0.5740034483997012, 0.5719758253293071, 0.5710067269042391, 0.5711127408153781, 0.5722889037233554, 0.5745090083125411, 0.5777269831699136, 0.5818792050342199, 0.5868875184111239, 0.5926626895457224, 0.5991080138555515, 0.6061228232167762, 0.6136056912600737, 0.621457198308939, 0.6295821812316613, 0.6378914489387256, 0.6463029870004472, 0.6547427036855294, 0.663144785781612, 0.6714517382918169, 0.6796141803605623, 0.6875904632585905, 0.695346167175779, 0.7028535235902429, 0.7100908002254905, 0.717041676748911, 0.7236946317416697, 0.730042355184279, 0.7360811957063363, 0.7418106480112732, 0.747232883036872, 0.7523523213707078, 0.7571752490372716, 0.7617094738605059, 0.7659640200555571, 0.7699488584142345 ], [ 0.657750059901134, 0.6481560470720585, 0.6384324018514701, 0.6286492832774276, 0.6188877984787272, 0.6092399890260954, 0.5998083692388815, 0.5907049040480475, 0.5820493209726483, 0.5739666746157854, 0.5665841278537298, 0.5600269844622038, 0.5544141016401304, 0.5498529191618069, 0.5464344479642343, 0.544228641348016, 0.5432806013538368, 0.5436080322522527, 0.5452002381697935, 0.5480187880049936, 0.551999770863949, 0.5570573804551179, 0.5630884337787062, 0.5699773690364309, 0.5776012810606842, 0.5858346239476117, 0.5945533152235689, 0.6036380886422866, 0.6129770442003558, 0.6224674229835508, 0.6320166874802435, 0.6415430169376725, 0.6509753370352555, 0.6602529993200925, 0.6693252137680828, 0.6781503217092955, 0.6866949791857601, 0.6949333045015693, 0.7028460293307885, 0.7104196807111651, 0.7176458116192409, 0.7245202904130139, 0.7310426539453683, 0.7372155252602818, 0.7430440941571894, 0.7485356572520689, 0.7536992132254335, 0.7585451085218826, 0.7630847286907535, 0.767330230708577 ], [ 0.6433495826026933, 0.632583217967194, 0.6216330256953215, 0.6105760892725911, 0.599503152647982, 0.5885189989454008, 0.577742317903383, 0.5673048878963705, 0.557349890197001, 0.548029187655576, 0.53949944881491, 0.5319170920208637, 0.5254321665791181, 0.520181471261058, 0.5162814084633601, 0.5138212407281237, 0.512857500783806, 0.513410260311821, 0.5154617696082254, 0.5189576680661735, 0.5238106032734647, 0.5299057723970662, 0.5371076874845805, 0.5452674012743294, 0.5542295014539684, 0.5638383454066296, 0.5739432092983302, 0.5844022175848318, 0.5950850721025261, 0.6058747028298603, 0.6166680178070085, 0.6273759475287546, 0.6379229713807959, 0.6482462912132286, 0.6582947882299307, 0.6680278695863143, 0.6774142836986361, 0.6864309598588453, 0.6950619087967873, 0.7032972061620897, 0.7111320700053239, 0.7185660355893557, 0.7256022256183761, 0.7322467106522738, 0.7385079525806619, 0.7443963231576546, 0.7499236894247976, 0.7551030581300273, 0.759948271802949, 0.7644737498399292 ], [ 0.6287656832261529, 0.6167529718963289, 0.6044872268879325, 0.5920508580068436, 0.5795429515898214, 0.5670802665502825, 0.5547977054232643, 0.5428480096768666, 0.531400387866851, 0.5206377689331881, 0.5107524037020031, 0.5019396418432082, 0.49438991113199476, 0.48827922426621806, 0.4837589034044343, 0.4809455653111887, 0.47991263457749134, 0.480684633326703, 0.48323517543900807, 0.48748901819684654, 0.49332784478405717, 0.5005988634617096, 0.5091249698943676, 0.5187151830097485, 0.5291742806835738, 0.5403109158462053, 0.5519438680759657, 0.5639063973326393, 0.5760488787037764, 0.5882400105286529, 0.600366923965776, 0.6123345066236321, 0.624064209909464, 0.6354925564912927, 0.6465695114626626, 0.6572568341022291, 0.667526488752589, 0.6773591634930297, 0.6867429230981614, 0.6956720069939426, 0.7041457722198349, 0.7121677745724044, 0.7197449771199064, 0.7268870733165518, 0.7336059113701691, 0.7399150068454771, 0.7458291313627268, 0.7513639664244992, 0.7565358126961856, 0.7613613463610279 ], [ 0.6143226131095368, 0.6010226548987574, 0.5873859798425767, 0.5734977806419835, 0.5594629957525173, 0.5454081672132332, 0.5314828540736966, 0.5178602745065062, 0.5047367533928875, 0.49232946893877866, 0.4808719579810824, 0.47060690890449763, 0.46177600635812316, 0.4546070396029446, 0.4492991325248508, 0.4460076779650434, 0.4448311250627678, 0.4458018898327049, 0.4488831487000473, 0.4539721917504036, 0.4609096908468885, 0.46949313561585343, 0.4794921519871494, 0.4906635170739993, 0.5027642424335216, 0.5155618301319309, 0.5288414700824139, 0.5424104151930742, 0.5561000231763267, 0.5697660337504928, 0.5832876198651495, 0.596565666594696, 0.609520629657958, 0.6220902289873396, 0.6342271513085124, 0.6458968719336928, 0.6570756587814299, 0.6677487883323363, 0.677908980812332, 0.6875550476202326, 0.69669073561172, 0.7053237485385235, 0.7134649243813478, 0.721127547528644, 0.7283267760417007, 0.7350791661221173, 0.7414022780290824, 0.7473143498630358, 0.7528340277025054, 0.7579801424727711 ], [ 0.600383019051142, 0.5858000702932689, 0.5707851829969732, 0.5554229892849936, 0.539820603840289, 0.5241105422313358, 0.5084534126670404, 0.49304001019453714, 0.47809227065903304, 0.46386234648343816, 0.45062889049897675, 0.4386895643554953, 0.4283489595733658, 0.4199016872751104, 0.413611445906037, 0.4096882976113553, 0.4082677380810587, 0.409395748639754, 0.4130232931958184, 0.41901165947507196, 0.4271473883265761, 0.43716339925812175, 0.448762094026769, 0.46163675005117877, 0.4754888491079356, 0.4900404347087096, 0.5050416939573666, 0.5202745759347036, 0.535553464445143, 0.5507238703738557, 0.565659935889969, 0.580261340890615, 0.5944500190883037, 0.6081669448590235, 0.6213691439850745, 0.6340270062988574, 0.6461219286013313, 0.6576442851848096, 0.6685917052106388, 0.678967626833495, 0.6887800942681905, 0.6980407638292793, 0.7067640868867492, 0.7149666407058971, 0.7226665816468493, 0.7298831987912026, 0.7366365494987824, 0.7429471615404389, 0.7488357892365658, 0.7543232134344097 ], [ 0.587317936497095, 0.5715110183452269, 0.5551713165055147, 0.5383792516089237, 0.5212396780404134, 0.5038859236311246, 0.48648397001658966, 0.4692364323891923, 0.45238575232032946, 0.4362156805136193, 0.4210497211768547, 0.4072448334436771, 0.39517855712950556, 0.3852282053535219, 0.37774222990211637, 0.3730064180253768, 0.37121059985794036, 0.3724235388348974, 0.3765829619336547, 0.38350379777200166, 0.39290223743157193, 0.4044289824272249, 0.4177038674009715, 0.43234575276127934, 0.44799457830290373, 0.46432516797417644, 0.48105402424870075, 0.497940966539536, 0.5147874148349587, 0.5314327652294202, 0.5477498888907988, 0.5636404252012367, 0.5790302678421172, 0.5938654550063166, 0.6081085538460668, 0.6217355557185223, 0.6347332571616997, 0.647097080380802, 0.6588292784950822, 0.6699374697167741, 0.680433447701578, 0.6903322204648226, 0.6996512362464384, 0.708409760792958, 0.7166283762902405, 0.7243285774109413, 0.7315324445427995, 0.7382623782184231, 0.7445408820984608, 0.7503903846162102 ], [ 0.5754657700174592, 0.5585525115280514, 0.5410088047297406, 0.5229077479931181, 0.5043476731219563, 0.4854571523991099, 0.466400613561421, 0.4473843516119135, 0.4286624488372952, 0.4105416609175399, 0.39338365772097994, 0.3776021600099993, 0.36365172375463756, 0.35200477730295704, 0.3431149687748209, 0.33736880808181213, 0.33503363684949145, 0.3362153828836657, 0.3408399662951022, 0.34866527537302866, 0.35931945223060374, 0.37235265389334615, 0.387288004547136, 0.403662017659819, 0.4210510500295156, 0.43908498115059674, 0.4574513821040392, 0.47589363043555577, 0.49420574194760325, 0.512225818967165, 0.5298292750181423, 0.5469224686709432, 0.5634370413554233, 0.5793250538748707, 0.5945549068319079, 0.609107976141263, 0.6229758730237862, 0.6361582338861277, 0.6486609506667161, 0.6604947616039369, 0.6716741331925028, 0.682216374865421, 0.6921409379370048, 0.7014688592461636, 0.7102223176536037, 0.7184242780955098, 0.7260982033630045, 0.7332678182709901, 0.7399569145201433, 0.7461891874591974 ], [ 0.5650850451882837, 0.5472364341960085, 0.5286734100560926, 0.5094601691768454, 0.48968570256549804, 0.4694694037598081, 0.44896774069237544, 0.42838199094693025, 0.40796680112150857, 0.38803885611361544, 0.36898409852376934, 0.3512606077254155, 0.33539251030578515, 0.3219487779884871, 0.3115010938879207, 0.3045595933238307, 0.301495549957056, 0.30247241643195505, 0.307411411222416, 0.31600693837003585, 0.3277852059523042, 0.342182327186224, 0.3586167567485333, 0.37654146341006395, 0.39547330236266703, 0.41500417430814135, 0.4348004485201057, 0.45459614517179037, 0.4741835945411068, 0.4934037329188579, 0.5121371229690928, 0.5302961426452272, 0.547818437928865, 0.5646615646275198, 0.5807986742637091, 0.5962150808559418, 0.6109055521192754, 0.6248721858364468, 0.6381227525088892, 0.6506694053771438, 0.6625276769973549, 0.6737156972752459, 0.6842535811674902, 0.6941629453441119, 0.7034665222181686, 0.7121878471552598, 0.7203510006253432, 0.7279803917791549, 0.7351005736220229, 0.741736082795458 ], [ 0.5563099836274431, 0.5377341320694374, 0.5183835012983112, 0.4983140349737074, 0.4776050834448921, 0.45636514533666295, 0.434738996418508, 0.41291642682425783, 0.3911426674290869, 0.3697302064986683, 0.3490708655863109, 0.3296454204882794, 0.31202547036846906, 0.2968589598689243, 0.28482857231332365, 0.27657545370439307, 0.27259447599497116, 0.2731298375026602, 0.27811499012120694, 0.2871878090468138, 0.2997734318943819, 0.31519508087455106, 0.3327716601327045, 0.3518815784325576, 0.37199293825929974, 0.39266997545797055, 0.41356632465638343, 0.4344127093572809, 0.4550034577647763, 0.47518398025613523, 0.49484002422963247, 0.5138888498380721, 0.5322721719283041, 0.5499506089751837, 0.5668993664736193, 0.583104906916532, 0.5985623953972293, 0.6132737475332035, 0.6272461402945613, 0.6404908751363357, 0.6530225066504691, 0.6648581693361181, 0.6760170507125378, 0.6865199715024819, 0.6963890435441069, 0.7056473839042273, 0.7143188697461719, 0.722427923168605, 0.7299993187435435, 0.7370580090666504 ], [ 0.5491207823293885, 0.5300368229843507, 0.510147693874107, 0.4895039218060949, 0.4681776550025616, 0.44626812989139286, 0.42390865349269424, 0.4012754805879177, 0.37859893195236927, 0.3561768714895624, 0.3343899986227823, 0.31371690547674264, 0.2947439388723286, 0.27816029696260086, 0.2647237534158401, 0.255182071420496, 0.25014881508758335, 0.2499640345704169, 0.25460110281893916, 0.2636725519872047, 0.2765321657289028, 0.29241733866873965, 0.3105714027627337, 0.3303182138254846, 0.35109235785211373, 0.3724407219806278, 0.394010102151269, 0.41553025475291355, 0.4367971925760729, 0.45765866984635645, 0.4780023361853342, 0.4977463992714549, 0.5168324150393436, 0.5352197921681242, 0.5528816389952894, 0.5698016432303337, 0.5859717363187985, 0.6013903476229315, 0.6160610973424399, 0.6299918121257103, 0.6431937750478736, 0.655681143460983, 0.6674704853384321, 0.678580398087579, 0.689031184137316, 0.6988445655125566, 0.7080434255614477, 0.7166515703929967, 0.7246935057347652, 0.7321942271001263 ], [ 0.5433396375047747, 0.5239465602536335, 0.5037484774081403, 0.4827946324724854, 0.4611542407980006, 0.43892142625471287, 0.4162216221051015, 0.39321987757883586, 0.370131549119546, 0.34723574978943267, 0.32489146540185615, 0.3035550024635244, 0.2837947332280995, 0.26629424277137764, 0.2518284108042347, 0.2411931166555187, 0.23507906540727855, 0.23391394768086807, 0.2377403219008925, 0.24620077275593383, 0.258640943740291, 0.27426880947701665, 0.292294878603502, 0.3120168180464693, 0.33285200813267557, 0.35433740828430005, 0.37611439329980306, 0.3979094071950689, 0.41951562852949925, 0.44077752578043, 0.4615785907007549, 0.4818319072414048, 0.501473038624283, 0.5204547275700653, 0.5387429794103782, 0.5563141825741937, 0.5731529969868966, 0.5892508035890621, 0.6046045580259888, 0.6192159306308352, 0.6330906452676307, 0.646237953225627, 0.6586701965890753, 0.6704024294524827, 0.6814520758776462, 0.6918386112885853, 0.7015832596386734, 0.7107087026263552, 0.7192387998666945, 0.7271983205625937 ], [ 0.5386580305422126, 0.5191058805582743, 0.4987737286681146, 0.47771362875645057, 0.455996372743996, 0.43371578067686894, 0.4109942775808422, 0.38799017838290056, 0.36490716348442, 0.3420063829508456, 0.3196212985191513, 0.2981744017932208, 0.2781927185101318, 0.2603147632560723, 0.24527530594337296, 0.23384907911392075, 0.2267398372711298, 0.22442903275974374, 0.22704242468416386, 0.23431001104091348, 0.24564629085344558, 0.2603013762197439, 0.27750562087678365, 0.29656262297988534, 0.3168884110005751, 0.33801500602727824, 0.3595768883579202, 0.3812922557612789, 0.40294491404537996, 0.42436897673519974, 0.4454367662499127, 0.46604959352945724, 0.48613088767929424, 0.5056211520540894, 0.5244742985950707, 0.5426550002580726, 0.5601367813353778, 0.5769006320487919, 0.5929339872234899, 0.608229950995484, 0.6227866823760441, 0.6366068818547146, 0.6496973385199115, 0.6620685116015005, 0.6737341308765056, 0.6847108078471064, 0.6950176546836774, 0.7046759111924935, 0.7137085819827697, 0.72214008694567 ], [ 0.5346920886443951, 0.5150629328013735, 0.4946932079173384, 0.47364069721633345, 0.4519811136247943, 0.429811708091818, 0.4072559152846947, 0.3844693887166168, 0.3616478338226469, 0.33903702169029504, 0.3169451196530197, 0.29575673284016646, 0.27594634035779736, 0.25808552562526565, 0.24283337680298425, 0.23089465554176836, 0.22293247655094006, 0.21944133571668306, 0.22062188160441823, 0.22632180090341739, 0.23608007412412155, 0.2492480978383683, 0.2651230475650208, 0.2830444784413544, 0.3024424997009439, 0.32284958762360094, 0.3438927342716649, 0.36527812045748265, 0.3867749415592402, 0.40820121014417327, 0.4294123335569295, 0.45029236484009144, 0.4707475062723747, 0.4907013866556631, 0.5100916771040809, 0.5288676843524559, 0.546988636633171, 0.564422444678519, 0.5811447767007223, 0.5971383314816135, 0.6123922291542048, 0.6269014663263702, 0.640666402322617, 0.6536922578342048, 0.6659886173527033, 0.6775689334353441, 0.688450034965083, 0.6986516438198708, 0.7081959053073014, 0.7171069377810616 ], [ 0.5310545537634471, 0.5113578177618509, 0.4909622178396899, 0.469932520732998, 0.4483509321439016, 0.42632004332838647, 0.4039665421074921, 0.38144595565272454, 0.358948737450743, 0.33670799404852564, 0.3150089667732371, 0.2941998419880445, 0.2747022263828515, 0.2570172606075028, 0.2417196844919264, 0.22942837565975904, 0.22074219721182073, 0.21614155972533902, 0.21588122916925567, 0.21992247956246466, 0.22794354537812683, 0.23942310600082894, 0.2537518490965528, 0.270326028845743, 0.288603034699378, 0.30812270655525803, 0.32850711688942286, 0.34945029610102263, 0.37070510817267044, 0.3920708534746022, 0.41338295646442075, 0.434504971234376, 0.45532265626790236, 0.47573971505773816, 0.49567479345399806, 0.51505937807197, 0.5338363105966825, 0.5519587017170977, 0.5693890882766888, 0.5860987258670133, 0.6020669467591528, 0.617280541048877, 0.6317331388297798, 0.6454245847649601, 0.6583603051100079, 0.670550672331372, 0.6820103750069332, 0.6927578015045542, 0.7028144456256307, 0.7122043414253114 ], [ 0.5274275954451405, 0.5076101811052786, 0.48712701106241824, 0.46604957815840453, 0.44446656048044425, 0.4224861881931629, 0.4002391230138587, 0.3778820418162207, 0.3556021547939052, 0.3336228865294327, 0.3122108336421765, 0.29168374619887455, 0.2724184245717938, 0.2548557614625711, 0.23949750416402704, 0.22688628139573766, 0.21755964920590454, 0.21197538435367896, 0.21042235827059402, 0.21295121293430014, 0.21936088466859552, 0.2292495425012547, 0.24210279628994782, 0.25737976571381155, 0.2745723513175639, 0.29323411540986394, 0.312987014414945, 0.3335161041259362, 0.35455964012073776, 0.3758987514600743, 0.3973485422197966, 0.41875115206180213, 0.43997067224935515, 0.46088957088250415, 0.48140623579560665, 0.5014332852187858, 0.5208963677337788, 0.5397332467773679, 0.5578930292370099, 0.5753354488137836, 0.5920301529060421, 0.6079559685432088, 0.6231001406296955, 0.637457546648577, 0.6510298979329447, 0.663824940178506, 0.6758556662217559, 0.6871395531084444, 0.6976978337377164, 0.707554811303236 ], [ 0.5236217149455095, 0.5035896378287287, 0.4829088700762508, 0.4616563581263772, 0.4399261938889382, 0.41783154218443924, 0.39550688334866246, 0.37311070753429587, 0.35082883684335187, 0.3288785688853838, 0.30751378066044943, 0.28703090282324634, 0.2677750889239561, 0.25014469652290183, 0.23459014123236724, 0.22160054730880174, 0.21167008786874633, 0.2052393097153471, 0.20261892505750348, 0.20392123754818203, 0.2090321292354356, 0.21763989129809447, 0.22930576778157255, 0.24354271044524606, 0.25987556228803044, 0.2778742264160904, 0.29716477767494576, 0.31742754309015997, 0.3383896420253844, 0.3598165099546159, 0.381504516682517, 0.40327532576677344, 0.4249719182760371, 0.4464559280746229, 0.4676058900754476, 0.48831605677823386, 0.5084955228556395, 0.5280674801476833, 0.5469684935431279, 0.5651477390580425, 0.5825661805143176, 0.5991956836470115, 0.6150180794658288, 0.6300241950887103, 0.6442128722935797, 0.6575899933622814, 0.6701675315957574, 0.6819626409571395, 0.692996796162544, 0.7032949914998357 ], [ 0.5196109972802663, 0.499257347431503, 0.4782529349543572, 0.4566784106108298, 0.43463172710830555, 0.41222978932744037, 0.38961028729029396, 0.3669338164755024, 0.3443864356848769, 0.3221828517395041, 0.30057041674712764, 0.2798339963814021, 0.2603013581014066, 0.2423477782715956, 0.2263967842249168, 0.2129113488288585, 0.20236762237003994, 0.19520478520587672, 0.19175436154666728, 0.19216975182098892, 0.19638868819564662, 0.20415032649116965, 0.21505803197938939, 0.22865594366439976, 0.24449010567047888, 0.26214309548952813, 0.281246145782723, 0.3014779714495751, 0.3225581719420534, 0.3442398835276844, 0.3663037213170673, 0.38855349628812885, 0.41081347990874295, 0.4329267673037199, 0.4547543018592005, 0.47617422153904876, 0.4970812975270286, 0.5173863296885507, 0.537015432860193, 0.5559091945887877, 0.5740217133242433, 0.5913195412688845, 0.6077805624205104, 0.6233928371222197, 0.6381534420047634, 0.6520673301639606, 0.6651462317717869, 0.6774076106870853, 0.6888736883510829, 0.6995705424886587 ], [ 0.5155413350341176, 0.4947752342532754, 0.4733383814057432, 0.4513133587617603, 0.4288003497879901, 0.4059186446205626, 0.3828082464487994, 0.35963166960443516, 0.3365760776611082, 0.3138559766089177, 0.29171672904627394, 0.27043912215920474, 0.25034495211372876, 0.231802791202846, 0.21523136000459, 0.2010949517530102, 0.18988193780921142, 0.18205700517289283, 0.1779867147503751, 0.1778585680945988, 0.18163227398618845, 0.18905330804431345, 0.19972146591185422, 0.2131760308921953, 0.22896172739324377, 0.2466631226238515, 0.2659139318971752, 0.28639306305718, 0.307816508053161, 0.32992982217262656, 0.3525027854161698, 0.3753262340278583, 0.3982104730994224, 0.420984620264094, 0.4434963654725472, 0.4656118045410879, 0.48721515194229825, 0.5082082451265627, 0.5285098215566447, 0.5480545894197613, 0.5667921326422874, 0.5846856976472153, 0.6017109085320941, 0.6178544525544388, 0.6331127712480237, 0.6474907855090952, 0.6610006763400613, 0.6736607369940432, 0.6854943071716327, 0.6965287956941183 ], [ 0.5117136483061764, 0.49048588655361, 0.468554398821949, 0.446002297739967, 0.42293067845375804, 0.3994600554210023, 0.37573183986035796, 0.3519099422029984, 0.3281826590974987, 0.3047651100244262, 0.28190261396766386, 0.2598754911872183, 0.23900569176872216, 0.2196650482799807, 0.2022831775302679, 0.18734928139941615, 0.17539633699645057, 0.16695216483094702, 0.1624498775353176, 0.16211957013382355, 0.16591757921888914, 0.17354322185968524, 0.18453338057252025, 0.19837458443680397, 0.2145807782310283, 0.2327252851698581, 0.25244187565092774, 0.27341322354357733, 0.2953581530067248, 0.3180222057605238, 0.34117213691277504, 0.3645934207408662, 0.38808958361741464, 0.41148240244103385, 0.4346123290008746, 0.4573387767961406, 0.47954010215327475, 0.501113233964576, 0.5219729750924879, 0.5420510316110027, 0.5612948374540433, 0.5796662412092861, 0.5971401147992759, 0.6137029342817882, 0.6293513730466572, 0.6440909383659362, 0.6579346740566533, 0.670901945092121, 0.6830173143202886, 0.6943095169005132 ], [ 0.508547398089489, 0.48686977997659336, 0.46445024662907003, 0.44137180160412287, 0.4177359079958099, 0.39366390437043963, 0.36929840399855773, 0.3448047516362734, 0.32037270557525993, 0.2962186620583456, 0.27258895513391906, 0.24976502689404345, 0.2280714501166676, 0.2078875207628518, 0.18966150958535163, 0.17392199244647102, 0.16127136239977857, 0.15233567089259564, 0.1476488550460938, 0.1474939025549776, 0.1517928666069076, 0.16013720422796318, 0.17193830009404065, 0.18658795082498167, 0.20355059668125997, 0.22238556680394908, 0.24273225082120972, 0.26428613141068674, 0.28677896480371706, 0.3099663504153472, 0.3336215785403931, 0.357533578481409, 0.3815070520357048, 0.4053634709805537, 0.4289421566236097, 0.45210104642741794, 0.4747169966484758, 0.4966856084509222, 0.5179206344958192, 0.5383530509893845, 0.5579298849710479, 0.5766128796781308, 0.5943770688597935, 0.6112093176484563, 0.6271068749372088, 0.6420759710121047, 0.6561304847254017, 0.6692906967468782, 0.6815821392332064, 0.693034547396355 ], [ 0.5065308137309119, 0.4844873900808671, 0.46166817183117276, 0.4381565237151785, 0.41405498851827227, 0.38948677280476046, 0.36459717827269045, 0.3395550405996874, 0.31455434345751276, 0.28981635825224206, 0.2655929496514338, 0.2421720903561753, 0.21988705339945946, 0.19913080047498635, 0.18037562118772243, 0.16419260621984552, 0.15125265949067299, 0.14227223144199574, 0.13786605531756355, 0.13833251196564636, 0.14351047826959565, 0.1528454157683105, 0.16561280889009355, 0.18112212704001673, 0.1988086677082116, 0.2182362937442457, 0.23906411707701467, 0.2610109836671767, 0.2838300286585345, 0.30729421647705635, 0.3311899760892215, 0.35531570209900876, 0.379482662861662, 0.4035167450764669, 0.42726015877511875, 0.45057268856960525, 0.47333235317480776, 0.4954354844422185, 0.5167963074102813, 0.5373461275945717, 0.5570322321951503, 0.5758166008206393, 0.593674505908039, 0.6105930670558137, 0.6265698088119904, 0.6416112587963012, 0.6557316125337832, 0.6689514829038573, 0.6812967454143838, 0.6927974853149721 ], [ 0.5061639599524969, 0.4839130755146125, 0.46086675896382406, 0.4371104653603592, 0.4127500165601696, 0.38791333883093887, 0.36275217191158515, 0.33744381082276265, 0.31219305051925583, 0.28723469310670724, 0.2628372763058578, 0.23930908621818214, 0.2170078935121372, 0.1963556912458523, 0.17785764055919787, 0.16211767586422743, 0.14982880482742722, 0.1416989909607053, 0.13828307268465476, 0.13977006004241, 0.1458790534160531, 0.1559733816386304, 0.16930052018545919, 0.18518086552859286, 0.20307802922911214, 0.22258781405307923, 0.24339892215938477, 0.26525558234059576, 0.2879318782887501, 0.31121761408696547, 0.3349124492108926, 0.3588249444606798, 0.382774003969007, 0.4065911108592469, 0.43012246254571596, 0.453230584701071, 0.47579528724425074, 0.4977139799216611, 0.5189014376245498, 0.5392891307365683, 0.558824235612445, 0.5774684280661763, 0.5951965460517066, 0.6119951905524643, 0.6278613179745537, 0.6428008638139121, 0.6568274261796168, 0.6699610287478291, 0.6822269756169929, 0.6936548050296779 ], [ 0.5079001495730604, 0.48566677235301664, 0.46264123005318786, 0.4389137995847314, 0.4145969179380888, 0.3898273907139607, 0.36476867169404814, 0.3396132802552393, 0.31458551077159463, 0.28994472402345, 0.26598968549895485, 0.24306455049651568, 0.2215669296949766, 0.20195735004073015, 0.18476610804538032, 0.17058658801060647, 0.16003488171483413, 0.15365459842380108, 0.1517741469897028, 0.15438295896109583, 0.1611205321334032, 0.17139995691408272, 0.1845807675105804, 0.20009229186504746, 0.21747783193321893, 0.2363848741106781, 0.2565351270812628, 0.2776952023316989, 0.29965577654368325, 0.3222198289399949, 0.3451977832448289, 0.3684069566932771, 0.3916732023417557, 0.4148333110897572, 0.43773732955015066, 0.46025037378550043, 0.4822537889334369, 0.5036456590525223, 0.5243407485080853, 0.5442699859225825, 0.5633796048967809, 0.5816300455690941, 0.5989947054597312, 0.61545861128119, 0.6310170676765656, 0.6456743251143696, 0.659442297682544, 0.6723393521986556, 0.6843891826481175, 0.6956197781890794 ], [ 0.512091246525214, 0.49014980817124154, 0.4674479138168014, 0.44408362615004526, 0.4201793900941096, 0.39588480177905816, 0.37137953910977806, 0.34687647908949604, 0.3226250375507047, 0.2989147482309519, 0.27607898296696093, 0.2544983541285594, 0.234602457746641, 0.21686683431956041, 0.20179920868277482, 0.18990638473824312, 0.181634673265311, 0.17728862752683244, 0.17695506506657885, 0.18047399877390888, 0.18748063961225747, 0.19749928247743928, 0.21004143432762012, 0.22467062085753312, 0.241025687109517, 0.258814951595786, 0.2777977857283556, 0.297765369780593, 0.31852617989363413, 0.3398974315683902, 0.36170154012992195, 0.3837659758579553, 0.4059249798427305, 0.4280219859214059, 0.4499120065940516, 0.4714635785172755, 0.49256010024342844, 0.5131005424858508, 0.5329995920169399, 0.5521873265590501, 0.570608527197583, 0.5882217291489905, 0.6049980989932745, 0.6209202113984066, 0.6359807834829411, 0.6501814115321123, 0.6635313432835749, 0.6760463094935051, 0.6877474308348611, 0.6986602101330275 ], [ 0.5189432673722973, 0.49759268369426224, 0.4755426714149615, 0.45290115279334925, 0.4298025219550318, 0.40641077565888406, 0.382922748923508, 0.3595713408719487, 0.33662850064568123, 0.3144075225311376, 0.2932638004629583, 0.2735925325298833, 0.2558209312550871, 0.24039154064792642, 0.22773314844432357, 0.2182181404727231, 0.212111449000828, 0.20952511104146, 0.2103974083354072, 0.21450903101203622, 0.22153183193950415, 0.23109071090664163, 0.24281693300184592, 0.2563804998931219, 0.2715008869259121, 0.2879426243872159, 0.30550377121467126, 0.32400352337984506, 0.34327244112215255, 0.36314646203452, 0.3834644272140098, 0.40406819941610145, 0.42480433375645954, 0.4455264190120957, 0.4660974607603471, 0.48639192413642107, 0.5062972496647531, 0.5257147911319205, 0.5445602073930456, 0.5627633834829237, 0.5802679733308506, 0.5970306571006397, 0.613020198084309, 0.6282163720109104, 0.6426088285231307, 0.656195932047533, 0.6689836181270407, 0.6809842917819108, 0.6922157866231414, 0.7027003971238162 ], [ 0.5284892514144411, 0.5080237927429887, 0.4869449779784115, 0.46537076137201483, 0.44344677146864386, 0.4213493304769538, 0.3992883119054593, 0.3775095199857647, 0.35629606014630094, 0.33596784978908045, 0.3168779912774239, 0.29940427186952845, 0.2839338164662142, 0.2708394001467813, 0.26044779418509423, 0.2530040781795792, 0.248640099279576, 0.2473574288900842, 0.24903229473799396, 0.25344216225708327, 0.26030531271258156, 0.26932111875596043, 0.2802011208452688, 0.29268664273257844, 0.306553888861711, 0.3216103544450634, 0.33768696679525584, 0.35462954154556753, 0.3722917812448623, 0.39053076517603, 0.4092049558373028, 0.4281742284162353, 0.447301240670015, 0.46645348664789044, 0.4855055118781438, 0.5043409329844682, 0.5228540563443439, 0.540951008787242, 0.5585503749703756, 0.575583385718288, 0.5919937269499893, 0.6077370474839365, 0.6227802423086706, 0.6371005804787524, 0.6506847367841979, 0.6635277757135781, 0.6756321261130672, 0.6870065759034514, 0.6976653084723051, 0.7076269959232528 ], [ 0.5405848387156182, 0.5212661164708265, 0.5014367503622176, 0.4812226201347851, 0.4607770196997663, 0.4402830294371408, 0.4199553392434585, 0.4000410510127081, 0.3808187727412954, 0.3625950674206471, 0.3456971102219064, 0.3304603955121444, 0.31721077816386645, 0.30624131227742496, 0.29778633308367225, 0.2919975157271506, 0.2889280226231477, 0.2885299278211428, 0.29066652182328495, 0.2951363249491592, 0.3017021813273232, 0.3101183104583008, 0.3201503392720339, 0.33158650693065966, 0.3442408969921856, 0.35795102128221734, 0.37257241918476114, 0.3879725381343095, 0.40402543681844444, 0.42060810186218084, 0.43759856158405325, 0.45487558048174864, 0.4723195174919641, 0.48981388402343534, 0.5072471876070682, 0.5245147433212198, 0.5415202415333304, 0.5581769554311056, 0.5744085457692344, 0.5901494716541592, 0.6053450477635757, 0.6199512045719227, 0.6339340134642107, 0.6472690369478267, 0.6599405584886276, 0.6719407389010801, 0.6832687380855693, 0.6939298330583458, 0.7039345561087968, 0.7132978707421622 ], [ 0.554927635693321, 0.5369629586135316, 0.5185966814993554, 0.4999586770265338, 0.481204395269308, 0.46251623956302024, 0.44410405150369986, 0.4262042024173982, 0.40907665240538643, 0.3929992467334059, 0.378258559949356, 0.3651368951400779, 0.3538957218280906, 0.344756914798645, 0.3378844263601198, 0.3333699695801056, 0.33122624460795064, 0.33138981891199665, 0.3337333021087852, 0.3380839565004487, 0.3442444626264704, 0.3520116966983354, 0.36119072575372085, 0.3716029970391315, 0.3830891938292598, 0.3955081194423592, 0.40873325521135434, 0.4226484874634384, 0.43714411676874043, 0.45211381655205196, 0.4674528072737074, 0.48305721278379066, 0.4988243815561517, 0.5146538745142072, 0.530448816619981, 0.5461173519451095, 0.5615740061541504, 0.5767408278243777, 0.5915482397427211, 0.6059355782023982, 0.6198513314411616, 0.6332531091637322, 0.6461073860547191, 0.6583890659749533, 0.6700809125178965, 0.6811728876835679, 0.6916614350081015, 0.7015487375327802, 0.7108419751248424, 0.7195526002342912 ], [ 0.5710957378959511, 0.5546261494729227, 0.5378606191942233, 0.5209282637372044, 0.503980710753134, 0.48719242468925616, 0.47075996298523926, 0.4548997406942379, 0.4398438435842347, 0.42583347113724884, 0.4131097707566675, 0.40190219820828643, 0.39241511947062907, 0.3848140728358494, 0.3792137243633735, 0.3756697690678147, 0.3741765971897019, 0.3746714414998239, 0.3770442658515981, 0.3811513821310782, 0.38683015718361535, 0.3939123413967223, 0.4022343184574173, 0.4116435679616858, 0.4220015111287213, 0.4331834893480736, 0.4450768744668589, 0.45757829342431655, 0.470590767239644, 0.48402130927902215, 0.49777927098208874, 0.5117755087610425, 0.5259222936198663, 0.540133797099871, 0.5543269538793596, 0.5684225077901137, 0.5823460785427472, 0.5960291277622634, 0.6094097453414419, 0.6224332146687022, 0.6350523451310561, 0.6472275817959253, 0.6589269160453578, 0.6701256285318117, 0.6808058986832787, 0.6909563145426657, 0.7005713141824937, 0.7096505862183232, 0.7181984527226032, 0.7262232535679107 ], [ 0.5885964993418152, 0.5736948975252258, 0.5585922968215696, 0.5434125550654207, 0.5282983287094254, 0.513410533532644, 0.49892673472119703, 0.48503817523383796, 0.4719451823238693, 0.45985079730298845, 0.4489526788205457, 0.43943364268570057, 0.43145159013295986, 0.4251299547603744, 0.4205500303958977, 0.41774648629858036, 0.4167069589556348, 0.417375891832669, 0.41966197502997016, 0.42344787578322085, 0.4286006476592245, 0.43498131340189716, 0.44245253668689705, 0.4508838550808519, 0.4601544705088012, 0.47015397615589194, 0.4807816037050478, 0.4919446196276207, 0.5035564286996442, 0.515534807706482, 0.527800536305825, 0.5402765468825974, 0.552887599555297, 0.5655604096083554, 0.5782241115105704, 0.5908109301864933, 0.6032569379419876, 0.6155027959546342, 0.6274944053726276, 0.6391834195742256, 0.6505275927185342, 0.6614909587076943, 0.6720438486302565, 0.6821627639878998, 0.6918301282545469, 0.7010339414570955, 0.7097673623595065, 0.7180282412262616, 0.7258186236410326, 0.733144242917899 ], [ 0.6069156842106842, 0.5935929807648371, 0.5801492484056346, 0.5666995602600742, 0.553373996357233, 0.540316530756966, 0.5276829708762024, 0.5156377831395557, 0.5043497001699926, 0.4939861183744623, 0.4847064655200195, 0.4766549339902683, 0.469953201435183, 0.46469393694257216, 0.4609359465598169, 0.4587016908393494, 0.4579775994200656, 0.4587171689715024, 0.4608463713210018, 0.46427054323527983, 0.46888176796832315, 0.47456581346717913, 0.481207918058921, 0.4886970274784328, 0.4969284003824073, 0.5058047498031744, 0.5152362452906468, 0.5251397638252556, 0.5354377646492793, 0.5460570995892935, 0.5569279818809278, 0.5679832440404355, 0.5791579335790904, 0.5903892324324489, 0.6016166444827757, 0.612782374114135, 0.6238318136052868, 0.6347140636155777, 0.6453824244122707, 0.6557948119078691, 0.6659140691186906, 0.6757081584483794, 0.6851502322572194, 0.6942185881864429, 0.7028965218009928, 0.711172092684692, 0.7190378216684898, 0.7264903369063943, 0.7335299854985909, 0.7401604256854597 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "0_1", "0_2", "0_3", "0_4", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0" ], "type": "scatter", "x": [ 0.041148629039525986, 0.2857678532600403, 0.8522157073020935, 0.8920990228652954, 0.4663430452346802, 0.2319412500006723, 0.3291084219583757, 0.3401591105829325, 0.3375414761773215, 0.39928235348894564, 0.44123040306281236, 0.47873450430742925, 0.4329949850381712, 0.35579285022660406, 0.35711041032921187, 0.3250368293330394, 0.36772708914579155, 0.3458621577235558, 0.37796822279503717, 0.3041262593563039 ], "xaxis": "x", "y": [ 0.4494225084781647, 0.600216269493103, 0.11601513624191284, 0.7307854890823364, 0.2460964322090149, 0.6136128861823047, 0.6007638728200363, 0.6091106018824447, 0.6007287807947196, 0.7109176353144205, 0.7904256839429726, 0.7953798577708998, 0.8019971155135549, 0.8213928733084126, 0.7864183630734258, 0.8059065132013854, 0.7874642959145342, 0.8089300518700374, 0.8077032869063753, 0.8604122130216035 ], "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", "0_1", "0_2", "0_3", "0_4", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0" ], "type": "scatter", "x": [ 0.041148629039525986, 0.2857678532600403, 0.8522157073020935, 0.8920990228652954, 0.4663430452346802, 0.2319412500006723, 0.3291084219583757, 0.3401591105829325, 0.3375414761773215, 0.39928235348894564, 0.44123040306281236, 0.47873450430742925, 0.4329949850381712, 0.35579285022660406, 0.35711041032921187, 0.3250368293330394, 0.36772708914579155, 0.3458621577235558, 0.37796822279503717, 0.3041262593563039 ], "xaxis": "x2", "y": [ 0.4494225084781647, 0.600216269493103, 0.11601513624191284, 0.7307854890823364, 0.2460964322090149, 0.6136128861823047, 0.6007638728200363, 0.6091106018824447, 0.6007287807947196, 0.7109176353144205, 0.7904256839429726, 0.7953798577708998, 0.8019971155135549, 0.8213928733084126, 0.7864183630734258, 0.8059065132013854, 0.7874642959145342, 0.8089300518700374, 0.8077032869063753, 0.8604122130216035 ], "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" } ], "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 }, "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": "", "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "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": [ "