{ "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 06-10 19:22:03] 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.19924362787839045, -0.19902890972603954, -0.1987758719295103, -0.1984799048578122, -0.19813665109004402, -0.1977423587364135, -0.197294324211631, -0.19679141360137137, -0.1962346359978182, -0.19562772366695474, -0.19497765504488923, -0.1942950409312123, -0.19359428624238684, -0.19289344369922895, -0.19221369513815856, -0.1915784317671695, -0.19101195446040664, -0.19053787340690104, -0.19017734429050692, -0.18994732488330196, -0.18985906045356493, -0.18991699974163423, -0.1901183011668267, -0.19045301433428458, -0.19090492623195826, -0.19145296333379946, -0.1920729614355849, -0.19273957190737562, -0.19342807398247736, -0.19411590360170167, -0.1947837763804065, -0.195416357428857, -0.19600249774274248, -0.19653510517828454, -0.1970107440440635, -0.19742906316518294, -0.19779214327510025, -0.19810383704958984, -0.1983691545372674, -0.1985937271062334, -0.19878336656307227, -0.1989437236503322, -0.19908004158104492, -0.19919699500042448, -0.19929860197963284, -0.19938819559259807, -0.19946844170304112, -0.19954139036954216, -0.19960854948793866, -0.19967097076558088 ], [ -0.19903401611581323, -0.19877180109762854, -0.19846147847096335, -0.19809681322088707, -0.19767174398690662, -0.1971808300483151, -0.19661983134720357, -0.19598641360518648, -0.19528094833147336, -0.19450734987192836, -0.1936738618236375, -0.19279367846398343, -0.19188527028900276, -0.19097228372649833, -0.19008290956729634, -0.18924866511969346, -0.18850260882799458, -0.18787709455655088, -0.18740126222644143, -0.18709853507445562, -0.18698443412269455, -0.1870650131446177, -0.1873361551503293, -0.18778385799667013, -0.18838548970089586, -0.1891118431467979, -0.18992969978888352, -0.19080455094341014, -0.1917031348783127, -0.19259551932236002, -0.19345656762716318, -0.19426674254698406, -0.19501229915909357, -0.19568498342559654, -0.1962813825037666, -0.1968020728707534, -0.1972506924483417, -0.19763303327374332, -0.19795621989962975, -0.1982280107814361, -0.1984562378977237, -0.19864838422995856, -0.19881128877948084, -0.19895096327103085, -0.19907250227200168, -0.19918006803387417, -0.1992769321272368, -0.19936555737675365, -0.19944770541544626, -0.19952455721806972 ], [ -0.1987927517288401, -0.19847550245507967, -0.1980985196328804, -0.19765348779018443, -0.1971321031690358, -0.19652662501788004, -0.1958306207052009, -0.19503990468575771, -0.19415364070389785, -0.19317553603468735, -0.19211501008019094, -0.19098817497076903, -0.18981843393675946, -0.18863649655948594, -0.18747963941929635, -0.186390111610715, -0.185412694000762, -0.18459155595369564, -0.1839666918345455, -0.1835703350667202, -0.18342381257218487, -0.18353529456198991, -0.1838988018961375, -0.1844946605475164, -0.18529136692591097, -0.18624859637898666, -0.18732090650411654, -0.1884616026307579, -0.1896262616012434, -0.19077553344697878, -0.19187701517790584, -0.19290616695004043, -0.19384637998092136, -0.19468838936190191, -0.19542925392246796, -0.1960711122172159, -0.19661988552085746, -0.1970840509380758, -0.19747356150433076, -0.19779895173756207, -0.19807063875516634, -0.19829841039144014, -0.19849108095544304, -0.1986562901605592, -0.19880041931894377, -0.1989285995753728, -0.19904478872907766, -0.19915189548194046, -0.19925193249433992, -0.19934618233594792 ], [ -0.19851833536789165, -0.19813837369448684, -0.19768515813230486, -0.19714776908015258, -0.1965150136544508, -0.19577608356392007, -0.19492148919869956, -0.19394428672142455, -0.19284157415566155, -0.1916161741707157, -0.19027834996744025, -0.18884732713285013, -0.1873523355336909, -0.18583286207428412, -0.1843378370549782, -0.18292357554114402, -0.18165045789066153, -0.18057854036641813, -0.17976250237126495, -0.17924651771224343, -0.17905974029326033, -0.17921308524904517, -0.17969784654129717, -0.18048642843296997, -0.18153512202934263, -0.18278850442706485, -0.18418476839172865, -0.18566117828400952, -0.18715891598490136, -0.1886267918505929, -0.19002357362179217, -0.19131894968187574, -0.1924933358228269, -0.19353683610386913, -0.19444768756207753, -0.19523048051346298, -0.19589437893884687, -0.19645149171825665, -0.19691547977440033, -0.19730043330566271, -0.19762001840799853, -0.1978868714073322, -0.19811220869790164, -0.19830561627885035, -0.19847498358858096, -0.19862654860873014, -0.198765024336305, -0.19889378004157005, -0.19901505408966969, -0.19913017854408027 ], [ -0.19821016205919184, -0.19776009283646062, -0.19722144608087133, -0.1965801294543798, -0.1958213196322724, -0.1949302128168699, -0.1938931592372286, -0.19269922955219404, -0.1913422093350562, -0.18982293643463738, -0.1881517887660742, -0.18635101106330082, -0.18445646395966347, -0.18251832191582817, -0.1806002733567978, -0.17877691100806764, -0.1771292430466076, -0.17573857549598415, -0.1746793546687953, -0.17401184246356138, -0.17377565746204165, -0.17398519927481865, -0.1746277575966393, -0.1756647031018076, -0.17703562755762614, -0.17866476355872746, -0.18046861712461126, -0.18236360587792771, -0.18427264033341934, -0.18612994302853036, -0.187883836379671, -0.1894976158935578, -0.19094888219761413, -0.19222781618327078, -0.1933348735459503, -0.19427829375385247, -0.19507170764110232, -0.19573201886072922, -0.1962776447268153, -0.19672713750565451, -0.19709816666610874, -0.19740682105592855, -0.1976671815639452, -0.19789111428667322, -0.19808823757339244, -0.19826602104303176, -0.19842997945206337, -0.1985839287309823, -0.1987302756854985, -0.19887031704022656 ], [ -0.19786875432225554, -0.19734202990772792, -0.1967099131703084, -0.19595457510595343, -0.19505676794531884, -0.19399662664904438, -0.1927549888212901, -0.1913153343630239, -0.18966638526831447, -0.1878052967527543, -0.18574121358967965, -0.1834987765628857, -0.18112098047770891, -0.1786706632446129, -0.17622990853103793, -0.17389682172150311, -0.17177950058879843, -0.16998752190133432, -0.16862180346022776, -0.16776415095894193, -0.16746804444096153, -0.16775218326804026, -0.16859796423398205, -0.1699514420065938, -0.17172951300442085, -0.17382925667615817, -0.17613879491859885, -0.17854787358202678, -0.18095665950207418, -0.18328184138191167, -0.18545979455051048, -0.18744711784843732, -0.18921917449366593, -0.1907673678115509, -0.1920958183562902, -0.1932179584592046, -0.19415338779193814, -0.19492517960669864, -0.1955577102393618, -0.19607500699450614, -0.1964995658225162, -0.19685157110699086, -0.19714844630146794, -0.19740466870504986, -0.19763178925025965, -0.19783860587560537, -0.19803144567473074, -0.1982145164948807, -0.19839029350739978, -0.19855991110724536 ], [ -0.19749594952410665, -0.19688756960905995, -0.19615611098143154, -0.19527953593396996, -0.19423341179351328, -0.19299167845788712, -0.191528090998488, -0.1898185246011293, -0.18784426620984418, -0.18559627891647618, -0.18308020207534315, -0.1803215571588373, -0.17737031688013638, -0.17430375152357935, -0.17122640357802532, -0.16826625920321092, -0.16556672070412004, -0.1632747733855729, -0.1615266118406481, -0.16043271599262843, -0.16006474108014968, -0.16044649282796258, -0.16155068639536802, -0.16330220656834282, -0.16558735862977642, -0.16826740512440375, -0.1711938831149989, -0.17422306534214632, -0.17722748162762975, -0.18010338832151013, -0.18277408162314174, -0.18518969869445923, -0.1873245252379771, -0.1891728735401927, -0.19074442995525726, -0.1920597173593333, -0.1931460641869407, -0.19403426451707084, -0.19475596860238642, -0.1953417561091349, -0.19581980216822648, -0.19621503421268222, -0.1965486824030977, -0.19683813849551823, -0.19709705113661413, -0.1973355967139664, -0.19756087325176874, -0.1977773710160664, -0.19798747864837762, -0.19819198890940293 ], [ -0.1970949994388949, -0.1964023157352146, -0.19556901385663727, -0.19456860506710016, -0.1933708956645266, -0.1919425732622289, -0.19024863170944234, -0.18825495216910726, -0.18593231012858563, -0.18326191841934142, -0.18024231481924524, -0.17689696254183235, -0.17328141358091054, -0.16948842155720478, -0.1656491747429678, -0.16192904767457417, -0.1585170486697156, -0.1556093952312843, -0.1533890894383627, -0.15200456640701376, -0.1515510656266928, -0.15205814141650126, -0.15348572969788382, -0.15572961613662367, -0.15863529174164653, -0.16201745800754308, -0.16568138598868687, -0.1694423340812949, -0.17314024465757388, -0.17664848486606394, -0.1798768569810152, -0.18277006821903413, -0.18530322620916018, -0.1874758472995915, -0.18930553863233912, -0.1908221197458701, -0.1920625959022605, -0.1930671311278933, -0.19387599987658372, -0.19452740649162448, -0.19505602825856633, -0.19549213869311083, -0.19586118522310375, -0.19618371754815345, -0.19647558277259541, -0.19674831808999477, -0.19700968138363445, -0.19726426622887588, -0.19751415257661797, -0.19775954969181686 ], [ -0.19667053887908603, -0.1958941002115181, -0.19496115061664782, -0.19384093802644348, -0.1924973536119593, -0.19088910716036422, -0.18897087824859365, -0.18669594568897674, -0.184020798694982, -0.18091207840977536, -0.17735581908629455, -0.17336832398315283, -0.16900717842664775, -0.16438005725747773, -0.15964844392576472, -0.15502351916001056, -0.1507525662906251, -0.1470962337076024, -0.14429941800102442, -0.14256058818281148, -0.1420052980808672, -0.14266908839146897, -0.14449315789762662, -0.1473335900913879, -0.15098211629592695, -0.15519400252012444, -0.15971738750598435, -0.1643187645695286, -0.16880109211016375, -0.17301338884242362, -0.17685268387156866, -0.18026033728584018, -0.1832150223876639, -0.18572435353387196, -0.18781658331600093, -0.18953321858509775, -0.1909229406857973, -0.1920368980978821, -0.19292525696543145, -0.19363481398549487, -0.19420746123464905, -0.19467931351551937, -0.19508034360499016, -0.1954344053544213, -0.19575955174060022, -0.1960685726791812, -0.1963696870927389, -0.196667328524451, -0.19696296697649784, -0.19725591437806456 ], [ -0.19622839038699968, -0.19537272342656525, -0.19434833010217872, -0.19312108161799502, -0.19164956599584432, -0.1898845256027522, -0.18776932107154687, -0.18524216686827544, -0.18224099108530212, -0.17871168140384164, -0.17462005531593416, -0.16996703214653264, -0.16480520072496346, -0.159253497767938, -0.15350553369924935, -0.14782691244153406, -0.14253830141097756, -0.1379841353121446, -0.13449096330254084, -0.13232309497859474, -0.13164480003603973, -0.13249713984752842, -0.13479407614709205, -0.13833807556844868, -0.14285120176812688, -0.1480145697423232, -0.15350785540824585, -0.1590417495496269, -0.16437927077418907, -0.1693453165147319, -0.17382642607448845, -0.17776392535817603, -0.18114362791317695, -0.18398459972879772, -0.1863286280362088, -0.18823125597462742, -0.18975467349380448, -0.1909624001248128, -0.19191551661279954, -0.19267014548847294, -0.19327589573117676, -0.19377503542220098, -0.19420221265905918, -0.1945845937199811, -0.19494232178852494, -0.1952892189353007, -0.19563366191437076, -0.1959795638947993, -0.19632739474148514, -0.19667517579092564 ], [ -0.1957751986012441, -0.19484937994642876, -0.19374884272788223, -0.19243799732025585, -0.19087196416710178, -0.18899485004480854, -0.18673891961673883, -0.18402569355256143, -0.18077030653084875, -0.17689054297892365, -0.17232159807244735, -0.16703654471667523, -0.16107061284918717, -0.15454491809363136, -0.1476829202949736, -0.14081184043828004, -0.13434281338364057, -0.12872831577589045, -0.12440244625666236, -0.12171627875800684, -0.12088351695397964, -0.12194933483159576, -0.12478871003190806, -0.12913274426775412, -0.13461509215150425, -0.14082701075401916, -0.14736922170755196, -0.1538916577338567, -0.16011700392135186, -0.16584867295360012, -0.17096688019895306, -0.1754174588976678, -0.1791975550012776, -0.18234117529825805, -0.18490633624654124, -0.1869645794068307, -0.18859296453070074, -0.18986828758173208, -0.19086312092124774, -0.19164325805344895, -0.19226620216793788, -0.1927804210555722, -0.19322517208968581, -0.19363076435707266, -0.1940191652158595, -0.19440487721454902, -0.19479601451624384, -0.1951955036544772, -0.1956023290644769, -0.19601274471415048 ], [ -0.19531793459499697, -0.19433578397723422, -0.19318208833698103, -0.19182310438894984, -0.19021409523979488, -0.18829595808030486, -0.18599230113366844, -0.18320828304843745, -0.17983314432631847, -0.1757488014284837, -0.1708467646338358, -0.1650545085441104, -0.1583698861287972, -0.15089827717969367, -0.14288277599019794, -0.1347147685140469, -0.12691327929123364, -0.12006832742604207, -0.11475540021703967, -0.11144044918065665, -0.1104008884639579, -0.11168376851183576, -0.1151096643051292, -0.12031667455655098, -0.1268293242722917, -0.13413399143560223, -0.141744782124959, -0.14924975565574433, -0.1563346272153756, -0.16278693320803578, -0.16848664932771584, -0.17338956984460374, -0.17750848213992032, -0.18089540096829487, -0.18362653877465507, -0.1857905445141691, -0.1874798539223237, -0.1887846619934298, -0.18978893552113968, -0.1905679286174073, -0.1911867726725241, -0.19169983479825364, -0.19215064585114133, -0.1925722760932856, -0.19298807996834422, -0.1934127458524288, -0.1938535813982214, -0.19431195147982183, -0.1947847739910174, -0.19526597589524114 ], [ -0.19486337578197543, -0.19384310638076407, -0.19266671314070954, -0.19130732841161552, -0.18972632181884297, -0.18786781181682438, -0.185652703590101, -0.18297374658375942, -0.17969417272296662, -0.1756535335561777, -0.17068487173311142, -0.16464652933571466, -0.15746882761263137, -0.1492101090885129, -0.14010901891086086, -0.13061320094125017, -0.12136343494476581, -0.11312117750419787, -0.10664695326590035, -0.10255983735505603, -0.10122105969613471, -0.1026774965985161, -0.10667672984618287, -0.11273942021747313, -0.12026040921686726, -0.1286096553793593, -0.1372124753768637, -0.14559968361833353, -0.1534280840576388, -0.16047800812589635, -0.16663670973906536, -0.17187552762298008, -0.1762264495279759, -0.17976132508244141, -0.18257509845301423, -0.18477321448740447, -0.18646269921956798, -0.18774616238507397, -0.1887179611047199, -0.18946188244904544, -0.190049868274831, -0.19054146850067377, -0.1909838405046672, -0.19141219989965552, -0.19185067061413158, -0.19231348770997386, -0.19280648797446787, -0.1933287962672292, -0.19387459346881508, -0.19443484378375486 ], [ -0.194417740254558, -0.1933809617817377, -0.19221853737203254, -0.1909174251399557, -0.1894538963652706, -0.18778563404551024, -0.18584179841039777, -0.183512469469782, -0.18064051128874942, -0.1770208925812748, -0.1724141996963065, -0.1665812585162712, -0.15934275234399115, -0.15066001655393813, -0.1407209312891961, -0.1300014682097153, -0.11926663712643337, -0.10948405381103915, -0.10165384942900757, -0.09660036944445238, -0.09479837519334133, -0.09629546361941, -0.10074702621816989, -0.1075324929613542, -0.1159009277737883, -0.12510199486931067, -0.13447860945338153, -0.14351624224559095, -0.1518556720877594, -0.15928094498461204, -0.1656942606843937, -0.17108682588856233, -0.17551136086064822, -0.17905907247080627, -0.181841910947036, -0.18397976812250766, -0.1855917418188439, -0.18679046046492137, -0.1876785564491968, -0.18834657344792188, -0.18887181420302673, -0.18931783438222544, -0.18973443974717558, -0.19015813743101506, -0.19061302909034317, -0.19111212498256658, -0.19165902108599153, -0.1922498360801888, -0.1928752689880372, -0.193522623211269 ], [ -0.1939867120243005, -0.19295681194490827, -0.191848793488111, -0.19067224541161032, -0.18943014537194425, -0.1881086384338802, -0.18666248913612227, -0.1849970486524442, -0.18294980148196366, -0.18027777770402514, -0.17666072829099222, -0.17173232415685702, -0.1651499523229799, -0.15670466213276862, -0.1464547261416741, -0.13484226471193222, -0.1227336341524346, -0.1113292897495981, -0.101932968600568, -0.09564429858325285, -0.0930965923847279, -0.09434773598859725, -0.0989475939549177, -0.1061188361249803, -0.11496064022226393, -0.12461180123683552, -0.13435060921757597, -0.14363662357076196, -0.15211087026595488, -0.15957205618988013, -0.16594281606312428, -0.17123522983631573, -0.1755206135823164, -0.17890553023342176, -0.1815140928627581, -0.18347567979954577, -0.18491684005750514, -0.1859561854715756, -0.18670126483513855, -0.18724668220362412, -0.18767298833060697, -0.18804610107828945, -0.18841717556774656, -0.1888229389176715, -0.18928653048173077, -0.18981886008106752, -0.19042043554417076, -0.19108354202567102, -0.19179460167435808, -0.19253651815483092 ], [ -0.19357609843391393, -0.1925762254199443, -0.19156340041116304, -0.19058003530552892, -0.189670264040186, -0.1888681391651112, -0.18817852443392585, -0.18755022503662222, -0.18684353172796792, -0.18579894097867794, -0.18402009546771497, -0.1809901667226489, -0.17614288998623645, -0.16900120028488713, -0.1593724467056793, -0.14755009320922352, -0.13443148970954244, -0.1214506185678852, -0.11028059011931673, -0.10238655860682683, -0.09862855891080963, -0.09910363934654504, -0.10326185694075002, -0.11017594194540753, -0.118814490654166, -0.12823442267205115, -0.13767970753543252, -0.14660865226371872, -0.15467836267354956, -0.16170921708967267, -0.16764421706416527, -0.1725114400464749, -0.17639320694238092, -0.1794027539289717, -0.18166769539289873, -0.18331893248939873, -0.18448354705770847, -0.18528038082103115, -0.1858172825401339, -0.18618932086545914, -0.18647755534841226, -0.18674820051523255, -0.18705218852356204, -0.1874252254948941, -0.18788844748491623, -0.18844972913746671, -0.18910560706443919, -0.18984368195850315, -0.19064528709242667, -0.19148817536342022 ], [ -0.19319326913152352, -0.1922443761822475, -0.19136404944993185, -0.19063815101467618, -0.19016794088006506, -0.19005828627221605, -0.19039519022816404, -0.19120996281339392, -0.19242991968716527, -0.19382118671245857, -0.1949386456721497, -0.19510994260862385, -0.19348965619667674, -0.1892164176551634, -0.1816782389903338, -0.17083387562076818, -0.15746396111916322, -0.1431796696122019, -0.13007130100135889, -0.12007690395613368, -0.11438463982386798, -0.11319776360165029, -0.11591504815541037, -0.1215103673449483, -0.12887816449995054, -0.13704605041398193, -0.14526353683804466, -0.1530114350796396, -0.15997186999295732, -0.16598461425285993, -0.17100356143700407, -0.17505954854765798, -0.17823141951240806, -0.18062499539078553, -0.18235863153940007, -0.18355375527362622, -0.18432885983572406, -0.1847956883442053, -0.18505666591952563, -0.18520296881142684, -0.18531291995537508, -0.18545064553166063, -0.18566509708577839, -0.18598962603493613, -0.1864422910235895, -0.18702699797761468, -0.1877354469378688, -0.18854972658911812, -0.18944529329085513, -0.1903940214219106 ], [ -0.19284930467417266, -0.19196889804537093, -0.19125161892511267, -0.19083644354169566, -0.19089729036094155, -0.19163373359653346, -0.19324781929426427, -0.19590116738375868, -0.1996481793121609, -0.2043470810761603, -0.20956294158134897, -0.21449604418450235, -0.2179898774627964, -0.21868152046767197, -0.21533206927747817, -0.20729866568820077, -0.19498962060995295, -0.18003604358186376, -0.16493689639035347, -0.1522124317330129, -0.14352554593822375, -0.13932242300109005, -0.1390783872924285, -0.1417898453854176, -0.14637992345723227, -0.15191946248956412, -0.15770360251411214, -0.1632487696179864, -0.16825648356049205, -0.17256927458762178, -0.17613018069500863, -0.1789498940937876, -0.18108207733707177, -0.18260584373209526, -0.18361387461347922, -0.18420460712684172, -0.18447711054318777, -0.18452754848026992, -0.18444643566454322, -0.18431620767275952, -0.18420890714925314, -0.18418402759296926, -0.18428672240687932, -0.18454666293406174, -0.18497780707035266, -0.18557923098774354, -0.1863370120147399, -0.18722697614653672, -0.1882179854345662, -0.18927537198758115 ], [ -0.19256143914663193, -0.19176370526803477, -0.19123174900190593, -0.19116475272628775, -0.19182181904682727, -0.1935183090882679, -0.1966059816231795, -0.2014273572943115, -0.20823430762332718, -0.21706532384498717, -0.2275897742817103, -0.23895452119623345, -0.2497057311791504, -0.25788882756521336, -0.26141750055959084, -0.2587120498281525, -0.24943174212660052, -0.23492705464321084, -0.21798598668576968, -0.20178923101207175, -0.1886774081248525, -0.1795885793962061, -0.17432126461972852, -0.17210089032231485, -0.17202178941524587, -0.1732754114669222, -0.17522877588730995, -0.17742690113450738, -0.17956554967637556, -0.18145730688060013, -0.18300057937566044, -0.1841545617552327, -0.18492037758798335, -0.18532750646572738, -0.18542428787590104, -0.1852713017560753, -0.18493657487622656, -0.18449177401241057, -0.18400878958344996, -0.18355637013352183, -0.18319672116886332, -0.18298220665347797, -0.18295245683575112, -0.1831322617434193, -0.18353059749059403, -0.1841409972768271, -0.18494327294664087, -0.18590637013785988, -0.18699195986675432, -0.18815827702390697 ], [ -0.19235499291579883, -0.1916527199491177, -0.19132132585044903, -0.1916233267927301, -0.19290994188668242, -0.1956261679925992, -0.2002989750421425, -0.20749530104637143, -0.21773292551896084, -0.23132802819673992, -0.2481753371662691, -0.2674896689250688, -0.28759541383330134, -0.30591481123648345, -0.3193233950144406, -0.3249446205921117, -0.32121880153381444, -0.3087673574617489, -0.29039870972263065, -0.26996242617279215, -0.25073519392255667, -0.2345303523381817, -0.22183865568339473, -0.21238408856970253, -0.20558595054783174, -0.20081809489837205, -0.1975223556733412, -0.19524383863122508, -0.19363099276794266, -0.19242259913922422, -0.1914317700107277, -0.19053103526664866, -0.18963983299159903, -0.1887145236230684, -0.18774055292631953, -0.1867262090513046, -0.18569739145252878, -0.18469287218667013, -0.18375965887607165, -0.18294824856686043, -0.18230777303729007, -0.1818812479012465, -0.18170130865164208, -0.1817869024531597, -0.1821413721680763, -0.1827522129043297, -0.18359253209549836, -0.18462396524258756, -0.185800567553424, -0.1870730785680057 ], [ -0.19226371938736114, -0.19167184726509529, -0.19155344634090077, -0.19223285874085694, -0.1941530265444884, -0.19789151593704313, -0.2041608962139429, -0.2137772027460088, -0.22757282909598953, -0.24622502982116112, -0.2699769938652928, -0.2982615476893853, -0.32931548944810807, -0.35998519752862124, -0.3859948929150513, -0.40285911813757525, -0.40731980611975677, -0.3987471004955736, -0.37959721451007455, -0.354328925493397, -0.32742689746687736, -0.30202084729123224, -0.27969638747253595, -0.260940038855347, -0.2456262250030462, -0.2333498281090658, -0.22361471075150846, -0.21592953041868768, -0.20985152139707403, -0.20500299147403572, -0.20107416325794547, -0.19781956507301318, -0.19505171201803617, -0.1926339666214134, -0.1904734513953345, -0.18851430842850425, -0.18673127933859385, -0.18512342878574745, -0.18370781619084964, -0.1825130071216386, -0.18157247955283834, -0.18091818120689335, -0.18057467929920562, -0.18055445288005562, -0.1808548586900099, -0.18145713219164739, -0.18232749196561948, -0.18342007182857673, -0.18468110958870632, -0.1860536589444604 ], [ -0.1923275423553663, -0.1918673789875362, -0.19197776971946506, -0.19303912565495968, -0.19557829644601343, -0.2002960530006656, -0.2080816652803894, -0.21999667960387614, -0.23719912433325696, -0.26076737310259157, -0.2913781148792922, -0.3288173110133784, -0.37139390862515975, -0.41549900369827153, -0.4557094106717089, -0.48576353447201065, -0.500361224832889, -0.4971882947921144, -0.47801489888867077, -0.44783088422070927, -0.41250128514438944, -0.3767609961545779, -0.3435537582307509, -0.31430304687144667, -0.28942775359689304, -0.2687743978825398, -0.2519056057603222, -0.2382738979353971, -0.2273198446992345, -0.21852388508969645, -0.2114307349720046, -0.20565800782398536, -0.20089606704159807, -0.196903290794385, -0.19349916254050292, -0.1905564825708529, -0.1879932953292744, -0.18576471677675171, -0.1838546539653521, -0.18226738844556756, -0.18101910486515177, -0.1801296368898963, -0.17961490968534066, -0.17948070363766327, -0.1797183724204865, -0.18030297577465243, -0.1811939493979216, -0.18233801576785114, -0.18367366731476897, -0.18513634216172276 ], [ -0.19258719813103264, -0.192289641696186, -0.19265374320088807, -0.19410731854998836, -0.19724758790682562, -0.20287861935425872, -0.212039060626604, -0.2260018741266237, -0.24621450001361983, -0.27413001833261175, -0.3108632694487243, -0.35661361529145574, -0.4098851355737836, -0.4667694828629574, -0.5208360468142522, -0.5641331403925297, -0.5893105881227492, -0.5922498762851204, -0.5738769485376327, -0.5395915706853603, -0.4965412413694185, -0.4509975277172162, -0.40725120308430335, -0.3676975662134369, -0.3333495083257886, -0.30434847587557423, -0.2803461814750865, -0.26075735904562086, -0.24491567842133827, -0.23216414650034467, -0.22190344890461183, -0.21361427619730083, -0.2068641661679187, -0.20130557844179603, -0.19666933977091383, -0.1927558761898696, -0.18942551932476193, -0.18658846912308713, -0.18419460642395397, -0.18222320475737974, -0.18067263587787358, -0.17955033969641065, -0.17886356161708528, -0.17861155280001345, -0.17877997875181645, -0.17933811546646877, -0.18023903031176103, -0.18142244203899804, -0.18281949151784305, -0.18435838551005185 ], [ -0.19307629404868332, -0.19298222549471183, -0.19363640648525166, -0.19550416547044863, -0.19923653672325525, -0.20571453805377032, -0.21608616059519115, -0.23177797232404468, -0.2544487423891907, -0.28583108167059623, -0.32738155608851127, -0.37965005888848014, -0.441353663639811, -0.5084190674834009, -0.5736769652649097, -0.6278931918983839, -0.6621532837411962, -0.670913658204439, -0.6543072687584145, -0.617829419138641, -0.5694112278060238, -0.5164065604912759, -0.4641795072657907, -0.4160010761390681, -0.373489544483825, -0.3371372767617969, -0.3067499210939261, -0.2817628385471305, -0.26145031632508015, -0.2450547250409677, -0.23186050036999983, -0.22123209190738202, -0.21262946070609073, -0.20561027930537618, -0.19982473332120032, -0.19500653190315892, -0.19096217503608648, -0.1875595122286673, -0.1847160250191232, -0.18238698201468345, -0.18055358151458584, -0.17921134848178272, -0.17835930730225757, -0.17799069635155607, -0.17808609186844393, -0.1786096580508451, -0.1795088159376294, -0.18071702975810572, -0.1821588458684385, -0.18375598498543538 ], [ -0.19381245032509076, -0.19396911008969286, -0.19495783341815537, -0.19727151422669637, -0.20159771346289157, -0.20886580287981554, -0.22028764437117182, -0.23737375054253906, -0.26189197104340795, -0.2957130379405497, -0.3404580731763305, -0.39684483154166245, -0.4636929175661409, -0.5368458688294215, -0.6087740774961075, -0.6696547234693158, -0.7099092259307872, -0.7233594924800488, -0.7095361948523187, -0.6735009617681369, -0.6231624328976716, -0.5662740730689763, -0.5088500658680315, -0.4548457241211243, -0.40644589984562973, -0.3645354393073579, -0.32914750886925853, -0.29981694962330485, -0.2758303889277747, -0.2563897972762691, -0.24071170621035687, -0.22808203688712975, -0.21788201366510518, -0.20959622969313108, -0.20281032457794984, -0.19720302725487032, -0.19253539371274353, -0.18863877003893426, -0.18540219747085668, -0.1827595443208474, -0.1806765246382449, -0.17913787826993371, -0.17813525533529023, -0.17765664253001373, -0.17767832565101366, -0.17816025410618086, -0.17904521044788352, -0.18026150233479182, -0.18172822668551453, -0.18336175401673543 ], [ -0.19478998663181046, -0.1952435396243576, -0.19661020369275672, -0.19940059881268585, -0.20432162589958908, -0.21232237930483588, -0.22463259156491533, -0.24277515956490336, -0.2685194754200229, -0.3037200935445196, -0.34995778798157895, -0.40788621074064096, -0.47625792264630346, -0.5508984132203629, -0.6243702662989544, -0.6870765465062757, -0.7297365811603012, -0.7463008462566452, -0.735905737385023, -0.7027411471408651, -0.6539328145068897, -0.5969518177743358, -0.5379937018132199, -0.4814318692821809, -0.4299073560311303, -0.38468896282215337, -0.34608432874198153, -0.3137977674268157, -0.2872019819531085, -0.26552623414903437, -0.24797688058940465, -0.23380836688108286, -0.22236037469903697, -0.2130731556544858, -0.20548958691761782, -0.1992496275985195, -0.1940807108832837, -0.18978609363496168, -0.18623219086230924, -0.18333535118685423, -0.1810483092605027, -0.17934661863616524, -0.1782156384093061, -0.17763898124145566, -0.17758953844838737, -0.1780240933001781, -0.1788820396909117, -0.18008795502160063, -0.18155701253343792, -0.1832017540805242 ], [ -0.19597656166546956, -0.1967626244921929, -0.19853711650137013, -0.20181803760482464, -0.2073141175881738, -0.21596570917477848, -0.2289756670591243, -0.24781115610184917, -0.2741432316008198, -0.3096713845467797, -0.35575981287577807, -0.41281367361015747, -0.4794112760115861, -0.5514716469646025, -0.6220804511010949, -0.6825421735384669, -0.7245504995724541, -0.7426214066605883, -0.735642109509453, -0.7067988461451378, -0.6620448176057253, -0.6080800082899551, -0.5508448571887525, -0.4948169367322281, -0.4429119576727264, -0.3967088498774429, -0.35678795847748235, -0.3230615057731294, -0.2950440678983654, -0.27205128813672624, -0.253334223980351, -0.23816323553580182, -0.22587553827827395, -0.21589823235742345, -0.20775570387618375, -0.20106761032189135, -0.19554149735355214, -0.19096248277780542, -0.1871813318142187, -0.18410156756816132, -0.18166595528840357, -0.17984271553387388, -0.17861207982040517, -0.1779541599273185, -0.17783934789992756, -0.17822238037893517, -0.17904068638288723, -0.18021680774399879, -0.18166384396435026, -0.18329235974370495 ], [ -0.19731514019413854, -0.1984500155560065, -0.2006371864817964, -0.20439059372313673, -0.21040252251813624, -0.21957636525000512, -0.23304597880090472, -0.25216238436195665, -0.2784162614352061, -0.3132498992248167, -0.35770270938367205, -0.4118536330967021, -0.47411851001368155, -0.5406632274799303, -0.6053918606200503, -0.6608720324594906, -0.7000716490467885, -0.7182477264377309, -0.7141546738214049, -0.6900669603795755, -0.6507252822263191, -0.6018246524787678, -0.5487260640522899, -0.4957150129653632, -0.44576996989590245, -0.4006586725921053, -0.36118547826324254, -0.3274704200885275, -0.2991974088071159, -0.27580830598949424, -0.25664149452460083, -0.24102332825250117, -0.22832359333170088, -0.2179854434146437, -0.20953828423378634, -0.20259986210023, -0.19687183248486217, -0.192131512349761, -0.18822137589950916, -0.18503711377944349, -0.1825147095046709, -0.18061695726181787, -0.17932008147116213, -0.17860147863102038, -0.17842986501945268, -0.17875904402245107, -0.1795259858745329, -0.1806530533265015, -0.1820533307455624, -0.18363747214266912 ], [ -0.19873102186914476, -0.2002062407731522, -0.2027792788471574, -0.2069476684676254, -0.21336889075336457, -0.22288302862392495, -0.23651876626508395, -0.255464351919536, -0.28097580751336526, -0.31418622646423305, -0.35578134759293567, -0.40553684889128067, -0.4617969402981136, -0.5211080902824254, -0.5783142720842606, -0.627318129752584, -0.6623911300427058, -0.6795767983368748, -0.6776214554172187, -0.658071872188985, -0.6245776691116842, -0.5817868301816126, -0.534306333694378, -0.48601379555932095, -0.4397614409340749, -0.39737220874579204, -0.3597975995766852, -0.32733387437286804, -0.29983345312986437, -0.2768815743800004, -0.25792965611546376, -0.24238814000129139, -0.22968626122551677, -0.21930706790800253, -0.2108050873012458, -0.20381245848494722, -0.1980377233766562, -0.19326006033149956, -0.18932065743397375, -0.1861121821538465, -0.18356691081530147, -0.18164401771135835, -0.18031673042489332, -0.17956039906339738, -0.17934278346652538, -0.17961779636039976, -0.18032342903086046, -0.18138373646763972, -0.1827138875372391, -0.18422674066801215 ], [ -0.20014212875337523, -0.2019237311266282, -0.2048244272698218, -0.20931317303562375, -0.2159960528917958, -0.22562833190089499, -0.23910769168917073, -0.25743243368123714, -0.28160264003314733, -0.3124398704919613, -0.3503097103874729, -0.3947634046352907, -0.4441783397557625, -0.49555557385807797, -0.5446653490775735, -0.5866461775278163, -0.6169622086503621, -0.6324184033880825, -0.6318602278849262, -0.6163019096012334, -0.5884790760051168, -0.5520634402140144, -0.5108614724308662, -0.4682253940748447, -0.4267464814901063, -0.3881865360147073, -0.3535609760604833, -0.3232927500553245, -0.29738060351260864, -0.27555012520614647, -0.2573744652695838, -0.2423628804486777, -0.23002092392852935, -0.2198881473033497, -0.21155922489662582, -0.20469351996965646, -0.1990169223319978, -0.194318633354369, -0.1904446185957131, -0.18728876270501316, -0.18478237713959472, -0.18288262973670716, -0.18156063891862184, -0.18079027899016314, -0.18053897069751695, -0.18076165988191084, -0.181398701400382, -0.1823775642311804, -0.18361744993701462, -0.18503539428239574 ], [ -0.20146995262389772, -0.20350235684470297, -0.20664768891209623, -0.21133586922427594, -0.2181089061708804, -0.22762332228000487, -0.2406332010139391, -0.25794075992890886, -0.2802988202017004, -0.30825141777903964, -0.34191050176104465, -0.38069397700413327, -0.4230929664645854, -0.4665774572152271, -0.5077541264588988, -0.5428262260534745, -0.5682819866247466, -0.5816154479675545, -0.581836728385346, -0.5695962549164392, -0.5469041361823007, -0.5165863280457085, -0.48168990739939715, -0.44500761060775296, -0.4087946341540325, -0.37466723477431996, -0.3436311638691566, -0.31618182785640586, -0.29243011301804395, -0.2722245229938759, -0.25525469637047415, -0.24113133727167674, -0.2294433748555746, -0.21979587538768097, -0.21183300349000778, -0.2052500493932689, -0.19979779351242333, -0.19528162045116199, -0.19155701785145735, -0.18852250724878306, -0.18611070988854705, -0.1842781668550929, -0.1829946735307475, -0.18223314219853104, -0.18196119037461622, -0.18213557067364056, -0.18270011224583732, -0.1835871223475649, -0.18472145533212686, -0.18602597840428114 ], [ -0.20264873228585156, -0.20486177618419305, -0.20815436645337276, -0.21290993434417865, -0.2195990747759186, -0.22877436120313654, -0.24104677113480372, -0.25703405584666233, -0.27727123875967224, -0.3020775147067646, -0.3313852441639381, -0.364557304276406, -0.40024535630899805, -0.4363611435024095, -0.4702264711973687, -0.49892177780781544, -0.5197770534563659, -0.5308761688059185, -0.5314180999661009, -0.5218196214141906, -0.5035404465928398, -0.4787139689453961, -0.4497192232016725, -0.41881403065634093, -0.3878929281981506, -0.35837672440175616, -0.33120592246193287, -0.3068991887640851, -0.28564198844681576, -0.26738050100804717, -0.25190622399422113, -0.2389247119448077, -0.22810714919331931, -0.21912633813861238, -0.21167989460621983, -0.20550362475923672, -0.2003777008454763, -0.1961276824449691, -0.19262184955139428, -0.1897658465351164, -0.1874953522898951, -0.18576741844526345, -0.1845512276201281, -0.18381922272032397, -0.1835396918742651, -0.18367180114924364, -0.1841636717505829, -0.18495347629915648, -0.1859728914822779, -0.18715182556463333 ], [ -0.20363132285159874, -0.20594852286762694, -0.2092879613748585, -0.21398274860086614, -0.22043030060456853, -0.22908198476483738, -0.2404164807088614, -0.2548903319906032, -0.2728604057329738, -0.2944776622807903, -0.31956119913257036, -0.34747582835050994, -0.3770517273962831, -0.4065926194141406, -0.4340091991538002, -0.4570820364047032, -0.4738104586725386, -0.482761344756185, -0.4833179074992053, -0.47575564508419227, -0.46113169953003275, -0.4410366469490155, -0.41729338302218444, -0.39168399709958024, -0.36575442045009576, -0.3407103009435741, -0.3173915613824782, -0.2963014753788614, -0.27766549521636885, -0.26150022049679794, -0.2476796363642706, -0.2359917374427965, -0.22618300957829535, -0.2179909380681182, -0.21116608743314957, -0.20548577278847885, -0.20076128254212294, -0.19684029085479898, -0.19360570493058432, -0.19097185055320431, -0.18887868468861946, -0.18728466806842825, -0.18615901447483807, -0.18547417996395044, -0.18519954104964298, -0.18529711176299496, -0.18571981015928074, -0.1864122689827286, -0.1873136591531982, -0.18836164176956138 ], [ -0.20439134700996764, -0.20673760901366772, -0.21003020653678756, -0.21455158395556173, -0.22062895382417042, -0.22862110243349176, -0.23889157069886446, -0.25176420617110773, -0.2674589087060024, -0.28600973421002956, -0.3071748464945208, -0.3303572667151366, -0.3545638622755818, -0.3784321669517929, -0.4003448247103355, -0.4186280609967685, -0.43179988945333236, -0.43880931019088554, -0.43920308355808424, -0.43317630954597963, -0.4214993800799036, -0.4053510912265043, -0.3861100338033486, -0.3651568586077615, -0.3437235381700271, -0.32280365335609484, -0.30311968024757036, -0.28513327253969534, -0.26908193988352463, -0.25502759044621315, -0.24290642915215815, -0.23257384619201932, -0.22384128035417278, -0.21650433830530225, -0.21036278878134718, -0.20523366302745105, -0.20095882881697008, -0.19740827622050705, -0.19448011898644685, -0.1920980886922265, -0.19020715160212998, -0.1887678423386816, -0.18774997127412513, -0.18712646409982575, -0.18686813846636668, -0.18694012311423908, -0.18730034282305724, -0.18790007916320595, -0.18868619782072366, -0.18960434574141127 ], [ -0.2049221437711637, -0.20722977493015254, -0.2103954161102652, -0.21465331116504738, -0.22026676957040553, -0.22751401840212077, -0.2366631672661011, -0.24793410195972393, -0.26144701667804404, -0.2771608998063472, -0.2948106086731277, -0.31385726069231645, -0.3334712298193006, -0.35256659764299997, -0.36989721409849907, -0.384207268225787, -0.39440878313575545, -0.3997447420320802, -0.39989768097273054, -0.3950191838292508, -0.3856783803188836, -0.3727486031483951, -0.35726408049722835, -0.34027980317271733, -0.3227592611095115, -0.3055019056620178, -0.289110428320188, -0.27399033795732936, -0.26037127805970234, -0.2483398718051651, -0.23787603382942069, -0.22888735738201738, -0.22123859591112127, -0.21477507301372334, -0.20934002741465257, -0.20478653099975502, -0.20098485966185176, -0.1978261986384916, -0.19522345155714582, -0.19310979025671865, -0.19143549347964478, -0.19016360575233587, -0.18926499510090122, -0.18871345516470667, -0.1884815156230364, -0.18853753149074193, -0.18884439434425543, -0.18935988698888384, -0.19003837871518986, -0.19083333071633085 ], [ -0.2052335333916671, -0.2074461044330413, -0.2104219405180338, -0.21435144862636674, -0.21944215773933523, -0.22590494535141276, -0.2339318809288783, -0.24366470440996107, -0.2551546538545497, -0.2683171628769486, -0.2828886938467367, -0.2983968496891519, -0.3141572800765841, -0.32930946461577904, -0.3428961534135473, -0.35397821913632965, -0.3617624624242541, -0.36571249011177176, -0.36561719597109865, -0.36160447456094824, -0.3541022604011439, -0.3437601450541222, -0.3313511143539583, -0.3176737233594811, -0.3034707669381188, -0.28937334465715486, -0.27587195509264206, -0.2633109222259552, -0.25189974762950595, -0.24173453275213624, -0.23282359983794454, -0.2251130406390257, -0.21850955456692522, -0.2128992844807161, -0.20816230931692947, -0.20418302675468952, -0.2008569361535134, -0.19809441003298134, -0.19582201321540826, -0.19398186674827156, -0.1925295101051363, -0.19143071430405045, -0.19065773561544758, -0.1901855426062719, -0.1899885508241259, -0.1900383173864117, -0.19030246959873676, -0.1907448978676045, -0.19132699818509746, -0.19200957347665676 ], [ -0.20534750434411841, -0.20742165914686822, -0.21016309492436647, -0.21372375794441717, -0.21826408714233836, -0.2239404216617954, -0.23088614553734998, -0.23918631955600483, -0.24884695329068074, -0.25976217269149054, -0.2716851316227613, -0.28421097161574765, -0.2967812987145989, -0.3087179367119793, -0.3192877390583679, -0.3277903132531138, -0.33365046682523786, -0.3364934322652728, -0.3361866741570513, -0.33284310418183055, -0.32679004777818527, -0.31851378066248, -0.308591828550862, -0.2976252490864508, -0.2861808962098694, -0.27474980320173414, -0.26372354520964997, -0.2533869454730429, -0.24392339208301428, -0.2354283366840249, -0.22792688020769647, -0.22139223969094335, -0.2157629361818661, -0.21095748974482503, -0.20688613156208668, -0.2034595208662519, -0.20059471916169408, -0.19821878477190835, -0.19627037056895102, -0.19469969199579712, -0.1934672206277846, -0.19254146964992325, -0.19189626877936072, -0.19150795505681312, -0.19135290026007518, -0.1914057282906232, -0.19163844050127188, -0.19202048606112704, -0.19251963293176844, -0.19310336129013855 ], [ -0.2052937376284807, -0.2071993562815408, -0.20967909378490462, -0.21285211667629245, -0.21684016414670276, -0.2217565334425332, -0.22769050533911445, -0.23468736878520752, -0.2427253122300591, -0.2516919894427895, -0.2613653461461415, -0.2714048349732596, -0.28135962155622674, -0.2906986785092273, -0.2988628463833921, -0.305331457991161, -0.309689137461691, -0.3116767779873102, -0.3112163775829946, -0.3084083074550803, -0.30350607097673993, -0.29687615119693456, -0.2889508554276987, -0.2801814922630069, -0.2709979005839598, -0.2617782798455688, -0.2528308503096844, -0.24438670447092742, -0.2366017346752738, -0.229564860168383, -0.22330979779127258, -0.21782807483995947, -0.2130816203640597, -0.20901390535278924, -0.20555912474485916, -0.20264928474749982, -0.20021928412350698, -0.1982101904556341, -0.1965709538608636, -0.19525881066056683, -0.1942386371874537, -0.1934815332758099, -0.19296294378110673, -0.1926606489545794, -0.19255294877188095, -0.19261731502105056, -0.19282968538644174, -0.1931644422856068, -0.19359498663788716, -0.19409471621464197 ], [ -0.20510557980380922, -0.20682479822283834, -0.20903070442522853, -0.21181518785508385, -0.21526888351181883, -0.21947185045105916, -0.22448100930684406, -0.2303147020472197, -0.23693558913248897, -0.24423421184321364, -0.25201675412079394, -0.2600014751732437, -0.26782834523166854, -0.2750848225208645, -0.28134690139650426, -0.28622909485153725, -0.2894323749755976, -0.290778690393233, -0.29022548253466063, -0.2878603833587621, -0.28388080810407995, -0.27856438457073585, -0.27223562804791207, -0.2652333803982528, -0.25788257649857943, -0.2504727372986936, -0.24324424420724244, -0.2363821666674572, -0.23001645057386205, -0.22422675715476797, -0.21905014818030477, -0.21449002642472204, -0.21052511457837142, -0.20711766528238568, -0.20422045512203135, -0.20178238535350485, -0.1997526860532879, -0.19808381526394925, -0.19673318816298058, -0.19566389128719908, -0.19484455433849635, -0.1942485766927624, -0.19385293491013494, -0.19363681938242194, -0.19358034731456514, -0.1936635640804168, -0.19386587462712962, -0.1941659528320424, -0.1945420807654356, -0.1949727944654166 ], [ -0.20481678208383491, -0.20634233203762153, -0.20827474607357727, -0.21068367874179983, -0.21363525024682528, -0.21718436170953243, -0.22136476520942705, -0.22617733296387948, -0.23157761248095005, -0.23746454672780426, -0.24367303887539582, -0.249973568342919, -0.25608187694141854, -0.26168032331223995, -0.2664495853194218, -0.2701055656239242, -0.27243345284453957, -0.27331108146609767, -0.2727174019591904, -0.2707267214880875, -0.2674925664212279, -0.2632257369465704, -0.2581704302034412, -0.25258136461711567, -0.24670403914497413, -0.2407595253198554, -0.23493442735617331, -0.2293759077607398, -0.2241910834404794, -0.21944973975939874, -0.21518920288378646, -0.2114203056097686, -0.20813359872500775, -0.20530521841075317, -0.20290205899547553, -0.20088608495794674, -0.19921773719958924, -0.1978584557682474, -0.1967723738827032, -0.19592725702074887, -0.19529478121970717, -0.19485027256299137, -0.19457206151069562, -0.19444063099094738, -0.19443774396785424, -0.19454571626186096, -0.19474695332657022, -0.19502380404940167, -0.1953587153631205, -0.19573461455141444 ], [ -0.20445910060022604, -0.20579233499528182, -0.20746124120872705, -0.20951768661233072, -0.21200882618691652, -0.2149709062327269, -0.21842155954903963, -0.22235104636409792, -0.22671337095294186, -0.23141875602628076, -0.23632946654941506, -0.2412612253270866, -0.24599214398983382, -0.2502798916834584, -0.2538856744696836, -0.2566010440633151, -0.2582718454383884, -0.25881402598126174, -0.2582186425006493, -0.2565467222082276, -0.2539168618484304, -0.25048897531684683, -0.2464470345983224, -0.24198282444870844, -0.23728204611022446, -0.23251357230312109, -0.22782218913477076, -0.22332473473420972, -0.21910919649457378, -0.21523610610600652, -0.21174149298006018, -0.20864070431302995, -0.20593253088412744, -0.20360324130108248, -0.20163028093061097, -0.1999855086721562, -0.19863791712724954, -0.19755581707169756, -0.19670848166235205, -0.1960672566674268, -0.19560616193598318, -0.19530203937580176, -0.19513433862688484, -0.19508466304683425, -0.19513621473390974, -0.1952732711444109, -0.19548079702012716, -0.19574425023159608, -0.1960495897412109, -0.19638344999834878 ], [ -0.20406071430090117, -0.20520957610509577, -0.2066319079928287, -0.20836560386395792, -0.21044342259607662, -0.21288809085618832, -0.2157064314377844, -0.21888294122755536, -0.22237358709475835, -0.2261009606755876, -0.22995223651977037, -0.23378145201996609, -0.237417267020349, -0.24067640001766083, -0.24338142037786198, -0.24537994072081087, -0.2465613022856476, -0.2468672825114131, -0.2462951323444183, -0.2448934493377995, -0.24275292275339988, -0.23999441245627562, -0.23675645048657834, -0.23318361903933837, -0.2294166946401151, -0.22558502885926884, -0.22180131719312285, -0.21815864972535537, -0.21472953714997378, -0.21156648026309088, -0.20870361070397486, -0.20615896767695524, -0.20393706457503447, -0.20203150766815198, -0.2004275257424108, -0.19910433526601118, -0.1980372957032755, -0.19719981283337445, -0.1965649408275031, -0.19610663286015168, -0.1958006052233779, -0.19562481201724796, -0.19555956906445604, -0.19558740507062505, -0.1956927440943596, -0.19586152931833856, -0.19608088328199735, -0.1963388692401788, -0.19662438084144535, -0.196927152205929 ], [ -0.20364534617650132, -0.20462245019512054, -0.20581967651782906, -0.20726414001829635, -0.20897789128441635, -0.21097411823151435, -0.21325275090743573, -0.21579584231345927, -0.21856333996611804, -0.22149010372235584, -0.22448518849126725, -0.22743438327192866, -0.23020665559035564, -0.23266442116782926, -0.2346765279666942, -0.23613183320759712, -0.23695074931784493, -0.23709250938655207, -0.23655707733963582, -0.23538205234815218, -0.2336359492045461, -0.2314095796750414, -0.22880704771799903, -0.225937423242127, -0.22290772079635007, -0.21981747376300764, -0.21675495569923425, -0.21379493008741146, -0.2109976933945733, -0.20840911401236406, -0.20606136306352152, -0.20397407527132116, -0.20215575097626176, -0.20060528902021318, -0.19931360085194733, -0.19826528420775308, -0.19744032916062892, -0.19681580221360923, -0.19636742449328576, -0.196070945796692, -0.19590322692773054, -0.19584297726273892, -0.19587114282011692, -0.1959709884315466, -0.19612795354524448, -0.19632937748349433, -0.196564185704508, -0.19682260822615893, -0.1970959723972071, -0.19737658267747227 ], [ -0.20323194720164467, -0.20405287729984123, -0.20504894844229277, -0.206239115569179, -0.20763763923421957, -0.20925119196617986, -0.2110756264071746, -0.21309271798609325, -0.21526735903688632, -0.21754582842857695, -0.21985583413343512, -0.22210895150168153, -0.2242057879826671, -0.22604367645059215, -0.22752602172264502, -0.22857181753957023, -0.2291235995600845, -0.22915239049007396, -0.2286589553439588, -0.22767159503607576, -0.2262413919688041, -0.22443608754856198, -0.2223336662810999, -0.2200164235740953, -0.21756597086648438, -0.21505936767922573, -0.21256638255123406, -0.2101477618549646, -0.2078543147725881, -0.20572659855581038, -0.20379500677680296, -0.20208011581907487, -0.20059321459493168, -0.19933700716135977, -0.19830651653321063, -0.19749021867130095, -0.19687140069139686, -0.19642968274161215, -0.1961425916936566, -0.19598704724450056, -0.1959406273662741, -0.19598251747109818, -0.1960941034168342, -0.19625922605985546, -0.1964641603294835, -0.19669740674674885, -0.19694938681927565, -0.19721212009440514, -0.19747893698084074, -0.19774425522120165 ], [ -0.20283480093765033, -0.20351667733057055, -0.20433636285784962, -0.20530675532732073, -0.20643658668579823, -0.20772825615139567, -0.20917549490197318, -0.21076111451562274, -0.2124551983848812, -0.2142141790915994, -0.21598126549261082, -0.21768859522031675, -0.21926125711116629, -0.22062295913725977, -0.2217026834518211, -0.22244131300427616, -0.22279709615052956, -0.2227490283242589, -0.22229771876287152, -0.2214638873640674, -0.22028508620866566, -0.2188114380431958, -0.21710113984202556, -0.21521628968874057, -0.21321936532756597, -0.21117048069303535, -0.20912539807047048, -0.20713417940182965, -0.20524031485332755, -0.20348016486665255, -0.20188258771212692, -0.20046868749390245, -0.19925169000905735, -0.19823701332103483, -0.19742262554726453, -0.19679976336595484, -0.1963540260211063, -0.19606678109747944, -0.19591674741360865, -0.19588158072311324, -0.19593929056525378, -0.19606935732114233, -0.19625348176752755, -0.19647596586041693, -0.1967237770865234, -0.1969863806694221, -0.19725543301572396, -0.19752442046630236, -0.19778830685509552, -0.19804322891250264 ], [ -0.20246391780655099, -0.20302425415565628, -0.20369186978780973, -0.20447525826269553, -0.20537933632475303, -0.20640384731438977, -0.20754170167136238, -0.20877745099733186, -0.2100861588862737, -0.21143297495836216, -0.21277371196505696, -0.21405664305234084, -0.21522556296484724, -0.21622390711727063, -0.2169994501158587, -0.217508898883833, -0.2177216455964176, -0.2176220957902928, -0.21721029901413075, -0.21650097372663718, -0.21552130989009644, -0.21430807396099366, -0.21290452724281395, -0.21135754957425434, -0.2097152005291673, -0.20802479908419574, -0.20633148591742084, -0.20467715873455722, -0.20309964090053884, -0.2016319548618039, -0.20030161887851594, -0.19912995701035058, -0.1981314891940616, -0.1973135266900552, -0.1966761162627042, -0.1962124434304368, -0.1959097277329651, -0.19575054473840775, -0.1957144220097075, -0.195779506342388, -0.1959240993321652, -0.19612790225262672, -0.19637288122784174, -0.19664373785900613, -0.1969280310021197, -0.19721603275066746, -0.19750041468028628, -0.19777585379407447, -0.19803862878808098, -0.19828625365606 ], [ -0.20212560521760797, -0.20258144960837055, -0.20311994764632574, -0.20374646020012122, -0.20446335610437755, -0.20526885320683153, -0.20615585736885267, -0.20711094790990625, -0.20811369756453663, -0.20913653396920479, -0.2101453315379756, -0.211100853166394, -0.21196103652068282, -0.21268395444501864, -0.2132311108066085, -0.2135706155708359, -0.2136797659288016, -0.21354666399263628, -0.21317070019067785, -0.21256196104078867, -0.21173980773020135, -0.2107309693884129, -0.2095674937875729, -0.20828482326173242, -0.20692015316111012, -0.20551111831699864, -0.20409476228163398, -0.20270668635545147, -0.20138025577637214, -0.2001457597612279, -0.19902947618906675, -0.19805266909666602, -0.1972306279202452, -0.19657191618916497, -0.19607801095043287, -0.19574347145159138, -0.19555668452351416, -0.1955011209827982, -0.1955569371582389, -0.19570269784104755, -0.19591699449775463, -0.1961797790375298, -0.19647330868012847, -0.19678267755097578, -0.19709597633764203, -0.19740416258286547, -0.19770073984617975, -0.19798133906615606, -0.19824327767733713, -0.1984851489211994 ], [ -0.20182311992192076, -0.20219045549834957, -0.2026208354271286, -0.20311744500386253, -0.20368101879025502, -0.2043090105656512, -0.20499479248224806, -0.20572699272400785, -0.20648910306884816, -0.20725949326878002, -0.20801194827484343, -0.20871679011616168, -0.20934255933107637, -0.20985812364397483, -0.21023497902508348, -0.21044944236119845, -0.2104844329099203, -0.21033061032471662, -0.20998676341196132, -0.20945948822904353, -0.20876231395212358, -0.2079144999913109, -0.20693973004430816, -0.20586488008319526, -0.2047189600624772, -0.2035322464807537, -0.20233555306436635, -0.20115954224201743, -0.2000339684665598, -0.19898676907691476, -0.19804297656303638, -0.1972235067171087, -0.19654395993827223, -0.1960136316688778, -0.1956349385082149, -0.19540341756236962, -0.19530835676058989, -0.1953339912108718, -0.19546109223646047, -0.19566871268744718, -0.1959358479572308, -0.19624281985357578, -0.19657226873811512, -0.19690972292505693, -0.19724378317358482, -0.1975660037856058, -0.19787056923485913, -0.19815386158982617, -0.19841399706144236, -0.19865038739525465 ], [ -0.2015573303312455, -0.20185069965288716, -0.20219168520093317, -0.20258200146791217, -0.20302138965187028, -0.2035070300749326, -0.20403299653670576, -0.2045898312297394, -0.20516433023767738, -0.2057396284854105, -0.20629565375693037, -0.20680997908577176, -0.20725904373175552, -0.20761964447539066, -0.2078705371505678, -0.20799395203008902, -0.2079768306039459, -0.2078116389723526, -0.20749669351475786, -0.20703602525896037, -0.20643888509421493, -0.20571903384924778, -0.20489396272100574, -0.20398415606680387, -0.20301245327511985, -0.20200350481904605, -0.20098326403097172, -0.19997842241327152, -0.19901569118006623, -0.19812085990410877, -0.19731762302069045, -0.1966262460612988, -0.196062225801532, -0.19563515579128493, -0.19534801690156867, -0.19519706025760014, -0.19517234625705915, -0.19525887681241544, -0.19543814612333982, -0.19568986976082292, -0.19599364628591992, -0.19633035292547668, -0.19668315538179348, -0.19703809615490853, -0.19738429555722192, -0.19771384435183276, -0.19802148548412912, -0.19830417981884751, -0.19856063486379394, -0.19879085364331905 ], [ -0.2013273374728446, -0.2015596489080237, -0.20182757406602053, -0.20213186417235607, -0.20247170346344906, -0.20284429725247488, -0.20324450390989246, -0.20366456621524204, -0.20409400271891764, -0.2045197158684645, -0.20492635773099488, -0.20529696524639868, -0.20561383758049684, -0.2058595849906349, -0.20601824179096356, -0.2060763164895804, -0.20602365786731874, -0.2058540477999216, -0.20556548283995296, -0.2051601634303234, -0.2046442568303219, -0.2040275255819698, -0.20332291268108915, -0.20254614991582326, -0.20171541490649803, -0.20085101581876774, -0.1999750417680392, -0.19911089215315086, -0.19828259832345108, -0.19751388132161984, -0.19682694899546488, -0.19624111475687156, -0.19577139943864885, -0.19542733180655203, -0.19521216919303513, -0.19512270673141274, -0.19514974077684366, -0.19527912711356882, -0.1954932640331567, -0.19577276504029045, -0.19609807917518507, -0.19645086198765765, -0.19681497619456112, -0.1971770832351708, -0.19752685553028404, -0.19785688381297362, -0.19816237309221096, -0.1984407194271422, -0.19869104510384988, -0.19891374921935712 ] ], "zauto": true, "zmax": 0.7463008462566452, "zmin": -0.7463008462566452 }, { "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.28343994355467483, 0.28343831766259614, 0.2834359463304677, 0.2834325120261773, 0.28342758045169697, 0.28342057059003295, 0.2834107255374331, 0.2833970905357979, 0.28337850820719296, 0.2833536448179619, 0.28332106435736454, 0.28327936744087595, 0.2832274070073522, 0.2831645798389674, 0.2830911706299467, 0.28300869529715916, 0.2829201591613724, 0.28283012594432994, 0.2827445008718178, 0.28266997777124214, 0.2826131853192217, 0.28257967102948917, 0.28257294479677453, 0.2825938254107141, 0.28264027157976646, 0.28270774817937094, 0.2827900270873462, 0.28288020919750906, 0.28297171966572227, 0.283059074579018, 0.2831383135374928, 0.28320709589865206, 0.2832645342599245, 0.28331087274429184, 0.28334711414215324, 0.2833746735156126, 0.28339510220854813, 0.2834098965872901, 0.28342038554597027, 0.28342768034117466, 0.28343266750633006, 0.28343602748498176, 0.2834382656225566, 0.2834397464923084, 0.28344072624299294, 0.2834413803940877, 0.2834418262871761, 0.28344214041759974, 0.28344237134850025, 0.28344254905399435 ], [ 0.2834383678953297, 0.28343599896329297, 0.2834325434815679, 0.2834275333964107, 0.2834203233981038, 0.2834100419830843, 0.28339554135223977, 0.2833753553674684, 0.28334768070154587, 0.2833104031091092, 0.283261196869811, 0.2831977280084328, 0.2831179865386876, 0.28302075457631487, 0.28290618173385707, 0.2827763873475745, 0.2826359502513996, 0.2824921020547643, 0.2823544392546923, 0.28223404075747627, 0.2821420268789011, 0.2820877909049847, 0.2820773020190111, 0.2821119331308438, 0.2821881583942204, 0.28229821728376736, 0.28243155228382155, 0.28257661612901497, 0.28272259031212343, 0.2828606581304691, 0.28298466559049473, 0.2830911946958757, 0.28317920287771003, 0.28324942937464603, 0.28330374950539955, 0.2833446021005115, 0.28337455316902926, 0.2833960086649613, 0.28341105781880116, 0.28342141459810555, 0.28342842337302965, 0.28343310020607115, 0.2834361889835451, 0.28343821914943484, 0.28343955781674496, 0.28344045321058975, 0.2834410689529766, 0.28344151003963414, 0.283441841899666, 0.28344210400596104 ], [ 0.28343608818934996, 0.2834326593531955, 0.28342766414842735, 0.28342042356933034, 0.2834099950738641, 0.2833950950331305, 0.28337401597498335, 0.28334455139941345, 0.2833039502930301, 0.2832489349006059, 0.2831758268255436, 0.2830808339032335, 0.28296054654457453, 0.28281266813329403, 0.2826369506485146, 0.2824362210166975, 0.2822172771498769, 0.2819913385495161, 0.2817737096582412, 0.2815824140283126, 0.2814358107956112, 0.28134956510663395, 0.2813336770291014, 0.2813904043104476, 0.28151372817229275, 0.2816905456193215, 0.2819032207807199, 0.28213273702233516, 0.2823616136103332, 0.2825759697074081, 0.28276648768618784, 0.2829283736839058, 0.2830606246300554, 0.2831649657363746, 0.2832447627714302, 0.283304102518288, 0.2833471245678346, 0.2833776062063497, 0.2833987564101001, 0.2834131588279749, 0.2834228065173001, 0.28342918321072463, 0.28343336007229175, 0.2834360893983594, 0.2834378860471337, 0.2834390934806, 0.2834399347823994, 0.28344055065779106, 0.2834410269301682, 0.28344141395011074 ], [ 0.28343279250544995, 0.2834278560540198, 0.2834206841889646, 0.28341030734329004, 0.2833953724280125, 0.2833740236125385, 0.2833437706221351, 0.2833013616236998, 0.2832426919729933, 0.2831627983767601, 0.28305600804687014, 0.28291632847233295, 0.28273816506431015, 0.28251742572795374, 0.28225299581928437, 0.2819484325332027, 0.2816135441083531, 0.28126533443872925, 0.28092770218922064, 0.2806294042869037, 0.28040020500767326, 0.2802657803760362, 0.28024259642898613, 0.2803342792230292, 0.28053068657599756, 0.28081002548547906, 0.2811433205312194, 0.2814998249791177, 0.2818518720669163, 0.282178126613125, 0.282464900812607, 0.2827058061260354, 0.28290033982055157, 0.28305204400917416, 0.2831667291412372, 0.2832510443671829, 0.28331149061050037, 0.28335384703444527, 0.2833829199634782, 0.2834025090232503, 0.2834154981811423, 0.2834240031190262, 0.2834295306016163, 0.283433125216837, 0.2834354926780993, 0.28343709735792794, 0.28343823618338815, 0.2834390928399969, 0.2834397765224004, 0.2834403490221109 ], [ 0.28342802889023494, 0.28342095010924634, 0.2834107090430903, 0.28339594240220406, 0.28337474081186315, 0.2833444709737314, 0.2833015734362863, 0.28324135804004597, 0.28315783989967197, 0.2830436866532407, 0.2828903802062998, 0.2826887261735176, 0.2824298572143847, 0.28210684885295784, 0.2817169672225169, 0.2812643695708074, 0.2807627789503232, 0.2802373145234123, 0.27972442880081155, 0.2792690069184006, 0.2789183133378992, 0.2787136026929553, 0.278681448638682, 0.27882750401306605, 0.2791349199750241, 0.27956806039884846, 0.28008020956736346, 0.28062268999351403, 0.28115274090828596, 0.28163846398673015, 0.2820604529547621, 0.28241075382045966, 0.2826902683204603, 0.28290567515929865, 0.2830666273444627, 0.2831836093469319, 0.28326653828409293, 0.2833240127892483, 0.2833630388091677, 0.2833890580286137, 0.2834061368688762, 0.2834172167640692, 0.2834243654541754, 0.28342899859902687, 0.2834320604916844, 0.2834341638170336, 0.2834356937166926, 0.28343688312033855, 0.2834378660724422, 0.28343871473226856 ], [ 0.28342114364452003, 0.28341101860882106, 0.28339645206492814, 0.2833755550468007, 0.2833456780795588, 0.28330315368786235, 0.2832429963803813, 0.2831585879092777, 0.2830414051705428, 0.28288088883365897, 0.2826646003172087, 0.2823788647285872, 0.28201012944131226, 0.28154724910136125, 0.28098478913233244, 0.28032716613549574, 0.279592985778051, 0.2788183546589437, 0.2780574487393774, 0.27737860858417845, 0.27685512324116046, 0.276551761034916, 0.27651040054658127, 0.2767395154847311, 0.2772115514891121, 0.27786935114145883, 0.2786392126542899, 0.2794459170338709, 0.2802251604612467, 0.28093075420202895, 0.2815363213604217, 0.28203288335403653, 0.2824243134874165, 0.28272238577093856, 0.2829425221059847, 0.28310071008304133, 0.28321161138201595, 0.2832876400508994, 0.28333871453748266, 0.28337241037212596, 0.28339430552704203, 0.28340838161566967, 0.2834174034287839, 0.28342324139123914, 0.2834271275778914, 0.2834298497708802, 0.2834318937995272, 0.28343354548068184, 0.2834349622736739, 0.28343622277173836 ], [ 0.2834111962420828, 0.2833967316816164, 0.28337606153405, 0.28334660376364545, 0.2833047407648383, 0.28324545732204764, 0.2831619098818866, 0.2830449616515406, 0.282882759354755, 0.28266048512469144, 0.28236048848590584, 0.2819630791331138, 0.28144831947296145, 0.2807991550896493, 0.2800060928191813, 0.27907328755244515, 0.27802524885565155, 0.2769124481640667, 0.2758131653945527, 0.2748285844263428, 0.27406926743123816, 0.2736341597069228, 0.27358738817387324, 0.27394097429047337, 0.2746506326029203, 0.275626703254466, 0.2767558011122749, 0.2779249247405282, 0.279040399902776, 0.28003779010382757, 0.28088302111346036, 0.281567487237584, 0.28210047815625566, 0.2825015563209113, 0.28279437911986766, 0.28300246560246783, 0.2831467719105768, 0.2832446494709949, 0.28330970834612074, 0.28335218147701235, 0.2833795009084183, 0.28339690721149463, 0.28340799840472064, 0.2834151814409694, 0.2834200223026504, 0.28342350676475997, 0.28342622931602, 0.28342852743403807, 0.2834305756377158, 0.28343245039534554 ], [ 0.2833968462280829, 0.28337618552818644, 0.28334688145216186, 0.28330544701671084, 0.28324701718367523, 0.28316485436848776, 0.2830497487661453, 0.2828893561451436, 0.2826675734830726, 0.2823641333421986, 0.28195469708654486, 0.28141183255934815, 0.28070734843600653, 0.27981647801636356, 0.27872427618374296, 0.2774341831647103, 0.2759778601115754, 0.2744240424596195, 0.2728825462915444, 0.2714985860331097, 0.27043371663827986, 0.2698342272899731, 0.26979485754606874, 0.27033126797227797, 0.2713736476268331, 0.27278495047700635, 0.2743958283173142, 0.2760420408647824, 0.27759209791102557, 0.2789599295646459, 0.2801041795779437, 0.2810192178263532, 0.2817231833534707, 0.282246806280727, 0.28262485916521396, 0.28289063351351024, 0.28307301590512096, 0.2831954339828124, 0.28327595403618205, 0.2833279657694574, 0.2833610743913208, 0.28338197931212067, 0.28339523381252807, 0.28340385250297895, 0.2834097727521618, 0.2834141933574582, 0.28341781767783836, 0.28342102580641476, 0.28342399529953927, 0.2834267848271829 ], [ 0.28337621010532293, 0.28334668539351826, 0.28330513311738903, 0.2832468917869007, 0.2831655095660559, 0.28305208842068647, 0.28289447268795753, 0.28267633434929745, 0.28237628928762726, 0.2819672926625292, 0.2814166978755595, 0.2806875016406356, 0.27974140437408207, 0.2785443402748636, 0.27707499007593045, 0.27533632939068226, 0.27336925110737964, 0.2712655046030996, 0.2691747397751344, 0.26729839990898335, 0.26586396188206385, 0.2650792429617391, 0.2650778912476939, 0.2658773718547802, 0.2673699959803549, 0.2693525972495044, 0.27158098325119695, 0.2738255879573405, 0.27590968150211465, 0.27772399559994915, 0.27922213533777207, 0.28040544164868886, 0.2813051853023303, 0.28196703628989794, 0.28243985009588735, 0.28276885446865463, 0.28299235940348355, 0.283140857637284, 0.2832375076078607, 0.2832992567050131, 0.2833381329067149, 0.28336244803506083, 0.28337780270713164, 0.2833878705504136, 0.28339498346807174, 0.2834005562514376, 0.2834053898364261, 0.2834098863622882, 0.2834142010510694, 0.2834183485115982 ], [ 0.283346692542719, 0.2833044800475666, 0.2832455128338047, 0.2831636072190851, 0.2830503129601099, 0.28289407058178634, 0.28267914268320726, 0.2823843805363539, 0.281982006614525, 0.2814367605797883, 0.280705949844591, 0.27974112410501706, 0.27849219996185065, 0.27691483669070877, 0.27498163806446985, 0.2726972037076867, 0.27011591803200524, 0.26735925132026295, 0.2646260785426565, 0.2621860999333416, 0.2603461870414747, 0.25938726602402645, 0.25948650829561165, 0.26065688123686614, 0.26273625382353544, 0.26543418952766373, 0.26841308106943995, 0.2713665841411493, 0.27406894309526597, 0.27638946056298835, 0.2782812634804473, 0.27975785710118073, 0.2808682530991961, 0.28167663073012256, 0.28224845226893275, 0.28264255086499085, 0.2829077089215212, 0.2830821193322737, 0.28319440881256525, 0.28326530456258975, 0.28330939053833665, 0.28333667224722986, 0.2833538460245416, 0.28336526887118463, 0.2833736716581403, 0.28338067242271, 0.283387142912818, 0.2833934706793116, 0.2833997469803188, 0.28340590066877075 ], [ 0.28330480818472414, 0.28324446535221637, 0.2831607210262589, 0.28304541031835645, 0.282887581443359, 0.2826724539798115, 0.28238005065593463, 0.28198356434596084, 0.2814476980002203, 0.2807274706848916, 0.27976827783701447, 0.2785082424294036, 0.27688398053116015, 0.274840725543294, 0.27234725660724957, 0.26941523461690997, 0.26612123404339927, 0.26262755233999324, 0.25919423671306135, 0.25617021545097246, 0.25394978470095725, 0.2528895293852226, 0.25320434991630353, 0.2548875977178646, 0.25770167466271826, 0.26124888262350393, 0.26508535882488066, 0.2688241491291967, 0.27219354496392567, 0.2750478376195891, 0.2773465108090853, 0.27912089907054394, 0.28044177868648673, 0.2813943744742751, 0.2820621862481841, 0.2825183647286209, 0.2828224615761076, 0.2830204563658806, 0.2831464433407366, 0.2832249062093986, 0.28327296645042543, 0.28330231545239004, 0.2833207431685648, 0.28333328500553956, 0.28334305521863096, 0.28335184440777456, 0.2833605489832651, 0.28336948365858794, 0.2833786112575795, 0.2833877109766216 ], [ 0.28324602981103747, 0.283159902710898, 0.2830409763060962, 0.28287847864349225, 0.28265832690240267, 0.2823619076404738, 0.2819643870880617, 0.28143258464211224, 0.2807226988422936, 0.27977857630419817, 0.27853169769695046, 0.27690445967908606, 0.2748184173781636, 0.27220868415164773, 0.2690445654542372, 0.2653548573646513, 0.26125432033589874, 0.25696565056482645, 0.25282824415320815, 0.24928091396740357, 0.2468037126531735, 0.2458134915959949, 0.24653664711222834, 0.24891676261396417, 0.2526157038577557, 0.25711547531400847, 0.2618662182181226, 0.2664098283122041, 0.27044140777401937, 0.27381182648124774, 0.27649530721861343, 0.2785460266866365, 0.28005891082937073, 0.2811409210567183, 0.2818933723350138, 0.2824031304604192, 0.28273984609598873, 0.28295670166263853, 0.28309281722969126, 0.2831761346987704, 0.2832261331516644, 0.2832560937004259, 0.28327485257575674, 0.283288095048747, 0.2832992868188648, 0.2833103425888976, 0.2833221142252463, 0.2833347568221836, 0.28334800850443737, 0.28336140318434727 ], [ 0.28316472626677813, 0.2830422415874293, 0.2828736318297181, 0.2826446320765762, 0.28233720461591694, 0.28192823297286623, 0.2813875498275871, 0.28067523452244764, 0.2797384688783385, 0.2785088651986062, 0.27690200395341, 0.2748216714182263, 0.2721715055613048, 0.2688759151547806, 0.26490990610396203, 0.26033401690635993, 0.25532681152271886, 0.25020459456758526, 0.24541693810631687, 0.24150677450238223, 0.23902601764281103, 0.23840905075292385, 0.2398355823964211, 0.2431475050336504, 0.24787826084743575, 0.2533899724210099, 0.2590469002295455, 0.26434653990131785, 0.2689743588611832, 0.2727939836975265, 0.2758031973276195, 0.2780823771581749, 0.279750648171072, 0.2809351445106178, 0.28175291428158117, 0.2823025366896484, 0.28266210408038717, 0.28289075774976596, 0.28303178332567364, 0.2831160337133453, 0.28316503046371067, 0.2831934844072904, 0.28321120672831224, 0.28322449689649015, 0.2832371340082573, 0.283251093914928, 0.28326708820706376, 0.28328498809937974, 0.28330416660555247, 0.28332377161239763 ], [ 0.28305428671831434, 0.2828811926413021, 0.2826431038204946, 0.28232096419091235, 0.28189163011947915, 0.2813267019999795, 0.28059045195129, 0.27963655163799733, 0.27840373925003165, 0.27681149640285574, 0.2747581969331552, 0.2721256466928187, 0.26879464279871024, 0.2646750773546184, 0.2597502940376436, 0.2541287365378805, 0.2480877957026246, 0.24208880502741092, 0.2367435759059692, 0.2327247194085553, 0.23063082512732813, 0.23083678977158217, 0.23337661619338199, 0.2379130239264908, 0.24382268037818888, 0.25036586389292415, 0.25686304490895956, 0.2628109079047506, 0.267918012558611, 0.27208002047605084, 0.2753266903481223, 0.27776606524081976, 0.27953932029047, 0.28079024461605484, 0.2816480055747187, 0.2822197825276709, 0.2825896912016455, 0.28282109483176043, 0.2829602861279462, 0.2830403200264658, 0.28308437513140916, 0.2831084182343581, 0.28312317905918183, 0.2831355570901857, 0.2831496185584229, 0.28316732980577425, 0.2831891362404524, 0.2832144514518307, 0.2832420816377922, 0.28327058415061485 ], [ 0.2829075571720822, 0.2826652585000859, 0.2823314339357245, 0.2818802920875727, 0.2812818612318553, 0.2805013987477887, 0.2794976823628754, 0.2782194343500948, 0.2765995535460939, 0.2745481086481991, 0.2719472982993523, 0.26865432327792105, 0.26452002925876855, 0.2594303274905586, 0.2533718442124772, 0.24651180125501376, 0.23926562708129662, 0.2323102655932816, 0.22650163254872951, 0.2226894006111809, 0.22148629060414068, 0.2230933399416148, 0.22725733999716025, 0.23336301701368686, 0.24060637817143132, 0.24818124069676692, 0.2554231484385462, 0.2618821249093377, 0.2673272235963969, 0.2717064446000207, 0.27508926560691593, 0.27761165635170476, 0.2794335082186241, 0.28071077944612904, 0.28158042350259455, 0.28215460504344625, 0.2825207151830338, 0.28274440310018306, 0.28287370943345497, 0.28294315503737116, 0.2829772155958459, 0.2829929980494368, 0.2830021642454505, 0.28301226165332616, 0.28302765495234516, 0.28305023281162656, 0.2830800137686503, 0.283115714105465, 0.2831552866266311, 0.28319640447666133 ], [ 0.2827177222467201, 0.28238296555017006, 0.2819199030052246, 0.2812930945112286, 0.28046304355188695, 0.27938693084764665, 0.2780182077093874, 0.276303542256207, 0.2741757783709492, 0.27154309280215205, 0.26827795198496895, 0.2642143508576094, 0.2591661504702911, 0.25297978373985175, 0.24562768850106678, 0.23733172879811346, 0.22867672528192926, 0.22063773340108958, 0.21442999246185154, 0.21115864822553299, 0.2114139416365416, 0.2150711189324903, 0.22141530367278922, 0.22945056015485857, 0.23818300216374813, 0.2467890209079037, 0.2546834352706642, 0.26152328492580107, 0.2671732863916536, 0.2716522528225601, 0.27507619830725294, 0.2776090512141433, 0.2794262271592605, 0.2806916413031937, 0.28154597653517577, 0.2821029972952167, 0.28245079926423833, 0.28265552188738147, 0.2827658187307338, 0.2828170656026964, 0.28283480997345933, 0.28283732504681924, 0.28283735521110853, 0.2828432570222375, 0.28285977550884533, 0.2828886689583516, 0.2829293269197756, 0.2829794403964116, 0.2830357058862227, 0.2830944963476713 ], [ 0.2824797219935182, 0.2820250047489234, 0.2813921194477315, 0.28053171888499917, 0.27939053647081785, 0.27791454262966425, 0.2760514563550253, 0.2737500230200654, 0.2709528838083687, 0.26758121083389347, 0.26351401925426693, 0.2585732988032068, 0.2525348987675302, 0.2451885740306461, 0.23646285485922103, 0.2266075609401432, 0.21638326017430734, 0.20713659333689197, 0.2005782096796037, 0.1981755815050066, 0.20045294944334555, 0.20677601704417217, 0.21578975132867712, 0.22604570482802214, 0.2363806654973917, 0.24601027385954388, 0.2544836064003511, 0.2616048122424112, 0.26735893176104786, 0.2718483309672414, 0.2752403541025541, 0.27772701816654727, 0.2794970726351942, 0.28071937260911145, 0.2815353340677162, 0.2820577590125706, 0.28237347333035623, 0.2825477353057125, 0.28262899116919515, 0.28265311865557796, 0.2826467470572931, 0.28262956739358214, 0.2826157654685578, 0.2826148388794836, 0.28263210388735255, 0.28266916566054584, 0.2827245314846733, 0.2827944217520238, 0.2828737178015605, 0.28295691381767746 ], [ 0.2821921700676952, 0.28158732087436344, 0.28073880797454026, 0.2795774702141871, 0.2780298319237041, 0.27602505126763055, 0.27350273753865956, 0.27041780107578833, 0.2667363358044196, 0.2624166531637371, 0.2573752442193371, 0.25145057576319013, 0.24439452483372154, 0.23593091433046, 0.22591148587302431, 0.2145687344861889, 0.20280883898808977, 0.19238007336626642, 0.1855991316341424, 0.1843940161762517, 0.18915992570835274, 0.1985692911417324, 0.21050917975318045, 0.22308461329907228, 0.23502219076787692, 0.24562863545737557, 0.25461743054598146, 0.2619545815304111, 0.26775232660321757, 0.2721996689838874, 0.2755162773114084, 0.27792192740749966, 0.27961755686221534, 0.2807754159088375, 0.281536036544325, 0.2820097963747284, 0.282281084600825, 0.28241348137168043, 0.28245482626185303, 0.2824414848038927, 0.28240148431369066, 0.2823564795270687, 0.2823227320632796, 0.2823114418684765, 0.2823288365163651, 0.2823763895864662, 0.2824514085909987, 0.28254804605747513, 0.28265860835906026, 0.2827749262141676 ], [ 0.2818595220522885, 0.2810748400185007, 0.2799640037475213, 0.27843049992805136, 0.2763715998093136, 0.2736904346494366, 0.27031206014093856, 0.2661987417662535, 0.2613548601362523, 0.2558086735433916, 0.2495628581632787, 0.2425250086285318, 0.23446093104281995, 0.22503711986724748, 0.21400658361282307, 0.20154095304498404, 0.18863908278649202, 0.17741180284569333, 0.17078306056024398, 0.1711347245050947, 0.17863375856600158, 0.19116512334173405, 0.20589917606988084, 0.22060696871415375, 0.23398522838789798, 0.2454571202828874, 0.2548936510719595, 0.2624069286843144, 0.2682232782826276, 0.2726105035564086, 0.2758368702125265, 0.2781484506369646, 0.27975782423197865, 0.28084030110491087, 0.28153515327234413, 0.2819499070485845, 0.2821661274901812, 0.2822454834678986, 0.2822352291531257, 0.28217255315052664, 0.2820875277544924, 0.28200465124037727, 0.28194322077251566, 0.2819169786619784, 0.2819335887140325, 0.281994470395515, 0.2820953349874126, 0.2822274834099975, 0.2823796442317394, 0.28253995700623225 ], [ 0.2814939626025883, 0.2805050142011612, 0.27909147806113993, 0.27712100656495753, 0.2744503514113923, 0.27094331318383263, 0.2664978024599467, 0.2610774888464717, 0.25473509406482886, 0.24760486126472125, 0.239840536767604, 0.2314989266814967, 0.2224256460778312, 0.2122566320797991, 0.20063676180526255, 0.18765390310129865, 0.17436579101114152, 0.16316460993484344, 0.15741666898914497, 0.15973533382059368, 0.16992243095155, 0.18517923600384542, 0.20220635806334142, 0.21862482965806254, 0.23316339481085213, 0.24534681623691965, 0.25516319989291986, 0.26283265413442486, 0.26866909255722726, 0.27300404622645436, 0.2761473563787594, 0.2783689665686033, 0.2798928008127143, 0.2808976388224153, 0.28152194988417767, 0.2818707105036963, 0.2820228388200861, 0.2820382767842083, 0.2819640366405123, 0.2818387520882176, 0.28169548552875084, 0.28156278650213407, 0.28146428719472893, 0.28141741504428774, 0.2814320001489815, 0.2815095473015554, 0.28164368510033405, 0.2818218705176304, 0.28202798622948766, 0.28224519749468885 ], [ 0.28111623985083384, 0.279909842598251, 0.27816917260371926, 0.27571828532855785, 0.27236178124809596, 0.26790816812899204, 0.2622092145913756, 0.2552131432920306, 0.24701767417049883, 0.23789009670207603, 0.2282057379197996, 0.21827426727675953, 0.20811329368029727, 0.19736004866843818, 0.18552686238096971, 0.17259695317467857, 0.15970101133715922, 0.14948067949758018, 0.14551591613520984, 0.1502633891230511, 0.16299584727413755, 0.1804702856393949, 0.19924367672766413, 0.21695773240250352, 0.23240284473443407, 0.24517233876930708, 0.2553255353367991, 0.26315223490795836, 0.2690281660375291, 0.27333390143779523, 0.2764139329376462, 0.2785597277006087, 0.2800064511522357, 0.28093706461389173, 0.2814900339423709, 0.281768403299894, 0.28184887570596523, 0.2817900429973296, 0.2816391756689831, 0.2814371355395806, 0.28122112204637295, 0.28102520115068574, 0.28087893317294005, 0.28080485068968325, 0.280815873955474, 0.2809137912553639, 0.2810895749962936, 0.28132564912180985, 0.28159954190071257, 0.28188794428614217 ], [ 0.28075464386616983, 0.27933481347850914, 0.27726873305724614, 0.27433242152451215, 0.27026999547369734, 0.2648205606893553, 0.2577685358094392, 0.24902000239587957, 0.23869444611797921, 0.22719303423910156, 0.215164778174289, 0.20328114741925352, 0.19184335874975503, 0.1805140184275758, 0.16859424057575295, 0.15588812525724086, 0.14363953389402656, 0.13485810161590486, 0.13331262585803566, 0.14100748547338368, 0.1564569557140658, 0.17605909198834352, 0.19640892771197563, 0.21527384557648244, 0.23153656807024195, 0.2448545009835321, 0.2553426773366688, 0.26334475886449327, 0.2692860858367751, 0.2735884862278108, 0.2766270601873468, 0.2787133232238877, 0.2800936420426545, 0.28095571454561535, 0.2814386497590184, 0.28164407676594977, 0.2816468526222543, 0.2815045495914991, 0.2812651618359032, 0.2809725531240395, 0.28066924630796136, 0.28039639197755134, 0.2801912287156617, 0.28008298577087487, 0.2800887272840064, 0.2802107657648277, 0.2804367890334397, 0.280742877470733, 0.2810985626988666, 0.2814724650726627 ], [ 0.2804416691432606, 0.2788336768832093, 0.27647770800239324, 0.27310347112394984, 0.26839428218428435, 0.2620148839304751, 0.25366894282544494, 0.24319472436951053, 0.23069591900267358, 0.2166715530277888, 0.20204353968984395, 0.18791356332044398, 0.17497182602996592, 0.1629273810755009, 0.15074454197025064, 0.13789735105762593, 0.12575752130436488, 0.11799569882925717, 0.11895259173284353, 0.13013711147090404, 0.14891209249705717, 0.1710860842311825, 0.19327152893619526, 0.21341466668414905, 0.23054826730692257, 0.24443514254609175, 0.2552691433886215, 0.26345747197403635, 0.26947713036642246, 0.2737900590411894, 0.27680019518814286, 0.2788377781949101, 0.280159696491504, 0.2809581738206994, 0.28137297484864854, 0.2815043752942003, 0.2814254377127221, 0.2811928051757766, 0.28085545171461407, 0.28046081848399534, 0.28005775589323084, 0.2796959206130783, 0.27942188470497653, 0.27927312278496164, 0.2792718898733187, 0.2794212742561801, 0.27970507385490806, 0.2800917617694363, 0.2805413173868312, 0.28101282474592865 ], [ 0.2802086497256831, 0.2784592835646201, 0.27588421102741995, 0.27217643647377715, 0.2669697073443338, 0.2598654258721829, 0.2504931159847087, 0.23861784108193876, 0.22429980968684815, 0.2080793975501084, 0.19107983293097552, 0.1747922221811051, 0.16031900509507171, 0.14743929151796, 0.1347127764666359, 0.12115553412861732, 0.10820839874126331, 0.10047732919711407, 0.1035286027210681, 0.1184780276528414, 0.14102392560069393, 0.16609957753873322, 0.19029140803822403, 0.21175962490057462, 0.22973947536084538, 0.24414330198447382, 0.2552710585459348, 0.263605640249418, 0.26967807118029624, 0.2739880061168247, 0.27696442267697197, 0.2789528056374381, 0.2802179930788161, 0.2809550562456302, 0.28130339077617256, 0.28136129189906023, 0.28119962159401474, 0.2808738400951999, 0.28043382964982294, 0.27993080998217706, 0.2794205235875996, 0.2789620748116039, 0.27861256252164285, 0.278418882299862, 0.27840930411721987, 0.27858790742872386, 0.2789341506818844, 0.27940795624477355, 0.2799586240641614, 0.28053469782778173 ], [ 0.28007958004651073, 0.2782525636353494, 0.27555743670947225, 0.2716671894576182, 0.2661883360262622, 0.25868691313942993, 0.248749656819004, 0.23609613173737096, 0.2207516297184659, 0.2032610126254816, 0.18483845857776793, 0.16718811280971005, 0.15167343532903932, 0.13814537374290844, 0.12491483506072684, 0.11067751001616122, 0.09687289209270092, 0.08881133290695586, 0.09325187386499798, 0.11100146571849001, 0.13628771502418405, 0.1634023063543185, 0.18894754591131702, 0.21125261664138725, 0.22971355069520533, 0.24436579283696266, 0.255596486348518, 0.26394770978891124, 0.2699893315697195, 0.2742454546970521, 0.27715938441007876, 0.27908386148159003, 0.2802861338028785, 0.28096051559006235, 0.28124380007393246, 0.2812309448979374, 0.28098975844651924, 0.2805739312332992, 0.2800338187786969, 0.2794241207193279, 0.27880735075087804, 0.27825215906499634, 0.2778264709865529, 0.27758699903442374, 0.277568357392738, 0.2777757397151073, 0.2781841461223055, 0.27874467390671975, 0.2793956643667335, 0.2800749641900475 ], [ 0.2800659668834673, 0.2782331267743473, 0.2755305453305103, 0.27163137994141473, 0.2661428781814841, 0.2586326945824717, 0.24869029619785785, 0.23603883362149128, 0.22070645001064432, 0.2032359912399404, 0.18482830308383147, 0.1671623583675152, 0.15159240475043534, 0.13803606807496696, 0.12496438271429534, 0.11124963243885795, 0.09839981113812296, 0.09144862021483588, 0.09646060402889595, 0.1140636635221852, 0.1389658253628226, 0.16571756604413432, 0.19094021363005917, 0.21294190856488301, 0.23111365207119722, 0.24549756883346258, 0.25648890613706926, 0.2646344238019724, 0.27050456074423346, 0.27462083225059647, 0.2774219785137951, 0.2792551189056314, 0.2803814370766059, 0.28098914271970754, 0.2812091961068183, 0.2811313245202448, 0.2808191450234197, 0.2803237769499252, 0.2796953046515748, 0.2789910669529548, 0.27827937566289346, 0.277637386194527, 0.2771428740274968, 0.27686160700312884, 0.2768341189403063, 0.2770666964745448, 0.277530265578739, 0.27816782683253527, 0.2789077173483615, 0.27967811162333234 ], [ 0.2801644450194762, 0.278394897443354, 0.2757926715254955, 0.2720497688366703, 0.26679963255460176, 0.2596444556826665, 0.250215636830837, 0.23827989884489323, 0.22389489912290067, 0.20758684954943307, 0.19044795321121522, 0.17394219814074693, 0.15923353407907453, 0.14636866690772538, 0.13436395369109053, 0.12265781668083374, 0.11273895086080418, 0.10838436992939698, 0.11350820520436947, 0.12857060080952798, 0.15015947268562455, 0.17401470571817343, 0.19699743847218518, 0.2173294474456017, 0.2342700039196143, 0.24775083553060828, 0.2580834916534366, 0.26575188335433686, 0.2712788770667506, 0.27514978688894093, 0.2777757918048455, 0.27948304375158456, 0.2805167455350853, 0.28105285404665975, 0.28121287291180763, 0.28107926469131306, 0.28071029753525534, 0.28015368651297184, 0.27945831205840577, 0.27868282711953213, 0.2778994970535233, 0.2771916983092815, 0.2766446300852676, 0.27633100321932813, 0.276295952646615, 0.27654666440873515, 0.27705097318367033, 0.2777456911108026, 0.2785515282632926, 0.2793893348847941 ], [ 0.280357952504312, 0.27870836634580265, 0.27629323739192335, 0.27283648992516046, 0.26801430282814154, 0.2614824390991898, 0.2529326280888985, 0.24218619177480682, 0.2293226241443648, 0.21481197393605256, 0.19956475165462945, 0.184757593803565, 0.17136081850253793, 0.15964094545246177, 0.14926105928224825, 0.14018639377004827, 0.13361458903627055, 0.13188688009428468, 0.13710630101187724, 0.1494682993365529, 0.1669985563313494, 0.18681396518587834, 0.2063887430217676, 0.22406227463169298, 0.23901487002263386, 0.2510480376820493, 0.26034655328843503, 0.26728760069491314, 0.27230978669348527, 0.2758342879577607, 0.2782246595330936, 0.2797723363921642, 0.28069754772880023, 0.281158431499049, 0.28126382385374643, 0.28108721422915317, 0.280680620299233, 0.28008766745983366, 0.27935505646736875, 0.2785410939944163, 0.2777194504119345, 0.27697637522906116, 0.2764007855726084, 0.2760690080511933, 0.2760286463534785, 0.27628743349142426, 0.27681164014105186, 0.277534864604119, 0.27837383576690505, 0.2792455840842055 ], [ 0.28061994421961156, 0.2791283703415967, 0.27695628968396413, 0.2738654369152315, 0.2695805182258772, 0.26381455475577775, 0.25631770431174794, 0.2469537186806219, 0.23579818519376478, 0.22323093491751533, 0.2099624822756214, 0.1969158374400599, 0.1849453275710142, 0.1745554705169821, 0.16592481570112683, 0.1593281066964102, 0.15556965615207977, 0.15588537013410067, 0.16123597461990893, 0.171555482495538, 0.18561267446893545, 0.20153710521463997, 0.21750630088744072, 0.23217442023872736, 0.24478055512287564, 0.25506056746273675, 0.26309041125184635, 0.2691359677669666, 0.2735389660351424, 0.276642941526903, 0.2787523563014396, 0.2801152917083252, 0.280921059554981, 0.281306243858221, 0.2813649207594134, 0.28116059994054077, 0.2807385939000828, 0.28013801439210884, 0.2794024889537898, 0.27858819115254985, 0.2777672823169686, 0.2770249425734004, 0.27644936408435533, 0.2761164498347794, 0.2760736565213133, 0.2763288126637794, 0.27684846839664157, 0.2775666050208345, 0.278400352476209, 0.2792670900828935 ], [ 0.2809201217139241, 0.2796043574706511, 0.2776987414881292, 0.2750023868757486, 0.271285792571792, 0.2663125012028578, 0.2598786504700022, 0.2518721609304974, 0.2423456823516224, 0.23158378830147464, 0.22012857082924522, 0.208723036463197, 0.19816351468682966, 0.18912813745036977, 0.1821089470044014, 0.1775143494346324, 0.17582245377582156, 0.17755232696177367, 0.1829824785073283, 0.19184143542816987, 0.2032513105927346, 0.21596829908772772, 0.2287386980783403, 0.24057322058831876, 0.2508604665316054, 0.2593465488367228, 0.2660456631192855, 0.27113612858789926, 0.27487211220780305, 0.27752135552739415, 0.2793279226567267, 0.2804944030432397, 0.28117729702154576, 0.28149036915608494, 0.28151231855618547, 0.2812965330421073, 0.28088166317719643, 0.2803021673026336, 0.2795978703681658, 0.2788211263029583, 0.2780397419457626, 0.2773339388094461, 0.27678678417099767, 0.27646974847214734, 0.2764275383114691, 0.2766676175239804, 0.2771586309102783, 0.27783849931712773, 0.2786290937454168, 0.2794522755287581 ], [ 0.2812299299891603, 0.28008982171835295, 0.27844626610523104, 0.2761311494279406, 0.2729532204669291, 0.2687154065810403, 0.2632456050898838, 0.25644199222768516, 0.2483290348362055, 0.23911266364726744, 0.22921441415970845, 0.21926013235024994, 0.21000701699992064, 0.20221885283839497, 0.19653695930560006, 0.1934120473238837, 0.19311329456066292, 0.19574142500128083, 0.20117399622583904, 0.20898846268581706, 0.21847085690051482, 0.22874336472924695, 0.2389470279695905, 0.24839393597384235, 0.25664205520552336, 0.2634936648949946, 0.2689452669637778, 0.2731202435167063, 0.27620618896481614, 0.27840733606703366, 0.2799140577616643, 0.2808869575093026, 0.28145157608615384, 0.281699955186698, 0.28169621104099907, 0.28148425854483583, 0.2810965473665336, 0.2805629773258515, 0.27991904758930947, 0.27921190970323867, 0.2785026575378285, 0.27786335226153597, 0.2773683466040647, 0.2770814314481682, 0.2770424617154918, 0.2772581570280542, 0.27770070483415465, 0.2783148288359375, 0.2790306706244487, 0.27977797988802533 ], [ 0.28152655619935807, 0.2805487474361727, 0.27914330528590725, 0.27716832426434795, 0.27446159648091706, 0.2708538041599426, 0.2661922496773746, 0.26037650096067655, 0.253404575860521, 0.2454237100765121, 0.23677346295201737, 0.2280018028260095, 0.2198301230543154, 0.21305000065512583, 0.2083658033999499, 0.20624466271772438, 0.20684568605363873, 0.2100387049267131, 0.2154604942356345, 0.22257181086005368, 0.2307238386739476, 0.2392447964390425, 0.24753172802350776, 0.25512107553281865, 0.2617211768746638, 0.2672063380727781, 0.2715841820102603, 0.2749517347865875, 0.27745295005917364, 0.2792449663074256, 0.28047542267135145, 0.2812699529743619, 0.2817275544677317, 0.28192134603851926, 0.28190268227186194, 0.2817072040090418, 0.28136188358144515, 0.2808923130297251, 0.280329366396499, 0.2797140597449807, 0.2790991983474338, 0.2785466029131471, 0.2781196419938049, 0.2778724168751154, 0.2778386441389695, 0.2780240585459634, 0.27840525659369647, 0.2789355148877562, 0.27955545852597097, 0.2802049342287681 ], [ 0.2817949339608771, 0.28095846243199724, 0.2797567703861767, 0.27806734515566234, 0.27574816606304037, 0.27264734591325024, 0.268621543597268, 0.2635652328820325, 0.257451489515762, 0.2503818390232577, 0.2426368546191792, 0.23470975676471548, 0.2272943439599505, 0.22119664933283806, 0.21716554978600092, 0.215695174047639, 0.21689651596786982, 0.22050367088369036, 0.2259894289467835, 0.23271116575212944, 0.2400288733892719, 0.24738111730947385, 0.25432669737083696, 0.26056119361837166, 0.2659140032822521, 0.27033032030804127, 0.27384354246812614, 0.27654442016017017, 0.2785525349818513, 0.2799936923022337, 0.2809845371583665, 0.2816239632358259, 0.28198996523609726, 0.2821403717666265, 0.2821161078492783, 0.28194598926111936, 0.28165233289316166, 0.2812567589609832, 0.28078544372385217, 0.2802728484595372, 0.27976280777918955, 0.27930607852052247, 0.27895422783644536, 0.27875099965551625, 0.278723563245391, 0.2788765803792905, 0.27919130431922773, 0.2796301160469262, 0.2801448973525309, 0.280686462390653 ], [ 0.2820278931440536, 0.28130940248283937, 0.28027481306823876, 0.2788151087394708, 0.2768011897893928, 0.27409055221957046, 0.2705416881105876, 0.26603902403550206, 0.26053065624330346, 0.2540788542457983, 0.24691764417781606, 0.23950096194348822, 0.23250980998341814, 0.22677746213455363, 0.22311080250676654, 0.22205089147994592, 0.22369164695473315, 0.2276700355193076, 0.23332540470213742, 0.23991526782436462, 0.2467779117584777, 0.2534078480399734, 0.25946648319377613, 0.2647612859718249, 0.2692151807306441, 0.27283563102238917, 0.2756865143941737, 0.2778639113052944, 0.2794765602037794, 0.2806314371739017, 0.28142439584641654, 0.28193526635300087, 0.2822264846977695, 0.2823442661705177, 0.28232147332794966, 0.282181531638249, 0.2819428949335411, 0.2816235851617697, 0.2812452204263327, 0.2808357767250978, 0.28043025535484245, 0.2800686375238526, 0.27979111926432476, 0.27963154748115826, 0.2796108635698645, 0.2797326966970108, 0.2799826975916106, 0.28033190543839237, 0.2807430068557389, 0.281177479589999 ], [ 0.2822249327284652, 0.28160272859392754, 0.2807024242962468, 0.27942425925227904, 0.2776471919734071, 0.2752331816538492, 0.272038530059408, 0.26793572641064606, 0.2628493086040641, 0.2568076185842674, 0.25000696104984016, 0.24287293170435448, 0.23608496559945777, 0.23051337574827477, 0.22703058964451234, 0.2262316059331556, 0.22820474634747107, 0.23250931786547463, 0.23837334018806572, 0.244966262294381, 0.251596410589497, 0.2577871228344895, 0.2632662390253667, 0.2679191821648239, 0.2717381558006417, 0.27478051471458714, 0.2771383652481056, 0.2789175303020702, 0.2802235456976208, 0.28115288992543425, 0.2817881646103488, 0.28219624048206066, 0.28242855427443403, 0.28252288724913543, 0.282506107657102, 0.28239749299389544, 0.28221232030162074, 0.28196539523700953, 0.281674092309226, 0.2813603604965235, 0.2810511194390363, 0.28077665362806586, 0.28056706793847297, 0.28044751634712317, 0.28043350310325815, 0.2805277504461749, 0.2807197260436196, 0.2809880331633498, 0.28130488852056595, 0.28164130424206435 ], [ 0.2823901920176068, 0.2818467661528317, 0.281055384059903, 0.2799232765713218, 0.27833537732688785, 0.2761568337172546, 0.27324213596428826, 0.26945475349170345, 0.26470166490418856, 0.2589859888840136, 0.2524757768657783, 0.2455746257220627, 0.23895839112195388, 0.23352029634829718, 0.23017495623644654, 0.22955164938691094, 0.2317339778245066, 0.23623101841206148, 0.24220098180538424, 0.24875961794501594, 0.2551982597218144, 0.2610597692478525, 0.26611515713069667, 0.2703009173449719, 0.2736556905612884, 0.27627150012020263, 0.278261280323957, 0.27973930722494034, 0.2808104459878199, 0.2815649966544079, 0.2820769772178535, 0.2824044847399953, 0.2825912936533274, 0.28266917214025855, 0.2826605975291412, 0.28258166546783925, 0.2824450244446861, 0.28226263279747, 0.28204805197035, 0.28181790779040733, 0.28159214605222094, 0.28139285418896326, 0.28124174421682185, 0.281156825191492, 0.28114916510872573, 0.28122074613366327, 0.28136413742794064, 0.2815641229830992, 0.28180078023596494, 0.2820530944219079 ], [ 0.28253017278660275, 0.28205314267796705, 0.28135386818639524, 0.28034615430943677, 0.2789213738547815, 0.27694991998500806, 0.2742889568435577, 0.270800550492122, 0.2663849273665987, 0.26103256456603874, 0.2548936675045144, 0.24835090079305416, 0.24205920723648391, 0.23689378982964415, 0.2337553958366096, 0.23326289583005072, 0.2354915029324545, 0.2399435585605905, 0.24577396295341009, 0.2521018270169821, 0.25823101829046136, 0.263725847045599, 0.26838443925820504, 0.2721712579042629, 0.27514923967325683, 0.2774280859352065, 0.27913083237529107, 0.28037499115469455, 0.28126350771278574, 0.2818816231925964, 0.2822969730271208, 0.28256129396622137, 0.28271283050582674, 0.2827789758318894, 0.2827789325387261, 0.28272629696811946, 0.2826314976493547, 0.2825039816531971, 0.28235397418083347, 0.28219357890161995, 0.28203699043316427, 0.2818996988106619, 0.28179678588766005, 0.281740692255626, 0.2817390596400433, 0.28179330428064436, 0.28189838869624967, 0.2820438845281983, 0.2822160113908893, 0.2824000681398652 ], [ 0.2826516861709718, 0.282233383531538, 0.2816169030146502, 0.28072351469262247, 0.2794531946207125, 0.2776857138431027, 0.27528772948913377, 0.2721298433989733, 0.2681181493630341, 0.2632435580336975, 0.2576468881913666, 0.25168537999117063, 0.24596610138514943, 0.24129294149677463, 0.2384851281705531, 0.2380996440193582, 0.2401993515265995, 0.24432794584549275, 0.24971021379904346, 0.25553281964805336, 0.261148818339186, 0.2661527613894763, 0.27035986375694143, 0.2737439377133121, 0.2763725876924888, 0.2783567911094784, 0.2798180538723103, 0.2808701111893837, 0.28161061824059236, 0.2821188401951279, 0.2824565066932392, 0.2826700732809561, 0.28279342534945334, 0.28285056803866754, 0.28285813177416747, 0.28282765426332024, 0.2827676287120147, 0.28268527606316657, 0.2825879431968914, 0.28248398639773403, 0.28238300514827575, 0.28229536881103123, 0.2822311250496588, 0.28219855435063, 0.282202769696846, 0.28224478251740875, 0.2823213330401977, 0.2824255494774331, 0.2825482472288217, 0.2826795078237743 ], [ 0.28276036804633775, 0.28239653308171825, 0.28185861599212103, 0.28107678514746404, 0.27996230183363163, 0.2784087646667051, 0.2762989722926812, 0.27352094235363716, 0.2699968666083773, 0.26572719782978604, 0.2608467358569992, 0.25567848651921066, 0.2507548466430125, 0.2467636616644498, 0.2443913903279268, 0.2440969431639204, 0.24592902799052332, 0.24950725259289422, 0.25418011152292264, 0.2592521552277674, 0.264158035305907, 0.2685345104500829, 0.2722104354444376, 0.27515719222971186, 0.2774328448266119, 0.27913671527849054, 0.2803788289947485, 0.2812624884517372, 0.28187624202847067, 0.28229164658734673, 0.28256411637349954, 0.28273511547571223, 0.28283471871002347, 0.28288408350971456, 0.28289767672571364, 0.2828852409652636, 0.28285351892715044, 0.2828077275030895, 0.2827527261698908, 0.28269379038096243, 0.28263690581323014, 0.2825885552077777, 0.2825550682303182, 0.2825417166124935, 0.2825518175636534, 0.28258611707911524, 0.28264264566725544, 0.28271709480406165, 0.2828036067279899, 0.2828957617500062 ], [ 0.28285992535722176, 0.28254806492381623, 0.2820867251601847, 0.28141621403153066, 0.2804611889611374, 0.2791322965188494, 0.2773328756745344, 0.2749736003110948, 0.27199779986640726, 0.26841832933234105, 0.26436188325405496, 0.2601076167654965, 0.25609564628097076, 0.25287567486748264, 0.25098166090701607, 0.2507635021877408, 0.25225648778093707, 0.25516834899561125, 0.2589921832048442, 0.2631740489858449, 0.2672495338581795, 0.2709083858924769, 0.2739951568181411, 0.27647466336495735, 0.27838830071849935, 0.2798161891479975, 0.28085044999670944, 0.28157926953984, 0.28207914059310524, 0.2824123687035989, 0.2826274834243894, 0.2827609578699899, 0.28283931168174004, 0.28288115603120834, 0.2828990333179092, 0.28290104506059344, 0.28289229573945424, 0.2828761545399917, 0.28285529278680227, 0.28283242522223073, 0.28281068832256584, 0.28279363321322337, 0.28278488325981593, 0.282787583156032, 0.28280381810265826, 0.2828341851440467, 0.28287764756360245, 0.28293171312095344, 0.28299288001192385, 0.2830572249386857 ], [ 0.2829520768562757, 0.28268998899297615, 0.28230306665441435, 0.28174231805261474, 0.2809466799790205, 0.2798450248380769, 0.27836249678443387, 0.2764332901362106, 0.2740215405318736, 0.2711500781275856, 0.26793258590978963, 0.26459812914150604, 0.2614902996436472, 0.25902253097585787, 0.25758497690199883, 0.25742812800671067, 0.2585761708133021, 0.26081870238182125, 0.26378560568110615, 0.26706192616685076, 0.2702875851661948, 0.2732109679882353, 0.2756966714469017, 0.27770457248253244, 0.2792586441225355, 0.2804177348369278, 0.2812536908763268, 0.2818375651924782, 0.2822324089273095, 0.28249052824843, 0.2826533203038453, 0.28275233473663985, 0.2828107467638643, 0.28284484776236785, 0.28286542694075256, 0.28287904673639325, 0.2828892405657347, 0.2828976288508292, 0.28290490140467484, 0.28291158501411084, 0.2829185218175433, 0.28292702633299294, 0.28293875194387785, 0.28295535916384673, 0.2829781166619183, 0.28300756837879293, 0.2830433653406554, 0.283084301331955, 0.2831285281368591, 0.283173879244086 ], [ 0.28303699294265083, 0.28282177882376835, 0.2825054453398672, 0.28204942072159317, 0.28140645283712756, 0.2805227901053432, 0.27934384581923677, 0.2778247381887991, 0.27594649805024446, 0.2737370087427585, 0.27129254450692697, 0.2687914970720131, 0.26648853355610735, 0.2646790087302802, 0.2636339664260583, 0.26352409831653295, 0.2643652393633307, 0.26601330607386253, 0.2682113278440509, 0.27066390764698683, 0.27310576835770206, 0.2753429100446225, 0.2772632813385208, 0.2788259658869366, 0.28004076431344316, 0.2809472330377286, 0.2815979373093104, 0.28204723936856363, 0.28234498355853205, 0.28253369673819395, 0.282647915143548, 0.2827145755778702, 0.2827538124743637, 0.28277984703712034, 0.28280188397079925, 0.28282503787456564, 0.28285131903237287, 0.2828806593410799, 0.2829119002131849, 0.28294363202489675, 0.2829747852967128, 0.28300492194249716, 0.2830342406982044, 0.28306337048804825, 0.28309306065227546, 0.28312387974746356, 0.28315600825670656, 0.2831891666632844, 0.28322267425412256, 0.28325559930833183 ], [ 0.2831139669887318, 0.28294162526407923, 0.28268990890030865, 0.28232966205588117, 0.2818259091652658, 0.28113997574560196, 0.28023424203477726, 0.2790803408391373, 0.2776709996338119, 0.2760343480703905, 0.27424731243339057, 0.27244222788459993, 0.2707995032211129, 0.2695213317358916, 0.2687885754988941, 0.2687131509398482, 0.2693050114260549, 0.27046914537667877, 0.2720340083590474, 0.27379782064753483, 0.2755734576508624, 0.27721803845853665, 0.27864345279252556, 0.2798119456237443, 0.2807238109474632, 0.28140336420275414, 0.28188693985678404, 0.28221434756151004, 0.2824236926968361, 0.28254875138106694, 0.2826179512823554, 0.2826541855122497, 0.28267497644879924, 0.2826927803621343, 0.2827154115005525, 0.28274664141333067, 0.2827870097150253, 0.28283480813428163, 0.2828871226599786, 0.282940780279191, 0.2829930631913428, 0.2830421137220867, 0.28308703057669404, 0.28312772347333104, 0.28316463037529943, 0.2831984049509966, 0.28322965827463714, 0.2832588009174411, 0.28328599293097795, 0.28331117999831823 ], [ 0.2831820722603713, 0.2830475844938377, 0.2828526991678637, 0.28257621735787347, 0.2821933091052874, 0.28167739000329256, 0.2810038704703148, 0.2801561828294422, 0.2791339660765573, 0.2779622938696031, 0.2766994492214016, 0.275439448299007, 0.2743052479782629, 0.2734304722001366, 0.27293194736235277, 0.2728808218778445, 0.27328309284432806, 0.27407785623478687, 0.27515402807656075, 0.27637824892953, 0.2776231755500539, 0.27878763322784095, 0.2798054318444052, 0.280644420193963, 0.28129967321255667, 0.2817847136007794, 0.2821234480868844, 0.28234406710557586, 0.28247507109955006, 0.28254299275248995, 0.2825712053269704, 0.2825792944465156, 0.28258268052399604, 0.2825923980257249, 0.28261508837549226, 0.28265330872631406, 0.28270620612888875, 0.28277049990996445, 0.2828416143427235, 0.2829147569782025, 0.2829857615889812, 0.2830515915720854, 0.2831104943665154, 0.2831618756342411, 0.28320600392252754, 0.28324366007586427, 0.28327582108135296, 0.2833034303931322, 0.2833272697057214, 0.28334791947538474 ], [ 0.28324064390413806, 0.2831383613679721, 0.28299147871361824, 0.2827851335378583, 0.2825023681313993, 0.2821256639189621, 0.2816397342248107, 0.2810357326886467, 0.2803166344772188, 0.279502889195613, 0.27863664314756653, 0.2777822238624814, 0.27702071895971214, 0.2764378731082193, 0.2761071449030442, 0.27607260754057683, 0.2763376833547586, 0.2768641304966629, 0.2775816734510122, 0.27840442348377376, 0.27924817476803293, 0.28004354986247715, 0.28074267555847665, 0.2813198072516824, 0.2817679212799836, 0.2820935926831907, 0.28231192728169835, 0.2824424894279868, 0.28250644978682926, 0.282524734920127, 0.2825167990770324, 0.28249968827945143, 0.28248723153522065, 0.28248937738132984, 0.28251181611150267, 0.28255604369466236, 0.28261993563970683, 0.2826987565826712, 0.28278640398582316, 0.28287662796499535, 0.2829640007347141, 0.2830445047287095, 0.2831157230466732, 0.2831767079937376, 0.28322765117320287, 0.28326948161973425, 0.2833034906965571, 0.2833310418963206, 0.28335338503708857, 0.2833715661228686 ], [ 0.2832895281548775, 0.2832136606873861, 0.28310578044405205, 0.2829558135649287, 0.28275258474591475, 0.2824849915948645, 0.28214398129171014, 0.2817253567035745, 0.2812331609030713, 0.28068298360820143, 0.2801041010872554, 0.2795391192355223, 0.2790400261872042, 0.2786604770800409, 0.2784456046465065, 0.2784220824890428, 0.2785916996185638, 0.278930770643434, 0.27939558740184545, 0.2799318966350884, 0.2804852181976004, 0.28100913215362844, 0.2814700043681041, 0.28184812798430603, 0.28213626972284095, 0.28233692545679506, 0.282459372667448, 0.28251715071288824, 0.28252615008591964, 0.2825031874965454, 0.2824648260152371, 0.28242624505586045, 0.28240011125667547, 0.28239556616933464, 0.2824175498162502, 0.2824666697908754, 0.28253970504020565, 0.28263065633071666, 0.2827321018685828, 0.2828365506050997, 0.2829375248648633, 0.2830302176976036, 0.28311170433738997, 0.28318079281192204, 0.28323765184107486, 0.28328335617369765, 0.28331945770290645, 0.28334764595856604, 0.28336952010084643, 0.2833864649038503 ], [ 0.2833291228027132, 0.2832741794428392, 0.2831968603671466, 0.2830905467416018, 0.282948111618818, 0.28276276991389104, 0.2825294158435318, 0.282246419229052, 0.28191767223079783, 0.2815544432251316, 0.2811763770979111, 0.2808109075324249, 0.2804905580810463, 0.2802481712506474, 0.2801109041963873, 0.2800945377677225, 0.2801998486339251, 0.28041225918039403, 0.2807048745924311, 0.2810438634747594, 0.28139449077558726, 0.2817262045545837, 0.2820158306877642, 0.28224873488086283, 0.2824184108362055, 0.2825251940297781, 0.28257472550837104, 0.2825765414526807, 0.28254288934886773, 0.28248767437361566, 0.28242536962752407, 0.2823697814307193, 0.28233270446722125, 0.28232265909505094, 0.282343994765961, 0.28239661513321873, 0.28247643317498383, 0.282576458705111, 0.2826882452475015, 0.28280334925287665, 0.2829144999932827, 0.28301630720746324, 0.28310548345185493, 0.28318067478174136, 0.2832420507280878, 0.2832908054327055, 0.283328686300396, 0.2833576179307148, 0.28337944488097955, 0.283395785751487 ], [ 0.2833602767130777, 0.28332137731586665, 0.28326721875054683, 0.283193574869385, 0.2830960356612124, 0.2829705939127988, 0.2828145150858998, 0.28262744652836175, 0.28241261258616024, 0.2821778131803223, 0.28193584137140226, 0.2817039290889109, 0.2815019842107131, 0.2813497107788757, 0.2812631275784784, 0.28125134473193514, 0.2813145282464536, 0.28144368437441547, 0.28162232343279997, 0.2818294685992471, 0.28204312459267317, 0.2822433376594964, 0.2824142917998945, 0.2825453057541158, 0.2826309327419819, 0.2826705201823522, 0.28266756074922034, 0.2826290256155043, 0.28256470191469246, 0.28248643383049027, 0.2824071369003916, 0.2823395284740347, 0.28229466385237245, 0.2822805223016, 0.2823009714559581, 0.2823553974945498, 0.28243912347677913, 0.28254451337973724, 0.28266246974258336, 0.2827839534914444, 0.28290120365758964, 0.28300847273422686, 0.28310225316286697, 0.28318109390470186, 0.28324516596912513, 0.283295735922225, 0.2833346685562573, 0.28336402887968687, 0.28338580765936094, 0.28340176280587664 ], [ 0.28338412401494456, 0.2833571624297635, 0.2833200286120659, 0.2832700940475619, 0.2832047048669057, 0.2831215705880305, 0.28301931057962376, 0.2828981174473769, 0.2827604330213061, 0.28261146503932966, 0.2824593284346486, 0.2823146097285824, 0.2821892540954752, 0.28209485975530774, 0.28204068424958856, 0.28203183258672476, 0.2820681173935514, 0.2821439188454328, 0.2822490783251797, 0.2823705562644129, 0.28249439879855, 0.2826075532327706, 0.282699221833922, 0.28276165741569864, 0.2827904852268978, 0.2827847231606593, 0.2827466568115594, 0.2826816385910291, 0.28259777265950164, 0.2825053733178475, 0.28241608374439175, 0.2823416276311945, 0.28229231439285446, 0.2822755693515439, 0.28229483838673514, 0.2823491682979073, 0.2824335919211396, 0.28254021583543204, 0.28265971442717375, 0.2827828529293005, 0.28290171177145745, 0.2830104245998699, 0.2831054042612605, 0.283185156052517, 0.2832498381017948, 0.28330072886796487, 0.2833397235862323, 0.28336893017265413, 0.28339038903398517, 0.28340590928388787 ], [ 0.2834019133448276, 0.2833835926570693, 0.2833586309165672, 0.2833254321704158, 0.28328244007379944, 0.2832283865378182, 0.2831626246356394, 0.2830855141206571, 0.2829987925846754, 0.28290583139125197, 0.2828116583629667, 0.2827226461695805, 0.28264582742247474, 0.28258789885375973, 0.2825540893778247, 0.2825471455093911, 0.2825666907400408, 0.2826091288380108, 0.28266811167698075, 0.2827354389276463, 0.28280216079007053, 0.2828596478073756, 0.2829004629770896, 0.28291897807140765, 0.2829117679257602, 0.28287785816390554, 0.2828188840958133, 0.28273915707100694, 0.28264556228760995, 0.28254716829516785, 0.28245444620983706, 0.2823780881340524, 0.28232755856510644, 0.28230965502401145, 0.2823274249464817, 0.28237973526525045, 0.28246162226078797, 0.28256532472272444, 0.28268171531770664, 0.2828017658411419, 0.28291772899724005, 0.283023853692523, 0.2831166068878607, 0.2831944960952634, 0.2832576458249789, 0.2833072822029812, 0.2833452437329904, 0.2833735869411703, 0.28339431122605013, 0.28340919629761174 ] ] }, { "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", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.6754942294210196, 0.8520715478807688, 0.29734096210449934, 0.44542787317186594, 0.891484871506691, 0.356950888658353, 0.3446731575683185, 0.3642138474715369, 0.35237465120343253, 0.3502478416877281, 0.3509088562002598, 0.2822813354743893, 0.3317200971523723, 0.359800905321761, 0.3422795357638807, 0.37434775950735416, 0.33695496110622514, 0.32194965771573725, 0.24857944161955917, 0.37851422930585893 ], "xaxis": "x", "y": [ 0.9749920815229416, 0.44737629033625126, 0.7244665613397956, 0.26765880919992924, 0.560373960994184, 0.49889825083073974, 0.5023165586612063, 0.5025278037886695, 0.4921372566267521, 0.4980965521926443, 0.5405689909030187, 0.5744245522341334, 0.5097857016531507, 0.49718338267420964, 0.47677219127749, 0.39646166497768165, 0.5091684458932115, 0.4960571611566195, 0.4943426543165299, 0.506332505502445 ], "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", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.6754942294210196, 0.8520715478807688, 0.29734096210449934, 0.44542787317186594, 0.891484871506691, 0.356950888658353, 0.3446731575683185, 0.3642138474715369, 0.35237465120343253, 0.3502478416877281, 0.3509088562002598, 0.2822813354743893, 0.3317200971523723, 0.359800905321761, 0.3422795357638807, 0.37434775950735416, 0.33695496110622514, 0.32194965771573725, 0.24857944161955917, 0.37851422930585893 ], "xaxis": "x2", "y": [ 0.9749920815229416, 0.44737629033625126, 0.7244665613397956, 0.26765880919992924, 0.560373960994184, 0.49889825083073974, 0.5023165586612063, 0.5025278037886695, 0.4921372566267521, 0.4980965521926443, 0.5405689909030187, 0.5744245522341334, 0.5097857016531507, 0.49718338267420964, 0.47677219127749, 0.39646166497768165, 0.5091684458932115, 0.4960571611566195, 0.4943426543165299, 0.506332505502445 ], "yaxis": "y2" } ], "layout": { "annotations": [ { "font": { "size": 14 }, "showarrow": false, "text": "Mean", "x": 0.25, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 14 }, "showarrow": false, "text": "Standard Error", "x": 0.8, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" } ], "autosize": false, "height": 450, "hovermode": "closest", "legend": { "orientation": "h", "x": 0, "y": -0.25 }, "margin": { "b": 100, "l": 35, "pad": 0, "r": 35, "t": 35 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "width": 950, "xaxis": { "anchor": "y", "autorange": false, "domain": [ 0.05, 0.45 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "xaxis2": { "anchor": "y2", "autorange": false, "domain": [ 0.6, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "yaxis": { "anchor": "x", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x2" }, "type": "linear" }, "yaxis2": { "anchor": "x2", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "type": "linear" } } }, "text/html": [ "