{ "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 11-04 19:20:30] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n" ] }, { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import numpy as np\n", "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.256261132033234, -0.25684691318799313, -0.25755368501857234, -0.2583792623917355, -0.2593197511967082, -0.26036949969120293, -0.2615210741343971, -0.26276526065928835, -0.2640910958501989, -0.26548592919039826, -0.2669355212813417, -0.26842418229326026, -0.26993495522948113, -0.2714498480166442, -0.2729501169656147, -0.27441660168636695, -0.2758301081385354, -0.27717183238433124, -0.2784238131717495, -0.2795693972233283, -0.28059369759849995, -0.2814840232579212, -0.2822302573848906, -0.28282516331937013, -0.28326460011282717, -0.28354763446801345, -0.28367654174743606, -0.28365669525350573, -0.28349634949310903, -0.28320632906573057, -0.28279963968459587, -0.282291021328055, -0.2816964654618077, -0.2810327186699285, -0.28031679401855997, -0.2795655092861819, -0.27879506812518245, -0.27802069659065715, -0.2772563435942624, -0.27651444999054947, -0.27580578740868955, -0.2751393647758065, -0.27452239785375965, -0.27396033508985107, -0.27345693167708335, -0.2730143629060519, -0.27263336761341206, -0.27231341271563136, -0.27205287037368736, -0.2718492001721451 ], [ -0.25538478955054483, -0.2560855342187615, -0.2569230622527311, -0.25789499319776826, -0.2589970019078929, -0.26022275717166043, -0.26156388709074857, -0.2630099733642001, -0.2645485773327381, -0.2661653016208445, -0.26784389229664635, -0.2695663873734255, -0.2713133178598459, -0.2730639670771101, -0.27479669231039205, -0.2764893098967137, -0.278119540619977, -0.27966550706744014, -0.281106268905303, -0.2824223765258865, -0.2835964189473968, -0.28461353890323976, -0.28546188726841354, -0.2861329906032432, -0.28662200960884204, -0.2869278723396195, -0.2870532735125412, -0.28700453944117776, -0.28679136620958323, -0.2864264459529778, -0.2859250019432411, -0.28530425720337904, -0.2845828634331242, -0.2837803171610506, -0.2829163884596766, -0.2820105845998756, -0.28108166707398796, -0.2801472358919039, -0.27922339033375826, -0.27832447075586964, -0.27746288185307794, -0.2766489941658575, -0.2758911176974283, -0.2751955393228027, -0.27456661422243706, -0.27400690080984014, -0.2735173284665419, -0.27309738775119907, -0.2727453335045079, -0.27245839231862956 ], [ -0.2545368178324512, -0.2553692573585022, -0.25635621235016304, -0.2574951036687828, -0.25878114132958135, -0.26020724785952976, -0.2617640110248813, -0.26343966824590886, -0.26522012594799377, -0.2670890184463404, -0.2690278125049369, -0.2710159650932918, -0.27303114263430917, -0.27504950971374653, -0.2770460933966841, -0.27899522573525826, -0.2808710617863682, -0.2826481638360124, -0.2843021352032924, -0.2858102798593917, -0.287152258133227, -0.2883107049109778, -0.28927177567008755, -0.29002558776486886, -0.29056652952858375, -0.2908934174969699, -0.29100949158636935, -0.2909222483768553, -0.2906431227162953, -0.2901870367367705, -0.28957184233610167, -0.28881768777944333, -0.28794634116829865, -0.28698050322266566, -0.2859431394505715, -0.2848568577979169, -0.28374335280224383, -0.282622931636447, -0.28151413169158274, -0.2804334338991282, -0.2793950711234406, -0.27841092685806296, -0.2774905162383883, -0.27664103906481224, -0.275867493080859, -0.2751728350910784, -0.27455817752517786, -0.2740230086325287, -0.27356542549372753, -0.27318237033509307 ], [ -0.25372966183957435, -0.2547124909179838, -0.2558697298001331, -0.257198601400473, -0.2586938175498345, -0.2603474841071374, -0.262149038205548, -0.26408522004918533, -0.26614008288324664, -0.2682950465716312, -0.2705290023678163, -0.2728184785050096, -0.2751378775628805, -0.2774597965381575, -0.2797554385784702, -0.2819951210791625, -0.28414887829008234, -0.2861871481612124, -0.2880815237237289, -0.28980554003248665, -0.29133545990739573, -0.29265101664230203, -0.29373607042952404, -0.2945791379220607, -0.2951737610019204, -0.29551869077447757, -0.2956178749707975, -0.2954802499771671, -0.29511935125908223, -0.294552766805885, -0.2938014665011722, -0.2928890455171332, -0.2918409218238859, -0.2906835269253468, -0.2894435254629875, -0.2881470940015799, -0.2868192828129746, -0.2854834774623684, -0.2841609700466524, -0.2828706434865406, -0.2816287666522371, -0.2804488934991719, -0.2793418558883213, -0.27831583735798715, -0.2773765137271346, -0.27652724592543326, -0.27576931071593286, -0.27510215584500597, -0.2745236674630484, -0.2740304392597836 ], [ -0.25297727565380174, -0.25413132245584413, -0.2554820818762278, -0.2570265851046005, -0.2587590138897867, -0.2606705839366914, -0.2627494633502489, -0.264980728532785, -0.2673463614688878, -0.26982529472303235, -0.27239351342235224, -0.2750242264303717, -0.2776881210517513, -0.2803537160578197, -0.2829878257782184, -0.28555614293637466, -0.2880239397540587, -0.2903568761348915, -0.2925218915658478, -0.2944881453122279, -0.29622795929539264, -0.2977177113953274, -0.29893862505029456, -0.2998774045088133, -0.3005266737257699, -0.3008851897505862, -0.30095781703678215, -0.3007552656196491, -0.3002936117704799, -0.2995936330092966, -0.2986799991539289, -0.2975803668420126, -0.2963244266444279, -0.2949429498900374, -0.29346687734447346, -0.29192648479523853, -0.2903506522881759, -0.2887662550617679, -0.2871976858223848, -0.28566651041057983, -0.28419125246482396, -0.28278729757330784, -0.2814669036618561, -0.28023930194016333, -0.2791108714921605, -0.2780853703786105, -0.2771642067290693, -0.27634673454025893, -0.2756305605812992, -0.2750118507628362 ], [ -0.2522951725043837, -0.253643572929699, -0.2552136688920955, -0.2570023132662076, -0.259003128536953, -0.2612063644561425, -0.2635987938138661, -0.26616364855612284, -0.2688806003700314, -0.27172579296522625, -0.27467193725747474, -0.27768848479725294, -0.2807418980542233, -0.28379603736952796, -0.2868126823875255, -0.2897521997929387, -0.2925743590433683, -0.2952392841308534, -0.2977085136718634, -0.2999461258953766, -0.30191987175497714, -0.30360225067190294, -0.30497146097828326, -0.3060121617153535, -0.30671599373149494, -0.3070818247081913, -0.30711570277236677, -0.3068305243276778, -0.3062454413009021, -0.3053850491982902, -0.30427840887999524, -0.3029579611947722, -0.3014583946660083, -0.2998155229290706, -0.2980652215959511, -0.2962424648375487, -0.29438049138960215, -0.2925101189330538, -0.2906592156900876, -0.2888523291901732, -0.28711046484096536, -0.2854510013308274, -0.28388772597899675, -0.2824309708090475, -0.2810878291528317, -0.2798624327595893, -0.27875627044140155, -0.27776853099217436, -0.2768964552532779, -0.27613568457261434 ], [ -0.25170045542934794, -0.2532688290819982, -0.25508686030977745, -0.2571512463454326, -0.25945502554057037, -0.26198740462549, -0.2647336273283822, -0.2676748861700554, -0.27078828153096024, -0.27404683606421265, -0.2774195778272626, -0.2808717112495696, -0.2843648999065539, -0.287857687412548, -0.2913060809925089, -0.29466431528958636, -0.29788580137788506, -0.30092424852622546, -0.3037349258786163, -0.3062760106636489, -0.3085099520330175, -0.31040476818643203, -0.31193519128861996, -0.3130835807803103, -0.3138405405263036, -0.3142051969841295, -0.31418512140655486, -0.31379590577595395, -0.3130604266135882, -0.31200785052680025, -0.3106724487696576, -0.30909229460945176, -0.3073079172296786, -0.3053609802671747, -0.3032930433019475, -0.3011444522652004, -0.2989533913005386, -0.2967551153718977, -0.29458137081585073, -0.2924600007135019, -0.2904147237353394, -0.2884650690711738, -0.2866264460936022, -0.2849103252936843, -0.28332450648086055, -0.2818734509394705, -0.2805586558696624, -0.27937905172294614, -0.27833140571870424, -0.27741071768426345 ], [ -0.2512118243543075, -0.2530284491969407, -0.25512600113437556, -0.25750105620484076, -0.26014605005260805, -0.26304906941991785, -0.26619368846583036, -0.2695588509755783, -0.2731188021983096, -0.27684307906368266, -0.28069657450386254, -0.28463969948413037, -0.28862867339271003, -0.29261597747975365, -0.29655100485618674, -0.30038093247548703, -0.3040518249158423, -0.307509957528967, -0.3107033200737658, -0.31358323503741703, -0.31610600181877546, -0.31823446291813917, -0.31993938423459317, -0.32120054974759027, -0.322007490470225, -0.32235979600191467, -0.32226699040964357, -0.32174798816975486, -0.3208301764392612, -0.31954819384878763, -0.3179424914522537, -0.31605776792034385, -0.31394136919869514, -0.31164173419489133, -0.30920695460310443, -0.3066835008139126, -0.30411514889686686, -0.3015421274268844, -0.2990004885502159, -0.2965216958081454, -0.2941324121297139, -0.2918544650439512, -0.28970496231677473, -0.28769652953494507, -0.2858376412317644, -0.28413301856341083, -0.2825840689147681, -0.28118934579839616, -0.2799450107226599, -0.2788452821128753 ], [ -0.2508495552798377, -0.25294553719288404, -0.2553573827545951, -0.25808159604515496, -0.26111000015484803, -0.2644294867259775, -0.26802181409702974, -0.27186345390104094, -0.27592548899622, -0.2801735718229351, -0.2845679613607663, -0.2890636675397189, -0.29361074202096593, -0.29815476078233105, -0.3026375438462565, -0.3069981483106358, -0.3111741515429421, -0.3151032129598982, -0.3187248684274657, -0.3219824759896499, -0.3248252012904966, -0.3272099112889128, -0.32910283971889887, -0.3304808987976667, -0.3313325377219323, -0.3316580858302517, -0.3314695616085165, -0.33078997209265903, -0.32965216533626174, -0.32809732749545084, -0.32617323358659644, -0.3239323667812903, -0.3214300164420715, -0.3187224522357041, -0.31586525334325855, -0.31291185077648553, -0.3099123195136929, -0.30691243743458907, -0.3039530110896284, -0.3010694548302554, -0.2982915999177283, -0.29564370373525695, -0.29314462574375305, -0.29080813582442583, -0.28864332158961936, -0.28665506358940374, -0.2848445506262799, -0.2832098112180632, -0.2817462413005729, -0.28044711229107433 ], [ -0.2506354473462234, -0.253044880016526, -0.2558091722878808, -0.2589248239013904, -0.262383047223931, -0.2661694677331202, -0.2702638773304668, -0.27464003851522334, -0.279265540714838, -0.2841017176381377, -0.2891036461998815, -0.2942202619013844, -0.29939463972000635, -0.3045644996573039, -0.3096629978526295, -0.3146198540109935, -0.31936284210412325, -0.32381963493849325, -0.32791994839205063, -0.33159788465062207, -0.3347943337026846, -0.3374592663297249, -0.33955374532803767, -0.3410514967367732, -0.3419399175718239, -0.3422204457430517, -0.3419082740816635, -0.34103144577726907, -0.33962941601771807, -0.3377511992801348, -0.33545324113486147, -0.33279715767672, -0.3298474768485104, -0.32666949726657385, -0.3233273554665163, -0.31988236535947834, -0.31639166712222655, -0.31290719891324925, -0.30947498503500265, -0.3061347190185007, -0.3029196095727777, -0.2998564510012947, -0.29696587689496856, -0.29426275593235285, -0.29175669072454297, -0.289452584177447, -0.28735124224844133, -0.28544998679807504, -0.28374325713485044, -0.2822231835695334 ], [ -0.2505927338326869, -0.2533528435287021, -0.25651129461426847, -0.260064672743949, -0.26400359661098166, -0.26831236120458657, -0.2729686387982351, -0.2779432330985631, -0.2831998852588319, -0.2886951394883065, -0.29437829084101175, -0.30019145682587145, -0.30606983420068, -0.3119422175093933, -0.3177318606873481, -0.32335775222179625, -0.32873634515968825, -0.33378373674046136, -0.3384182339847662, -0.3425631802998551, -0.34614986512490464, -0.3491203043353744, -0.351429670984242, -0.3530481765522932, -0.3539622493789225, -0.35417492190842154, -0.35370541158764096, -0.3525879509488965, -0.3508699814479536, -0.3486098668603056, -0.34587430291584037, -0.34273560115573254, -0.3392690100226894, -0.33555020967319393, -0.3316530840299518, -0.3276478388221579, -0.3235995014677436, -0.31956681013330895, -0.3156014765160859, -0.31174779022282745, -0.3080425217677373, -0.3045150754324332, -0.30118784156917566, -0.29807669938393744, -0.29519162487564315, -0.29253736362834915, -0.2901141339034681, -0.2879183314602794, -0.28594321338202777, -0.2841795436535749 ], [ -0.2507459536860735, -0.25389722256302444, -0.2574952616870061, -0.2615368605024156, -0.2660120805108641, -0.270903831891311, -0.2761875137722917, -0.2818307100009954, -0.28779293514731147, -0.294025435973428, -0.3004710722371966, -0.30706432579300663, -0.31373151412145844, -0.3203913068130891, -0.3269556530019579, -0.33333121684000283, -0.33942138248056225, -0.34512883054785426, -0.35035861168012816, -0.3550215617700307, -0.35903783317032667, -0.36234027084765713, -0.36487735237397595, -0.36661543900057864, -0.36754014755871856, -0.3676567389714676, -0.3669895145526385, -0.36558030149772003, -0.36348618210008315, -0.3607766697491639, -0.35753055619365687, -0.35383265083937926, -0.3497706091037995, -0.3454320097521777, -0.34090179752442185, -0.33626016315132484, -0.33158089248559575, -0.32693018271339036, -0.3223658977325335, -0.3179372168620508, -0.31368462035250816, -0.3096401505125876, -0.3058278873008888, -0.3022645806322917, -0.29896038724746055, -0.29591966683322984, -0.293141799421191, -0.29062199339446576, -0.2883520603326581, -0.28632113919310503 ], [ -0.2511207809905212, -0.25470704163560104, -0.2587939444360949, -0.2633786339355771, -0.268450675324742, -0.2739915535494815, -0.2799742435053937, -0.2863628383843756, -0.2931122251236963, -0.30016780770827894, -0.30746530212652556, -0.31493065950161636, -0.32248021099123175, -0.33002116050215946, -0.33745256790633354, -0.3446669555695436, -0.3515526278678418, -0.3579967173128409, -0.3638888709202635, -0.36912538323459976, -0.3736134888867497, -0.37727546769693726, -0.3800522029740586, -0.3819058728892672, -0.3828215390908142, -0.38280751094219456, -0.38189448819066923, -0.3801335999102206, -0.3775935477226597, -0.374357117574563, -0.370517344696055, -0.36617360463156473, -0.36142786712129155, -0.35638129845912975, -0.351131340796746, -0.34576934114602886, -0.34037875377498167, -0.3350339002434064, -0.32979924248375914, -0.3247291056606616, -0.3198677777016159, -0.3152499096131518, -0.31090114313403594, -0.306838898232844, -0.3030732610041266, -0.2996079215394997, -0.2964411205307309, -0.29356657214436566, -0.29097433874324863, -0.28865164012892297 ], [ -0.25174381089575676, -0.2558123039073, -0.26044128366298797, -0.26562844124719065, -0.27136293662205, -0.2776248075843353, -0.284384459447408, -0.2916022163328971, -0.29922791487912537, -0.307200533860487, -0.315447881242608, -0.32388640241976996, -0.3324212235000312, -0.34094658988695187, -0.34934688775051237, -0.35749842897348266, -0.36527212844204376, -0.37253710541688917, -0.37916510968046263, -0.38503553086815473, -0.3900406247675586, -0.39409051112714377, -0.39711748260767504, -0.3990792190001771, -0.39996061485479845, -0.3997740805689513, -0.398558339355177, -0.3963758889166091, -0.3933094071290996, -0.3894574450147039, -0.3849297668742982, -0.3798426734022325, -0.3743145903368898, -0.368462135577543, -0.3623968035274778, -0.3562223358933048, -0.35003278925660103, -0.34391126435463876, -0.33792923062260916, -0.3321463609346248, -0.32661078346441114, -0.3213596576533459, -0.3164199869804748, -0.31180959045118023, -0.30753816575831666, -0.3036083886588562, -0.3000170043799922, -0.29675587727228575, -0.2938129741604209, -0.2911732647767339 ], [ -0.25264230189881104, -0.2572436874410801, -0.2624719377626156, -0.2683255297045068, -0.2747933460028414, -0.2818539792935446, -0.28947512961666577, -0.2976130685474351, -0.3062121396516214, -0.31520427771771126, -0.3245085626320375, -0.3340308776246563, -0.3436638087447958, -0.35328698791483687, -0.362768124967391, -0.3719649728831981, -0.38072840925452345, -0.388906693141626, -0.39635078457959355, -0.4029204248106091, -0.4084905089305938, -0.4129571776150661, -0.41624303696878673, -0.4183009915041128, -0.4191163298994088, -0.4187069055223558, -0.4171214655840221, -0.4144363686381868, -0.4107510644133414, -0.40618278074403774, -0.4008608709595312, -0.39492123272417745, -0.3885011325814269, -0.381734676851251, -0.37474907427245463, -0.36766174997325063, -0.36057830056962165, -0.35359122898305184, -0.34677936447009433, -0.34020785599922077, -0.33392862221838515, -0.3279811453838336, -0.32239350662659194, -0.31718357322597496, -0.3123602631695906, -0.30792482682357264, -0.30387209912794966, -0.3001916878680105, -0.29686907402975954, -0.29388660899021574 ], [ -0.2538438759610599, -0.25903218950401025, -0.26492086686169025, -0.2715094662248774, -0.2787867657270009, -0.2867299450078504, -0.29530387739700276, -0.3044604964126265, -0.31413819153496036, -0.3242611996456522, -0.3347389973905736, -0.3454657675639795, -0.35632010166011896, -0.3671651921727069, -0.3778498340011811, -0.38821056353877104, -0.3980751928892734, -0.40726783909506215, -0.4156153225862599, -0.4229545571062596, -0.4291403308023279, -0.43405273882230105, -0.4376035075009727, -0.4397405564176623, -0.4404503548194718, -0.43975789869438286, -0.43772441108781013, -0.43444310332914404, -0.4300334963447672, -0.4246348764445446, -0.4183994541525721, -0.4114857256823592, -0.4040524282444079, -0.3962533560501984, -0.3882331828927014, -0.38012433261688156, -0.3720448574735026, -0.3640972279386103, -0.356367904149465, -0.34892754470036813, -0.34183170845567046, -0.33512191470382896, -0.3288269424690195, -0.3229642680409238, -0.31754155856669525, -0.3125581574172222, -0.3080065131428764, -0.3038735177672911, -0.3001417318304334, -0.2967904830736972 ], [ -0.255376179621989, -0.26120872152568747, -0.26782285492830477, -0.27521958086434795, -0.28338779883244264, -0.2923033450516477, -0.3019281643164288, -0.31220956807544725, -0.3230795146589552, -0.3344538555104923, -0.3462315351029274, -0.35829381643347713, -0.37050372088914935, -0.38270599755043916, -0.3947280351885586, -0.4063821567697323, -0.41746965561648774, -0.4277867325904102, -0.4371321973538337, -0.4453164607480642, -0.4521710471068441, -0.45755767026228444, -0.4613758946266019, -0.463568551543071, -0.46412436734466933, -0.46307761949490855, -0.46050499704692816, -0.4565201375916781, -0.4512665045228923, -0.4449093434642261, -0.43762742701234447, -0.4296051901282968, -0.421025707969938, -0.41206480484325103, -0.4028864311624609, -0.3936393197243409, -0.3844548396866752, -0.37544590640105463, -0.3667067735842606, -0.3583135251327384, -0.3503250907083514, -0.34278462617445493, -0.33572112226600825, -0.32915112899773136, -0.32308050685612333, -0.31750613733389976, -0.3124175441100871, -0.3077983919115506, -0.30362784288353883, -0.2998817603990995 ], [ -0.25726651085576896, -0.26380365915581455, -0.2712119734080171, -0.2794943352019842, -0.28864005445215035, -0.2986237392229181, -0.3094043297994261, -0.32092423716063706, -0.3331084978505621, -0.3458638584606173, -0.3590777503485715, -0.37261721801831366, -0.3863280162954294, -0.40003426392709235, -0.41353918501672793, -0.42662752387772473, -0.4390701306104061, -0.45063096252083923, -0.46107635759478494, -0.4701859876603429, -0.4777644987247387, -0.48365260002252164, -0.4877363401070983, -0.48995351717039304, -0.4902965610267159, -0.4888117043978065, -0.4855947288573761, -0.48078394109097056, -0.47455125854216607, -0.4670923503018345, -0.45861671189392705, -0.4493383929464075, -0.4394678909819741, -0.429205513270886, -0.4187363208301307, -0.4082266203665252, -0.39782186634164474, -0.3876457736578428, -0.37780041455011126, -0.36836707226468257, -0.3594076403839158, -0.35096638288065246, -0.34307190052301717, -0.3357391801699799, -0.3289716323255416, -0.3227630477145716, -0.3170994250716035, -0.3119606397864297, -0.30732193682627623, -0.3031552419047538 ], [ -0.25954141764246574, -0.2668463533919074, -0.2751209917049684, -0.2843706195018099, -0.29458531990821024, -0.3057386431792234, -0.317786482236838, -0.3306660796374592, -0.3442950487178518, -0.358570281662059, -0.37336666560333176, -0.3885356509078434, -0.4039039101865588, -0.41927255952099857, -0.4344176204116718, -0.44909249763890896, -0.4630331567614, -0.4759663685516027, -0.48762087778118424, -0.49774075462481027, -0.5060996494735004, -0.512514344931146, -0.5168559772597495, -0.5190575929086036, -0.519117238132949, -0.5170964199454011, -0.5131143827992732, -0.5073391051971032, -0.4999761747001739, -0.4912567453307394, -0.4814256574372468, -0.470730567960022, -0.4594126620574741, -0.4476992470534139, -0.43579830071744075, -0.42389487428909134, -0.41214913860123686, -0.40069580224505347, -0.3896446125925935, -0.3790816613391079, -0.36907124493082294, -0.3596580679184639, -0.3508696174980826, -0.3427185760767067, -0.33520517323070415, -0.3283194078182034, -0.32204309504643125, -0.31635171229098985, -0.3112160320017875, -0.30660354079808055 ], [ -0.2622262747541403, -0.27036460961517716, -0.27958074098733743, -0.289882983888712, -0.3012626425592763, -0.3136924453768932, -0.3271252366552892, -0.3414928388124807, -0.35670493297490674, -0.372647778808629, -0.3891826393747904, -0.40614392064100335, -0.42333728082642375, -0.4405382754680577, -0.4574923975040531, -0.47391753198611863, -0.48950975877271624, -0.5039530426551819, -0.5169326831940714, -0.5281515963949093, -0.5373477779892115, -0.544310863207432, -0.5488956825900058, -0.5510311254711273, -0.5507233489451281, -0.5480532225705627, -0.5431686816199924, -0.5362732271209354, -0.5276120908952624, -0.5174575879025252, -0.5060949710784614, -0.49380977409197313, -0.48087726018921206, -0.46755425533948225, -0.45407336975069296, -0.4406394180227784, -0.4274277318665404, -0.41458400749119684, -0.4022253256432744, -0.39044200937998896, -0.3793000291177853, -0.3688437158964705, -0.3590985950903252, -0.3500741997434948, -0.3417667631877984, -0.33416172394642185, -0.3272360023664807, -0.3209600286765586, -0.31529951716013055, -0.3102169918316046 ], [ -0.2653448446964451, -0.2743841411529306, -0.2846194379100781, -0.29606280914931815, -0.3087073248724963, -0.32252520462858314, -0.33746629438993403, -0.3534567680500427, -0.37039786182004275, -0.38816439752345877, -0.4066028859754996, -0.42552916509471805, -0.4447258325284369, -0.4639401414392121, -0.48288343751126783, -0.5012334684782433, -0.518640830776786, -0.5347403326550269, -0.5491671827869594, -0.56157684582307, -0.5716664354370653, -0.5791949372202864, -0.5839995519923702, -0.5860060283892417, -0.5852318432205791, -0.5817822206051861, -0.5758399862346175, -0.5676509401437148, -0.5575067249568685, -0.5457270992743279, -0.5326431998507849, -0.5185829172814964, -0.5038590304606831, -0.4887603239835904, -0.47354559107289873, -0.45844021227613313, -0.44363488613269997, -0.4292860509890887, -0.4155175534826286, -0.40242316763331, -0.3900696322536832, -0.3784999417444693, -0.36773668890660716, -0.3577853141948274, -0.34863716228553293, -0.34027228388296116, -0.3326619491575873, -0.32577086031679464, -0.3195590658728857, -0.3139835894540696 ], [ -0.2689188267047083, -0.27892800223573266, -0.290261973440929, -0.302937421684029, -0.3169498353182294, -0.3322713274867462, -0.34884885906502955, -0.3666027592183981, -0.38542530786803963, -0.4051790576504116, -0.425694589410256, -0.4467675747016573, -0.4681553909957224, -0.4895740652651015, -0.5106968837962371, -0.531156391797623, -0.5505514822487144, -0.5684606836521193, -0.5844616262201623, -0.5981552441838772, -0.609191967939328, -0.6172963914356802, -0.622286923604372, -0.6240877424702287, -0.6227317167488734, -0.6183544596898443, -0.611180963659792, -0.6015070862824212, -0.5896784437283124, -0.5760690848294704, -0.5610618277205455, -0.5450315141436488, -0.5283318207819343, -0.511285754873875, -0.49417959320433, -0.47725979985654454, -0.4607323558975872, -0.44476392124068015, -0.4294842933743026, -0.4149897029379326, -0.40134657279503483, -0.38859545257891004, -0.37675491740121536, -0.365825284204048, -0.35579205137881725, -0.34662900755742077, -0.33830098544359116, -0.3307662579908282, -0.3239785889064759, -0.3178889589383548 ], [ -0.272967393858915, -0.28401600156741913, -0.29652916864251877, -0.3105291541818909, -0.3260146350654472, -0.3429581222031266, -0.36130388060583274, -0.3809662418059775, -0.4018280262904424, -0.4237386616001128, -0.4465115680180027, -0.46992057236848195, -0.49369555510316837, -0.5175182112774984, -0.5410195648754865, -0.5637814458832099, -0.585344192948718, -0.6052221403060859, -0.6229269890970794, -0.6379972754211996, -0.6500303988462502, -0.6587126553445786, -0.663842784696054, -0.6653456726469879, -0.6632746738364554, -0.657802999967244, -0.6492062449291184, -0.6378390845161176, -0.6241094268613586, -0.6084529327202419, -0.591310106282944, -0.5731073175882839, -0.5542423405280209, -0.5350743805197626, -0.5159181567662874, -0.49704138057881864, -0.47866489380509436, -0.4609647539387609, -0.4440756336504614, -0.4280950103901974, -0.4130877346211165, -0.3990906701067408, -0.3861171899459271, -0.37416138556658224, -0.3632019031211284, -0.353205364521492, -0.3441293611020603, -0.335925029044254, -0.32853922945444675, -0.3219163642409368 ], [ -0.2775067126552124, -0.28966409202361676, -0.30343699382452055, -0.3188543485990352, -0.33591891598292023, -0.3546042219629271, -0.3748521150874152, -0.39657083342162186, -0.4196332527763966, -0.44387479767617, -0.4690904389560568, -0.49503038931695376, -0.5213946270338625, -0.5478272226658643, -0.5739124489892258, -0.5991754736865585, -0.6230906160202941, -0.6450993274257844, -0.664638188959154, -0.6811747233904023, -0.6942464812537504, -0.7034975090761256, -0.7087064420368377, -0.7098020328845074, -0.7068643945441972, -0.7001128299353002, -0.6898831673758178, -0.6765986279665567, -0.6607383851723658, -0.6428073625380347, -0.6233097948448231, -0.6027279738270229, -0.5815066375604456, -0.5600427536460776, -0.5386800081563152, -0.5177071061971206, -0.4973589538106198, -0.4778198621677425, -0.4592280420522914, -0.44168080269211507, -0.425240010897479, -0.40993749176126526, -0.3957801558014078, -0.38275471890980794, -0.3708319428337167, -0.3599703682660029, -0.35011954330766665, -0.3412227702092876, -0.33321940557884266, -0.326046755843425 ], [ -0.28254943203363375, -0.29588372450019856, -0.3109957402040927, -0.3279222913221559, -0.3466712395849232, -0.36721786511777715, -0.3895019839247716, -0.41342571825028473, -0.43885154522514014, -0.46559999135135005, -0.4934462240406264, -0.5221149641102495, -0.5512737332261276, -0.5805254845529657, -0.6094029696218319, -0.6373683411444493, -0.6638218713214481, -0.688122736509583, -0.7096224545440611, -0.7277082839092863, -0.7418507796131855, -0.751647915393409, -0.7568584187041651, -0.7574191295900214, -0.7534445052169495, -0.745209776778437, -0.7331218097020008, -0.717682950932039, -0.6994530900264356, -0.6790141806283683, -0.6569400542822866, -0.6337729342635305, -0.6100068912359287, -0.5860776816283574, -0.5623579627067455, -0.5391567126050354, -0.516721708700816, -0.49524405214815714, -0.4748639084178432, -0.4556768226698608, -0.43774014147921536, -0.4210792181648375, -0.40569319502775214, -0.3915602439771961, -0.37864221121066727, -0.36688865635446594, -0.3562403061301531, -0.34663196099628535, -0.337994903445203, -0.3302588611607913 ], [ -0.2881041207643821, -0.30268114554843395, -0.31920912508550287, -0.33773406312556503, -0.35827006068547507, -0.38079501601295884, -0.40524721352337795, -0.4315227289321328, -0.45947323536541373, -0.4889034580572607, -0.5195673355760515, -0.5511620878435142, -0.5833200442172719, -0.6155993225514264, -0.6474761050999657, -0.6783428187909314, -0.7075171962195201, -0.73426618643103, -0.7578457297802681, -0.7775531435053382, -0.7927847420950976, -0.8030889669718908, -0.8082056848951558, -0.808085272345833, -0.8028855154387692, -0.7929487354818481, -0.7787646808136577, -0.760926043101823, -0.740083086586198, -0.7169023934718716, -0.6920328128911569, -0.6660799007228903, -0.639588758047473, -0.6130343019390055, -0.5868175765463277, -0.5612666162469073, -0.5366404816646175, -0.5131353018350922, -0.4908914010250668, -0.47000082404103305, -0.45051477783940985, -0.4324506723512097, -0.4157985702315779, -0.40052694832646546, -0.3865877390615288, -0.3739206637712449, -0.3624568975925512, -0.35212212140812654, -0.34283902395437194, -0.33452931927616053 ], [ -0.29417462483072315, -0.31005661091377457, -0.3280733045497622, -0.34828128092952404, -0.3707021163144562, -0.3953173100265565, -0.42206424024460304, -0.4508331146662944, -0.4814644666076688, -0.5137463225894733, -0.5474098924784584, -0.5821227299690507, -0.6174790143329575, -0.6529880495777608, -0.688064124093283, -0.7220229400057774, -0.7540908892785052, -0.7834324218936732, -0.8091971197369134, -0.830582593936101, -0.8469039124979988, -0.8576571902218045, -0.8625655599705272, -0.8615997373791043, -0.8549712166240263, -0.8431017557347495, -0.826576615981314, -0.806090351137871, -0.7823930947775636, -0.7562431307243203, -0.7283689950678653, -0.6994421321221382, -0.6700595381727901, -0.64073491305794, -0.6118964753207213, -0.5838896044504569, -0.5569826905860376, -0.5313748765408335, -0.5072046917697275, -0.4845588611037436, -0.46348080524383545, -0.443978532278155, -0.4260317546024496, -0.40959816141370864, -0.39461884177909534, -0.38102289477790097, -0.36873128774821917, -0.3576600362870349, -0.34772278418889196, -0.3388328607898647 ], [ -0.30075931242676524, -0.31800348315999355, -0.33757576480340884, -0.35954470795689947, -0.3839406640445207, -0.4107498156673703, -0.43990938179348454, -0.4713040024098007, -0.5047628261988739, -0.5400563086106607, -0.5768913604648742, -0.6149035269492239, -0.6536456155341864, -0.6925738373814055, -0.7310349906729211, -0.7682608643294784, -0.8033776281332718, -0.8354370017502504, -0.8634716189786158, -0.8865700269338851, -0.9039597404416041, -0.9150827794432181, -0.9196489629796893, -0.9176575404492749, -0.9093853447150956, -0.8953467966002799, -0.8762356606897113, -0.8528596875509876, -0.8260777362101704, -0.7967459237031135, -0.7656760647813814, -0.7336069763932844, -0.7011874486398373, -0.6689687804757225, -0.6374045255156954, -0.6068552427800853, -0.5775963952183732, -0.5498279467952751, -0.5236845968008832, -0.4992459202962465, -0.4765459451713394, -0.4555818924564188, -0.4363219469339105, -0.4187120211164377, -0.40268153801955303, -0.3881482959732316, -0.37502249923458203, -0.36321004690898645, -0.35261517372678153, -0.34314253247138693 ], [ -0.30785017652948365, -0.32650718477740936, -0.34769406871639325, -0.3714927182650353, -0.3979435696155605, -0.4270386314274134, -0.458715812972593, -0.49285460943482495, -0.529272647429877, -0.5677219861742562, -0.6078836105691852, -0.6493585315586914, -0.6916546712756083, -0.7341705411904078, -0.7761796039150887, -0.8168224969781994, -0.8551165183870215, -0.889990964517319, -0.9203517568426769, -0.9451700968045079, -0.9635809233534418, -0.9749718189453849, -0.9790441578720008, -0.9758352078618269, -0.9656996871075714, -0.9492582711620383, -0.9273259655056177, -0.9008342433980654, -0.8707583436009363, -0.8380569561683895, -0.8036273714103145, -0.7682760025242951, -0.732702284326359, -0.6974931242002049, -0.6631249969495189, -0.6299711044364079, -0.5983115202178775, -0.5683447582740938, -0.5401996659898332, -0.5139469154697011, -0.4896096518408448, -0.46717306310018547, -0.4465927783537179, -0.42780209497481214, -0.4107180932810987, -0.3952467302333685, -0.3812870193663102, -0.368734408541369, -0.35748346436855627, -0.3474299652063055 ], [ -0.3154317771056398, -0.33554399246981237, -0.3583944521008657, -0.38407962570305054, -0.4126512770925639, -0.4441083818496733, -0.4783904488579448, -0.5153723543473393, -0.5548601754158409, -0.5965868160650696, -0.6402056766280895, -0.6852805432188592, -0.7312706553413172, -0.7775119042386246, -0.8231983919048578, -0.8673725184068563, -0.9089347021276051, -0.9466833037585474, -0.9793894054838395, -1.005900494668662, -1.0252558834428291, -1.0367901988709427, -1.0402027336069255, -1.0355792488282036, -1.0233652332005483, -1.0043008222075258, -0.979333938421988, -0.9495287411629274, -0.9159826827082594, -0.8797599293524201, -0.8418437787328796, -0.8031070822724132, -0.7642977139850083, -0.7260354579704188, -0.6888168305128859, -0.6530248959590109, -0.6189418007157598, -0.5867623817982858, -0.5566077368651885, -0.5285380545013196, -0.5025643054314779, -0.4786586063228161, -0.4567632085215094, -0.4367981529793059, -0.4186676848063917, -0.40226554787801244, -0.3874792902259255, -0.3741937106399157, -0.36229357022389724, -0.35166568247395485 ], [ -0.32348002973422946, -0.34507968699992636, -0.36963029854575874, -0.3972439297913527, -0.42798474930936037, -0.46185974928921214, -0.4988109351314932, -0.5387091438877607, -0.5813489638959084, -0.6264434577779813, -0.6736167834098798, -0.722392699464671, -0.7721777509675084, -0.8222400698458878, -0.8716883526611244, -0.9194601262767027, -0.9643320827087234, -1.0049650891458757, -1.039989854874341, -1.0681266553649285, -1.0883188327986968, -1.0998517073042868, -1.102430226323254, -1.0961995665033788, -1.0817083616330345, -1.0598280300621525, -1.0316490459110825, -0.9983748188751584, -0.9612284083127269, -0.9213801359574962, -0.8798979912681925, -0.8377186988673866, -0.7956353891577839, -0.7542973885112552, -0.7142180726057455, -0.6757875101859504, -0.6392874623049603, -0.6049070438981767, -0.5727579471478539, -0.5428885682007694, -0.5152966917092404, -0.489940598986805, -0.46674860142131414, -0.44562708285735075, -0.42646717970411885, -0.4091502479099841, -0.3935522705017418, -0.37954735426029457, -0.36701045347124944, -0.35581944531918375 ], [ -0.3319608858454555, -0.35506811726815024, -0.38134057313721725, -0.41090659210399605, -0.44384354083767236, -0.480167271618606, -0.5198230669116243, -0.5626782740407879, -0.60851608646511, -0.6570290964967992, -0.7078105964176873, -0.7603414937858392, -0.8139715642285181, -0.8678960396052262, -0.9211324490252162, -0.9725076979386493, -1.0206697035531116, -1.0641381013318145, -1.1014013046495246, -1.1310527264556047, -1.1519427961050703, -1.1633135581113998, -1.1648843966384086, -1.156870468369918, -1.1399343062794896, -1.115087853263368, -1.0835706395004812, -1.046728646559641, -1.0059109450533994, -0.962392193385827, -0.9173218521347899, -0.8716966346688282, -0.8263509374962661, -0.7819598962968652, -0.7390504686719473, -0.698016983591829, -0.6591386059105975, -0.6225970068647589, -0.5884931760755773, -0.5568627743473571, -0.5276897440732738, -0.5009181014435805, -0.47646196300482047, -0.45421393282154954, -0.4340520136123263, -0.4158452186733058, -0.3994580601325836, -0.38475407918663945, -0.37159856950203346, -0.35986062854129836 ], [ -0.3408289997229649, -0.3654497945650354, -0.39344836052264365, -0.4249695309153947, -0.4601042513916748, -0.49887773776587907, -0.5412390825476752, -0.5870525443129165, -0.6360899581271764, -0.6880228314336608, -0.7424120321019242, -0.7986928989593451, -0.8561545431505464, -0.913914518999658, -0.9708941944178731, -1.02580560256802, -1.077165383362118, -1.1233519034273325, -1.1627139116833323, -1.1937229985901638, -1.2151436655920005, -1.226183122936051, -1.2265844754615336, -1.2166420374882874, -1.1971400745841463, -1.1692364101896024, -1.1343219187145768, -1.093884482832337, -1.0493961982000117, -1.0022316299206575, -0.9536166692637729, -0.9046030133327005, -0.8560617732604296, -0.8086900126583788, -0.7630251276067865, -0.7194632748249777, -0.6782792232049736, -0.6396459340144853, -0.603652860117609, -0.570322431448032, -0.5396245104481334, -0.5114888012393028, -0.48581531530851485, -0.4624830609795989, -0.4413571528554303, -0.42229454394548727, -0.4051485762725826, -0.38977253132580036, -0.37602234365818893, -0.3637586216644103 ], [ -0.3500265321696082, -0.37615069513128846, -0.4058597215305866, -0.4393145961311147, -0.4766196866143998, -0.5178095971805295, -0.5628373708291585, -0.6115642900162102, -0.6637506944451652, -0.7190463426045068, -0.7769782096769484, -0.8369336130485271, -0.898137611074961, -0.9596261743027008, -1.0202209515704745, -1.0785171242029927, -1.1329009114619852, -1.1816138646667627, -1.2228729586612819, -1.2550382258898312, -1.2767993869365946, -1.2873394611315416, -1.2864343384003858, -1.2744641305951796, -1.2523384061116136, -1.221361093215871, -1.1830715478473302, -1.1390943480588174, -1.0910180503454037, -1.0403101551368148, -0.9882663446442825, -0.9359874583292457, -0.8843764991327294, -0.834148691953359, -0.7858490845537341, -0.7398737203834111, -0.6964917242642578, -0.6558666440717437, -0.6180761055419415, -0.5831293198806891, -0.5509822949821526, -0.5215507916149439, -0.4947211747592729, -0.47035936541149637, -0.4483181191182191, -0.4284428574937368, -0.41057626681056114, -0.3945618591713601, -0.38024667043270344, -0.36748324722398146 ], [ -0.3594822886885992, -0.3870815023927054, -0.4184631383048606, -0.45380334061897826, -0.49321910024259, -0.5367538331165038, -0.5843641442439969, -0.6359080264031424, -0.6911338958385935, -0.749668984640679, -0.8110050335162547, -0.8744793393589397, -0.9392504144334965, -1.0042702156195538, -1.0682593342790587, -1.129697246398671, -1.186844740983628, -1.2378160639427098, -1.2807098750398909, -1.313790209843442, -1.335687153075749, -1.3455719159486317, -1.3432612027792024, -1.3292239274382203, -1.3044931068943775, -1.270512898217953, -1.2289625115940357, -1.1815932420563655, -1.1301000227255602, -1.0760340147618905, -1.0207527674056707, -0.965399905287363, -0.9109055150699259, -0.8579995664360515, -0.8072325118819825, -0.758998968871475, -0.713561820744533, -0.6710751312723439, -0.6316050007103253, -0.5951479738871581, -0.5616469141091056, -0.5310044369320192, -0.5030940966371629, -0.477769564597169, -0.45487205238787104, -0.4342362266352072, -0.41569484577735366, -0.3990823266860036, -0.38423742488692575, -0.37100518804842453 ], [ -0.36911141613566884, -0.39813754651265515, -0.4311298396435468, -0.46827791390949924, -0.509709879266585, -0.555476701374378, -0.6055375296713655, -0.659746223352107, -0.7178384706968933, -0.7794180551544536, -0.8439403361273597, -0.9106912645922537, -0.9787616232060572, -1.0470190213341857, -1.114084642367869, -1.1783273031948107, -1.2378920628709977, -1.2907806394352, -1.334992221673091, -1.3687152377537515, -1.390538662431653, -1.39963531376801, -1.395868912011653, -1.37979571941539, -1.3525642104720816, -1.3157463381000511, -1.2711466312989153, -1.2206284749326994, -1.1659798652079447, -1.108824401567016, -1.0505726381011582, -0.9924044071609632, -0.9352723164609018, -0.8799181817560269, -0.8268962675294738, -0.7765991539465308, -0.72928357930129, -0.6850947077654627, -0.6440880167044273, -0.6062484775481903, -0.5715069989419662, -0.5397542715120519, -0.5108522434243186, -0.48464349466680456, -0.4609587854693853, -0.4396230434714053, -0.4204600335415384, -0.4032959288521111, -0.3879619751964364, -0.3742964145703644 ], [ -0.37881587134781414, -0.40919968070838864, -0.4437152661707199, -0.4825633488800114, -0.5258809413903976, -0.5737245879606514, -0.6260542984425312, -0.6827183851199553, -0.7434386086682825, -0.8077942698737002, -0.8752035171779001, -0.9449005517257271, -1.0159089488459339, -1.0870142635791615, -1.1567434991136087, -1.223364256638706, -1.284920481714354, -1.3393211704749233, -1.384489575888967, -1.4185627452544063, -1.4401094007164792, -1.4483175111191664, -1.4431015454611968, -1.4250988687299118, -1.395559257615623, -1.3561637051229252, -1.3088220256594862, -1.255490902648201, -1.1980353242812867, -1.1381385605905776, -1.07725467908165, -1.0165931368605112, -0.957124878959688, -0.8996012569737896, -0.8445794349797081, -0.7924500430066554, -0.7434644443381915, -0.6977601139776649, -0.655383377056566, -0.616309232117616, -0.5804582716544048, -0.5477108750987818, -0.5179189322518222, -0.49091538800341605, -0.4665219018766512, -0.44455490130403824, -0.42483028379630183, -0.4071669954499644, -0.3913896847088944, -0.37733060280054237 ], [ -0.38848581943271016, -0.4201362609529338, -0.45606183872068284, -0.4964713829652535, -0.5415079386328077, -0.5912309980549085, -0.6455991243501478, -0.7044531476335062, -0.7674993760966465, -0.8342915969617245, -0.904210415949754, -0.9764390590384062, -1.049936444730596, -1.123411335941883, -1.195305631993112, -1.2637996249000798, -1.3268553982848252, -1.3823133384514645, -1.4280478426209222, -1.4621712364344286, -1.483253811537466, -1.4905113698276384, -1.4839100209657126, -1.4641574746529928, -1.4325852477904237, -1.3909592638360666, -1.3412700399441002, -1.2855453948382103, -1.2257090674163336, -1.1634900752588682, -1.1003761042337559, -1.037599749789466, -0.9761465063190597, -0.9167755027562634, -0.8600465041485741, -0.8063488960514403, -0.7559300275496764, -0.7089214413717384, -0.6653622762831973, -0.6252196011042356, -0.5884057225982041, -0.5547926673375109, -0.5242241159451049, -0.4965250971225637, -0.4715097484005163, -0.4489874333344148, -0.42876747901999257, -0.4106627683757942, -0.39449239171129313, -0.38008353346139 ], [ -0.39800202056118256, -0.4308062720541807, -0.46800303958858047, -0.5098057647044887, -0.5563601236499994, -0.60772539136491, -0.6638558816154885, -0.7245826232990891, -0.7895947815661392, -0.8584197922568023, -0.9304011038336889, -1.0046731490800356, -1.0801349602872503, -1.1554268198804953, -1.2289183227177483, -1.298720397320826, -1.3627363661953604, -1.418765262303464, -1.4646617699235076, -1.4985409479662057, -1.5189959670711386, -1.525281374866564, -1.5174129471194338, -1.4961543320937656, -1.4628952568598481, -1.41945868665736, -1.3678880819893957, -1.3102578775337115, -1.2485308023029695, -1.1844668933347438, -1.1195772892758873, -1.0551113254296447, -0.9920655616903152, -0.9312055642000607, -0.8730938660086435, -0.8181197856567124, -0.7665284730865455, -0.7184477197540573, -0.6739118321179212, -0.6328823429723446, -0.5952656172348747, -0.5609275652303611, -0.5297057532279376, -0.5014192284826385, -0.47587637416718076, -0.4528810911188868, -0.43223757637017046, -0.4137539380273314, -0.3972448552776448, -0.3825334629218747 ], [ -0.4072391378369699, -0.441063489012522, -0.479368631512307, -0.5223687784033401, -0.5702084814275424, -0.6229432855654331, -0.6805201567136837, -0.7427578330896043, -0.8093267082900502, -0.8797274565685073, -0.9532676893249992, -1.0290367887928398, -1.1058809088781292, -1.1823830052241062, -1.2568563773079093, -1.3273637108201448, -1.391775312969017, -1.4478777804141973, -1.4935356307164844, -1.5268932526493515, -1.5465861490324333, -1.551916110018869, -1.5429440674626533, -1.5204728254160595, -1.4859246650446076, -1.4411498437644055, -1.3882154442976185, -1.3292167881482617, -1.266134999996329, -1.200745922524785, -1.1345737780423182, -1.0688782442477636, -1.0046635985385433, -0.9427007209581076, -0.8835553394061818, -0.8276181603948234, -0.775134228802591, -0.7262300362492057, -0.6809376667628001, -0.6392157486525496, -0.6009672671556462, -0.5660544512579829, -0.5343110263602056, -0.5055521528819831, -0.47958236949888994, -0.4562018413903137, -0.4352111868466335, -0.4164151249678553, -0.3996251561082776, -0.3846614570072333 ], [ -0.4160697707314883, -0.45076141053206564, -0.48999066363530497, -0.5339685229036777, -0.5828345157608972, -0.6366368269884193, -0.6953119260268155, -0.7586638580821705, -0.8263429367463151, -0.8978233267260335, -0.9723792258695378, -1.049060307101527, -1.1266689162315005, -1.2037442075916645, -1.278561582439492, -1.3491586061082894, -1.4133995014216996, -1.4690873751037965, -1.5141248769412834, -1.546709995547173, -1.5655371451552198, -1.5699611564005989, -1.5600816877027213, -1.536722970165691, -1.5013139700109115, -1.455702587932993, -1.401950304210614, -1.342147571408129, -1.278273185073465, -1.2121034093988663, -1.145165024194925, -1.0787215370834198, -1.0137815311522265, -0.9511200622882494, -0.8913065070686783, -0.8347344746618583, -0.7816510824870337, -0.7321840731800613, -0.6863660268640231, -0.6441554114613385, -0.6054545070791755, -0.5701244054943445, -0.5379973687022616, -0.5088868622884728, -0.48259558032457994, -0.4589217617329684, -0.4376640720185294, -0.41862529422365347, -0.4016150421750579, -0.3864516794752625 ], [ -0.4243689163757902, -0.4597585858817046, -0.4997097881150648, -0.5444263515480676, -0.5940389580796436, -0.6485849279713287, -0.7079872946900557, -0.772033358163558, -0.8403526082418118, -0.912393804140021, -0.9874013379976255, -1.0643920160025233, -1.1421351573882772, -1.2191413447707162, -1.2936678587729, -1.3637509566907817, -1.427275374794195, -1.4820881278598428, -1.52615559191188, -1.5577501633329773, -1.5756382616582552, -1.5792309181886381, -1.5686589355588882, -1.5447506571273948, -1.5089173640994549, -1.4629768091886812, -1.4089572673755164, -1.3489196692690544, -1.2848203274345182, -1.2184207086448504, -1.1512395378969873, -1.0845374299461028, -1.0193236131508308, -0.9563759441229911, -0.8962677007581481, -0.8393967526560644, -0.7860143542090541, -0.7362519755411852, -0.6901453691725576, -0.6476555698560172, -0.6086868293451, -0.5731016623320239, -0.5407332702629237, -0.5113956472243374, -0.4848916771974071, -0.46101951817388886, -0.4395775446261738, -0.42036809115497864, -0.40320021023952674, -0.38789162794509796 ], [ -0.43201850540717435, -0.467923901294842, -0.5083813626209037, -0.5535838475988958, -0.6036496619620552, -0.6586021130580648, -0.71834830720734, -0.7826573276366914, -0.8511378539426437, -0.9232153067054292, -0.9981090375517225, -1.0748111022271758, -1.1520698004074679, -1.2283832988260754, -1.3020108539326323, -1.371010634424484, -1.4333127656680298, -1.486832679204226, -1.5296222487180622, -1.560044895584991, -1.5769484269125584, -1.5798008979798066, -1.56875628783158, -1.5446312747543236, -1.5087979249959145, -1.4630193001340719, -1.409265749776349, -1.3495461257529457, -1.2857753433168957, -1.2196853825274754, -1.152776341343113, -1.0862989730501165, -1.0212591108456301, -0.9584356207072331, -0.8984055378354845, -0.8415720001710996, -0.7881921700740391, -0.7384034844110086, -0.6922473582658076, -0.6496899782448737, -0.6106401387613984, -0.5749642611743263, -0.542498836054721, -0.5130605740906458, -0.4864545620833384, -0.4624807109712863, -0.44093876189727066, -0.42163208983482536, -0.40437051588816714, -0.3889723113155787 ], [ -0.4389116578045269, -0.4751414048920728, -0.5158808479252881, -0.5613087739511758, -0.6115280546130193, -0.6665453848208173, -0.7262500929705733, -0.7903923245614244, -0.8585608335868335, -0.930160746219675, -1.0043921612014235, -1.0802314413570928, -1.156418535708477, -1.2314554779006073, -1.303622916670312, -1.3710224405736726, -1.4316515988492675, -1.4835148821490158, -1.5247669156935806, -1.5538742594962618, -1.5697718676659842, -1.5719837289297196, -1.5606792952897277, -1.5366501324649058, -1.501211291453179, -1.4560507886757503, -1.4030601248889623, -1.3441764036126025, -1.2812560661272165, -1.2159878305522582, -1.149842828914292, -1.0840547852498992, -1.0196216647069933, -0.9573210235175296, -0.8977329723402523, -0.8412664243243062, -0.7881857783477205, -0.7386363001320483, -0.6926672439662118, -0.6502522775683626, -0.6113071034974435, -0.5757043704599001, -0.5432860799040524, -0.5138737479449199, -0.48727660089619174, -0.46329807866505385, -0.4417409034000408, -0.42241094722554673, -0.40512010659331354, -0.3896883641887244 ], [ -0.44495635145036266, -0.48131431981393835, -0.5221081107299479, -0.5674995754123723, -0.617573704845123, -0.6723186704564303, -0.731604939372787, -0.7951638404524652, -0.862565982286239, -0.9332001368997097, -1.006253734581275, -1.0806970446501287, -1.1552744140164064, -1.2285074088381034, -1.2987159569222197, -1.3640639982483114, -1.4226349293903033, -1.4725385163304416, -1.5120446118653899, -1.5397305885907162, -1.5546210093510089, -1.5562932505033436, -1.5449252674976535, -1.521272827724255, -1.4865803218012694, -1.4424450284368675, -1.3906630032463132, -1.333083363224688, -1.2714893254478135, -1.2075138652423338, -1.1425892949903338, -1.0779250747082463, -1.014506432945177, -0.9531067386491381, -0.8943078849269985, -0.8385244691931151, -0.7860289063353217, -0.7369756683891133, -0.6914236090439979, -0.6493558553565227, -0.6106970918251026, -0.5753282754623226, -0.5430989450672917, -0.5138373530908006, -0.4873586751447712, -0.4634715547039606, -0.44198322861039385, -0.42270345909522516, -0.40544747440761897, -0.3900380954784794 ], [ -0.4500782769298966, -0.4863680030475813, -0.5269903821920578, -0.572088190737156, -0.6217267915052341, -0.6758746882384383, -0.7343832258993366, -0.796965890320503, -0.8631777589739174, -0.9323959234778636, -1.0038022390187529, -1.076370598956545, -1.1488620284464204, -1.219832042600077, -1.2876555573821582, -1.3505746440001953, -1.4067729526927966, -1.4544771582488432, -1.4920801657086724, -1.5182737619224214, -1.5321717680062177, -1.5334013894267646, -1.5221431288888676, -1.4991091314840657, -1.4654636452645775, -1.422702220366652, -1.3725133544345458, -1.316645648975133, -1.256797018314395, -1.1945338501571818, -1.1312405532479777, -1.0680952246671558, -1.0060652126715464, -0.9459163140337237, -0.8882302992506897, -0.8334267251771446, -0.7817861956527146, -0.733473213207368, -0.6885575020987079, -0.6470332040932716, -0.6088356995605926, -0.5738560321547149, -0.5419530523349091, -0.5129634711925672, -0.4867100518578875, -0.463008175542983, -0.44167101298862654, -0.42251351647818836, -0.4053554271672529, -0.3900234701829442 ], [ -0.4542227479176466, -0.49025172864055727, -0.530483772795304, -0.575041114234485, -0.6239684746508443, -0.6772143298710042, -0.7346114500829142, -0.7958572410960965, -0.8604945653063473, -0.927894021409277, -0.997239174872181, -1.0675169707051029, -1.137516452786265, -1.2058397683629596, -1.2709299276232573, -1.3311194753265947, -1.38470263202574, -1.4300302156282942, -1.4656217819134372, -1.4902836377336575, -1.5032162712916306, -1.5040925428153051, -1.4930906736165013, -1.4708740635940902, -1.43852118156518, -1.397419251188069, -1.3491414144212177, -1.295326958517296, -1.237579267747031, -1.177389199511056, -1.116085224768788, -1.0548073587282942, -0.9944998352266243, -0.9359171085424571, -0.8796383764240037, -0.8260868205449501, -0.7755507935032524, -0.7282050724180387, -0.6841309953638725, -0.6433348063035191, -0.6057638884982456, -0.5713208016031405, -0.5398751859097461, -0.5112736842087293, -0.4853480769421603, -0.46192184383922147, -0.44081536510798014, -0.42184996445179246, -0.4048509794319832, -0.38965002516594593 ], [ -0.4573556308579149, -0.49293928845378343, -0.5325733803669062, -0.5763588056116852, -0.6243193533802651, -0.6763838577172553, -0.732367796716238, -0.7919549274345297, -0.8546797335853398, -0.9199117732158888, -0.9868434860658901, -1.0544836472327546, -1.121659352254019, -1.1870300095372865, -1.2491170190519363, -1.3063522758124437, -1.357146996566113, -1.3999794116555493, -1.4334957181602843, -1.456614037539293, -1.4686172810853844, -1.469219506877617, -1.4585929437880458, -1.4373494934679751, -1.4064795273889383, -1.3672591906672493, -1.321142373340042, -1.2696537795095055, -1.214295897235938, -1.1564771744517128, -1.097463397113295, -1.0383504083816737, -0.9800542229440368, -0.9233139692490253, -0.8687033990717131, -0.8166474515585471, -0.7674412157331955, -0.7212694214248145, -0.678225231174377, -0.6383275937739964, -0.6015367711589922, -0.5677678912480665, -0.5369025367615798, -0.5087984768953424, -0.48329770303524033, -0.46023295505852135, -0.4394329310931807, -0.4207263679518104, -0.40394516673463843, -0.3889267216583193 ], [ -0.45946333869944533, -0.4944284978453529, -0.5332721352836641, -0.5760736658801995, -0.6228363228496575, -0.6734703494772004, -0.7277758328893549, -0.7854258214296579, -0.8459505704188782, -0.9087240632913465, -0.9729543741412885, -1.037679950359871, -1.101774414472458, -1.1639628507552322, -1.2228525200638356, -1.276980258054763, -1.3248772069420576, -1.365148902231696, -1.3965652732765395, -1.4181514428923077, -1.4292673964014608, -1.4296639110779505, -1.419504538600171, -1.3993488839519512, -1.3700995973873256, -1.332922167380858, -1.289150670079915, -1.2401931208762202, -1.187447463262421, -1.1322349630532178, -1.0757534246004679, -1.019049275925718, -0.9630055600517957, -0.9083420804615163, -0.8556240050059803, -0.8052757477029889, -0.7575976301918776, -0.71278349759675, -0.6709380421426199, -0.6320930453915673, -0.596222090825005, -0.5632535403284972, -0.5330817318502019, -0.5055764605577839, -0.48059086843962145, -0.4579679002072249, -0.437545496137148, -0.41916069214829266, -0.4026527889462076, -0.3878657389725246 ], [ -0.4605519947728289, -0.4947397612395119, -0.5326185991581847, -0.5742468714883899, -0.6196082153294914, -0.6685958869214426, -0.7209969580391162, -0.7764770393961062, -0.8345664131590214, -0.894648737665405, -0.9559538457195014, -1.0175565605694907, -1.0783838172697173, -1.137232560352449, -1.1928007007982147, -1.2437326471593768, -1.2886794119244924, -1.3263710067131924, -1.3556959976935312, -1.3757802421760315, -1.3860548158225088, -1.3863029029213179, -1.376677583609236, -1.3576868914271172, -1.330148193516434, -1.2951192172244115, -1.2538163630017045, -1.2075315456651086, -1.1575569697563415, -1.1051239819165943, -1.0513586333981104, -0.997253702675619, -0.9436550579906904, -0.8912593589893878, -0.8406199605605993, -0.7921581957421729, -0.7461777325659119, -0.7028802576471181, -0.6623812467824766, -0.6247250018364591, -0.5898984570768222, -0.5578434958479553, -0.5284676850176043, -0.5016534457153554, -0.47726574854898696, -0.45515846129046644, -0.43517949599121253, -0.41717490741801455, -0.4009920905834882, -0.38648221554782686 ] ], "zauto": true, "zmax": 1.5798008979798066, "zmin": -1.5798008979798066 }, { "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.5452379755924812, 0.5449167824988739, 0.5446224343246424, 0.5443584200604538, 0.5441276587038529, 0.5439324514125106, 0.5437744592980439, 0.5436547040319041, 0.5435735870686569, 0.5435309227587364, 0.543525980893696, 0.5435575351140113, 0.5436239148180466, 0.5437230594158896, 0.5438525746967259, 0.5440097915547514, 0.5441918273124421, 0.5443956494813903, 0.5446181411828964, 0.5448561668126979, 0.5451066360483734, 0.5453665640698759, 0.5456331259190236, 0.5459037032179818, 0.5461759219113351, 0.5464476801920249, 0.5467171662372082, 0.5469828657707586, 0.5472435597786725, 0.5474983129560044, 0.5477464536963308, 0.5479875466794238, 0.5482213593833974, 0.5484478241325763, 0.548666997557433, 0.5488790195399598, 0.5490840737974143, 0.5492823521818276, 0.5494740245256752, 0.549659215455537, 0.5498379890604909, 0.5500103416948271, 0.5501762025800696, 0.5503354413136788, 0.5504878809458564, 0.5506333149894137, 0.5507715265979405, 0.5509023081809933, 0.5510254799003442, 0.551140905774256 ], [ 0.5441394988511568, 0.5437594360442808, 0.5434099241415306, 0.5430951125049481, 0.5428185134722142, 0.5425829485176176, 0.5423905228358726, 0.5422426243612484, 0.5421399418334233, 0.5420824962352588, 0.5420696806687254, 0.5421003052023485, 0.5421726449822777, 0.5422844914933428, 0.5424332079203676, 0.5426157898987967, 0.5428289325638719, 0.543069103891987, 0.5433326231678435, 0.5436157423191741, 0.5439147270900057, 0.5442259347135683, 0.544545884908455, 0.5448713215599165, 0.545199263202654, 0.5455270412225385, 0.5458523254077492, 0.546173137031891, 0.5464878500352092, 0.5467951811280632, 0.5470941698402544, 0.5473841497433038, 0.5476647123169279, 0.5479356652157965, 0.5481969869835178, 0.5484487805000166, 0.548691227572552, 0.5489245470375175, 0.5491489585028398, 0.5493646534339297, 0.5495717747057675, 0.5497704050703103, 0.5499605642959279, 0.5501422140988808, 0.5503152694701889, 0.5504796146496495, 0.5506351218336123, 0.5507816707217893, 0.5509191671875632, 0.5510475596578968 ], [ 0.5428924149113221, 0.5424438011679263, 0.5420297333406681, 0.5416551231837647, 0.541324179102921, 0.5410403469192872, 0.5408062815112652, 0.5406238437169839, 0.5404941155435344, 0.54041742689026, 0.5403933884707384, 0.5404209279416518, 0.5404983287798777, 0.54062327355193, 0.5407928944078778, 0.5410038336861469, 0.5412523165154743, 0.5415342355751585, 0.5418452461952603, 0.5421808682228637, 0.5425365899157945, 0.5429079687328786, 0.5432907242506403, 0.5436808193688658, 0.5440745272015927, 0.5444684823100393, 0.5448597160069252, 0.5452456762361236, 0.5456242330016793, 0.5459936705602815, 0.5463526677148222, 0.5467002676628181, 0.5470358390338756, 0.5473590300128849, 0.5476697177560688, 0.5479679555951408, 0.5482539207076722, 0.5485278649375243, 0.5487900712355255, 0.5490408177542734, 0.5492803510079196, 0.5495088687650413, 0.5497265125648224, 0.5499333690208469, 0.5501294784783761, 0.5503148491737455, 0.5504894748349519, 0.5506533536593105, 0.5508065067822857, 0.550948994668936 ], [ 0.5414816080252607, 0.5409534383608234, 0.5404640630452852, 0.5400192673385129, 0.5396240709413672, 0.5392826647841868, 0.5389983805041133, 0.5387736847034368, 0.5386101889637612, 0.5385086674950665, 0.538469076896635, 0.5384905760797315, 0.538571548022327, 0.5387096277957071, 0.5389017425786982, 0.539144168920066, 0.539432610525042, 0.5397622968835827, 0.5401280998642684, 0.5405246626879374, 0.5409465339952153, 0.5413882992628041, 0.5418447025279269, 0.5423107529322772, 0.5427818125575299, 0.5432536639608013, 0.5437225574050786, 0.5441852388540613, 0.5446389603650325, 0.5450814746929569, 0.545511015899003, 0.5459262677159429, 0.5463263214846336, 0.5467106256837673, 0.5470789293960178, 0.5474312223996584, 0.5477676748357436, 0.5480885794777357, 0.5483942994595035, 0.5486852238841894, 0.5489617330751977, 0.5492241744155564, 0.549472848850256, 0.5497080072993112, 0.5499298555362016, 0.5501385655910672, 0.5503342914732313, 0.5505171869740622, 0.5506874234821776, 0.5508452060721535 ], [ 0.5398912911051923, 0.5392711188928688, 0.5386941880909591, 0.5381672762604988, 0.5376963418500792, 0.5372864596632215, 0.536941789756958, 0.5366655686458559, 0.5364601110184449, 0.5363268122468665, 0.5362661462371427, 0.5362776585455287, 0.5363599598310063, 0.5365107283630378, 0.5367267316009413, 0.537003875561722, 0.5373372871948986, 0.5377214301842728, 0.5381502496318472, 0.5386173370151464, 0.5391161043927992, 0.5396399563508805, 0.5401824494567826, 0.5407374314915774, 0.5412991557739651, 0.5418623688056563, 0.5424223717753544, 0.542975057927823, 0.5435169284587974, 0.5440450896433041, 0.5445572336378857, 0.545051605097585, 0.5455269556135, 0.5459824880857711, 0.5464177934666185, 0.5468327827248354, 0.5472276172490208, 0.5476026410846253, 0.5479583182970323, 0.5482951783388098, 0.548613771606061, 0.5489146364787197, 0.5491982781645919, 0.5494651587255558, 0.5497156968615137, 0.5499502754398169, 0.5501692544251412, 0.5503729867906126, 0.5505618351472077, 0.5507361871643216 ], [ 0.5381051108619836, 0.5373789347833594, 0.5367005686887979, 0.5360779065080093, 0.5355179840073272, 0.5350269173806976, 0.5346098743966794, 0.5342710624597502, 0.5340137180568855, 0.5338400859075235, 0.5337513828438899, 0.5337477494141052, 0.5338281994806783, 0.5339905829063717, 0.5342315776308894, 0.5345467248105311, 0.5349305149217454, 0.5353765252289253, 0.5358776015006481, 0.5364260708930813, 0.5370139695563083, 0.5376332681048523, 0.5382760802822655, 0.5389348440920869, 0.5396024692955288, 0.5402724494937072, 0.5409389403141122, 0.5415968071969386, 0.5422416469943324, 0.5428697873916812, 0.5434782674908796, 0.5440648021907109, 0.5446277325596177, 0.54516596434766, 0.5456788970901268, 0.5461663467629476, 0.5466284654579507, 0.5470656618650065, 0.5474785263465725, 0.5478677640165457, 0.5482341385181891, 0.5485784282274745, 0.5489013955183767, 0.5492037686547511, 0.5494862349433289, 0.5497494430850474, 0.5499940122465017, 0.5502205452465804, 0.5504296433858562, 0.5506219207827521 ], [ 0.5361062699465374, 0.535258430595102, 0.5344629891216254, 0.5337290814616181, 0.5330649681073742, 0.532477982810001, 0.531974510661827, 0.5315599735900716, 0.5312388026404532, 0.531014382889351, 0.5308889670550401, 0.5308635655274606, 0.5309378308090901, 0.5311099607543202, 0.5313766459623402, 0.5317330820197218, 0.5321730581678362, 0.532689122553274, 0.5332728130638622, 0.533914934139152, 0.5346058553449903, 0.5353358073208497, 0.5360951543285741, 0.5368746287144602, 0.5376655195212529, 0.5384598137795691, 0.5392502936611424, 0.5400305952825651, 0.5407952356608992, 0.5415396136809998, 0.5422599896352722, 0.5429534465812142, 0.5436178358720847, 0.5442517089362288, 0.5448542376610942, 0.5454251263681755, 0.5459645190670614, 0.5464729061904007, 0.5469510351540254, 0.5473998287794688, 0.5478203148844144, 0.5482135692954216, 0.5485806733188843, 0.548922685484882, 0.5492406263008894, 0.5495354739262368, 0.5498081681633462, 0.5500596199689097, 0.5502907237867144, 0.5505023703336211 ], [ 0.5338776637452433, 0.5328907557389283, 0.5319607236116306, 0.5310980671846397, 0.5303124240528796, 0.5296125389267794, 0.5290062560657492, 0.5285005039886468, 0.528101244836508, 0.527813370982799, 0.5276405467362647, 0.527585009843209, 0.527647361967263, 0.5278263858704301, 0.5281189275264468, 0.5285198737356784, 0.5290222418272984, 0.5296173810002976, 0.5302952685483466, 0.5310448719346397, 0.5318545414848781, 0.5327123987999713, 0.533606691807428, 0.5345260966016718, 0.5354599564379138, 0.5363984572909024, 0.5373327458493727, 0.5382549991782642, 0.5391584558516603, 0.5400374169912862, 0.5408872233874522, 0.5417042126704429, 0.5424856589700665, 0.5432296969018414, 0.5439352319699722, 0.5446018402801132, 0.5452296614234059, 0.5458192891718636, 0.5463716649649595, 0.5468879789578838, 0.5473695826654439, 0.5478179160949574, 0.548234450897327, 0.5486206496724932, 0.548977940316824, 0.5493077033234719, 0.5496112693137591, 0.5498899238036061, 0.5501449162621157, 0.5503774708344639 ], [ 0.5314020292335462, 0.5302568357700737, 0.5291727294645947, 0.5281616848378954, 0.5272348679668631, 0.5264026418386761, 0.5256745844808204, 0.5250594767242031, 0.5245652222689847, 0.524198678242482, 0.5239653967528138, 0.523869302140824, 0.5239123490002846, 0.5240942175659381, 0.524412102842037, 0.5248606418345998, 0.5254320022992164, 0.5261161313943657, 0.5269011390774624, 0.5277737737518249, 0.5287199394241678, 0.5297252049346106, 0.5307752649590288, 0.5318563262965699, 0.5329554078376594, 0.5340605554520378, 0.5351609818731092, 0.5362471458746036, 0.5373107852151631, 0.5383449152939268, 0.5393438017762097, 0.5403029119638995, 0.5412188472733733, 0.5420892581671263, 0.5429127431213687, 0.5436887342657389, 0.5444173736665655, 0.5450993853596475, 0.5457359488407983, 0.5463285796455876, 0.5468790219170069, 0.5473891566192713, 0.547860927524423, 0.5482962855074802, 0.5486971502398872, 0.5490653872201329, 0.5494027973090899, 0.5497111155661424, 0.5499920161773827, 0.5502471205584426 ], [ 0.5286621037053263, 0.5273375615595721, 0.526077868124876, 0.5248965627198368, 0.5238064816370989, 0.5228198213909206, 0.5219481994512666, 0.521202652207798, 0.5205935193030513, 0.5201301863197695, 0.5198206899572586, 0.5196712243039127, 0.5196856154741927, 0.519864847617598, 0.5202067220349974, 0.5207057129593445, 0.5213530527317207, 0.5221370428035594, 0.5230435532950046, 0.5240566495703208, 0.5251592734282683, 0.5263339094891584, 0.5275631814512859, 0.5288303433136736, 0.530119652114266, 0.531416626761288, 0.5327082094466286, 0.5339828512513295, 0.535230542914904, 0.5364428073917606, 0.5376126650548183, 0.5387345771413715, 0.5398043694474964, 0.5408191367457805, 0.5417771286667016, 0.5426776192089303, 0.543520763882613, 0.5443074500954967, 0.5450391473332331, 0.5457177637778693, 0.5463455152844375, 0.5469248112789302, 0.5474581604148863, 0.547948097006439, 0.5483971275831452, 0.5488076955610224, 0.5491821610932593, 0.549522792678105, 0.5498317670256118, 0.5501111739427369 ], [ 0.5256407925832507, 0.5241139965237066, 0.522655156124046, 0.5212794325805664, 0.5200014525130734, 0.5188354595752896, 0.5177954424392026, 0.5168951552585387, 0.5161479608157201, 0.515566459335376, 0.5151619116388092, 0.514943514095114, 0.514917623167958, 0.5150870491348316, 0.5154505359467406, 0.5160025174279568, 0.5167331953336811, 0.5176289326511976, 0.5186729076602619, 0.5198459404706729, 0.5211273895701262, 0.5224960216708706, 0.5239307795460658, 0.5254114024425702, 0.5269188842887682, 0.5284357799539636, 0.5299463856264676, 0.531436825315835, 0.5328950733287529, 0.5343109354500135, 0.535676002819617, 0.5369835847996223, 0.5382286220133703, 0.539407578615443, 0.5405183132450528, 0.5415599300906184, 0.5425326140182867, 0.5434374559363501, 0.5442762759345009, 0.5450514520340093, 0.5457657616670109, 0.5464222415060037, 0.5470240693104242, 0.5475744693746732, 0.5480766412315174, 0.5485337096873967, 0.5489486931539309, 0.5493244866221743, 0.5496638554656892, 0.5499694364725516 ], [ 0.5223213482081187, 0.5205676046008005, 0.5188840503388552, 0.5172874773979627, 0.5157943852475884, 0.5144212624088256, 0.5131848169146904, 0.5121020393323668, 0.5111900020125867, 0.5104653442081908, 0.5099434568214204, 0.5096374491374851, 0.5095570367164565, 0.5097075201866104, 0.5100890205898916, 0.5106960984220841, 0.5115178195642428, 0.5125382570496788, 0.5137373499919572, 0.5150919941066135, 0.5165772198541586, 0.5181673243976544, 0.5198368556717207, 0.5215613902458627, 0.5233180900428746, 0.525086057397138, 0.5268465285810069, 0.5285829523616982, 0.5302809953655239, 0.5319285047644609, 0.5335154458698126, 0.5350338212702024, 0.5364775711396292, 0.5378424515989042, 0.5391258887220655, 0.5403268085640102, 0.541445447034745, 0.5424831464470372, 0.5434421474476524, 0.5443253855710881, 0.5451363009286884, 0.5458786678735533, 0.5465564492585946, 0.5471736775213982, 0.5477343626089594, 0.5482424249253466, 0.5487016501708373, 0.5491156621744994, 0.549487909563222, 0.5498216622694319 ], [ 0.518687565809313, 0.5166805056595535, 0.5147447757207824, 0.5128987414593611, 0.5111607995756577, 0.5095498451730673, 0.508085654115169, 0.5067890200370434, 0.5056815125136004, 0.5047847860148608, 0.5041194581489813, 0.503703671558684, 0.5035515338786333, 0.5036716736980841, 0.5040661451369858, 0.5047298594056888, 0.5056506312227198, 0.506809822926379, 0.5081834739827817, 0.50974373865607, 0.5114604308179871, 0.5133024918799207, 0.5152392454925679, 0.5172413651690064, 0.519281541964488, 0.5213348862157042, 0.5233791238016572, 0.5253946535858616, 0.5273645235602686, 0.5292743658569022, 0.5311123120686563, 0.5328688951336356, 0.5345369347523533, 0.5361114000250077, 0.537589244331791, 0.5389692114373291, 0.5402516164732537, 0.541438109426979, 0.5425314312506839, 0.543535173475359, 0.544453551448929, 0.5452911994220876, 0.5460529931664527, 0.5467439030851071, 0.5473688782338498, 0.5479327595648174, 0.5484402191680308, 0.5488957213547248, 0.5493035010547647, 0.5496675550929433 ], [ 0.5147240089871878, 0.5124357707012379, 0.5102187088553624, 0.5080926184039009, 0.5060777339747404, 0.5041954557118447, 0.5024689516090596, 0.5009234161659418, 0.49958580001454445, 0.49848391001357556, 0.4976449009491047, 0.49709331307487664, 0.49684892248734697, 0.49692473416157734, 0.4973254419615152, 0.49804660509048154, 0.4990746636838258, 0.5003877684930208, 0.5019572661161897, 0.5037495913190367, 0.5057282872723841, 0.5078559019461694, 0.5100955790694353, 0.5124122515929732, 0.5147734307497482, 0.5171496470043997, 0.5195146323651071, 0.5218453380758907, 0.5241218655969798, 0.5263273626163333, 0.528447909244716, 0.5304723989802497, 0.5323924071730549, 0.5342020361571831, 0.5358977286755743, 0.5374780468472636, 0.5389434201835357, 0.5402958713058398, 0.5415387311728446, 0.5426763566197154, 0.5437138621522931, 0.544656875759813, 0.5455113256034718, 0.5462832613348473, 0.5469787109084778, 0.5476035713496891, 0.5481635301644184, 0.5486640129655558, 0.5491101523915098, 0.5495067734050497 ], [ 0.5104162850256735, 0.507817776604862, 0.5052888373209472, 0.5028504387050364, 0.5005244797598379, 0.49833486541692085, 0.4963084208883984, 0.49447534217033373, 0.4928689254435947, 0.49152442963297716, 0.4904770906796629, 0.48975948952521825, 0.4893986345322778, 0.48941321076632754, 0.4898114455313473, 0.4905899384257632, 0.49173362834091594, 0.4932168629653599, 0.49500534928270634, 0.49705863886281215, 0.4993327619781387, 0.5017826676006181, 0.5043642289531016, 0.5070357018858844, 0.5097586415775772, 0.5124983674159692, 0.515224106406283, 0.5179089458295184, 0.5205296988942157, 0.5230667484310272, 0.5255038966278907, 0.5278282216377503, 0.5300299273642477, 0.53210216942999, 0.534040844652161, 0.5358443392753076, 0.537513239462031, 0.5390500140441395, 0.5404586833841915, 0.541744489359285, 0.5429135804420553, 0.5439727233191186, 0.544929049163041, 0.545789839160817, 0.5465623506454914, 0.5472536824641204, 0.5478706761893621, 0.5484198484743186, 0.5489073492080465, 0.5493389400454852 ], [ 0.5057513999512534, 0.5028126490222163, 0.49994032255687926, 0.4971561845069632, 0.49448347545562454, 0.4919484617948436, 0.4895817840836999, 0.4874192000832833, 0.4855013664091162, 0.4838724457342151, 0.4825775451418238, 0.48165924195184323, 0.48115367631880085, 0.48108682485551696, 0.4814715745074524, 0.48230608244396517, 0.4835736661729054, 0.48524417963276095, 0.48727656889337273, 0.4896221276108792, 0.49222792055244685, 0.49503990969449513, 0.4980054667078166, 0.5010751367970177, 0.504203682114095, 0.5073505443476353, 0.5104799137234167, 0.5135605836150346, 0.51656572641782, 0.5194726701370526, 0.5222627045090431, 0.5249209105597424, 0.5274359905876163, 0.5298000734859865, 0.5320084775455269, 0.5340594238834923, 0.5359537043128767, 0.5376943154504474, 0.5392860753558856, 0.5407352402092831, 0.542049137211104, 0.5432358269218189, 0.5443038044752692, 0.545261745160079, 0.5461182962342547, 0.5468819138088211, 0.5475607413485838, 0.5481625248192851, 0.5486945587055844, 0.5491636569248064 ], [ 0.5007182338250439, 0.4974088317620696, 0.4941612022013519, 0.49099736604781996, 0.4879413955378964, 0.4850215789292324, 0.48227236108502597, 0.47973551970926814, 0.47746008702639275, 0.47550070492685065, 0.4739143878163029, 0.4727560066734527, 0.47207311988646866, 0.47190097604600223, 0.4722585372892071, 0.4731462005342548, 0.47454556551728244, 0.47642119773472424, 0.47872396678423507, 0.4813952980301473, 0.4843716072047533, 0.48758828786485847, 0.4909828380797263, 0.49449696916157726, 0.4980777635053982, 0.5016780938592889, 0.5052565694570826, 0.5087772511072491, 0.5122093090561525, 0.5155267172474917, 0.5187080098483703, 0.5217360824487556, 0.5245980019602793, 0.5272847899500477, 0.52979115566863, 0.5321151700041797, 0.5342578850470121, 0.536222913433171, 0.5380159866231905, 0.5396445123633927, 0.5411171498371331, 0.5424434175468452, 0.5436333447069499, 0.5446971725676265, 0.5456451080981862, 0.5464871291165707, 0.547232837392936, 0.5478913545061543, 0.5484712542396731, 0.5489805249621079 ], [ 0.49530818717602765, 0.49159783057299883, 0.4879432756102592, 0.4843660990280143, 0.48089046968210836, 0.4775461011667026, 0.4743709849408519, 0.4714131911272245, 0.4687310673923613, 0.466391381048999, 0.464465316940888, 0.463022697176059, 0.46212522295656266, 0.46181983434045265, 0.4621333442124218, 0.46306929080293024, 0.46460751170873255, 0.4667063873024775, 0.4693071849336357, 0.4723395939912532, 0.47572745041491005, 0.47939379956924444, 0.48326475948680886, 0.48727200869188514, 0.49135402926401894, 0.4954564224359103, 0.49953166821220596, 0.5035386510110531, 0.5074421688788836, 0.5112125314860821, 0.5148252635870675, 0.5182608786135459, 0.5215046691630759, 0.5245464669398787, 0.5273803422645951, 0.5300042331084464, 0.5324195100557233, 0.5346304944063625, 0.5366439518238011, 0.5384685846613733, 0.5401145438116868, 0.5415929769213994, 0.5429156250969324, 0.544094475485706, 0.5451414727947135, 0.5460682891628256, 0.5468861489623047, 0.5476057030986534, 0.5482369461637716, 0.5487891692805863 ], [ 0.48951605808576143, 0.4853751871153378, 0.4812832220992004, 0.4772604247996539, 0.47333006693811563, 0.46952236908602935, 0.4658782730617151, 0.46245212039203926, 0.45931233180098613, 0.45653943064447045, 0.45422121408428706, 0.4524454729330543, 0.45129125996648795, 0.450820142990852, 0.45106900796661653, 0.45204572826723344, 0.4537284311043872, 0.45606832617215354, 0.45899533406881743, 0.4624252680569436, 0.4662671977320575, 0.4704298466656818, 0.474826328481167, 0.4793770366002694, 0.4840109192915424, 0.48866560699798595, 0.49328690510851336, 0.4978280730909711, 0.5022491546529803, 0.5065164693531319, 0.5106022636401266, 0.5144844602169691, 0.5181464305800797, 0.5215767296428652, 0.524768756935506, 0.5277203343102485, 0.5304332094212864, 0.5329125059292901, 0.5351661463345607, 0.53720427342861, 0.5390386934194975, 0.5406823592778313, 0.5421489077602816, 0.5434522585268774, 0.5446062791639027, 0.5456245159866623, 0.5465199873519523, 0.5473050339056054, 0.5479912187065678, 0.5485892694311839 ], [ 0.48334121398301794, 0.4787417430774954, 0.474184003550577, 0.46968591348540756, 0.4652685720453362, 0.4609614032458757, 0.4568072619256702, 0.4528663145064785, 0.44921748731287975, 0.44595654596092354, 0.4431904314442236, 0.44102825020975134, 0.4395701315631521, 0.43889580576971354, 0.4390550052523157, 0.4400615209306816, 0.4418919837136398, 0.444489388531453, 0.44777035053575687, 0.4516343908885344, 0.4559733748276541, 0.46067955519263704, 0.4656513282699657, 0.47079652814355744, 0.4760336477931852, 0.48129166462524375, 0.48650916950094436, 0.49163333855890445, 0.49661905844550097, 0.5014283085852418, 0.5060297662142823, 0.5103985376816385, 0.5145159146327032, 0.5183690800676259, 0.5219507248500115, 0.5252585665527918, 0.5282947841396233, 0.5310653937294714, 0.5335795948166145, 0.535849115497651, 0.5378875816749, 0.539709930327626, 0.5413318816451353, 0.5427694796025236, 0.544038705736225, 0.5451551666484415, 0.5461338522803421, 0.5469889593283722, 0.5477337723575296, 0.5483805941480718 ], [ 0.47678911993199485, 0.47170525233768906, 0.46665659924304503, 0.4616575822467279, 0.45672556671401804, 0.4518874384636663, 0.44718638119685816, 0.4426873618597974, 0.4384797390020948, 0.43467568219886366, 0.4314037529536524, 0.42879797165059746, 0.42698378904553425, 0.4260633083805815, 0.4261025539117827, 0.4271233297470648, 0.42910124316860015, 0.4319700279700032, 0.43563084698578064, 0.4399642540213762, 0.44484224516463244, 0.45013831663705006, 0.4557343915486141, 0.4615244894773737, 0.46741576525678, 0.47332788702082595, 0.47919169114720267, 0.484947788652765, 0.4905454704147618, 0.4959419882718868, 0.5011021274964698, 0.5059979283462125, 0.5106084262435463, 0.5149193234941012, 0.5189225525198533, 0.5226157271677297, 0.5260015011830019, 0.5290868635580119, 0.531882403097024, 0.5344015726618884, 0.5366599795090493, 0.5386747231739967, 0.5404637971190375, 0.5420455651411585, 0.5434383185532193, 0.5446599156079767, 0.5457275007250278, 0.5466572979598338, 0.5474644709065198, 0.5481630398557715 ], [ 0.4698732728650803, 0.46428238784893316, 0.45872210862111695, 0.45320214499315187, 0.44773430563028904, 0.4423407280133821, 0.4370626974557843, 0.4319682162477213, 0.42715628031509606, 0.4227560629748448, 0.41891995278331773, 0.41581058684258054, 0.41358345600532964, 0.4123679804471314, 0.41225072552214, 0.41326427407220273, 0.41538407699198904, 0.4185336526221393, 0.42259643664971275, 0.4274311296505243, 0.43288702267127954, 0.4388164982735608, 0.44508327259393365, 0.4515663635728347, 0.4581607671601646, 0.4647762103454197, 0.4713352162392251, 0.47777130008196916, 0.4840276584444419, 0.49005637243703654, 0.4958179682204828, 0.5012811372927389, 0.5064224574660875, 0.511226020382325, 0.515682930150626, 0.5197906775522118, 0.5235524154271028, 0.5269761688189586, 0.5300740140066128, 0.5328612577393916, 0.5353556439226547, 0.5375766104619203, 0.5395446141548159, 0.5412805364801576, 0.5428051780182576, 0.5441388443009462, 0.5453010214336729, 0.5463101361208955, 0.5471833919343383, 0.5479366718528174 ], [ 0.4626175652000846, 0.4565011661210675, 0.4504142343674053, 0.444360583790154, 0.43834444394213035, 0.4323805323728364, 0.4265052970842112, 0.4207871140222952, 0.4153328619525565, 0.4102884618760114, 0.40583176606326904, 0.40215759363000764, 0.3994565402144033, 0.3978910313609723, 0.397573354998737, 0.3985504965184605, 0.4007991987197039, 0.4042320516383752, 0.4087124744994014, 0.4140743172437195, 0.4201412604529124, 0.42674224700457436, 0.43372116037014363, 0.4409409502043884, 0.4482837073233199, 0.4556485895280096, 0.4629491909089311, 0.4701113109738138, 0.4770714605836155, 0.4837760284715106, 0.4901808554861164, 0.4962509583907013, 0.5019602215735907, 0.5072909646976769, 0.5122333625134055, 0.5167847322440094, 0.5209487205192561, 0.5247344254812785, 0.528155487929433, 0.5312291822173866, 0.5339755343680912, 0.5364164914651482, 0.5385751624182317, 0.540475145499041, 0.5421399527532876, 0.5435925359094319, 0.5448549132072068, 0.5459478920852779, 0.5468908791875775, 0.5477017667985338 ], [ 0.45505905767311294, 0.44840377182623664, 0.44178212007361284, 0.4351909935493296, 0.42862492878399866, 0.42208815089117735, 0.41560860256302884, 0.40925135421859843, 0.403128217150829, 0.3974004109941748, 0.39227192834148955, 0.3879728336905758, 0.3847339868596871, 0.3827571729286199, 0.3821866108969333, 0.3830883817393685, 0.38544279683851024, 0.3891512740264856, 0.3940551071657556, 0.3999603629697934, 0.40666230420730526, 0.4139642874476807, 0.42168895198366413, 0.4296822798281782, 0.4378127739971657, 0.44596834901027105, 0.4540529334986085, 0.46198384460713476, 0.46969018174049326, 0.4771120152803738, 0.4841999998103591, 0.49091509629380287, 0.4972282134751724, 0.5031196928043418, 0.5085786328684626, 0.513602081519356, 0.5181941318511657, 0.5223649561867585, 0.5261298086765178, 0.5295080249141912, 0.5325220458503955, 0.5351964919214791, 0.5375573106535191, 0.5396310167036444, 0.5414440376645264, 0.543022172653371, 0.5443901644902436, 0.5455713807828464, 0.5465875949011669, 0.5474588548369925 ], [ 0.44725107595639213, 0.44004970354213374, 0.43289345950621283, 0.425771596655796, 0.41866691005744056, 0.4115697871160745, 0.40449532833725205, 0.39750055261608364, 0.3906978646433181, 0.3842607933582693, 0.3784187187358213, 0.37343900440464617, 0.36959760286177284, 0.3671424459503293, 0.36625692638477864, 0.3670321902429841, 0.3694555364642048, 0.3734177709517922, 0.3787364503295136, 0.3851872819093574, 0.3925346609521826, 0.40055459418285766, 0.4090473991382642, 0.4178413839548338, 0.42679079424715305, 0.4357714904492429, 0.4446767847109087, 0.45341452491742773, 0.46190549202962883, 0.47008268169473616, 0.4778909710101511, 0.485286815547328, 0.4922378042196192, 0.4987220310972791, 0.5047273073914218, 0.5102502534034783, 0.5152953055110778, 0.5198736653268754, 0.5240022145482793, 0.5277024199764556, 0.5309992559476373, 0.5339201731192615, 0.5364941415358218, 0.5387507918819766, 0.54071967249447, 0.5424296321687021, 0.5439083311952416, 0.5451818762961029, 0.5462745697675543, 0.5472087594176831 ], [ 0.439266454988427, 0.43151907381892096, 0.42383771209425425, 0.4162037476157511, 0.40858645165407537, 0.40095895910276846, 0.39331868474567677, 0.38570884851920545, 0.37823662823710247, 0.37108303490377303, 0.36450014577586065, 0.35879301768272975, 0.35428654450287583, 0.35128155305539577, 0.35000871759282887, 0.3505916425405996, 0.35302954856759067, 0.35720447113138054, 0.3629096071836968, 0.369888542385343, 0.37787309473138164, 0.38661080522482355, 0.3958790453571186, 0.40548791899926856, 0.41527664883373383, 0.42510795279344765, 0.4348632367317477, 0.4444395874383793, 0.4537483326702103, 0.46271448376400964, 0.4712764442676228, 0.4793856300407507, 0.48700588323797545, 0.49411269485535864, 0.5006922901482761, 0.5067406219807044, 0.5122622967845916, 0.5172694456305965, 0.5217805526677018, 0.5258192605132899, 0.5294131809369512, 0.532592744879842, 0.5353901265408544, 0.5378382721041446, 0.5399700560546096, 0.5418175786948164, 0.5434116090481572, 0.5447811689924941, 0.5459532479107787, 0.5469526326320228 ], [ 0.43120063676207354, 0.422915777888248, 0.41472914519966286, 0.4066146424079244, 0.39852672793210236, 0.39041807328533956, 0.38226333622627173, 0.3740854096999076, 0.36597902058994475, 0.35812583762945116, 0.35079554738534147, 0.3443288876593864, 0.3391016665319141, 0.33547350842233525, 0.3337308688131452, 0.3340386113565879, 0.336414722072729, 0.34073623629930133, 0.3467730905624797, 0.3542364845419168, 0.3628252258832533, 0.37225824546847736, 0.3822898937180046, 0.3927116289444083, 0.40334660573016456, 0.414042840356701, 0.4246680574674462, 0.4351069013592293, 0.4452598461526906, 0.4550428399061593, 0.4643869973609768, 0.47323805419723425, 0.48155556796973165, 0.4893119543065895, 0.49649143979014265, 0.5030889680532284, 0.5091090595515961, 0.5145646137875424, 0.5194756513537008, 0.5238680109298983, 0.5277720332813853, 0.531221274576594, 0.5342512933392248, 0.5368985502356952, 0.5391994501179704, 0.5411895439016298, 0.542902896108347, 0.5443716136976855, 0.5456255239328703, 0.5466919836996579 ], [ 0.42317418374193816, 0.4143700939243525, 0.40570927313332644, 0.39715930616692097, 0.38865926534736533, 0.3801386729354819, 0.37154452134764665, 0.3628724688866651, 0.3541964760115263, 0.34569013572564566, 0.3376329794907762, 0.3303962826240597, 0.32440576433946994, 0.32008369492593397, 0.3177802695810416, 0.31771147531588523, 0.31992313638655806, 0.32429380290501564, 0.33057399939689786, 0.3384447414475878, 0.34757338552636796, 0.3576514509217873, 0.3684107858177599, 0.37962367285412235, 0.39109561203170307, 0.4026576563871459, 0.4141614415925285, 0.4254770313673154, 0.43649235985444806, 0.4471130549079766, 0.4572619905354811, 0.4668784450332937, 0.4759170047915705, 0.48434638469422114, 0.4921482570284254, 0.49931609405372795, 0.5058539826694199, 0.5117753670487512, 0.5171016999720719, 0.5218610162942338, 0.5260864687710571, 0.529814881164778, 0.533085375793518, 0.535938125338629, 0.5384132656718759, 0.5405499913099187, 0.542385840539958, 0.5439561649571522, 0.5452937688941787, 0.546428698134871 ], [ 0.41533411258552433, 0.4060401013992764, 0.3969480791339925, 0.3880212562037295, 0.3791836352107842, 0.3703397540163138, 0.3614046640741395, 0.3523400742563375, 0.34319035477235343, 0.3341108161662793, 0.32538046800156056, 0.31739235269971927, 0.31061698402840054, 0.30553949636200745, 0.30257972214498874, 0.30201480681389314, 0.30392976939776767, 0.3082148299874781, 0.31460902007483227, 0.32276911451372314, 0.33233546708258993, 0.34297512661396795, 0.35439852611353156, 0.36635788640858497, 0.378638611607817, 0.3910515960155813, 0.4034292319780217, 0.41562437973623195, 0.4275104648889776, 0.43898135561549706, 0.44995056934302274, 0.4603499685229889, 0.4701282845559339, 0.47924971230262664, 0.4876926441987991, 0.4954484858727738, 0.5025204499344024, 0.5089222438869538, 0.5146766180025562, 0.5198137907482965, 0.5243698066634856, 0.528384899485214, 0.5319019339639743, 0.5349649884884441, 0.5376181230137593, 0.5399043574999153, 0.5418648682760245, 0.5435383952153802, 0.5449608420119387, 0.546165045131945 ], [ 0.40785330965389954, 0.3981111290569071, 0.3886432128236751, 0.37941104520582136, 0.3703248393438298, 0.3612634348892393, 0.35210678433064946, 0.342776812944233, 0.33327979752613474, 0.32374191436045313, 0.3144292629843653, 0.3057442629578841, 0.2981921476711979, 0.2923158083675053, 0.288606472813364, 0.2874110049084785, 0.2888667375940372, 0.29289007135044226, 0.2992219959092684, 0.3075062358153478, 0.31736451750766603, 0.32844451596048807, 0.3404368279403138, 0.35307206917812883, 0.36611196197613, 0.37934295267040247, 0.39257425762280934, 0.40563845638189217, 0.41839224147760545, 0.43071608867796796, 0.4425128329765704, 0.4537057192950358, 0.46423648571391474, 0.47406375400581563, 0.48316172196565643, 0.49151899807775556, 0.4991373954717055, 0.506030559259247, 0.512222384980656, 0.5177452592606611, 0.522638200523846, 0.5269449961553196, 0.5307124288934186, 0.5339886678738486, 0.5368218762023304, 0.5392590628032471, 0.541345185022551, 0.5431224917360534, 0.54463008496213, 0.5459036708618029 ], [ 0.4009272139384229, 0.39079232726799373, 0.3810162106008561, 0.37156174040370393, 0.36232751417804154, 0.35316723186703886, 0.3439241208384975, 0.3344760673408763, 0.32478403982652704, 0.31493473803306266, 0.30516808021252906, 0.29588061068113053, 0.28759715580421413, 0.2809066585078376, 0.2763670935740254, 0.27439971617186254, 0.27520758224694497, 0.2787521527962383, 0.2847965168617482, 0.2929892434385158, 0.30294679444334854, 0.31430515879240867, 0.3267371389839851, 0.33994935265823456, 0.3536749841544629, 0.36767066313941676, 0.38171782052921194, 0.3956253216898898, 0.40923068169573157, 0.42239912562294274, 0.43502119741711, 0.4470100015679278, 0.45829883151719425, 0.46883941941196833, 0.4786006607113528, 0.4875675145507329, 0.4957398060804806, 0.5031307690590433, 0.5097652910696173, 0.5156779185588918, 0.5209107317493695, 0.525511214710754, 0.529530234776221, 0.5330202198985667, 0.5360335918953396, 0.5386214841037908, 0.540832747215732, 0.5427132283709978, 0.5443052959986249, 0.5456475757015486 ], [ 0.39476702521476514, 0.3843094959886296, 0.37430479621212964, 0.3647204017942319, 0.3554461258876474, 0.34631234215048656, 0.33712571653977713, 0.3277179955708515, 0.31799983819559263, 0.3080099144110047, 0.29794936080640855, 0.28819229886539455, 0.2792640359701175, 0.2717811752723104, 0.2663557691266655, 0.2634815290107212, 0.2634382950314324, 0.26625441366100583, 0.27174191519879165, 0.2795796216887805, 0.2893979169723829, 0.3008318818523915, 0.31353925040594016, 0.3271995595066913, 0.34151156791119774, 0.35619594575896874, 0.3710013249794509, 0.38570922304785943, 0.40013533665850864, 0.41412748844245184, 0.42756194091994115, 0.44033973100792995, 0.4523838981431861, 0.4636376981705007, 0.474063443875252, 0.48364150393365357, 0.4923690971237501, 0.5002587003038593, 0.5073360556582813, 0.5136378751009728, 0.5192093929757238, 0.5241019250847345, 0.5283705699914724, 0.5320721527781206, 0.535263472892219, 0.5379998829189608, 0.5403341971899545, 0.542315908933784, 0.5439906817039932, 0.5454000739474169 ], [ 0.3895890110408891, 0.37889361143299677, 0.36875062855710483, 0.3591349466832613, 0.3499307028241675, 0.34094781742468644, 0.33195839626820217, 0.3227484363594294, 0.31317618154465665, 0.3032266195649234, 0.293051801124043, 0.2829876969338429, 0.27353928539573863, 0.2653274654987813, 0.25899783491007455, 0.2551060877837287, 0.25401413167375164, 0.25583851676427494, 0.26047152129319057, 0.267654349209405, 0.2770564705755424, 0.28832649622015466, 0.301111231501953, 0.3150601736733278, 0.32983155551877597, 0.3451038630634155, 0.36058796368154006, 0.3760343807135538, 0.3912341450543438, 0.4060151285639312, 0.4202368326539041, 0.43378583142570426, 0.4465727326601024, 0.45853048937450963, 0.46961342884291, 0.4797963510571247, 0.48907326195544426, 0.4974555662485606, 0.5049697508947925, 0.5116547122698958, 0.5175589260625314, 0.5227376519731928, 0.5272503290560401, 0.5311582702536087, 0.5345227180323165, 0.5374032832643412, 0.5398567590366742, 0.5419362800000308, 0.5436907850846449, 0.5451647353002296 ], [ 0.38560011540701566, 0.3747651841301311, 0.36458260440113044, 0.3550365762927182, 0.346008494513077, 0.33729142994538286, 0.328626605658883, 0.31975718846929, 0.31049009035126607, 0.3007545389831401, 0.29064676080049834, 0.28045177553025324, 0.27063473437770796, 0.2617959413942153, 0.25458879578787846, 0.24961221288418417, 0.24730672956150165, 0.24789275314404094, 0.2513733957753771, 0.25758765189511895, 0.2662739745469866, 0.2771130412071211, 0.28974765360136956, 0.3037961128564538, 0.31887134500214454, 0.33460445397630034, 0.3506642298165365, 0.3667667378386667, 0.3826752511265921, 0.3981946393227689, 0.41316459950936507, 0.4274543717370326, 0.4409596347825085, 0.4536010501200298, 0.4653235142521251, 0.47609530802073324, 0.4859066720771289, 0.4947676732875624, 0.5027054617040831, 0.5097611379135223, 0.5159864807102815, 0.5214407591584863, 0.5261878004734589, 0.5302934259173483, 0.5338233126987704, 0.5368412960387522, 0.5394080934893555, 0.5415804124593493, 0.543410389918668, 0.5449453083507834 ], [ 0.382980988433392, 0.3721156403507773, 0.36199700138177365, 0.35261919951450044, 0.3438632397504599, 0.33550930420128755, 0.3272727725610843, 0.31885918877047154, 0.3100282782194642, 0.30065511731616396, 0.29077754551878127, 0.2806212657109477, 0.27059622905514913, 0.2612598980782426, 0.2532471711265452, 0.24717624103014726, 0.2435534211744189, 0.24270791103830178, 0.244776167348865, 0.2497272278723715, 0.25739972264587013, 0.26752871693494423, 0.2797644277528593, 0.29369702321013297, 0.3088928206496984, 0.3249328146593102, 0.3414407711287287, 0.3580952301454983, 0.3746283615654382, 0.39081844193790855, 0.40648178058910217, 0.4214670262962792, 0.4356522378516884, 0.4489437605104054, 0.46127567370325007, 0.4726088822934267, 0.48292939413560065, 0.49224572484286305, 0.5005856174005202, 0.5079923693544561, 0.5145210664813794, 0.520234973335711, 0.5252022612044495, 0.529493183503468, 0.5331777481446387, 0.5363238898267264, 0.5389961126414402, 0.5412545530509382, 0.5431544027207155, 0.544745627395324 ], [ 0.38186856795178825, 0.37108812973042843, 0.3611371152860497, 0.3520187369653332, 0.34361513815079825, 0.33569761169034384, 0.32796170692072324, 0.32008239142915845, 0.3117789389793487, 0.3028771775569098, 0.2933580778115929, 0.2833846723115578, 0.2733022303107371, 0.26360917316937327, 0.2548999363771387, 0.24778786122704655, 0.24282524282897988, 0.24044198987984922, 0.24091560045915097, 0.2443662087145849, 0.250759307734205, 0.2599084479502802, 0.2714882536267881, 0.2850704888721328, 0.30017938584905357, 0.31634714127812413, 0.3331517033918902, 0.350231727491233, 0.36728482014153674, 0.38405867553044176, 0.4003422835332287, 0.4159602789698737, 0.43077042354025724, 0.44466284854780047, 0.45755959451256506, 0.46941347811038203, 0.48020589989935636, 0.48994364239098337, 0.49865494607925503, 0.5063852280829297, 0.5131927841317739, 0.5191447418763077, 0.5243134472165945, 0.5287733853282576, 0.5325986731062174, 0.5358611119915551, 0.5386287582847097, 0.5409649493305437, 0.5429277153252111, 0.5445695051149171 ], [ 0.3823410848898757, 0.3717610740575766, 0.3620760732769774, 0.3532962240139983, 0.3453055024177578, 0.33787014948094735, 0.330672469806088, 0.3233651637005506, 0.3156356820524458, 0.30726807477321083, 0.2981914204625598, 0.2885074414829122, 0.2784935163616292, 0.26858043902732587, 0.25930776353667373, 0.25126433226097733, 0.24502631310797995, 0.24110516913181027, 0.2399096679588276, 0.24171451174302833, 0.24662741933165466, 0.2545620712691649, 0.2652391492688056, 0.2782295947876132, 0.2930276139950273, 0.3091233000780106, 0.3260509800233738, 0.3434083031814425, 0.3608551690687635, 0.3781047239955992, 0.39491476834275335, 0.41108269276887094, 0.4264435711045873, 0.4408697258375072, 0.45427018991803514, 0.46658914629745873, 0.4778030850965696, 0.4879168599989714, 0.49695903377159817, 0.5049769413631132, 0.5120318418253659, 0.5181944340543684, 0.5235409109417318, 0.5281496395144054, 0.5320984873792611, 0.5354627684591824, 0.5383137509338416, 0.5407176538788571, 0.542735052785043, 0.544420614866731 ], [ 0.3844084219457026, 0.37413785802033267, 0.3648065645060717, 0.3564285692592195, 0.3488897505466651, 0.3419548882155412, 0.33529981054603286, 0.3285638808882495, 0.32141244666789115, 0.3135969378665266, 0.30500207563360215, 0.2956734625037041, 0.28582287863733086, 0.2758121476225267, 0.2661197156053886, 0.25729721720194915, 0.24992474130611786, 0.24457017868706157, 0.2417492442771915, 0.24187574032481918, 0.2451987508155434, 0.2517457528328674, 0.26130608634390845, 0.2734738900223603, 0.28773299729530954, 0.3035441244940138, 0.3204039640839978, 0.3378701009148628, 0.3555627088054981, 0.37315718910790935, 0.39037696854507953, 0.4069896222813572, 0.42280573502430324, 0.4376786903431766, 0.45150385466453125, 0.464216386924869, 0.475787586901934, 0.48622010737316346, 0.49554251543450556, 0.5038036818423804, 0.5110673867773342, 0.5174074134261651, 0.522903289539385, 0.5276367459571625, 0.5316888936411023, 0.5351380752508372, 0.5380583198727549, 0.5405183158496449, 0.5425808128804468, 0.5443023674487293 ], [ 0.38800990749382425, 0.37814503508471226, 0.36923999566671317, 0.36130935800604547, 0.3542406761824447, 0.3478005927404429, 0.34166503642199025, 0.33546893539161654, 0.32886553103495014, 0.3215835843908476, 0.31347257472978785, 0.30452986129090265, 0.29490800167411974, 0.2849041025562024, 0.27493605869711, 0.26551242640420303, 0.25720194381805006, 0.2506033469136278, 0.2463071376334417, 0.2448362749445407, 0.2465638683073532, 0.2516325164285993, 0.25991812932028335, 0.27106409211091337, 0.2845687991119274, 0.2998817892602987, 0.31647240728404114, 0.33386217895834636, 0.35163176709191196, 0.3694173886081072, 0.3869063605036565, 0.4038350423990209, 0.41998861162000206, 0.4352009773739538, 0.44935351440775717, 0.46237208863697427, 0.47422249444905973, 0.4849047730889113, 0.49444698004077847, 0.502898915439164, 0.510326210387244, 0.5168050282057187, 0.5224175211040315, 0.5272480900917721, 0.5313804300298034, 0.5348952990681634, 0.5378689274435199, 0.5403719699110142, 0.5424689048543901, 0.5442177880907475 ], [ 0.39302004944110186, 0.38363951042992356, 0.375215360909098, 0.3677596408615159, 0.3611613804002155, 0.3551921264752135, 0.34953394804279464, 0.34382561902719333, 0.3377178163739295, 0.3309265618472188, 0.3232758646392539, 0.3147242384912587, 0.3053738956261805, 0.2954649930072931, 0.28535988550430164, 0.2755233014839603, 0.2665023808384027, 0.2589044288438032, 0.25336180122222174, 0.2504700069950919, 0.25069702022884105, 0.25428875559499725, 0.26121584354876837, 0.2711928993748163, 0.2837586073432476, 0.29837291105292935, 0.3144921830873736, 0.33160975666711817, 0.3492703392226276, 0.3670722950925986, 0.3846672972750371, 0.40176073650003696, 0.4181125975562118, 0.4335374720936615, 0.44790276186828626, 0.4611248615696394, 0.473163668009974, 0.48401602339889105, 0.4937087291748025, 0.5022916664119086, 0.5098314108364312, 0.5164055837531262, 0.5220980574049594, 0.5269950410739268, 0.5311820109481987, 0.5347414074713613, 0.5377510029007578, 0.5402828339901784, 0.5424025958606014, 0.5441693999779329 ], [ 0.3992609590805517, 0.390423080423196, 0.3825157863636886, 0.37554622332030124, 0.3694049416216018, 0.36387111135444494, 0.35863816077806093, 0.3533559049041603, 0.3476809630134355, 0.3413258596350259, 0.3340987652752903, 0.32592922641115185, 0.316879057699503, 0.3071408396051718, 0.29702858729132686, 0.28696545155968983, 0.2774707818373368, 0.26914299930538416, 0.2626274986790915, 0.258556554240482, 0.2574591340877756, 0.25966272579769817, 0.2652290834868473, 0.2739567738016088, 0.2854460361844402, 0.299188797743099, 0.31464561526218576, 0.3312934197296007, 0.34864850616020876, 0.366276204253231, 0.3837957645895811, 0.40088385114126723, 0.4172767874975243, 0.4327707752391781, 0.44721963028982786, 0.4605301931778147, 0.4726559962454774, 0.4835899261996988, 0.4933565764230099, 0.5020048391395873, 0.5096011165428556, 0.5162233734920838, 0.5219561293336227, 0.5268863956445937, 0.5311005063782661, 0.534681750859366, 0.5377087021138489, 0.5402541277598888, 0.5423843738802913, 0.5441591207322696 ], [ 0.4065189279758124, 0.39826125921430194, 0.39088920024771995, 0.3844035544038158, 0.3786967590360336, 0.3735579421662292, 0.36869610349288257, 0.3637779199074431, 0.35847304673931685, 0.3524985864888617, 0.3456557375004384, 0.33785459725187983, 0.3291264726094183, 0.31962589814073156, 0.3096262319930493, 0.29951255678774824, 0.28977299296111975, 0.2809843839863153, 0.2737826089634344, 0.26880654010126337, 0.26661395903895213, 0.267587604925173, 0.27186680657910317, 0.27933547311111406, 0.2896681937952055, 0.3024067386603386, 0.3170334393566448, 0.33302350452436236, 0.34987611091504056, 0.3671319534216475, 0.3843840020675537, 0.40128456673931767, 0.4175492511463612, 0.4329576329175304, 0.4473507569563403, 0.46062598189477444, 0.472729997493054, 0.48365087550440694, 0.4934099016017058, 0.5020537513450775, 0.5096473821657534, 0.5162678488284999, 0.5219991231777574, 0.5269279096190941, 0.5311403899923375, 0.53471979814448, 0.5377447089601607, 0.5402879233470846, 0.5424158354387503, 0.5441881779072947 ], [ 0.4145621887136093, 0.4069029463955875, 0.400069332787114, 0.394055276180038, 0.3887557529150366, 0.3839717424877363, 0.3794309487475878, 0.3748212513699515, 0.3698308489082791, 0.3641880464293721, 0.3576947386479857, 0.3502501234808074, 0.3418640435678233, 0.3326617326422901, 0.3228830040585619, 0.31287853132007126, 0.30310345135564654, 0.2941043295677536, 0.28649135162154665, 0.28088723673258004, 0.2778519626781985, 0.2777976960297579, 0.2809220272753306, 0.28718575788853323, 0.2963408535066447, 0.3079903389396609, 0.3216536264720288, 0.3368197650524624, 0.35298461498086164, 0.3696755276937974, 0.386467904565114, 0.40299605380844306, 0.4189591791703285, 0.43412288120150927, 0.44831676263003695, 0.4614290377957431, 0.47339918380087187, 0.48420961334638396, 0.4938771702028003, 0.5024450278343536, 0.5099753628718966, 0.5165430031263764, 0.5222301210960539, 0.5271219550229549, 0.5313034831995919, 0.5348569455303274, 0.537860092318916, 0.5403850382535276, 0.5424976053121014, 0.5442570486830106 ], [ 0.423157283418336, 0.4160980842395373, 0.40979406463884727, 0.4042325198447539, 0.3993117982919317, 0.3948461505431106, 0.3905840687926092, 0.38623754437935504, 0.3815172390587846, 0.3761677270773663, 0.36999782481512405, 0.3629030331713626, 0.3548794562613346, 0.34603047683838795, 0.336568391297097, 0.32681272231027286, 0.3171848653394428, 0.3081955109370761, 0.30041844863764816, 0.2944446384464015, 0.29081648867077314, 0.2899535688140009, 0.29209110732217775, 0.297252202018261, 0.3052608980561024, 0.3157855923007083, 0.32839366983719037, 0.34260212679534763, 0.35791787542796893, 0.37386773471252865, 0.3900199622788363, 0.4059987307460763, 0.42149234554644066, 0.4362559324542831, 0.45010956977759403, 0.4629330567255751, 0.47465854171075195, 0.48526209638495094, 0.4947550908620068, 0.5031759756736353, 0.5105828516358525, 0.5170470292995903, 0.5226476477364445, 0.5274673324850346, 0.5315888160846028, 0.5350924132630747, 0.5380542292439673, 0.5405449780334203, 0.5426292936202581, 0.5443654276309616 ], [ 0.43208234667996576, 0.42561156181853893, 0.4198194452187865, 0.41468746058107353, 0.4101182204106212, 0.40594019211058163, 0.40192379697209846, 0.3978067658564495, 0.3933246785606722, 0.3882419201966705, 0.3823789316273443, 0.37563320133460293, 0.3679932943722009, 0.3595467113551508, 0.3504830309879072, 0.34109331041811797, 0.3317650724345829, 0.3229698776386691, 0.31523870652452723, 0.30912106682877794, 0.30512847231965273, 0.3036710209560889, 0.3050028985608327, 0.3091927641669296, 0.31612614185626253, 0.3255346148384942, 0.3370391521819081, 0.35019548546570883, 0.3645344966925955, 0.3795951197009696, 0.39494941469513684, 0.4102200658575128, 0.4250907846344289, 0.43931044179138884, 0.45269210840443785, 0.465108381388846, 0.47648434801478723, 0.48678935891222525, 0.49602851630913575, 0.5042345141905219, 0.5114602307213408, 0.5177722867358049, 0.5232456479923535, 0.5279592564189816, 0.5319926175635847, 0.5354232390433573, 0.5383248004547004, 0.5407659330786936, 0.5428094933987222, 0.5445122247552874 ], [ 0.44113658116010723, 0.4352327559402542, 0.42992894093481143, 0.4252019061462197, 0.42095937091292535, 0.4170445208875282, 0.4132500489918994, 0.4093399762892614, 0.4050759843396821, 0.40024441782912, 0.39468057552755265, 0.38828809741370474, 0.3810526741005803, 0.37305044427430284, 0.3644519148770016, 0.3555218270344799, 0.34661415586844196, 0.3381598373954739, 0.3306438247897075, 0.3245689671938557, 0.3204078382451845, 0.318549306609482, 0.3192514444049882, 0.32261262372982574, 0.3285671104215484, 0.3369032292486955, 0.3472962840626753, 0.3593473386279807, 0.3726212253580965, 0.3866799570417924, 0.40110962771275793, 0.4155399990834525, 0.42965677245183576, 0.4432072351674139, 0.45600047598979454, 0.4679036005667779, 0.4788353584889365, 0.48875839984993236, 0.49767110751675503, 0.5055996737306255, 0.5125908471036648, 0.5187055843439266, 0.5240137005966945, 0.5285895162307173, 0.532508436980855, 0.5358443696208176, 0.5386678591861533, 0.5410448302247646, 0.5430358191390033, 0.5446955941486116 ], [ 0.4501459840904133, 0.44478094819657055, 0.43993834143961336, 0.4355915202879859, 0.4316540256449684, 0.427983868063531, 0.4243957134417763, 0.42067956433852743, 0.41662334157388087, 0.41203629711113077, 0.40677049861780495, 0.4007385006654083, 0.3939263772829123, 0.3864021398843441, 0.37831990053419307, 0.36991982517903055, 0.361523051841272, 0.35351972916770424, 0.3463478772837823, 0.34046171017564886, 0.3362908064538081, 0.33419542954968934, 0.33442647384213586, 0.3370987326712419, 0.34218273310129044, 0.349515010757687, 0.3588223225129548, 0.3697536027250975, 0.3819140258186855, 0.394896970744812, 0.40831109081443034, 0.421800902803315, 0.4350603883186383, 0.44784001505549276, 0.45994822733748936, 0.4712487685069212, 0.48165522229051405, 0.49112399354333636, 0.49964669243719123, 0.5072426158554614, 0.5139517789754476, 0.5198287567516165, 0.5249374513881853, 0.5293468021102811, 0.5331273890049176, 0.5363488447532516, 0.5390779692248597, 0.5413774361744065, 0.5433049841335007, 0.5449129917011604 ], [ 0.45896586414299206, 0.45410733602736053, 0.4496971957106166, 0.4457066605543675, 0.44205563272583664, 0.43861671969173466, 0.4352257707173288, 0.43169780898837373, 0.4278463131573644, 0.4235034090650408, 0.41853872531166253, 0.4128752901647133, 0.4065016204715657, 0.3994797764365099, 0.3919494036537498, 0.3841275701952072, 0.3763036383905824, 0.3688278168148234, 0.3620919288010826, 0.3565018205278455, 0.3524428809335352, 0.35024282483355396, 0.35013796055826496, 0.3522493126188461, 0.356572812585169, 0.36298429600930854, 0.3712568980664816, 0.3810867002948527, 0.3921221452104308, 0.4039932392834322, 0.416337446615711, 0.42882023635037186, 0.44114936092252033, 0.45308294209718747, 0.4644321701833241, 0.4750598131890906, 0.4848758238630487, 0.49383121782492584, 0.5019111758364995, 0.5091280749199787, 0.5155149232785716, 0.521119484400002, 0.5259992314816834, 0.5302171707685855, 0.5338385042992873, 0.5369280610247144, 0.539548403180648, 0.5417585063190018, 0.5436129120093431, 0.5451612585402601 ], [ 0.46748089343267796, 0.46309452074837104, 0.459087761619066, 0.4554308625931905, 0.45205043242171, 0.44883317602793393, 0.44563497932655094, 0.44229445726103145, 0.43864935832875807, 0.4345538913833757, 0.4298951467266312, 0.4246072148888901, 0.41868215880373866, 0.4121774480218267, 0.4052196544078597, 0.39800408757005545, 0.3907897137119549, 0.3838884057973204, 0.37764766650326387, 0.3724267512473942, 0.36856763035177237, 0.3663640536320663, 0.36603332075699185, 0.36769544802395454, 0.37136305654240254, 0.3769430481865196, 0.38424890515964416, 0.3930209064893786, 0.40295084341971704, 0.4137077764758634, 0.4249618325453341, 0.43640385300496604, 0.4477597021699215, 0.45879901272494256, 0.4693388953527399, 0.4792435863155276, 0.48842116552027315, 0.49681842624399397, 0.5044148073873882, 0.5112160847088393, 0.5172483077170247, 0.5225522890064561, 0.5271788115803958, 0.5311846163353722, 0.5346291610950784, 0.5375720976957284, 0.5400713881909209, 0.5421819697446623, 0.5439548758121366, 0.5454367254097353 ], [ 0.4756034500131679, 0.4716543167478749, 0.46802236501527206, 0.46467787385546383, 0.46155431125425367, 0.45855177005722075, 0.45554478313566554, 0.45239381694125985, 0.44895918346793806, 0.445115836824337, 0.44076756521641075, 0.4358593776836243, 0.43038727232761675, 0.42440490103033746, 0.418026800616047, 0.41142781479807666, 0.4048381673623898, 0.3985335489484283, 0.39281977910742566, 0.3880122722063101, 0.3844116425741971, 0.3822780244421199, 0.3818075482685346, 0.3831144580207991, 0.38622147192124334, 0.3910595002754482, 0.3974762526747146, 0.4052519936108235, 0.4141199056209203, 0.4237882117510609, 0.4339613710563376, 0.4443582244537626, 0.4547257836908953, 0.464848215176444, 0.4745512851060259, 0.48370299973910924, 0.4922113864799117, 0.5000203718267717, 0.5071045968935451, 0.5134638380909541, 0.5191175178416743, 0.5240996256616098, 0.5284542357397712, 0.5322317055647126, 0.5354855681936839, 0.5382700833014167, 0.540638383669553, 0.5426411392870778, 0.5443256565733647, 0.5457353321423319 ] ] }, { "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.0456714304164052, 0.34667923487722874, 0.5311849899590015, 0.7397316498681903, 0.3832288132980466, 0.4666798889913273, 0.4985032807923275, 0.4421884608067135, 0.4300281192552422, 0.43640568360718435, 0.42023624675638244, 0.11076179596728124, 0.0, 0.0658480732646399, 0.2339249168648233, 0.2919331068187802, 0.3953128716378457, 0.0913858501086996, 0.3215035262861359, 0.4216331237658199 ], "xaxis": "x", "y": [ 0.6777361119166017, 0.42212385032325983, 0.8968999376520514, 0.2933358568698168, 0.7600629292428493, 0.7749276205883261, 0.8121153924918824, 0.7263873512427858, 0.7759982880047634, 0.731506243741627, 0.8142611433075335, 0.8194496702959445, 0.6732655975274742, 0.4949347565242887, 0.6234707896996874, 0.7008718952862779, 0.6139153717946223, 0.7305393963754125, 0.6762935793341645, 0.7404248076185195 ], "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.0456714304164052, 0.34667923487722874, 0.5311849899590015, 0.7397316498681903, 0.3832288132980466, 0.4666798889913273, 0.4985032807923275, 0.4421884608067135, 0.4300281192552422, 0.43640568360718435, 0.42023624675638244, 0.11076179596728124, 0.0, 0.0658480732646399, 0.2339249168648233, 0.2919331068187802, 0.3953128716378457, 0.0913858501086996, 0.3215035262861359, 0.4216331237658199 ], "xaxis": "x2", "y": [ 0.6777361119166017, 0.42212385032325983, 0.8968999376520514, 0.2933358568698168, 0.7600629292428493, 0.7749276205883261, 0.8121153924918824, 0.7263873512427858, 0.7759982880047634, 0.731506243741627, 0.8142611433075335, 0.8194496702959445, 0.6732655975274742, 0.4949347565242887, 0.6234707896996874, 0.7008718952862779, 0.6139153717946223, 0.7305393963754125, 0.6762935793341645, 0.7404248076185195 ], "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": [ "