{ "cells": [ { "cell_type": "markdown", "id": "16da5ed1-982b-40d7-ba84-8b39c3cf5e0c", "metadata": {}, "source": [ "# Customize EncoderMap: Custom loss functions\n", "\n", "**Welcome**\n", "\n", "Welcome to the second part of the customization section.\n", "\n", "Run this notebook on Google Colab:\n", "\n", "[![Open in Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/AG-Peter/encodermap/blob/main/tutorials/notebooks_customization/02_custom_loss_functions.ipynb)\n", "\n", "Find the documentation of EncoderMap:\n", "\n", "https://ag-peter.github.io/encodermap\n", "\n", "**Goals:**\n", "\n", "In this tuorial you will learn:\n", "- [A few general concepts about loss functions.](#what-are-loss-functions)\n", "- [What loss functions are implemented in EncoderMap.](#cost-functions)\n", "- [How you can write your own loss functions.](#custom-cost-functions)\n", "- [Another example for a custom loss function.](#adding-a-unit-circle-loss)\n", "\n", "**For Google colab only**\n", "\n", "If you're on Google colab, please uncomment these lines and install EncoderMap." ] }, { "cell_type": "code", "execution_count": 1, "id": "79ff2eeb-f982-4f3b-9bfc-dc9574d197d8", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:04:43.092664Z", "iopub.status.busy": "2025-06-19T23:04:43.092413Z", "iopub.status.idle": "2025-06-19T23:04:43.094535Z", "shell.execute_reply": "2025-06-19T23:04:43.094274Z" } }, "outputs": [], "source": [ "# !wget https://gist.githubusercontent.com/kevinsawade/deda578a3c6f26640ae905a3557e4ed1/raw/b7403a37710cb881839186da96d4d117e50abf36/install_encodermap_google_colab.sh\n", "# !sudo bash install_encodermap_google_colab.sh" ] }, { "cell_type": "markdown", "id": "a9da4dcf-3e0e-40ce-a114-578ee8a9054a", "metadata": {}, "source": [ "## Import Libraries\n", "\n", "In this tutorial we will learn how to write our own loss functions and add them to EncoderMap. Let us start with the imports:" ] }, { "cell_type": "code", "execution_count": 2, "id": "db4eaab1", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:04:43.095887Z", "iopub.status.busy": "2025-06-19T23:04:43.095755Z", "iopub.status.idle": "2025-06-19T23:04:46.024715Z", "shell.execute_reply": "2025-06-19T23:04:46.024209Z" } }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/home/kevin/git/encoder_map_private/encodermap/__init__.py:194: GPUsAreDisabledWarning: EncoderMap disables the GPU per default because most tensorflow code runs with a higher compatibility when the GPU is disabled. If you want to enable GPUs manually, set the environment variable 'ENCODERMAP_ENABLE_GPU' to 'True' before importing EncoderMap. To do this in python you can run:\n", "\n", "import os; os.environ['ENCODERMAP_ENABLE_GPU'] = 'True'\n", "\n", "before importing encodermap.\n", " _warnings.warn(\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ba5199ce29964a4b91ab30fb0dc75ef2", "version_major": 2, "version_minor": 0 }, "text/plain": [] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import numpy as np\n", "import pandas as pd\n", "import plotly\n", "import plotly.express as px\n", "import plotly.graph_objects as go\n", "import plotly.subplots as ps\n", "import tensorflow as tf\n", "\n", "import encodermap as em\n", "\n", "from pathlib import Path\n", "\n", "%load_ext autoreload\n", "%autoreload 2" ] }, { "cell_type": "markdown", "id": "a938cf02-38b9-4f94-a629-1141d8f54f7a", "metadata": {}, "source": [ "\n", "\n", "## What are loss functions\n", "\n", "Loss functions in EncoderMap are small pieces of code, that take some inputs and return scalar values. We can easily come up with a loss function ourselves, when we think about a linear regression. First let us create some example data in a $\\mathbb{R}^2$ space. Each point $i$ is defined by an x-value $x^{(i)}$ and a true y-value $y^{(i)}$." ] }, { "cell_type": "code", "execution_count": 3, "id": "1b5306dd-2062-4ac4-8a85-cca1f291cbd9", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:04:46.026729Z", "iopub.status.busy": "2025-06-19T23:04:46.026165Z", "iopub.status.idle": "2025-06-19T23:04:46.376884Z", "shell.execute_reply": "2025-06-19T23:04:46.376463Z" } }, "outputs": [ { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "hovertemplate": "x=%{x}
y=%{y}", "legendgroup": "", "marker": { "color": "#636efa", "symbol": "circle" }, "mode": "markers", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ 0.0, 0.05025125628140704, 0.10050251256281408, 0.15075376884422112, 0.20100502512562815, 0.2512562814070352, 0.30150753768844224, 0.35175879396984927, 0.4020100502512563, 0.45226130653266333, 0.5025125628140704, 0.5527638190954774, 0.6030150753768845, 0.6532663316582915, 0.7035175879396985, 0.7537688442211056, 0.8040201005025126, 0.8542713567839196, 0.9045226130653267, 0.9547738693467337, 1.0050251256281408, 1.0552763819095479, 1.105527638190955, 1.155778894472362, 1.206030150753769, 1.256281407035176, 1.306532663316583, 1.35678391959799, 1.407035175879397, 1.4572864321608041, 1.5075376884422111, 1.5577889447236182, 1.6080402010050252, 1.6582914572864322, 1.7085427135678393, 1.7587939698492463, 1.8090452261306533, 1.8592964824120604, 1.9095477386934674, 1.9597989949748744, 2.0100502512562817, 2.0603015075376887, 2.1105527638190957, 2.1608040201005028, 2.21105527638191, 2.261306532663317, 2.311557788944724, 2.361809045226131, 2.412060301507538, 2.462311557788945, 2.512562814070352, 2.562814070351759, 2.613065326633166, 2.663316582914573, 2.71356783919598, 2.763819095477387, 2.814070351758794, 2.864321608040201, 2.9145728643216082, 2.9648241206030153, 3.0150753768844223, 3.0653266331658293, 3.1155778894472363, 3.1658291457286434, 3.2160804020100504, 3.2663316582914574, 3.3165829145728645, 3.3668341708542715, 3.4170854271356785, 3.4673366834170856, 3.5175879396984926, 3.5678391959798996, 3.6180904522613067, 3.6683417085427137, 3.7185929648241207, 3.7688442211055277, 3.819095477386935, 3.869346733668342, 3.919597989949749, 3.969849246231156, 4.020100502512563, 4.07035175879397, 4.120603015075377, 4.170854271356784, 4.2211055276381915, 4.2713567839195985, 4.3216080402010055, 4.371859296482413, 4.42211055276382, 4.472361809045227, 4.522613065326634, 4.572864321608041, 4.623115577889448, 4.673366834170855, 4.723618090452262, 4.773869346733669, 4.824120603015076, 4.874371859296483, 4.92462311557789, 4.974874371859297, 5.025125628140704, 5.075376884422111, 5.125628140703518, 5.175879396984925, 5.226130653266332, 5.276381909547739, 5.326633165829146, 5.376884422110553, 5.42713567839196, 5.477386934673367, 5.527638190954774, 5.577889447236181, 5.628140703517588, 5.678391959798995, 5.728643216080402, 5.778894472361809, 5.8291457286432165, 5.8793969849246235, 5.9296482412060305, 5.9798994974874375, 6.030150753768845, 6.080402010050252, 6.130653266331659, 6.180904522613066, 6.231155778894473, 6.28140703517588, 6.331658291457287, 6.381909547738694, 6.432160804020101, 6.482412060301508, 6.532663316582915, 6.582914572864322, 6.633165829145729, 6.683417085427136, 6.733668341708543, 6.78391959798995, 6.834170854271357, 6.884422110552764, 6.934673366834171, 6.984924623115578, 7.035175879396985, 7.085427135678392, 7.135678391959799, 7.185929648241206, 7.236180904522613, 7.28643216080402, 7.336683417085427, 7.386934673366834, 7.437185929648241, 7.4874371859296485, 7.5376884422110555, 7.5879396984924625, 7.63819095477387, 7.688442211055277, 7.738693467336684, 7.788944723618091, 7.839195979899498, 7.889447236180905, 7.939698492462312, 7.989949748743719, 8.040201005025127, 8.090452261306533, 8.14070351758794, 8.190954773869347, 8.241206030150755, 8.291457286432161, 8.341708542713569, 8.391959798994975, 8.442211055276383, 8.492462311557789, 8.542713567839197, 8.592964824120603, 8.643216080402011, 8.693467336683417, 8.743718592964825, 8.793969849246231, 8.84422110552764, 8.894472361809045, 8.944723618090453, 8.99497487437186, 9.045226130653267, 9.095477386934673, 9.145728643216081, 9.195979899497488, 9.246231155778895, 9.296482412060302, 9.34673366834171, 9.396984924623116, 9.447236180904524, 9.49748743718593, 9.547738693467338, 9.597989949748744, 9.648241206030152, 9.698492462311558, 9.748743718592966, 9.798994974874372, 9.84924623115578, 9.899497487437186, 9.949748743718594, 10.0 ], "xaxis": "x", "y": [ 0.7486992485445143, -1.7500016336532254, -0.7609288974107485, 3.0123229046448485, 1.9852785092271084, 0.6122093564635731, 1.2167438526986107, 0.12275460516901557, 2.397512787210613, -1.9520394839824613, 1.9049353613012197, -1.2788036476845783, -1.7302948400581113, -0.7226643073805913, 3.157276343722984, -1.285184289819799, 2.7865789429671626, 2.5292792094949625, 2.808537379695892, 2.0627905657717345, 0.9471081489434541, 1.0576441911074903, -1.0202587943059063, 3.063138156004382, 2.374470933186388, -0.1810870529485693, 0.8059038854914017, 3.2810166034085775, 2.0907828172858367, 0.7059438628022987, -0.04443791141892839, 2.6404563089695516, 1.4799827793474671, -0.07088193484507821, 1.8027817489997375, 0.31648629214859003, 1.7150875329194728, 2.0541580859456614, 3.556542370373786, 0.4758471572035956, 1.167414054680488, 2.712382755851734, 0.5323723775871863, 1.0904036075602046, 3.274590676021285, 3.7725736301714177, 3.8846443908696826, 2.3192291620298024, 2.0402226724725825, 4.161844781327617, 2.5797641848654647, 2.1105190579321986, 1.5132639589951924, 1.3828898400176428, 3.182347785267208, 3.7054860513551957, 1.5939048401694085, 3.191458545736341, 3.725540204007686, 2.4947275424887243, 3.8085904817630944, 1.8833101972918023, 1.8433751494942316, 3.6792368636348503, 4.367219302126264, 4.364233571085431, 3.6464690205325914, 3.5504571445894215, 4.1792883842708, 3.72974125726725, 4.30416288317945, 4.66601992181641, 3.5085395614194645, 4.656155570808913, 2.601944776731881, 4.545686638370874, 3.4693832997584804, 3.9680689915471246, 3.3775531672157806, 3.353199353259642, 4.909407528572208, 3.9612567165529677, 4.3067900588458246, 3.4176771164177833, 3.7911020762620415, 3.536870034910263, 5.105617670403142, 4.563080832816351, 4.928432367364029, 4.987364376136843, 5.176917057867801, 5.062927812183241, 4.629224048947981, 4.136888910034532, 4.171339542796491, 4.395782904813478, 4.764933443053294, 4.45274649441234, 4.5495278072613585, 4.834118548563928, 5.066227413471183, 5.373018742056165, 5.5422314792435134, 5.259305959433023, 5.211613330323342, 5.757710951780208, 4.74131157070164, 5.010187259028187, 6.093583946796754, 5.323443831206917, 5.7864189554908805, 6.356710636354393, 5.338680579707339, 5.876948134072762, 5.484486602495678, 5.202214457508272, 5.019196464452577, 6.063678810034299, 6.665262540223724, 6.073846283076839, 5.449110873217604, 6.185548168548468, 5.117350142773242, 6.96433716051482, 6.200760446139784, 6.306335045129755, 7.1797398464241065, 7.412702880780941, 5.3396537269581525, 6.431967512395739, 7.57618738079336, 6.071033955128814, 6.943128746122687, 7.907856599279386, 7.630660407700901, 5.632316485285878, 5.849788428446279, 5.891928359024068, 6.354323759628053, 7.460182558214077, 7.9822147264804215, 7.511901922938631, 8.029738482085213, 5.943165348021669, 5.990881912509081, 7.080863906923642, 8.573840411950947, 6.827550104114105, 8.719277561133296, 7.933563194697452, 7.403765459650237, 6.5451746291717585, 6.2963550493967615, 7.268126461119135, 7.819618429511306, 8.874871470531344, 9.641059340723206, 8.181904587521958, 8.72332991149826, 6.3342048415220145, 6.7769129521255405, 8.60758010951163, 8.24812753212134, 7.659690658267126, 10.036055369357072, 7.047767892495037, 6.44207126762312, 9.779383795606341, 7.112831951964747, 6.953412479054645, 7.984235913706834, 8.460329662937914, 6.64072182761998, 9.969332026262544, 8.225948133239038, 9.378653616026373, 6.555359278273082, 8.84964417821496, 7.937208637175383, 7.1248527677137545, 6.575723548405593, 6.8926239300276695, 11.313450051562985, 8.406369535863945, 10.869812952326019, 6.708966636533763, 9.287971512941146, 11.196961214886407, 10.051316144621037, 7.185238274881735, 7.445911760855696, 7.019551192478181, 8.429719531343071, 9.18277939127484, 10.051845276984826, 10.397195035770427, 9.508773521049656, 10.165333184442398, 11.354471159065149, 11.834877441234882 ], "yaxis": "y" } ], "layout": { "legend": { "tracegroupgap": 0 }, "margin": { "t": 60 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "xaxis": { "anchor": "y", "domain": [ 0.0, 1.0 ], "title": { "text": "x" } }, "yaxis": { "anchor": "x", "domain": [ 0.0, 1.0 ], "title": { "text": "y" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "x = np.linspace(0, 10, 200)\n", "y = np.linspace(0, 10, 200)\n", "\n", "# add noise\n", "y += (np.random.random((200, )) - 0.5) * (np.abs(y - 5) + 1)\n", "\n", "fig = px.scatter(x=x, y=y, labels={\"x\": \"x\", \"y\": \"y\"})\n", "fig.show()" ] }, { "cell_type": "markdown", "id": "fcebf5d4-9952-429d-abf9-d328c808ae66", "metadata": {}, "source": [ "The model describing our data will be a linear function without a y-intercept. This model takes in an actual x-value of the data $x$, multiplies it with a value $w$ and produces a prediction $\\hat{y}$.\n", "\n", "\\begin{equation}\n", "\\hat{y} = wx\n", "\\end{equation}\n", "\n", "And the cost function $J(w)$ is defined as the squared distance between a sample $y$ and our prediction $\\hat{y}$. Our cost function is a function of the parameter $w$:\n", "\n", "\\begin{align}\n", "J(w) &= \\frac{1}{2m} \\sum_{i=1}^m \\left( \\hat{y}^{(i)} - y^{(i)} \\right) ^ 2\\\\\n", "&= \\frac{1}{2m} \\sum_{i=1}^m \\left( wx^{(i)} - y^{(i)} \\right) ^ 2\n", "\\end{align}\n", "\n", "We can plot this loss function using a range of $w$ values:" ] }, { "cell_type": "code", "execution_count": 4, "id": "9f253ad2-169d-42ed-a03b-530995f8b2fa", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:04:46.394398Z", "iopub.status.busy": "2025-06-19T23:04:46.394143Z", "iopub.status.idle": "2025-06-19T23:04:46.446411Z", "shell.execute_reply": "2025-06-19T23:04:46.445720Z" } }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "hovertemplate": "w=%{x}
J=%{y}", "legendgroup": "", "line": { "color": "#636efa", "dash": "solid" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ 0.0, 0.10526315789473684, 0.21052631578947367, 0.3157894736842105, 0.42105263157894735, 0.5263157894736842, 0.631578947368421, 0.7368421052631579, 0.8421052631578947, 0.9473684210526315, 1.0526315789473684, 1.1578947368421053, 1.263157894736842, 1.3684210526315788, 1.4736842105263157, 1.5789473684210527, 1.6842105263157894, 1.789473684210526, 1.894736842105263, 2.0 ], "xaxis": "x", "y": [ 16.71180517231488, 13.44527117017588, 10.549009582741972, 8.023020410013176, 5.867303651989487, 4.0818593086709, 2.6666873800574153, 1.6217878661490375, 0.9471607669457643, 0.6428060824475946, 0.70872381265453, 1.1449139575665703, 1.9513765171837139, 3.128111491505962, 4.675118880533316, 6.592398684265773, 8.879950902703335, 11.537775535845995, 14.565872583693771, 17.964242046246653 ], "yaxis": "y" } ], "layout": { "legend": { "tracegroupgap": 0 }, "margin": { "t": 60 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "xaxis": { "anchor": "y", "domain": [ 0.0, 1.0 ], "title": { "text": "w" } }, "yaxis": { "anchor": "x", "domain": [ 0.0, 1.0 ], "title": { "text": "J" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "def y_hat(x, w):\n", " return w * x\n", "\n", "def J(w):\n", " loss = 0\n", " for x_sample, y_true in zip(x, y):\n", " y_pred = y_hat(x_sample, w)\n", " loss += (y_pred - y_true) ** 2\n", " loss /= (2 * len(x))\n", " return loss\n", "\n", "test_w = np.linspace(0, 2, 20)\n", "test_J = [J(w) for w in test_w]\n", "\n", "fig = px.line(x=test_w, y=test_J, labels={\"x\": \"w\", \"y\": \"J\"})\n", "fig.show()" ] }, { "cell_type": "markdown", "id": "5c719044-5206-47e6-8d15-8480d72826c4", "metadata": {}, "source": [ "Doing so, we can get a good idea, what $w$ might produce the best fit for our data. However, to find the minimum algorithmically, we need to write a gradient descent algorithm. For that we need the derivative $\\frac{d}{dw}$ of our cost function $J(w)$, i.e. the gradient.\n", "\n", "\\begin{equation}\n", "\\frac{d}{dw} J(w) = \\frac{1}{m} \\sum_{i=1}^m \\left( \\hat{y}^{(i)} - y^{(i)} \\right)x^{(i)}\n", "\\end{equation}" ] }, { "cell_type": "code", "execution_count": 5, "id": "11ca7640-5201-4d26-ac87-23da4452e9b1", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:04:46.449282Z", "iopub.status.busy": "2025-06-19T23:04:46.448445Z", "iopub.status.idle": "2025-06-19T23:04:46.534190Z", "shell.execute_reply": "2025-06-19T23:04:46.533383Z" } }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "hovertemplate": "%{y:.4f}", "legendgroup": "w", "line": { "color": "#636efa", "dash": "solid" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "w", "orientation": "v", "showlegend": true, "type": "scatter", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199 ], "xaxis": "x", "y": [ 1.5664885258408776, 1.546931911942395, 1.5280288230812233, 1.5097574203553623, 1.492096594655265, 1.4750259422763015, 1.4585257413461827, 1.4425769290401107, 1.4271610795573322, 1.4122603828336515, 1.3978576239653098, 1.3839361633204579, 1.3704799173152455, 1.357473339832318, 1.344901404260252, 1.3327495861331822, 1.3210038463505598, 1.309650614957658, 1.298676775468087, 1.2880696497102027, 1.2778169831799058, 1.2679069308829078, 1.258328043650106, 1.2490692549102598, 1.2401198679046848, 1.2314695433291956, 1.2231082873890178, 1.2150264402528712, 1.2072146648928823, 1.1996639362974357, 1.1923655310445003, 1.185311017223384, 1.1784922446932748, 1.1719013356673127, 1.1655306756113135, 1.159372904446633, 1.1534209080470033, 1.147667810019522, 1.1421069637602956, 1.136731944775561, 1.1315365432594118, 1.126514756919556, 1.1216607840428159, 1.116969016792359, 1.1124340347289148, 1.1080505985484952, 1.103813644029381, 1.099718276181383, 1.095759763590617, 1.0919335329532613, 1.0882351637919778, 1.0846603833488981, 1.081205061649268, 1.0778652067300527, 1.074636960027987, 1.0715165919217442, 1.0685004974230718, 1.065585192011918, 1.0627673076107347, 1.0600435886933095, 1.0574108885236275, 1.05486616552042, 1.0524064797431987, 1.0500289894957189, 1.0477309480429413, 1.0455097004377063, 1.0433626804534502, 1.0412874076194218, 1.0392814843549727, 1.037342593199612, 1.035468494135624, 1.0336570220001562, 1.0319060839837881, 1.0302136572126905, 1.028577786411582, 1.0269965816447817, 1.0254682161327515, 1.0239909241416008, 1.022562998943119, 1.0211827908429787, 1.0198487052748277, 1.0185592009580748, 1.0173127881172337, 1.0161080267607723, 1.014943525017479, 1.0138179375284215, 1.0127299638926415, 1.0116783471647908, 1.0106618724029712, 1.009679365265102, 1.0087296906521916, 1.007811751396949, 1.0069244869962157, 1.0060668723857582, 1.005237916756002, 1.0044366624073404, 1.003662183643697, 1.0029135857030598, 1.0021900037237554, 1.0014906017452672, 1.000814571742442, 1.0001611326919724, 0.9995295296700737, 0.9989190329803139, 0.9983289373105888, 0.9977585609182691, 0.9972072448425772, 0.9966743521432839, 0.9961592671648465, 0.9956613948251357, 0.9951801599279329, 0.9947150064984004, 0.9942653971407593, 0.9938308124174314, 0.9934107502489282, 0.9930047253337946, 0.9926122685879356, 0.9922329266026794, 0.9918662611209506, 0.9915118485309479, 0.9911692793767418, 0.9908381578852266, 0.99051810150888, 0.9902087404838033, 0.9899097174025294, 0.9896206868011072, 0.9893413147599837, 0.9890712785182243, 0.9888102661006243, 0.9885579759572808, 0.9883141166152097, 0.9880784063416049, 0.9878505728183492, 0.9876303528274033, 0.9874174919467076, 0.9872117442562461, 0.9870128720539333, 0.9868206455809942, 0.9866348427565228, 0.9864552489209093, 0.9862816565878427, 0.9861138652045996, 0.9859516809203444, 0.985794916362171, 0.98564339041863, 0.9854969280304888, 0.985355359988484, 0.9852185227378326, 0.9850862581892759, 0.9849584135364372, 0.9848348410792839, 0.9847153980534876, 0.9845999464654881, 0.9844883529330675, 0.9843804885312528, 0.9842762286433682, 0.9841754528170636, 0.9840780446251557, 0.983983891531118, 0.983892884759067, 0.9838049191680921, 0.9837198931307854, 0.983637708415831, 0.983558270074517, 0.9834814863310409, 0.98340726847648, 0.9833355307663051, 0.9832661903213195, 0.9831991670319075, 0.9831343834654833, 0.9830717647770327, 0.9830112386226434, 0.9829527350759258, 0.9828961865472268, 0.982841527705542, 0.9827886954030391, 0.9827376286021023, 0.9826882683048149, 0.9826405574847987, 0.9825944410213308, 0.9825498656356622, 0.9825067798294643, 0.982465133825333, 0.9824248795092793, 0.982385970375144, 0.982348361470868, 0.982312009346559, 0.9822768720042936, 0.9822429088495963, 0.9822100806445409, 0.9821783494624182, 0.9821476786439193, 0.9821180327547823, 0.982089377544855, 0.9820616799085259, 0.9820349078464761, 0.9820090304287109, 0.9819840177588258, 0.981959840939467, 0.9819364720389461 ], "yaxis": "y" }, { "hovertemplate": "%{y:.4f}", "legendgroup": "J", "line": { "color": "#EF553B", "dash": "solid" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "J", "orientation": "v", "showlegend": true, "type": "scatter", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199 ], "xaxis": "x", "y": [ 6.346152364213843, 5.970081585453361, 5.618725226534086, 5.290459118329926, 4.983765827999403, 4.697227644547144, 4.429520025356532, 4.179405473399626, 3.9457278168213885, 3.7274068644551033, 3.523433412563851, 3.332864579726266, 3.1548194483018053, 2.9884749923278817, 2.833062273025299, 2.6878628843254484, 2.552205631988447, 2.425463430961234, 2.3070504066334396, 2.196419186591397, 2.0930583703512022, 1.9964901653745302, 1.9062681784395021, 1.8219753521570754, 1.7432220370943532, 1.6696441905930606, 1.600901693957124, 1.5366767802304304, 1.476672565297028, 1.420611675513732, 1.3682349655312231, 1.3193003203767122, 1.2735815362606864, 1.2308672749342209, 1.1909600867632613, 1.1536754980040143, 1.1188411580602688, 1.086296042780823, 1.0558897101141824, 1.0274816046797426, 1.000940408040808, 0.9761434316760051, 0.9529760498430929, 0.9313311697135248, 0.9111087363284169, 0.892215270087573, 0.874563434633547, 0.8580716331332807, 0.8426636310910806, 0.8282682039493836, 0.8148188078482939, 0.8022532720219879, 0.7905135114100307, 0.77954525815516, 0.7692978107463562, 0.759723799647592, 0.7507789683288644, 0.7424219686873255, 0.7346141699127995, 0.7273194799141947, 0.7205041784813027, 0.7141367614107967, 0.7081877948758611, 0.7026297793662889, 0.6974370225700901, 0.6925855206089985, 0.6880528470788795, 0.6838180493821235, 0.6798615518728078, 0.6761650653669213, 0.6727115025993412, 0.6694848992367617, 0.6664703400814634, 0.6636538901247733, 0.6610225301315222, 0.6585640964577287, 0.6562672248233108, 0.6541212977799117, 0.6521163956310129, 0.6502432505774449, 0.6484932038763465, 0.6468581658155241, 0.6453305783181955, 0.6439033800052583, 0.6425699735535738, 0.6413241951993831, 0.6401602862458833, 0.639072866443252, 0.6380569091180686, 0.6371077179371681, 0.6362209051985158, 0.6353923715487513, 0.6346182870336434, 0.6338950733938588, 0.6332193875242113, 0.632588106019929, 0.6319983107384968, 0.6314472753103386, 0.6309324525359902, 0.6304514626114865, 0.6300020821275588, 0.6295822337917677, 0.629189976826076, 0.6288234979954683, 0.6284811032261438, 0.6281612097745455, 0.6278623389110174, 0.6275831090842747, 0.6273222295350871, 0.6270784943296515, 0.6268507767850866, 0.6266380242612553, 0.6264392532948678, 0.6262535450533532, 0.626080041087491, 0.6259179393631704, 0.6257664905539352, 0.6256249945771637, 0.6254927973578959, 0.6253692878053212, 0.6252538949879703, 0.6251460854945468, 0.6250453609681922, 0.6249512558028015, 0.6248633349907243, 0.6247811921119122, 0.6247044474552126, 0.62463274626313, 0.6245657570919338, 0.6245031702795365, 0.6244446965140583, 0.6243900654964658, 0.6243390246910919, 0.6242913381582756, 0.6242467854637146, 0.6242051606594875, 0.624166271332053, 0.6241299377127988, 0.624095991847051, 0.6240642768176914, 0.6240346460197986, 0.6240069624829555, 0.6239810982380938, 0.6239569337259485, 0.6239343572443875, 0.6239132644320592, 0.6238935577859769, 0.6238751462108023, 0.6238579445977529, 0.623841873431181, 0.6238268584210033, 0.6238128301592959, 0.6237997237994461, 0.6237874787563968, 0.6237760384265876, 0.6237653499263005, 0.6237553638472025, 0.623746034027951, 0.623737317340809, 0.6237291734922863, 0.6237215648368786, 0.6237144562030486, 0.6237078147306437, 0.6237016097189975, 0.6236958124850134, 0.6236903962305758, 0.6236853359186718, 0.6236806081576605, 0.6236761910931378, 0.6236720643069175, 0.6236682087226432, 0.6236646065176104, 0.6236612410403758, 0.6236580967337879, 0.6236551590630711, 0.6236524144486401, 0.6236498502033238, 0.6236474544737194, 0.623645216185402, 0.6236431249917278, 0.6236411712260103, 0.6236393458568308, 0.6236376404462944, 0.6236360471110229, 0.6236345584857124, 0.6236331676890906, 0.6236318682921026, 0.6236306542881962, 0.6236295200655543, 0.6236284603811543, 0.6236274703365305, 0.6236265453551342, 0.6236256811611749, 0.6236248737598552, 0.6236241194189069, 0.6236234146513366, 0.6236227561993071, 0.6236221410190793, 0.6236215662669389, 0.6236210292860548 ], "yaxis": "y" } ], "layout": { "hovermode": "x", "legend": { "title": { "text": "type" }, "tracegroupgap": 0 }, "margin": { "t": 60 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "xaxis": { "anchor": "y", "domain": [ 0.0, 1.0 ], "title": { "text": "epoch" } }, "yaxis": { "anchor": "x", "domain": [ 0.0, 1.0 ], "title": { "text": "value" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "def gradient_descent(epochs, alpha=0.001, J_conv=0.01):\n", " w_test = np.random.random((1, ))[0] * 2\n", " losses = []\n", " for i in range(epochs):\n", " loss_derivative = 0\n", " for x_sample, y_sample in zip(x, y):\n", " loss_derivative += (y_hat(x_sample, w_test) - y_sample) * x_sample\n", " loss_derivative /= len(x)\n", " w_test -= alpha * loss_derivative\n", " loss = J(w_test)\n", " losses.append((i, \"w\", w_test))\n", " losses.append((i, \"J\", loss))\n", " return pd.DataFrame(np.array(losses), columns=[\"epoch\", \"type\", \"value\"]).astype({\"epoch\": int, \"type\": str, \"value\": float})\n", "\n", "\n", "history = gradient_descent(200)\n", "fig = px.line(history, x=\"epoch\", y=\"value\", color=\"type\")\n", "fig.update_traces(mode=\"lines\", hovertemplate=\"%{y:.4f}\")\n", "fig.update_layout(hovermode=\"x\")\n", "\n", "fig.show()" ] }, { "cell_type": "markdown", "id": "0f56341f-85b2-4cf6-9771-4183a52df563", "metadata": {}, "source": [ "We can now use this value to plot our regression line." ] }, { "cell_type": "code", "execution_count": 6, "id": "22b1e4b8-50b0-433e-9f78-b7c1a00fc0b2", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:04:46.536185Z", "iopub.status.busy": "2025-06-19T23:04:46.535925Z", "iopub.status.idle": "2025-06-19T23:04:46.568251Z", "shell.execute_reply": "2025-06-19T23:04:46.567534Z" } }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "mode": "markers", "name": "data", "type": "scatter", "x": [ 0.0, 0.05025125628140704, 0.10050251256281408, 0.15075376884422112, 0.20100502512562815, 0.2512562814070352, 0.30150753768844224, 0.35175879396984927, 0.4020100502512563, 0.45226130653266333, 0.5025125628140704, 0.5527638190954774, 0.6030150753768845, 0.6532663316582915, 0.7035175879396985, 0.7537688442211056, 0.8040201005025126, 0.8542713567839196, 0.9045226130653267, 0.9547738693467337, 1.0050251256281408, 1.0552763819095479, 1.105527638190955, 1.155778894472362, 1.206030150753769, 1.256281407035176, 1.306532663316583, 1.35678391959799, 1.407035175879397, 1.4572864321608041, 1.5075376884422111, 1.5577889447236182, 1.6080402010050252, 1.6582914572864322, 1.7085427135678393, 1.7587939698492463, 1.8090452261306533, 1.8592964824120604, 1.9095477386934674, 1.9597989949748744, 2.0100502512562817, 2.0603015075376887, 2.1105527638190957, 2.1608040201005028, 2.21105527638191, 2.261306532663317, 2.311557788944724, 2.361809045226131, 2.412060301507538, 2.462311557788945, 2.512562814070352, 2.562814070351759, 2.613065326633166, 2.663316582914573, 2.71356783919598, 2.763819095477387, 2.814070351758794, 2.864321608040201, 2.9145728643216082, 2.9648241206030153, 3.0150753768844223, 3.0653266331658293, 3.1155778894472363, 3.1658291457286434, 3.2160804020100504, 3.2663316582914574, 3.3165829145728645, 3.3668341708542715, 3.4170854271356785, 3.4673366834170856, 3.5175879396984926, 3.5678391959798996, 3.6180904522613067, 3.6683417085427137, 3.7185929648241207, 3.7688442211055277, 3.819095477386935, 3.869346733668342, 3.919597989949749, 3.969849246231156, 4.020100502512563, 4.07035175879397, 4.120603015075377, 4.170854271356784, 4.2211055276381915, 4.2713567839195985, 4.3216080402010055, 4.371859296482413, 4.42211055276382, 4.472361809045227, 4.522613065326634, 4.572864321608041, 4.623115577889448, 4.673366834170855, 4.723618090452262, 4.773869346733669, 4.824120603015076, 4.874371859296483, 4.92462311557789, 4.974874371859297, 5.025125628140704, 5.075376884422111, 5.125628140703518, 5.175879396984925, 5.226130653266332, 5.276381909547739, 5.326633165829146, 5.376884422110553, 5.42713567839196, 5.477386934673367, 5.527638190954774, 5.577889447236181, 5.628140703517588, 5.678391959798995, 5.728643216080402, 5.778894472361809, 5.8291457286432165, 5.8793969849246235, 5.9296482412060305, 5.9798994974874375, 6.030150753768845, 6.080402010050252, 6.130653266331659, 6.180904522613066, 6.231155778894473, 6.28140703517588, 6.331658291457287, 6.381909547738694, 6.432160804020101, 6.482412060301508, 6.532663316582915, 6.582914572864322, 6.633165829145729, 6.683417085427136, 6.733668341708543, 6.78391959798995, 6.834170854271357, 6.884422110552764, 6.934673366834171, 6.984924623115578, 7.035175879396985, 7.085427135678392, 7.135678391959799, 7.185929648241206, 7.236180904522613, 7.28643216080402, 7.336683417085427, 7.386934673366834, 7.437185929648241, 7.4874371859296485, 7.5376884422110555, 7.5879396984924625, 7.63819095477387, 7.688442211055277, 7.738693467336684, 7.788944723618091, 7.839195979899498, 7.889447236180905, 7.939698492462312, 7.989949748743719, 8.040201005025127, 8.090452261306533, 8.14070351758794, 8.190954773869347, 8.241206030150755, 8.291457286432161, 8.341708542713569, 8.391959798994975, 8.442211055276383, 8.492462311557789, 8.542713567839197, 8.592964824120603, 8.643216080402011, 8.693467336683417, 8.743718592964825, 8.793969849246231, 8.84422110552764, 8.894472361809045, 8.944723618090453, 8.99497487437186, 9.045226130653267, 9.095477386934673, 9.145728643216081, 9.195979899497488, 9.246231155778895, 9.296482412060302, 9.34673366834171, 9.396984924623116, 9.447236180904524, 9.49748743718593, 9.547738693467338, 9.597989949748744, 9.648241206030152, 9.698492462311558, 9.748743718592966, 9.798994974874372, 9.84924623115578, 9.899497487437186, 9.949748743718594, 10.0 ], "y": [ 0.7486992485445143, -1.7500016336532254, -0.7609288974107485, 3.0123229046448485, 1.9852785092271084, 0.6122093564635731, 1.2167438526986107, 0.12275460516901557, 2.397512787210613, -1.9520394839824613, 1.9049353613012197, -1.2788036476845783, -1.7302948400581113, -0.7226643073805913, 3.157276343722984, -1.285184289819799, 2.7865789429671626, 2.5292792094949625, 2.808537379695892, 2.0627905657717345, 0.9471081489434541, 1.0576441911074903, -1.0202587943059063, 3.063138156004382, 2.374470933186388, -0.1810870529485693, 0.8059038854914017, 3.2810166034085775, 2.0907828172858367, 0.7059438628022987, -0.04443791141892839, 2.6404563089695516, 1.4799827793474671, -0.07088193484507821, 1.8027817489997375, 0.31648629214859003, 1.7150875329194728, 2.0541580859456614, 3.556542370373786, 0.4758471572035956, 1.167414054680488, 2.712382755851734, 0.5323723775871863, 1.0904036075602046, 3.274590676021285, 3.7725736301714177, 3.8846443908696826, 2.3192291620298024, 2.0402226724725825, 4.161844781327617, 2.5797641848654647, 2.1105190579321986, 1.5132639589951924, 1.3828898400176428, 3.182347785267208, 3.7054860513551957, 1.5939048401694085, 3.191458545736341, 3.725540204007686, 2.4947275424887243, 3.8085904817630944, 1.8833101972918023, 1.8433751494942316, 3.6792368636348503, 4.367219302126264, 4.364233571085431, 3.6464690205325914, 3.5504571445894215, 4.1792883842708, 3.72974125726725, 4.30416288317945, 4.66601992181641, 3.5085395614194645, 4.656155570808913, 2.601944776731881, 4.545686638370874, 3.4693832997584804, 3.9680689915471246, 3.3775531672157806, 3.353199353259642, 4.909407528572208, 3.9612567165529677, 4.3067900588458246, 3.4176771164177833, 3.7911020762620415, 3.536870034910263, 5.105617670403142, 4.563080832816351, 4.928432367364029, 4.987364376136843, 5.176917057867801, 5.062927812183241, 4.629224048947981, 4.136888910034532, 4.171339542796491, 4.395782904813478, 4.764933443053294, 4.45274649441234, 4.5495278072613585, 4.834118548563928, 5.066227413471183, 5.373018742056165, 5.5422314792435134, 5.259305959433023, 5.211613330323342, 5.757710951780208, 4.74131157070164, 5.010187259028187, 6.093583946796754, 5.323443831206917, 5.7864189554908805, 6.356710636354393, 5.338680579707339, 5.876948134072762, 5.484486602495678, 5.202214457508272, 5.019196464452577, 6.063678810034299, 6.665262540223724, 6.073846283076839, 5.449110873217604, 6.185548168548468, 5.117350142773242, 6.96433716051482, 6.200760446139784, 6.306335045129755, 7.1797398464241065, 7.412702880780941, 5.3396537269581525, 6.431967512395739, 7.57618738079336, 6.071033955128814, 6.943128746122687, 7.907856599279386, 7.630660407700901, 5.632316485285878, 5.849788428446279, 5.891928359024068, 6.354323759628053, 7.460182558214077, 7.9822147264804215, 7.511901922938631, 8.029738482085213, 5.943165348021669, 5.990881912509081, 7.080863906923642, 8.573840411950947, 6.827550104114105, 8.719277561133296, 7.933563194697452, 7.403765459650237, 6.5451746291717585, 6.2963550493967615, 7.268126461119135, 7.819618429511306, 8.874871470531344, 9.641059340723206, 8.181904587521958, 8.72332991149826, 6.3342048415220145, 6.7769129521255405, 8.60758010951163, 8.24812753212134, 7.659690658267126, 10.036055369357072, 7.047767892495037, 6.44207126762312, 9.779383795606341, 7.112831951964747, 6.953412479054645, 7.984235913706834, 8.460329662937914, 6.64072182761998, 9.969332026262544, 8.225948133239038, 9.378653616026373, 6.555359278273082, 8.84964417821496, 7.937208637175383, 7.1248527677137545, 6.575723548405593, 6.8926239300276695, 11.313450051562985, 8.406369535863945, 10.869812952326019, 6.708966636533763, 9.287971512941146, 11.196961214886407, 10.051316144621037, 7.185238274881735, 7.445911760855696, 7.019551192478181, 8.429719531343071, 9.18277939127484, 10.051845276984826, 10.397195035770427, 9.508773521049656, 10.165333184442398, 11.354471159065149, 11.834877441234882 ] }, { "mode": "lines", "name": "fit", "type": "scatter", "x": [ 0.0, 0.05025125628140704, 0.10050251256281408, 0.15075376884422112, 0.20100502512562815, 0.2512562814070352, 0.30150753768844224, 0.35175879396984927, 0.4020100502512563, 0.45226130653266333, 0.5025125628140704, 0.5527638190954774, 0.6030150753768845, 0.6532663316582915, 0.7035175879396985, 0.7537688442211056, 0.8040201005025126, 0.8542713567839196, 0.9045226130653267, 0.9547738693467337, 1.0050251256281408, 1.0552763819095479, 1.105527638190955, 1.155778894472362, 1.206030150753769, 1.256281407035176, 1.306532663316583, 1.35678391959799, 1.407035175879397, 1.4572864321608041, 1.5075376884422111, 1.5577889447236182, 1.6080402010050252, 1.6582914572864322, 1.7085427135678393, 1.7587939698492463, 1.8090452261306533, 1.8592964824120604, 1.9095477386934674, 1.9597989949748744, 2.0100502512562817, 2.0603015075376887, 2.1105527638190957, 2.1608040201005028, 2.21105527638191, 2.261306532663317, 2.311557788944724, 2.361809045226131, 2.412060301507538, 2.462311557788945, 2.512562814070352, 2.562814070351759, 2.613065326633166, 2.663316582914573, 2.71356783919598, 2.763819095477387, 2.814070351758794, 2.864321608040201, 2.9145728643216082, 2.9648241206030153, 3.0150753768844223, 3.0653266331658293, 3.1155778894472363, 3.1658291457286434, 3.2160804020100504, 3.2663316582914574, 3.3165829145728645, 3.3668341708542715, 3.4170854271356785, 3.4673366834170856, 3.5175879396984926, 3.5678391959798996, 3.6180904522613067, 3.6683417085427137, 3.7185929648241207, 3.7688442211055277, 3.819095477386935, 3.869346733668342, 3.919597989949749, 3.969849246231156, 4.020100502512563, 4.07035175879397, 4.120603015075377, 4.170854271356784, 4.2211055276381915, 4.2713567839195985, 4.3216080402010055, 4.371859296482413, 4.42211055276382, 4.472361809045227, 4.522613065326634, 4.572864321608041, 4.623115577889448, 4.673366834170855, 4.723618090452262, 4.773869346733669, 4.824120603015076, 4.874371859296483, 4.92462311557789, 4.974874371859297, 5.025125628140704, 5.075376884422111, 5.125628140703518, 5.175879396984925, 5.226130653266332, 5.276381909547739, 5.326633165829146, 5.376884422110553, 5.42713567839196, 5.477386934673367, 5.527638190954774, 5.577889447236181, 5.628140703517588, 5.678391959798995, 5.728643216080402, 5.778894472361809, 5.8291457286432165, 5.8793969849246235, 5.9296482412060305, 5.9798994974874375, 6.030150753768845, 6.080402010050252, 6.130653266331659, 6.180904522613066, 6.231155778894473, 6.28140703517588, 6.331658291457287, 6.381909547738694, 6.432160804020101, 6.482412060301508, 6.532663316582915, 6.582914572864322, 6.633165829145729, 6.683417085427136, 6.733668341708543, 6.78391959798995, 6.834170854271357, 6.884422110552764, 6.934673366834171, 6.984924623115578, 7.035175879396985, 7.085427135678392, 7.135678391959799, 7.185929648241206, 7.236180904522613, 7.28643216080402, 7.336683417085427, 7.386934673366834, 7.437185929648241, 7.4874371859296485, 7.5376884422110555, 7.5879396984924625, 7.63819095477387, 7.688442211055277, 7.738693467336684, 7.788944723618091, 7.839195979899498, 7.889447236180905, 7.939698492462312, 7.989949748743719, 8.040201005025127, 8.090452261306533, 8.14070351758794, 8.190954773869347, 8.241206030150755, 8.291457286432161, 8.341708542713569, 8.391959798994975, 8.442211055276383, 8.492462311557789, 8.542713567839197, 8.592964824120603, 8.643216080402011, 8.693467336683417, 8.743718592964825, 8.793969849246231, 8.84422110552764, 8.894472361809045, 8.944723618090453, 8.99497487437186, 9.045226130653267, 9.095477386934673, 9.145728643216081, 9.195979899497488, 9.246231155778895, 9.296482412060302, 9.34673366834171, 9.396984924623116, 9.447236180904524, 9.49748743718593, 9.547738693467338, 9.597989949748744, 9.648241206030152, 9.698492462311558, 9.748743718592966, 9.798994974874372, 9.84924623115578, 9.899497487437186, 9.949748743718594, 10.0 ], "y": [ 0.0, 0.04934354130848975, 0.0986870826169795, 0.14803062392546928, 0.197374165233959, 0.2467177065424488, 0.29606124785093857, 0.3454047891594283, 0.394748330467918, 0.4440918717764078, 0.4934354130848976, 0.5427789543933873, 0.5921224957018771, 0.6414660370103669, 0.6908095783188566, 0.7401531196273463, 0.789496660935836, 0.8388402022443259, 0.8881837435528156, 0.9375272848613053, 0.9868708261697952, 1.0362143674782849, 1.0855579087867746, 1.1349014500952643, 1.1842449914037543, 1.233588532712244, 1.2829320740207337, 1.3322756153292235, 1.3816191566377132, 1.430962697946203, 1.4803062392546926, 1.5296497805631823, 1.578993321871672, 1.6283368631801618, 1.6776804044886517, 1.7270239457971415, 1.7763674871056312, 1.825711028414121, 1.8750545697226106, 1.9243981110311004, 1.9737416523395903, 2.0230851936480803, 2.0724287349565698, 2.1217722762650597, 2.171115817573549, 2.220459358882039, 2.2698029001905287, 2.3191464414990186, 2.3684899828075086, 2.417833524115998, 2.467177065424488, 2.5165206067329775, 2.5658641480414675, 2.615207689349957, 2.664551230658447, 2.7138947719669364, 2.7632383132754263, 2.812581854583916, 2.861925395892406, 2.9112689372008957, 2.9606124785093852, 3.009956019817875, 3.0592995611263647, 3.1086431024348546, 3.157986643743344, 3.207330185051834, 3.2566737263603236, 3.3060172676688135, 3.3553608089773035, 3.404704350285793, 3.454047891594283, 3.5033914329027724, 3.5527349742112624, 3.602078515519752, 3.651422056828242, 3.7007655981367313, 3.7501091394452213, 3.7994526807537112, 3.8487962220622007, 3.8981397633706907, 3.9474833046791806, 3.9968268459876706, 4.0461703872961605, 4.09551392860465, 4.1448574699131395, 4.1942010112216295, 4.243544552530119, 4.292888093838609, 4.342231635147098, 4.391575176455588, 4.440918717764078, 4.490262259072568, 4.539605800381057, 4.588949341689547, 4.638292882998037, 4.687636424306527, 4.736979965615017, 4.786323506923506, 4.835667048231996, 4.885010589540486, 4.934354130848976, 4.983697672157465, 5.033041213465955, 5.082384754774445, 5.131728296082935, 5.181071837391425, 5.230415378699914, 5.279758920008404, 5.329102461316894, 5.378446002625384, 5.427789543933873, 5.477133085242363, 5.526476626550853, 5.575820167859343, 5.625163709167832, 5.674507250476322, 5.723850791784812, 5.7731943330933015, 5.8225378744017915, 5.8718814157102805, 5.9212249570187705, 5.97056849832726, 6.01991203963575, 6.0692555809442394, 6.118599122252729, 6.167942663561219, 6.217286204869709, 6.266629746178199, 6.315973287486688, 6.365316828795178, 6.414660370103668, 6.464003911412158, 6.513347452720647, 6.562690994029137, 6.612034535337627, 6.661378076646117, 6.710721617954607, 6.760065159263096, 6.809408700571586, 6.858752241880076, 6.908095783188566, 6.957439324497055, 7.006782865805545, 7.056126407114035, 7.105469948422525, 7.154813489731015, 7.204157031039504, 7.253500572347994, 7.302844113656484, 7.352187654964974, 7.401531196273463, 7.450874737581953, 7.500218278890443, 7.5495618201989325, 7.5989053615074225, 7.6482489028159115, 7.6975924441244015, 7.746935985432891, 7.796279526741381, 7.84562306804987, 7.894966609358361, 7.94431015066685, 7.993653691975341, 8.04299723328383, 8.092340774592321, 8.14168431590081, 8.1910278572093, 8.240371398517789, 8.289714939826279, 8.339058481134769, 8.388402022443259, 8.437745563751747, 8.487089105060239, 8.536432646368727, 8.585776187677219, 8.635119728985707, 8.684463270294197, 8.733806811602687, 8.783150352911177, 8.832493894219665, 8.881837435528157, 8.931180976836645, 8.980524518145137, 9.029868059453625, 9.079211600762115, 9.128555142070605, 9.177898683379095, 9.227242224687584, 9.276585765996074, 9.325929307304563, 9.375272848613054, 9.424616389921542, 9.473959931230034, 9.523303472538522, 9.572647013847012, 9.621990555155502, 9.671334096463992, 9.72067763777248, 9.770021179080972, 9.81936472038946 ] } ], "layout": { "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "xaxis": { "title": { "text": "x" } }, "yaxis": { "title": { "text": "y" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "w = history[history[\"type\"] == \"w\"][\"value\"].values[-1]\n", "y_fit = y_hat(x, w)\n", "fig = go.Figure(\n", " data=[\n", " go.Scatter(x=x, y=y, mode=\"markers\", name=\"data\"),\n", " go.Scatter(x=x, y=y_fit, mode=\"lines\", name=\"fit\"),\n", " ]\n", ")\n", "fig.update_layout(\n", " {\n", " \"xaxis\": {\n", " \"title\": \"x\"\n", " },\n", " \"yaxis\": {\n", " \"title\": \"y\"\n", " },\n", " }\n", ")\n", "fig.show()" ] }, { "cell_type": "markdown", "id": "2a065831-b53c-4e60-8bfe-667ef46c9d3e", "metadata": {}, "source": [ "Adding confidence intervals" ] }, { "cell_type": "code", "execution_count": 7, "id": "5a091f86-aedb-4302-9b49-e0e0b148bb53", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:04:46.570236Z", "iopub.status.busy": "2025-06-19T23:04:46.570057Z", "iopub.status.idle": "2025-06-19T23:04:46.602820Z", "shell.execute_reply": "2025-06-19T23:04:46.602082Z" } }, "outputs": [], "source": [ "def get_confidence(y_hat, y, y_fit, ci=0.95):\n", " # standard deviation of y_hat = y_bar\n", " sum_errs = sum((y - y_fit) ** 2)\n", " y_bar = np.sqrt(1 / (len(y_fit) - 2) * sum_errs)\n", "\n", " # interval for standard normal distribution\n", " # ci = 1 - ci\n", " ppf = 1 - (ci / 2)\n", " z_score_lookup = (ppf - 0) / 0.5\n", "\n", " interval = z_score_lookup * y_bar\n", "\n", " lower = y_hat - interval\n", " upper = y_hat + interval\n", " return lower, upper\n", "\n", "lower = []\n", "upper = []\n", "for i in y_fit:\n", " l, u = get_confidence(i, y, y_fit)\n", " lower.append(l)\n", " upper.append(u)" ] }, { "cell_type": "code", "execution_count": 8, "id": "6046c873-13f0-4211-830f-53255d250c7a", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:04:46.605008Z", "iopub.status.busy": "2025-06-19T23:04:46.604867Z", "iopub.status.idle": "2025-06-19T23:04:46.641705Z", "shell.execute_reply": "2025-06-19T23:04:46.641144Z" } }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "mode": "markers", "name": "data", "type": "scatter", "x": [ 0.0, 0.05025125628140704, 0.10050251256281408, 0.15075376884422112, 0.20100502512562815, 0.2512562814070352, 0.30150753768844224, 0.35175879396984927, 0.4020100502512563, 0.45226130653266333, 0.5025125628140704, 0.5527638190954774, 0.6030150753768845, 0.6532663316582915, 0.7035175879396985, 0.7537688442211056, 0.8040201005025126, 0.8542713567839196, 0.9045226130653267, 0.9547738693467337, 1.0050251256281408, 1.0552763819095479, 1.105527638190955, 1.155778894472362, 1.206030150753769, 1.256281407035176, 1.306532663316583, 1.35678391959799, 1.407035175879397, 1.4572864321608041, 1.5075376884422111, 1.5577889447236182, 1.6080402010050252, 1.6582914572864322, 1.7085427135678393, 1.7587939698492463, 1.8090452261306533, 1.8592964824120604, 1.9095477386934674, 1.9597989949748744, 2.0100502512562817, 2.0603015075376887, 2.1105527638190957, 2.1608040201005028, 2.21105527638191, 2.261306532663317, 2.311557788944724, 2.361809045226131, 2.412060301507538, 2.462311557788945, 2.512562814070352, 2.562814070351759, 2.613065326633166, 2.663316582914573, 2.71356783919598, 2.763819095477387, 2.814070351758794, 2.864321608040201, 2.9145728643216082, 2.9648241206030153, 3.0150753768844223, 3.0653266331658293, 3.1155778894472363, 3.1658291457286434, 3.2160804020100504, 3.2663316582914574, 3.3165829145728645, 3.3668341708542715, 3.4170854271356785, 3.4673366834170856, 3.5175879396984926, 3.5678391959798996, 3.6180904522613067, 3.6683417085427137, 3.7185929648241207, 3.7688442211055277, 3.819095477386935, 3.869346733668342, 3.919597989949749, 3.969849246231156, 4.020100502512563, 4.07035175879397, 4.120603015075377, 4.170854271356784, 4.2211055276381915, 4.2713567839195985, 4.3216080402010055, 4.371859296482413, 4.42211055276382, 4.472361809045227, 4.522613065326634, 4.572864321608041, 4.623115577889448, 4.673366834170855, 4.723618090452262, 4.773869346733669, 4.824120603015076, 4.874371859296483, 4.92462311557789, 4.974874371859297, 5.025125628140704, 5.075376884422111, 5.125628140703518, 5.175879396984925, 5.226130653266332, 5.276381909547739, 5.326633165829146, 5.376884422110553, 5.42713567839196, 5.477386934673367, 5.527638190954774, 5.577889447236181, 5.628140703517588, 5.678391959798995, 5.728643216080402, 5.778894472361809, 5.8291457286432165, 5.8793969849246235, 5.9296482412060305, 5.9798994974874375, 6.030150753768845, 6.080402010050252, 6.130653266331659, 6.180904522613066, 6.231155778894473, 6.28140703517588, 6.331658291457287, 6.381909547738694, 6.432160804020101, 6.482412060301508, 6.532663316582915, 6.582914572864322, 6.633165829145729, 6.683417085427136, 6.733668341708543, 6.78391959798995, 6.834170854271357, 6.884422110552764, 6.934673366834171, 6.984924623115578, 7.035175879396985, 7.085427135678392, 7.135678391959799, 7.185929648241206, 7.236180904522613, 7.28643216080402, 7.336683417085427, 7.386934673366834, 7.437185929648241, 7.4874371859296485, 7.5376884422110555, 7.5879396984924625, 7.63819095477387, 7.688442211055277, 7.738693467336684, 7.788944723618091, 7.839195979899498, 7.889447236180905, 7.939698492462312, 7.989949748743719, 8.040201005025127, 8.090452261306533, 8.14070351758794, 8.190954773869347, 8.241206030150755, 8.291457286432161, 8.341708542713569, 8.391959798994975, 8.442211055276383, 8.492462311557789, 8.542713567839197, 8.592964824120603, 8.643216080402011, 8.693467336683417, 8.743718592964825, 8.793969849246231, 8.84422110552764, 8.894472361809045, 8.944723618090453, 8.99497487437186, 9.045226130653267, 9.095477386934673, 9.145728643216081, 9.195979899497488, 9.246231155778895, 9.296482412060302, 9.34673366834171, 9.396984924623116, 9.447236180904524, 9.49748743718593, 9.547738693467338, 9.597989949748744, 9.648241206030152, 9.698492462311558, 9.748743718592966, 9.798994974874372, 9.84924623115578, 9.899497487437186, 9.949748743718594, 10.0 ], "y": [ 0.7486992485445143, -1.7500016336532254, -0.7609288974107485, 3.0123229046448485, 1.9852785092271084, 0.6122093564635731, 1.2167438526986107, 0.12275460516901557, 2.397512787210613, -1.9520394839824613, 1.9049353613012197, -1.2788036476845783, -1.7302948400581113, -0.7226643073805913, 3.157276343722984, -1.285184289819799, 2.7865789429671626, 2.5292792094949625, 2.808537379695892, 2.0627905657717345, 0.9471081489434541, 1.0576441911074903, -1.0202587943059063, 3.063138156004382, 2.374470933186388, -0.1810870529485693, 0.8059038854914017, 3.2810166034085775, 2.0907828172858367, 0.7059438628022987, -0.04443791141892839, 2.6404563089695516, 1.4799827793474671, -0.07088193484507821, 1.8027817489997375, 0.31648629214859003, 1.7150875329194728, 2.0541580859456614, 3.556542370373786, 0.4758471572035956, 1.167414054680488, 2.712382755851734, 0.5323723775871863, 1.0904036075602046, 3.274590676021285, 3.7725736301714177, 3.8846443908696826, 2.3192291620298024, 2.0402226724725825, 4.161844781327617, 2.5797641848654647, 2.1105190579321986, 1.5132639589951924, 1.3828898400176428, 3.182347785267208, 3.7054860513551957, 1.5939048401694085, 3.191458545736341, 3.725540204007686, 2.4947275424887243, 3.8085904817630944, 1.8833101972918023, 1.8433751494942316, 3.6792368636348503, 4.367219302126264, 4.364233571085431, 3.6464690205325914, 3.5504571445894215, 4.1792883842708, 3.72974125726725, 4.30416288317945, 4.66601992181641, 3.5085395614194645, 4.656155570808913, 2.601944776731881, 4.545686638370874, 3.4693832997584804, 3.9680689915471246, 3.3775531672157806, 3.353199353259642, 4.909407528572208, 3.9612567165529677, 4.3067900588458246, 3.4176771164177833, 3.7911020762620415, 3.536870034910263, 5.105617670403142, 4.563080832816351, 4.928432367364029, 4.987364376136843, 5.176917057867801, 5.062927812183241, 4.629224048947981, 4.136888910034532, 4.171339542796491, 4.395782904813478, 4.764933443053294, 4.45274649441234, 4.5495278072613585, 4.834118548563928, 5.066227413471183, 5.373018742056165, 5.5422314792435134, 5.259305959433023, 5.211613330323342, 5.757710951780208, 4.74131157070164, 5.010187259028187, 6.093583946796754, 5.323443831206917, 5.7864189554908805, 6.356710636354393, 5.338680579707339, 5.876948134072762, 5.484486602495678, 5.202214457508272, 5.019196464452577, 6.063678810034299, 6.665262540223724, 6.073846283076839, 5.449110873217604, 6.185548168548468, 5.117350142773242, 6.96433716051482, 6.200760446139784, 6.306335045129755, 7.1797398464241065, 7.412702880780941, 5.3396537269581525, 6.431967512395739, 7.57618738079336, 6.071033955128814, 6.943128746122687, 7.907856599279386, 7.630660407700901, 5.632316485285878, 5.849788428446279, 5.891928359024068, 6.354323759628053, 7.460182558214077, 7.9822147264804215, 7.511901922938631, 8.029738482085213, 5.943165348021669, 5.990881912509081, 7.080863906923642, 8.573840411950947, 6.827550104114105, 8.719277561133296, 7.933563194697452, 7.403765459650237, 6.5451746291717585, 6.2963550493967615, 7.268126461119135, 7.819618429511306, 8.874871470531344, 9.641059340723206, 8.181904587521958, 8.72332991149826, 6.3342048415220145, 6.7769129521255405, 8.60758010951163, 8.24812753212134, 7.659690658267126, 10.036055369357072, 7.047767892495037, 6.44207126762312, 9.779383795606341, 7.112831951964747, 6.953412479054645, 7.984235913706834, 8.460329662937914, 6.64072182761998, 9.969332026262544, 8.225948133239038, 9.378653616026373, 6.555359278273082, 8.84964417821496, 7.937208637175383, 7.1248527677137545, 6.575723548405593, 6.8926239300276695, 11.313450051562985, 8.406369535863945, 10.869812952326019, 6.708966636533763, 9.287971512941146, 11.196961214886407, 10.051316144621037, 7.185238274881735, 7.445911760855696, 7.019551192478181, 8.429719531343071, 9.18277939127484, 10.051845276984826, 10.397195035770427, 9.508773521049656, 10.165333184442398, 11.354471159065149, 11.834877441234882 ] }, { "mode": "lines", "name": "fit", "type": "scatter", "x": [ 0.0, 0.05025125628140704, 0.10050251256281408, 0.15075376884422112, 0.20100502512562815, 0.2512562814070352, 0.30150753768844224, 0.35175879396984927, 0.4020100502512563, 0.45226130653266333, 0.5025125628140704, 0.5527638190954774, 0.6030150753768845, 0.6532663316582915, 0.7035175879396985, 0.7537688442211056, 0.8040201005025126, 0.8542713567839196, 0.9045226130653267, 0.9547738693467337, 1.0050251256281408, 1.0552763819095479, 1.105527638190955, 1.155778894472362, 1.206030150753769, 1.256281407035176, 1.306532663316583, 1.35678391959799, 1.407035175879397, 1.4572864321608041, 1.5075376884422111, 1.5577889447236182, 1.6080402010050252, 1.6582914572864322, 1.7085427135678393, 1.7587939698492463, 1.8090452261306533, 1.8592964824120604, 1.9095477386934674, 1.9597989949748744, 2.0100502512562817, 2.0603015075376887, 2.1105527638190957, 2.1608040201005028, 2.21105527638191, 2.261306532663317, 2.311557788944724, 2.361809045226131, 2.412060301507538, 2.462311557788945, 2.512562814070352, 2.562814070351759, 2.613065326633166, 2.663316582914573, 2.71356783919598, 2.763819095477387, 2.814070351758794, 2.864321608040201, 2.9145728643216082, 2.9648241206030153, 3.0150753768844223, 3.0653266331658293, 3.1155778894472363, 3.1658291457286434, 3.2160804020100504, 3.2663316582914574, 3.3165829145728645, 3.3668341708542715, 3.4170854271356785, 3.4673366834170856, 3.5175879396984926, 3.5678391959798996, 3.6180904522613067, 3.6683417085427137, 3.7185929648241207, 3.7688442211055277, 3.819095477386935, 3.869346733668342, 3.919597989949749, 3.969849246231156, 4.020100502512563, 4.07035175879397, 4.120603015075377, 4.170854271356784, 4.2211055276381915, 4.2713567839195985, 4.3216080402010055, 4.371859296482413, 4.42211055276382, 4.472361809045227, 4.522613065326634, 4.572864321608041, 4.623115577889448, 4.673366834170855, 4.723618090452262, 4.773869346733669, 4.824120603015076, 4.874371859296483, 4.92462311557789, 4.974874371859297, 5.025125628140704, 5.075376884422111, 5.125628140703518, 5.175879396984925, 5.226130653266332, 5.276381909547739, 5.326633165829146, 5.376884422110553, 5.42713567839196, 5.477386934673367, 5.527638190954774, 5.577889447236181, 5.628140703517588, 5.678391959798995, 5.728643216080402, 5.778894472361809, 5.8291457286432165, 5.8793969849246235, 5.9296482412060305, 5.9798994974874375, 6.030150753768845, 6.080402010050252, 6.130653266331659, 6.180904522613066, 6.231155778894473, 6.28140703517588, 6.331658291457287, 6.381909547738694, 6.432160804020101, 6.482412060301508, 6.532663316582915, 6.582914572864322, 6.633165829145729, 6.683417085427136, 6.733668341708543, 6.78391959798995, 6.834170854271357, 6.884422110552764, 6.934673366834171, 6.984924623115578, 7.035175879396985, 7.085427135678392, 7.135678391959799, 7.185929648241206, 7.236180904522613, 7.28643216080402, 7.336683417085427, 7.386934673366834, 7.437185929648241, 7.4874371859296485, 7.5376884422110555, 7.5879396984924625, 7.63819095477387, 7.688442211055277, 7.738693467336684, 7.788944723618091, 7.839195979899498, 7.889447236180905, 7.939698492462312, 7.989949748743719, 8.040201005025127, 8.090452261306533, 8.14070351758794, 8.190954773869347, 8.241206030150755, 8.291457286432161, 8.341708542713569, 8.391959798994975, 8.442211055276383, 8.492462311557789, 8.542713567839197, 8.592964824120603, 8.643216080402011, 8.693467336683417, 8.743718592964825, 8.793969849246231, 8.84422110552764, 8.894472361809045, 8.944723618090453, 8.99497487437186, 9.045226130653267, 9.095477386934673, 9.145728643216081, 9.195979899497488, 9.246231155778895, 9.296482412060302, 9.34673366834171, 9.396984924623116, 9.447236180904524, 9.49748743718593, 9.547738693467338, 9.597989949748744, 9.648241206030152, 9.698492462311558, 9.748743718592966, 9.798994974874372, 9.84924623115578, 9.899497487437186, 9.949748743718594, 10.0 ], "y": [ 0.0, 0.04934354130848975, 0.0986870826169795, 0.14803062392546928, 0.197374165233959, 0.2467177065424488, 0.29606124785093857, 0.3454047891594283, 0.394748330467918, 0.4440918717764078, 0.4934354130848976, 0.5427789543933873, 0.5921224957018771, 0.6414660370103669, 0.6908095783188566, 0.7401531196273463, 0.789496660935836, 0.8388402022443259, 0.8881837435528156, 0.9375272848613053, 0.9868708261697952, 1.0362143674782849, 1.0855579087867746, 1.1349014500952643, 1.1842449914037543, 1.233588532712244, 1.2829320740207337, 1.3322756153292235, 1.3816191566377132, 1.430962697946203, 1.4803062392546926, 1.5296497805631823, 1.578993321871672, 1.6283368631801618, 1.6776804044886517, 1.7270239457971415, 1.7763674871056312, 1.825711028414121, 1.8750545697226106, 1.9243981110311004, 1.9737416523395903, 2.0230851936480803, 2.0724287349565698, 2.1217722762650597, 2.171115817573549, 2.220459358882039, 2.2698029001905287, 2.3191464414990186, 2.3684899828075086, 2.417833524115998, 2.467177065424488, 2.5165206067329775, 2.5658641480414675, 2.615207689349957, 2.664551230658447, 2.7138947719669364, 2.7632383132754263, 2.812581854583916, 2.861925395892406, 2.9112689372008957, 2.9606124785093852, 3.009956019817875, 3.0592995611263647, 3.1086431024348546, 3.157986643743344, 3.207330185051834, 3.2566737263603236, 3.3060172676688135, 3.3553608089773035, 3.404704350285793, 3.454047891594283, 3.5033914329027724, 3.5527349742112624, 3.602078515519752, 3.651422056828242, 3.7007655981367313, 3.7501091394452213, 3.7994526807537112, 3.8487962220622007, 3.8981397633706907, 3.9474833046791806, 3.9968268459876706, 4.0461703872961605, 4.09551392860465, 4.1448574699131395, 4.1942010112216295, 4.243544552530119, 4.292888093838609, 4.342231635147098, 4.391575176455588, 4.440918717764078, 4.490262259072568, 4.539605800381057, 4.588949341689547, 4.638292882998037, 4.687636424306527, 4.736979965615017, 4.786323506923506, 4.835667048231996, 4.885010589540486, 4.934354130848976, 4.983697672157465, 5.033041213465955, 5.082384754774445, 5.131728296082935, 5.181071837391425, 5.230415378699914, 5.279758920008404, 5.329102461316894, 5.378446002625384, 5.427789543933873, 5.477133085242363, 5.526476626550853, 5.575820167859343, 5.625163709167832, 5.674507250476322, 5.723850791784812, 5.7731943330933015, 5.8225378744017915, 5.8718814157102805, 5.9212249570187705, 5.97056849832726, 6.01991203963575, 6.0692555809442394, 6.118599122252729, 6.167942663561219, 6.217286204869709, 6.266629746178199, 6.315973287486688, 6.365316828795178, 6.414660370103668, 6.464003911412158, 6.513347452720647, 6.562690994029137, 6.612034535337627, 6.661378076646117, 6.710721617954607, 6.760065159263096, 6.809408700571586, 6.858752241880076, 6.908095783188566, 6.957439324497055, 7.006782865805545, 7.056126407114035, 7.105469948422525, 7.154813489731015, 7.204157031039504, 7.253500572347994, 7.302844113656484, 7.352187654964974, 7.401531196273463, 7.450874737581953, 7.500218278890443, 7.5495618201989325, 7.5989053615074225, 7.6482489028159115, 7.6975924441244015, 7.746935985432891, 7.796279526741381, 7.84562306804987, 7.894966609358361, 7.94431015066685, 7.993653691975341, 8.04299723328383, 8.092340774592321, 8.14168431590081, 8.1910278572093, 8.240371398517789, 8.289714939826279, 8.339058481134769, 8.388402022443259, 8.437745563751747, 8.487089105060239, 8.536432646368727, 8.585776187677219, 8.635119728985707, 8.684463270294197, 8.733806811602687, 8.783150352911177, 8.832493894219665, 8.881837435528157, 8.931180976836645, 8.980524518145137, 9.029868059453625, 9.079211600762115, 9.128555142070605, 9.177898683379095, 9.227242224687584, 9.276585765996074, 9.325929307304563, 9.375272848613054, 9.424616389921542, 9.473959931230034, 9.523303472538522, 9.572647013847012, 9.621990555155502, 9.671334096463992, 9.72067763777248, 9.770021179080972, 9.81936472038946 ] }, { "fill": "toself", "line": { "width": 0 }, "mode": "lines", "name": "confidence", "type": "scatter", "x": [ 0.0, 0.05025125628140704, 0.10050251256281408, 0.15075376884422112, 0.20100502512562815, 0.2512562814070352, 0.30150753768844224, 0.35175879396984927, 0.4020100502512563, 0.45226130653266333, 0.5025125628140704, 0.5527638190954774, 0.6030150753768845, 0.6532663316582915, 0.7035175879396985, 0.7537688442211056, 0.8040201005025126, 0.8542713567839196, 0.9045226130653267, 0.9547738693467337, 1.0050251256281408, 1.0552763819095479, 1.105527638190955, 1.155778894472362, 1.206030150753769, 1.256281407035176, 1.306532663316583, 1.35678391959799, 1.407035175879397, 1.4572864321608041, 1.5075376884422111, 1.5577889447236182, 1.6080402010050252, 1.6582914572864322, 1.7085427135678393, 1.7587939698492463, 1.8090452261306533, 1.8592964824120604, 1.9095477386934674, 1.9597989949748744, 2.0100502512562817, 2.0603015075376887, 2.1105527638190957, 2.1608040201005028, 2.21105527638191, 2.261306532663317, 2.311557788944724, 2.361809045226131, 2.412060301507538, 2.462311557788945, 2.512562814070352, 2.562814070351759, 2.613065326633166, 2.663316582914573, 2.71356783919598, 2.763819095477387, 2.814070351758794, 2.864321608040201, 2.9145728643216082, 2.9648241206030153, 3.0150753768844223, 3.0653266331658293, 3.1155778894472363, 3.1658291457286434, 3.2160804020100504, 3.2663316582914574, 3.3165829145728645, 3.3668341708542715, 3.4170854271356785, 3.4673366834170856, 3.5175879396984926, 3.5678391959798996, 3.6180904522613067, 3.6683417085427137, 3.7185929648241207, 3.7688442211055277, 3.819095477386935, 3.869346733668342, 3.919597989949749, 3.969849246231156, 4.020100502512563, 4.07035175879397, 4.120603015075377, 4.170854271356784, 4.2211055276381915, 4.2713567839195985, 4.3216080402010055, 4.371859296482413, 4.42211055276382, 4.472361809045227, 4.522613065326634, 4.572864321608041, 4.623115577889448, 4.673366834170855, 4.723618090452262, 4.773869346733669, 4.824120603015076, 4.874371859296483, 4.92462311557789, 4.974874371859297, 5.025125628140704, 5.075376884422111, 5.125628140703518, 5.175879396984925, 5.226130653266332, 5.276381909547739, 5.326633165829146, 5.376884422110553, 5.42713567839196, 5.477386934673367, 5.527638190954774, 5.577889447236181, 5.628140703517588, 5.678391959798995, 5.728643216080402, 5.778894472361809, 5.8291457286432165, 5.8793969849246235, 5.9296482412060305, 5.9798994974874375, 6.030150753768845, 6.080402010050252, 6.130653266331659, 6.180904522613066, 6.231155778894473, 6.28140703517588, 6.331658291457287, 6.381909547738694, 6.432160804020101, 6.482412060301508, 6.532663316582915, 6.582914572864322, 6.633165829145729, 6.683417085427136, 6.733668341708543, 6.78391959798995, 6.834170854271357, 6.884422110552764, 6.934673366834171, 6.984924623115578, 7.035175879396985, 7.085427135678392, 7.135678391959799, 7.185929648241206, 7.236180904522613, 7.28643216080402, 7.336683417085427, 7.386934673366834, 7.437185929648241, 7.4874371859296485, 7.5376884422110555, 7.5879396984924625, 7.63819095477387, 7.688442211055277, 7.738693467336684, 7.788944723618091, 7.839195979899498, 7.889447236180905, 7.939698492462312, 7.989949748743719, 8.040201005025127, 8.090452261306533, 8.14070351758794, 8.190954773869347, 8.241206030150755, 8.291457286432161, 8.341708542713569, 8.391959798994975, 8.442211055276383, 8.492462311557789, 8.542713567839197, 8.592964824120603, 8.643216080402011, 8.693467336683417, 8.743718592964825, 8.793969849246231, 8.84422110552764, 8.894472361809045, 8.944723618090453, 8.99497487437186, 9.045226130653267, 9.095477386934673, 9.145728643216081, 9.195979899497488, 9.246231155778895, 9.296482412060302, 9.34673366834171, 9.396984924623116, 9.447236180904524, 9.49748743718593, 9.547738693467338, 9.597989949748744, 9.648241206030152, 9.698492462311558, 9.748743718592966, 9.798994974874372, 9.84924623115578, 9.899497487437186, 9.949748743718594, 10.0, 10.0, 9.949748743718594, 9.899497487437186, 9.84924623115578, 9.798994974874372, 9.748743718592966, 9.698492462311558, 9.648241206030152, 9.597989949748744, 9.547738693467338, 9.49748743718593, 9.447236180904524, 9.396984924623116, 9.34673366834171, 9.296482412060302, 9.246231155778895, 9.195979899497488, 9.145728643216081, 9.095477386934673, 9.045226130653267, 8.99497487437186, 8.944723618090453, 8.894472361809045, 8.84422110552764, 8.793969849246231, 8.743718592964825, 8.693467336683417, 8.643216080402011, 8.592964824120603, 8.542713567839197, 8.492462311557789, 8.442211055276383, 8.391959798994975, 8.341708542713569, 8.291457286432161, 8.241206030150755, 8.190954773869347, 8.14070351758794, 8.090452261306533, 8.040201005025127, 7.989949748743719, 7.939698492462312, 7.889447236180905, 7.839195979899498, 7.788944723618091, 7.738693467336684, 7.688442211055277, 7.63819095477387, 7.5879396984924625, 7.5376884422110555, 7.4874371859296485, 7.437185929648241, 7.386934673366834, 7.336683417085427, 7.28643216080402, 7.236180904522613, 7.185929648241206, 7.135678391959799, 7.085427135678392, 7.035175879396985, 6.984924623115578, 6.934673366834171, 6.884422110552764, 6.834170854271357, 6.78391959798995, 6.733668341708543, 6.683417085427136, 6.633165829145729, 6.582914572864322, 6.532663316582915, 6.482412060301508, 6.432160804020101, 6.381909547738694, 6.331658291457287, 6.28140703517588, 6.231155778894473, 6.180904522613066, 6.130653266331659, 6.080402010050252, 6.030150753768845, 5.9798994974874375, 5.9296482412060305, 5.8793969849246235, 5.8291457286432165, 5.778894472361809, 5.728643216080402, 5.678391959798995, 5.628140703517588, 5.577889447236181, 5.527638190954774, 5.477386934673367, 5.42713567839196, 5.376884422110553, 5.326633165829146, 5.276381909547739, 5.226130653266332, 5.175879396984925, 5.125628140703518, 5.075376884422111, 5.025125628140704, 4.974874371859297, 4.92462311557789, 4.874371859296483, 4.824120603015076, 4.773869346733669, 4.723618090452262, 4.673366834170855, 4.623115577889448, 4.572864321608041, 4.522613065326634, 4.472361809045227, 4.42211055276382, 4.371859296482413, 4.3216080402010055, 4.2713567839195985, 4.2211055276381915, 4.170854271356784, 4.120603015075377, 4.07035175879397, 4.020100502512563, 3.969849246231156, 3.919597989949749, 3.869346733668342, 3.819095477386935, 3.7688442211055277, 3.7185929648241207, 3.6683417085427137, 3.6180904522613067, 3.5678391959798996, 3.5175879396984926, 3.4673366834170856, 3.4170854271356785, 3.3668341708542715, 3.3165829145728645, 3.2663316582914574, 3.2160804020100504, 3.1658291457286434, 3.1155778894472363, 3.0653266331658293, 3.0150753768844223, 2.9648241206030153, 2.9145728643216082, 2.864321608040201, 2.814070351758794, 2.763819095477387, 2.71356783919598, 2.663316582914573, 2.613065326633166, 2.562814070351759, 2.512562814070352, 2.462311557788945, 2.412060301507538, 2.361809045226131, 2.311557788944724, 2.261306532663317, 2.21105527638191, 2.1608040201005028, 2.1105527638190957, 2.0603015075376887, 2.0100502512562817, 1.9597989949748744, 1.9095477386934674, 1.8592964824120604, 1.8090452261306533, 1.7587939698492463, 1.7085427135678393, 1.6582914572864322, 1.6080402010050252, 1.5577889447236182, 1.5075376884422111, 1.4572864321608041, 1.407035175879397, 1.35678391959799, 1.306532663316583, 1.256281407035176, 1.206030150753769, 1.155778894472362, 1.105527638190955, 1.0552763819095479, 1.0050251256281408, 0.9547738693467337, 0.9045226130653267, 0.8542713567839196, 0.8040201005025126, 0.7537688442211056, 0.7035175879396985, 0.6532663316582915, 0.6030150753768845, 0.5527638190954774, 0.5025125628140704, 0.45226130653266333, 0.4020100502512563, 0.35175879396984927, 0.30150753768844224, 0.2512562814070352, 0.20100502512562815, 0.15075376884422112, 0.10050251256281408, 0.05025125628140704, 0.0 ], "y": [ -1.1785474579678905, -1.1292039166594008, -1.079860375350911, -1.0305168340424213, -0.9811732927339315, -0.9318297514254417, -0.8824862101169519, -0.8331426688084622, -0.7837991274999725, -0.7344555861914828, -0.6851120448829929, -0.6357685035745032, -0.5864249622660134, -0.5370814209575236, -0.4877378796490339, -0.4383943383405442, -0.3890507970320545, -0.33970725572356464, -0.2903637144150749, -0.2410201731065852, -0.19167663179809535, -0.14233309048960563, -0.0929895491811159, -0.04364600787262618, 0.005697533435863766, 0.05504107474435349, 0.10438461605284322, 0.15372815736133294, 0.20307169866982266, 0.2524152399783124, 0.3017587812868021, 0.35110232259529184, 0.40044586390378156, 0.4497894052122713, 0.49913294652076123, 0.548476487829251, 0.5978200291377407, 0.6471635704462304, 0.6965071117547201, 0.7458506530632099, 0.7951941943716998, 0.8445377356801897, 0.8938812769886793, 0.9432248182971692, 0.9925683596056587, 1.0419119009141486, 1.0912554422226382, 1.140598983531128, 1.189942524839618, 1.2392860661481075, 1.2886296074565975, 1.337973148765087, 1.387316690073577, 1.4366602313820664, 1.4860037726905564, 1.535347313999046, 1.5846908553075358, 1.6340343966160253, 1.6833779379245153, 1.7327214792330052, 1.7820650205414947, 1.8314085618499847, 1.8807521031584742, 1.9300956444669641, 1.9794391857754536, 2.028782727083944, 2.078126268392433, 2.127469809700923, 2.1768133510094128, 2.2261568923179027, 2.2755004336263926, 2.3248439749348817, 2.3741875162433717, 2.4235310575518616, 2.4728745988603515, 2.5222181401688406, 2.5715616814773306, 2.6209052227858205, 2.6702487640943104, 2.7195923054028004, 2.7689358467112903, 2.8182793880197803, 2.8676229293282702, 2.9169664706367593, 2.9663100119452492, 3.015653553253739, 3.064997094562229, 3.114340635870719, 3.163684177179208, 3.213027718487698, 3.262371259796188, 3.311714801104678, 3.361058342413167, 3.410401883721657, 3.459745425030147, 3.509088966338637, 3.558432507647127, 3.607776048955616, 3.657119590264106, 3.7064631315725958, 3.7558066728810857, 3.8051502141895748, 3.8544937554980647, 3.9038372968065547, 3.9531808381150446, 4.002524379423535, 4.051867920732024, 4.101211462040514, 4.1505550033490035, 4.1998985446574935, 4.2492420859659825, 4.2985856272744725, 4.347929168582962, 4.397272709891452, 4.446616251199941, 4.495959792508431, 4.545303333816921, 4.594646875125411, 4.643990416433901, 4.69333395774239, 4.74267749905088, 4.79202104035937, 4.84136458166786, 4.890708122976349, 4.940051664284839, 4.989395205593329, 5.038738746901819, 5.088082288210309, 5.137425829518798, 5.186769370827288, 5.236112912135778, 5.285456453444268, 5.334799994752757, 5.384143536061247, 5.433487077369737, 5.482830618678227, 5.532174159986717, 5.581517701295206, 5.630861242603696, 5.680204783912186, 5.729548325220676, 5.778891866529165, 5.828235407837655, 5.8775789491461445, 5.9269224904546345, 5.976266031763124, 6.0256095730716135, 6.074953114380103, 6.124296655688593, 6.173640196997083, 6.222983738305572, 6.272327279614062, 6.321670820922552, 6.371014362231042, 6.420357903539532, 6.469701444848021, 6.519044986156511, 6.568388527465001, 6.617732068773491, 6.66707561008198, 6.716419151390471, 6.76576269269896, 6.815106234007451, 6.864449775315939, 6.913793316624431, 6.963136857932919, 7.012480399241409, 7.061823940549899, 7.111167481858389, 7.160511023166879, 7.209854564475369, 7.259198105783857, 7.3085416470923485, 7.357885188400837, 7.407228729709328, 7.456572271017817, 7.505915812326307, 7.5552593536347965, 7.6046028949432865, 7.653946436251775, 7.703289977560266, 7.7526335188687545, 7.801977060177246, 7.851320601485734, 7.900664142794224, 7.950007684102714, 7.999351225411204, 8.048694766719693, 8.098038308028183, 8.147381849336671, 8.196725390645163, 8.246068931953651, 8.295412473262143, 8.344756014570631, 8.394099555879121, 8.443443097187611, 8.492786638496101, 8.54213017980459, 8.591473721113081, 8.640817262421569, 10.997912178357351, 10.948568637048863, 10.899225095740372, 10.849881554431883, 10.800538013123393, 10.751194471814904, 10.701850930506414, 10.652507389197925, 10.603163847889434, 10.553820306580945, 10.504476765272454, 10.455133223963966, 10.405789682655476, 10.356446141346986, 10.307102600038496, 10.257759058730006, 10.208415517421516, 10.159071976113028, 10.109728434804536, 10.060384893496048, 10.011041352187556, 9.961697810879068, 9.912354269570578, 9.863010728262088, 9.813667186953598, 9.76432364564511, 9.714980104336618, 9.66563656302813, 9.616293021719638, 9.56694948041115, 9.51760593910266, 9.46826239779417, 9.41891885648568, 9.36957531517719, 9.3202317738687, 9.270888232560212, 9.22154469125172, 9.172201149943232, 9.12285760863474, 9.073514067326252, 9.02417052601776, 8.974826984709273, 8.925483443400783, 8.876139902092293, 8.826796360783803, 8.777452819475313, 8.728109278166823, 8.678765736858333, 8.629422195549843, 8.580078654241353, 8.530735112932865, 8.481391571624375, 8.432048030315885, 8.382704489007395, 8.333360947698905, 8.284017406390415, 8.234673865081925, 8.185330323773435, 8.135986782464945, 8.086643241156457, 8.037299699847967, 7.987956158539476, 7.938612617230986, 7.889269075922497, 7.839925534614007, 7.790581993305517, 7.741238451997027, 7.6918949106885375, 7.642551369380048, 7.5932078280715585, 7.5438642867630685, 7.494520745454579, 7.4451772041460895, 7.3958336628376, 7.34649012152911, 7.29714658022062, 7.24780303891213, 7.198459497603641, 7.149115956295151, 7.099772414986661, 7.050428873678171, 7.001085332369682, 6.951741791061192, 6.902398249752702, 6.853054708444212, 6.803711167135722, 6.754367625827233, 6.705024084518743, 6.655680543210253, 6.606337001901763, 6.556993460593274, 6.507649919284784, 6.458306377976294, 6.408962836667804, 6.359619295359315, 6.310275754050825, 6.260932212742335, 6.211588671433845, 6.162245130125355, 6.112901588816866, 6.063558047508376, 6.014214506199886, 5.9648709648913965, 5.915527423582907, 5.8661838822744174, 5.8168403409659275, 5.767496799657438, 5.718153258348948, 5.6688097170404586, 5.619466175731969, 5.570122634423479, 5.520779093114989, 5.4714355518065, 5.42209201049801, 5.37274846918952, 5.32340492788103, 5.27406138657254, 5.224717845264051, 5.175374303955561, 5.126030762647071, 5.076687221338581, 5.027343680030091, 4.978000138721602, 4.928656597413112, 4.879313056104622, 4.829969514796132, 4.780625973487642, 4.731282432179153, 4.681938890870663, 4.632595349562173, 4.583251808253683, 4.533908266945194, 4.484564725636704, 4.435221184328214, 4.385877643019724, 4.336534101711234, 4.287190560402745, 4.237847019094255, 4.1885034777857655, 4.1391599364772755, 4.0898163951687865, 4.0404728538602965, 3.9911293125518066, 3.9417857712433166, 3.8924422299348267, 3.8430986886263376, 3.7937551473178477, 3.7444116060093577, 3.695068064700868, 3.6457245233923787, 3.596380982083889, 3.547037440775399, 3.497693899466909, 3.448350358158419, 3.39900681684993, 3.34966327554144, 3.30031973423295, 3.25097619292446, 3.201632651615971, 3.152289110307481, 3.102945568998991, 3.053602027690501, 3.004258486382011, 2.9549149450735217, 2.905571403765032, 2.8562278624565423, 2.8068843211480523, 2.7575407798395624, 2.708197238531073, 2.6588536972225834, 2.6095101559140934, 2.5601666146056035, 2.510823073297114, 2.4614795319886245, 2.4121359906801345, 2.3627924493716446, 2.3134489080631546, 2.264105366754665, 2.2147618254461756, 2.1654182841376857, 2.1160747428291957, 2.066731201520706, 2.0173876602122163, 1.9680441189037265, 1.9187005775952368, 1.869357036286747, 1.8200134949782574, 1.7706699536697676, 1.721326412361278, 1.671982871052788, 1.6226393297442983, 1.5732957884358085, 1.5239522471273188, 1.474608705818829, 1.4252651645103394, 1.3759216232018496, 1.3265780818933597, 1.27723454058487, 1.2278909992763802, 1.1785474579678905 ] } ], "layout": { "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "xaxis": { "title": { "text": "x" } }, "yaxis": { "title": { "text": "y" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "y_fit = y_hat(x, w)\n", "fig = go.Figure(\n", " data=[\n", " go.Scatter(x=x, y=y, mode=\"markers\", name=\"data\"),\n", " go.Scatter(x=x, y=y_fit, mode=\"lines\", name=\"fit\"),\n", " go.Scatter(x=np.concatenate([x, x[::-1]]), y=np.concatenate([lower, upper[::-1]]), mode=\"lines\", name=\"confidence\", fill=\"toself\", line_width=0),\n", " ]\n", ")\n", "fig.update_layout(\n", " {\n", " \"xaxis\": {\n", " \"title\": \"x\"\n", " },\n", " \"yaxis\": {\n", " \"title\": \"y\"\n", " },\n", " }\n", ")\n", "fig.show()" ] }, { "cell_type": "markdown", "id": "37ec18cb-881d-4f49-bb4c-1a8d81fa39f4", "metadata": {}, "source": [ "\n", "\n", "## Cost functions\n", "\n", "### Cost functions in TensorFlow\n", "\n", "Cost functions in TensorFlow can easily be implemented via simple functions, that take the actual and predicted values of a neural network model, do custom arithmetic and return a scalar value. The cost function of the linear regression in TensorFlow can be written as:" ] }, { "cell_type": "code", "execution_count": 9, "id": "73122d2d-a488-41b8-95f4-223d9af6682a", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:04:46.643894Z", "iopub.status.busy": "2025-06-19T23:04:46.643481Z", "iopub.status.idle": "2025-06-19T23:04:46.672875Z", "shell.execute_reply": "2025-06-19T23:04:46.672359Z" } }, "outputs": [], "source": [ "def J_tf(y_true, y_pred):\n", " return tf.reduce_mean((y_true - y_pred) ** 2)" ] }, { "cell_type": "markdown", "id": "2e66f0aa-dac0-4040-becd-0ec70e60a64f", "metadata": {}, "source": [ "This function can now without any alterations be used as the cost function for our model. To predict the slope of our data we have can use a TensorFlow model with a single neuron. That neuron's weight will be adjusted by the optimizer until the loss function is minimal. This should give us a similar result than what our custom gradient descent implementation has produced." ] }, { "cell_type": "code", "execution_count": 10, "id": "aa1ee23d-10ff-42e7-bac2-0e4b882dcaa4", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:04:46.674701Z", "iopub.status.busy": "2025-06-19T23:04:46.674495Z", "iopub.status.idle": "2025-06-19T23:04:47.001768Z", "shell.execute_reply": "2025-06-19T23:04:47.001279Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\r", "1/7 [===>..........................] - ETA: 0s - loss: 38.3508" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\r", "7/7 [==============================] - 0s 1ms/step - loss: 35.3973\n" ] }, { "data": { "text/plain": [ "" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "model = tf.keras.models.Sequential([\n", " tf.keras.layers.Dense(units=1, activation=\"linear\", input_shape=(1, ))\n", "])\n", "\n", "model.compile(loss=J_tf)\n", "\n", "model.fit(x, y, epochs=1)" ] }, { "cell_type": "markdown", "id": "175042e9-3861-454c-b2d5-d54d02d6565c", "metadata": {}, "source": [ "We will now use the `predict()` method of the trained model to construct our linear regression." ] }, { "cell_type": "code", "execution_count": 11, "id": "f6e77ee3-f111-4fa5-bbe6-538455106450", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:04:47.003496Z", "iopub.status.busy": "2025-06-19T23:04:47.003233Z", "iopub.status.idle": "2025-06-19T23:04:47.109684Z", "shell.execute_reply": "2025-06-19T23:04:47.109322Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\r", "1/7 [===>..........................] - ETA: 0s" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\r", "7/7 [==============================] - 0s 836us/step\n" ] }, { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "mode": "markers", "name": "data", "type": "scatter", "x": [ 0.0, 0.05025125628140704, 0.10050251256281408, 0.15075376884422112, 0.20100502512562815, 0.2512562814070352, 0.30150753768844224, 0.35175879396984927, 0.4020100502512563, 0.45226130653266333, 0.5025125628140704, 0.5527638190954774, 0.6030150753768845, 0.6532663316582915, 0.7035175879396985, 0.7537688442211056, 0.8040201005025126, 0.8542713567839196, 0.9045226130653267, 0.9547738693467337, 1.0050251256281408, 1.0552763819095479, 1.105527638190955, 1.155778894472362, 1.206030150753769, 1.256281407035176, 1.306532663316583, 1.35678391959799, 1.407035175879397, 1.4572864321608041, 1.5075376884422111, 1.5577889447236182, 1.6080402010050252, 1.6582914572864322, 1.7085427135678393, 1.7587939698492463, 1.8090452261306533, 1.8592964824120604, 1.9095477386934674, 1.9597989949748744, 2.0100502512562817, 2.0603015075376887, 2.1105527638190957, 2.1608040201005028, 2.21105527638191, 2.261306532663317, 2.311557788944724, 2.361809045226131, 2.412060301507538, 2.462311557788945, 2.512562814070352, 2.562814070351759, 2.613065326633166, 2.663316582914573, 2.71356783919598, 2.763819095477387, 2.814070351758794, 2.864321608040201, 2.9145728643216082, 2.9648241206030153, 3.0150753768844223, 3.0653266331658293, 3.1155778894472363, 3.1658291457286434, 3.2160804020100504, 3.2663316582914574, 3.3165829145728645, 3.3668341708542715, 3.4170854271356785, 3.4673366834170856, 3.5175879396984926, 3.5678391959798996, 3.6180904522613067, 3.6683417085427137, 3.7185929648241207, 3.7688442211055277, 3.819095477386935, 3.869346733668342, 3.919597989949749, 3.969849246231156, 4.020100502512563, 4.07035175879397, 4.120603015075377, 4.170854271356784, 4.2211055276381915, 4.2713567839195985, 4.3216080402010055, 4.371859296482413, 4.42211055276382, 4.472361809045227, 4.522613065326634, 4.572864321608041, 4.623115577889448, 4.673366834170855, 4.723618090452262, 4.773869346733669, 4.824120603015076, 4.874371859296483, 4.92462311557789, 4.974874371859297, 5.025125628140704, 5.075376884422111, 5.125628140703518, 5.175879396984925, 5.226130653266332, 5.276381909547739, 5.326633165829146, 5.376884422110553, 5.42713567839196, 5.477386934673367, 5.527638190954774, 5.577889447236181, 5.628140703517588, 5.678391959798995, 5.728643216080402, 5.778894472361809, 5.8291457286432165, 5.8793969849246235, 5.9296482412060305, 5.9798994974874375, 6.030150753768845, 6.080402010050252, 6.130653266331659, 6.180904522613066, 6.231155778894473, 6.28140703517588, 6.331658291457287, 6.381909547738694, 6.432160804020101, 6.482412060301508, 6.532663316582915, 6.582914572864322, 6.633165829145729, 6.683417085427136, 6.733668341708543, 6.78391959798995, 6.834170854271357, 6.884422110552764, 6.934673366834171, 6.984924623115578, 7.035175879396985, 7.085427135678392, 7.135678391959799, 7.185929648241206, 7.236180904522613, 7.28643216080402, 7.336683417085427, 7.386934673366834, 7.437185929648241, 7.4874371859296485, 7.5376884422110555, 7.5879396984924625, 7.63819095477387, 7.688442211055277, 7.738693467336684, 7.788944723618091, 7.839195979899498, 7.889447236180905, 7.939698492462312, 7.989949748743719, 8.040201005025127, 8.090452261306533, 8.14070351758794, 8.190954773869347, 8.241206030150755, 8.291457286432161, 8.341708542713569, 8.391959798994975, 8.442211055276383, 8.492462311557789, 8.542713567839197, 8.592964824120603, 8.643216080402011, 8.693467336683417, 8.743718592964825, 8.793969849246231, 8.84422110552764, 8.894472361809045, 8.944723618090453, 8.99497487437186, 9.045226130653267, 9.095477386934673, 9.145728643216081, 9.195979899497488, 9.246231155778895, 9.296482412060302, 9.34673366834171, 9.396984924623116, 9.447236180904524, 9.49748743718593, 9.547738693467338, 9.597989949748744, 9.648241206030152, 9.698492462311558, 9.748743718592966, 9.798994974874372, 9.84924623115578, 9.899497487437186, 9.949748743718594, 10.0 ], "y": [ 0.7486992485445143, -1.7500016336532254, -0.7609288974107485, 3.0123229046448485, 1.9852785092271084, 0.6122093564635731, 1.2167438526986107, 0.12275460516901557, 2.397512787210613, -1.9520394839824613, 1.9049353613012197, -1.2788036476845783, -1.7302948400581113, -0.7226643073805913, 3.157276343722984, -1.285184289819799, 2.7865789429671626, 2.5292792094949625, 2.808537379695892, 2.0627905657717345, 0.9471081489434541, 1.0576441911074903, -1.0202587943059063, 3.063138156004382, 2.374470933186388, -0.1810870529485693, 0.8059038854914017, 3.2810166034085775, 2.0907828172858367, 0.7059438628022987, -0.04443791141892839, 2.6404563089695516, 1.4799827793474671, -0.07088193484507821, 1.8027817489997375, 0.31648629214859003, 1.7150875329194728, 2.0541580859456614, 3.556542370373786, 0.4758471572035956, 1.167414054680488, 2.712382755851734, 0.5323723775871863, 1.0904036075602046, 3.274590676021285, 3.7725736301714177, 3.8846443908696826, 2.3192291620298024, 2.0402226724725825, 4.161844781327617, 2.5797641848654647, 2.1105190579321986, 1.5132639589951924, 1.3828898400176428, 3.182347785267208, 3.7054860513551957, 1.5939048401694085, 3.191458545736341, 3.725540204007686, 2.4947275424887243, 3.8085904817630944, 1.8833101972918023, 1.8433751494942316, 3.6792368636348503, 4.367219302126264, 4.364233571085431, 3.6464690205325914, 3.5504571445894215, 4.1792883842708, 3.72974125726725, 4.30416288317945, 4.66601992181641, 3.5085395614194645, 4.656155570808913, 2.601944776731881, 4.545686638370874, 3.4693832997584804, 3.9680689915471246, 3.3775531672157806, 3.353199353259642, 4.909407528572208, 3.9612567165529677, 4.3067900588458246, 3.4176771164177833, 3.7911020762620415, 3.536870034910263, 5.105617670403142, 4.563080832816351, 4.928432367364029, 4.987364376136843, 5.176917057867801, 5.062927812183241, 4.629224048947981, 4.136888910034532, 4.171339542796491, 4.395782904813478, 4.764933443053294, 4.45274649441234, 4.5495278072613585, 4.834118548563928, 5.066227413471183, 5.373018742056165, 5.5422314792435134, 5.259305959433023, 5.211613330323342, 5.757710951780208, 4.74131157070164, 5.010187259028187, 6.093583946796754, 5.323443831206917, 5.7864189554908805, 6.356710636354393, 5.338680579707339, 5.876948134072762, 5.484486602495678, 5.202214457508272, 5.019196464452577, 6.063678810034299, 6.665262540223724, 6.073846283076839, 5.449110873217604, 6.185548168548468, 5.117350142773242, 6.96433716051482, 6.200760446139784, 6.306335045129755, 7.1797398464241065, 7.412702880780941, 5.3396537269581525, 6.431967512395739, 7.57618738079336, 6.071033955128814, 6.943128746122687, 7.907856599279386, 7.630660407700901, 5.632316485285878, 5.849788428446279, 5.891928359024068, 6.354323759628053, 7.460182558214077, 7.9822147264804215, 7.511901922938631, 8.029738482085213, 5.943165348021669, 5.990881912509081, 7.080863906923642, 8.573840411950947, 6.827550104114105, 8.719277561133296, 7.933563194697452, 7.403765459650237, 6.5451746291717585, 6.2963550493967615, 7.268126461119135, 7.819618429511306, 8.874871470531344, 9.641059340723206, 8.181904587521958, 8.72332991149826, 6.3342048415220145, 6.7769129521255405, 8.60758010951163, 8.24812753212134, 7.659690658267126, 10.036055369357072, 7.047767892495037, 6.44207126762312, 9.779383795606341, 7.112831951964747, 6.953412479054645, 7.984235913706834, 8.460329662937914, 6.64072182761998, 9.969332026262544, 8.225948133239038, 9.378653616026373, 6.555359278273082, 8.84964417821496, 7.937208637175383, 7.1248527677137545, 6.575723548405593, 6.8926239300276695, 11.313450051562985, 8.406369535863945, 10.869812952326019, 6.708966636533763, 9.287971512941146, 11.196961214886407, 10.051316144621037, 7.185238274881735, 7.445911760855696, 7.019551192478181, 8.429719531343071, 9.18277939127484, 10.051845276984826, 10.397195035770427, 9.508773521049656, 10.165333184442398, 11.354471159065149, 11.834877441234882 ] }, { "mode": "lines", "name": "fit", "type": "scatter", "x": [ 0.0, 0.05025125628140704, 0.10050251256281408, 0.15075376884422112, 0.20100502512562815, 0.2512562814070352, 0.30150753768844224, 0.35175879396984927, 0.4020100502512563, 0.45226130653266333, 0.5025125628140704, 0.5527638190954774, 0.6030150753768845, 0.6532663316582915, 0.7035175879396985, 0.7537688442211056, 0.8040201005025126, 0.8542713567839196, 0.9045226130653267, 0.9547738693467337, 1.0050251256281408, 1.0552763819095479, 1.105527638190955, 1.155778894472362, 1.206030150753769, 1.256281407035176, 1.306532663316583, 1.35678391959799, 1.407035175879397, 1.4572864321608041, 1.5075376884422111, 1.5577889447236182, 1.6080402010050252, 1.6582914572864322, 1.7085427135678393, 1.7587939698492463, 1.8090452261306533, 1.8592964824120604, 1.9095477386934674, 1.9597989949748744, 2.0100502512562817, 2.0603015075376887, 2.1105527638190957, 2.1608040201005028, 2.21105527638191, 2.261306532663317, 2.311557788944724, 2.361809045226131, 2.412060301507538, 2.462311557788945, 2.512562814070352, 2.562814070351759, 2.613065326633166, 2.663316582914573, 2.71356783919598, 2.763819095477387, 2.814070351758794, 2.864321608040201, 2.9145728643216082, 2.9648241206030153, 3.0150753768844223, 3.0653266331658293, 3.1155778894472363, 3.1658291457286434, 3.2160804020100504, 3.2663316582914574, 3.3165829145728645, 3.3668341708542715, 3.4170854271356785, 3.4673366834170856, 3.5175879396984926, 3.5678391959798996, 3.6180904522613067, 3.6683417085427137, 3.7185929648241207, 3.7688442211055277, 3.819095477386935, 3.869346733668342, 3.919597989949749, 3.969849246231156, 4.020100502512563, 4.07035175879397, 4.120603015075377, 4.170854271356784, 4.2211055276381915, 4.2713567839195985, 4.3216080402010055, 4.371859296482413, 4.42211055276382, 4.472361809045227, 4.522613065326634, 4.572864321608041, 4.623115577889448, 4.673366834170855, 4.723618090452262, 4.773869346733669, 4.824120603015076, 4.874371859296483, 4.92462311557789, 4.974874371859297, 5.025125628140704, 5.075376884422111, 5.125628140703518, 5.175879396984925, 5.226130653266332, 5.276381909547739, 5.326633165829146, 5.376884422110553, 5.42713567839196, 5.477386934673367, 5.527638190954774, 5.577889447236181, 5.628140703517588, 5.678391959798995, 5.728643216080402, 5.778894472361809, 5.8291457286432165, 5.8793969849246235, 5.9296482412060305, 5.9798994974874375, 6.030150753768845, 6.080402010050252, 6.130653266331659, 6.180904522613066, 6.231155778894473, 6.28140703517588, 6.331658291457287, 6.381909547738694, 6.432160804020101, 6.482412060301508, 6.532663316582915, 6.582914572864322, 6.633165829145729, 6.683417085427136, 6.733668341708543, 6.78391959798995, 6.834170854271357, 6.884422110552764, 6.934673366834171, 6.984924623115578, 7.035175879396985, 7.085427135678392, 7.135678391959799, 7.185929648241206, 7.236180904522613, 7.28643216080402, 7.336683417085427, 7.386934673366834, 7.437185929648241, 7.4874371859296485, 7.5376884422110555, 7.5879396984924625, 7.63819095477387, 7.688442211055277, 7.738693467336684, 7.788944723618091, 7.839195979899498, 7.889447236180905, 7.939698492462312, 7.989949748743719, 8.040201005025127, 8.090452261306533, 8.14070351758794, 8.190954773869347, 8.241206030150755, 8.291457286432161, 8.341708542713569, 8.391959798994975, 8.442211055276383, 8.492462311557789, 8.542713567839197, 8.592964824120603, 8.643216080402011, 8.693467336683417, 8.743718592964825, 8.793969849246231, 8.84422110552764, 8.894472361809045, 8.944723618090453, 8.99497487437186, 9.045226130653267, 9.095477386934673, 9.145728643216081, 9.195979899497488, 9.246231155778895, 9.296482412060302, 9.34673366834171, 9.396984924623116, 9.447236180904524, 9.49748743718593, 9.547738693467338, 9.597989949748744, 9.648241206030152, 9.698492462311558, 9.748743718592966, 9.798994974874372, 9.84924623115578, 9.899497487437186, 9.949748743718594, 10.0 ], "y": [ 0.013223575, 0.012048511, 0.010873446, 0.009698382, 0.008523316, 0.0073482515, 0.006173187, 0.0049981214, 0.0038230568, 0.0026479932, 0.0014729276, 0.00029786304, -0.00087720156, -0.0020522662, -0.0032273326, -0.004402397, -0.005577462, -0.0067525245, -0.007927589, -0.009102654, -0.01027772, -0.011452785, -0.012627849, -0.013802914, -0.014977979, -0.016153043, -0.017328108, -0.018503172, -0.01967824, -0.020853305, -0.02202837, -0.023203434, -0.024378499, -0.025553564, -0.026728624, -0.02790369, -0.029078754, -0.030253818, -0.03142888, -0.03260395, -0.033779018, -0.03495408, -0.036129147, -0.037304208, -0.038479276, -0.039654337, -0.040829405, -0.042004466, -0.043179534, -0.044354595, -0.045529664, -0.046704724, -0.047879793, -0.049054854, -0.050229922, -0.051404983, -0.05258006, -0.05375512, -0.054930188, -0.05610525, -0.057280317, -0.058455378, -0.059630446, -0.060805507, -0.061980575, -0.063155636, -0.064330705, -0.065505765, -0.066680826, -0.067855895, -0.069030955, -0.070206024, -0.071381085, -0.07255615, -0.073731214, -0.07490628, -0.07608134, -0.07725641, -0.07843148, -0.07960655, -0.08078161, -0.08195667, -0.08313174, -0.0843068, -0.08548187, -0.08665693, -0.087832, -0.08900706, -0.090182126, -0.091357194, -0.092532255, -0.09370732, -0.094882384, -0.09605745, -0.09723251, -0.09840758, -0.09958264, -0.10075771, -0.10193277, -0.10310784, -0.1042829, -0.10545797, -0.10663303, -0.1078081, -0.10898316, -0.11015823, -0.11133329, -0.11250836, -0.11368342, -0.11485849, -0.11603354, -0.117208615, -0.11838369, -0.11955874, -0.12073381, -0.12190887, -0.12308395, -0.124258995, -0.12543407, -0.12660913, -0.12778421, -0.12895925, -0.13013433, -0.13130939, -0.13248447, -0.13365951, -0.13483459, -0.13600965, -0.13718472, -0.13835977, -0.13953485, -0.1407099, -0.14188498, -0.14306004, -0.1442351, -0.14541018, -0.14658523, -0.1477603, -0.14893536, -0.15011044, -0.15128548, -0.15246056, -0.15363562, -0.1548107, -0.15598574, -0.15716082, -0.15833588, -0.15951096, -0.160686, -0.16186108, -0.16303614, -0.16421121, -0.16538626, -0.16656134, -0.1677364, -0.16891146, -0.17008653, -0.1712616, -0.17243667, -0.17361172, -0.17478679, -0.17596185, -0.17713691, -0.17831199, -0.17948705, -0.18066211, -0.18183717, -0.18301225, -0.18418731, -0.18536237, -0.18653743, -0.1877125, -0.18888757, -0.19006263, -0.19123769, -0.19241276, -0.19358782, -0.19476289, -0.19593796, -0.19711302, -0.19828808, -0.19946314, -0.20063822, -0.20181328, -0.20298834, -0.2041634, -0.20533848, -0.20651354, -0.2076886, -0.20886366, -0.21003874, -0.2112138, -0.21238886, -0.21356392, -0.214739, -0.21591406, -0.21708912, -0.21826418, -0.21943925, -0.22061431 ] } ], "layout": { "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "xaxis": { "title": { "text": "x" } }, "yaxis": { "title": { "text": "y" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "y_fit = model.predict(x)[:, 0]\n", "fig = go.Figure(\n", " data=[\n", " go.Scatter(x=x, y=y, mode=\"markers\", name=\"data\"),\n", " go.Scatter(x=x, y=y_fit, mode=\"lines\", name=\"fit\"),\n", " ]\n", ")\n", "fig.update_layout(\n", " {\n", " \"xaxis\": {\n", " \"title\": \"x\"\n", " },\n", " \"yaxis\": {\n", " \"title\": \"y\"\n", " },\n", " }\n", ")\n", "fig.show()" ] }, { "cell_type": "markdown", "id": "715b120c-3329-45dc-b599-7ae3fc7d7a6c", "metadata": {}, "source": [ "### Cost functions in EncoderMap\n", "\n", "The model EncoderMap employs is a bit more complicated than the single neuron linear regression model we've just created. The main difference lies in EncoderMap calculating costs from intermediate layers. The multi-dimensional scaling like cost functions for example use the output of the latent (bottleneck) layer and the input of the network to calculate a scalar loss. That's why EncoderMap's cost functions are almost always closures. Meaning they return a function and not a value. This is done, so that the inner functions have access to the TensorFlow model and can access intermediate layers. Let's look at an example closure:" ] }, { "cell_type": "code", "execution_count": 12, "id": "1df8a9ef-1f66-46f6-b51b-6ab5bab41a7b", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:04:47.111080Z", "iopub.status.busy": "2025-06-19T23:04:47.110909Z", "iopub.status.idle": "2025-06-19T23:04:47.137463Z", "shell.execute_reply": "2025-06-19T23:04:47.136994Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Setting up inner function\n", "Setting up inner function\n" ] } ], "source": [ "def outer(argument):\n", " print(\"Setting up inner function\")\n", " def inner(different_argument):\n", " print(\n", " f\"The inner function has access to the \"\n", " f\"Outer namespace {argument=} but also \"\n", " f\"to its own namespace {different_argument=}\"\n", " )\n", " return inner\n", "\n", "func = outer(\"Hello!\")\n", "func2 = outer(\"Foo\")" ] }, { "cell_type": "markdown", "id": "815c0ec9-3309-4d19-b811-4e79c2a8f34e", "metadata": {}, "source": [ "The function returned by the closure can now be called normally." ] }, { "cell_type": "code", "execution_count": 13, "id": "a887abc5-3af7-4d9c-8b1c-02c805ba5ab0", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:04:47.138977Z", "iopub.status.busy": "2025-06-19T23:04:47.138855Z", "iopub.status.idle": "2025-06-19T23:04:47.165248Z", "shell.execute_reply": "2025-06-19T23:04:47.164798Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "The inner function has access to the Outer namespace argument='Hello!' but also to its own namespace different_argument='World!'\n" ] } ], "source": [ "func(\"World!\")" ] }, { "cell_type": "code", "execution_count": 14, "id": "f764a2f9-8ed3-4601-9bad-31925674fdb8", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:04:47.166786Z", "iopub.status.busy": "2025-06-19T23:04:47.166664Z", "iopub.status.idle": "2025-06-19T23:04:47.192470Z", "shell.execute_reply": "2025-06-19T23:04:47.192021Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "The inner function has access to the Outer namespace argument='Foo' but also to its own namespace different_argument='Bar'\n" ] } ], "source": [ "func2(\"Bar\")" ] }, { "cell_type": "markdown", "id": "7b4f3528-afaa-4e80-8804-57d017cad24a", "metadata": {}, "source": [ "#### Autoencoder cost\n", "\n", "Let us first take a look at the *auto_cost*. This function can be summarized as follows: \n", "\n", "- Take the input of the autoencoder network as $y$\n", "- Take the output of the autoencoder network as $\\hat{y}$\n", "- Build the difference $d = y - \\hat{y}$\n", "- Make this difference positive by using one of these functions:\n", " - absolute $l = \\lvert d \\rvert$\n", " - square $l = d^2$\n", " - norm $l = \\lVert d \\rVert$\n", "- Take the mean of all samples as the scalar cost value.\n", "\n", "This loss function can be implemented like so:\n", "\n", "```python\n", "def auto_loss(model, parameters=None):\n", " if parameters is None:\n", " p = Parameters()\n", " else:\n", " p = parameters\n", " def auto_loss_func(y_true, y_pred=None):\n", " if y_pred is None:\n", " y_pred = model(y_true)\n", " if p.auto_cost_scale is not None:\n", " if p.auto_cost_variant == \"mean_square\":\n", " auto_cost = tf.reduce_mean(\n", " tf.square(periodic_distance(y_true, y_pred, p.periodicity))\n", " )\n", " elif p.auto_cost_variant == \"mean_abs\":\n", " auto_cost = tf.reduce_mean(\n", " tf.abs(periodic_distance(y_true, y_pred, p.periodicity))\n", " )\n", " elif p.auto_cost_variant == \"mean_norm\":\n", " auto_cost = tf.reduce_mean(\n", " tf.norm(periodic_distance(y_true, y_pred, p.periodicity), axis=1)\n", " )\n", " else:\n", " raise ValueError(\n", " \"auto_cost_variant {} not available\".format(p.auto_cost_variant)\n", " )\n", " if p.auto_cost_scale != 0:\n", " auto_cost *= p.auto_cost_scale\n", " else:\n", " auto_cost = 0.0\n", " return auto_cost\n", "\n", " return auto_loss_func\n", " \n", "```\n", "\n", "Let's look at this function in a bit more detail. The outer function of the close (`auto_loss()`) takes a TensorFlow model and a instance of `em.Parameters` as its inputs. The `model` argument is used in the inner function (`auto_loss_func()`) to get the `y_pred` value regardless of whether it was provided to the inner function. The `p` variable from the outer function is used in the inner function to define a periodicity (`p.periodicity`) for input data that lie in a periodic space (angles). Furthermore it is used to define a `p.auto_cost_scale` and a `p.auto_cost_variant`. These options can be set by the user in the parameter class and are finally brough to use here. Let's have a look at another cost function in EncoderMap employing the output of intermediate layers.\n", "\n", "#### Distance loss\n", "\n", "The so-called *distance loss* compares the output of the neurons in the latent space with the network input. Thus, it needs access to these intermediate neurons, which is - again - done via a closue.\n", "\n", "```python\n", "def distance_loss(model, parameters=None):\n", " if parameters is None:\n", " p = Parameters()\n", " else:\n", " p = parameters\n", "\n", " latent = model.encoder\n", "\n", " # we will come back to this later\n", " dist_loss = sigmoid_loss(p)\n", "\n", " def distance_loss_func(y_true, y_pred):\n", " y_pred = latent(y_true)\n", " \n", " # functional model gives a tuple\n", " if isinstance(y_true, tuple):\n", " y_true = tf.concat(y_true[:3], axis=1)\n", " if p.distance_cost_scale is not None:\n", " dist_cost = dist_loss(y_true, y_pred)\n", " if p.distance_cost_scale != 0:\n", " dist_cost *= p.distance_cost_scale\n", " else:\n", " dist_cost = 0.0\n", " return dist_cost\n", " return distance_loss_func\n", "```\n", "\n", "With the information from the autoencoder loss, we can easily understand this loss function. In the outer function, the same handling of the `parameters` argument is done. Inside the inner function this object's `p.distance_cost_scale` attribute is used. Furthermore, the encoder sub-model is extracted from the `model` argument via the line `latent = model.encoder` and the encoder output (here called `y_pred`) is generated from calling this sub-model (`latent(y_true)`) in the inner function. The last line of the outer function (`dist_loss = sigmoid_loss(p)`) uses another closure which you can see below.\n", "\n", "```python\n", "def sigmoid_loss(parameters):\n", " if parameters is None:\n", " p = Parameters()\n", " else:\n", " p = parameters\n", " periodicity = p.periodicity\n", " dist_sig_parameters = p.dist_sig_parameters\n", " def sigmoid_loss_func(y_true: tf.Tensor, y_pred: tf.Tensor) -> tf.Tensor:\n", " r_h = y_true\n", " r_l = y_pred\n", " if periodicity == float(\"inf\"):\n", " dist_h = pairwise_dist(r_h)\n", " else:\n", " dist_h = pairwise_dist_periodic(r_h, periodicity)\n", " dist_l = pairwise_dist(r_l)\n", "\n", " sig_h = sigmoid(*dist_sig_parameters[:3])(dist_h)\n", " sig_l = sigmoid(*dist_sig_parameters[3:])(dist_l)\n", "\n", " cost = tf.reduce_mean(tf.square(sig_h - sig_l))\n", " return cost\n", "\n", " return sigmoid_loss_func\n", "```\n", "\n", "This function implements the sigmoid scaled multi-dimensional scaling described in the original sketch-map paper [[1]](#cite-sketchmap). The `periodicity` and the user-specified `dist_sig_parameters` are used inside the inner function." ] }, { "cell_type": "markdown", "id": "8d5ade49-a728-4fea-a570-dc394d0179c0", "metadata": {}, "source": [ "\n", "\n", "## Custom cost functions\n", "\n", "We can now try to write custom loss functions and also compare how they affect the training of the EncoderMap network. We will compare the EncoderMap network.\n", "\n", "### Triplet cost (contrastive learning)\n", "\n", "Thanks to Olivier Moindrot for his blog post on https://omoindrot.github.io/triplet-loss\n", "\n", "Contrastive learning is a technique in the field of machine learning leveraging neural networks to create high quality low-dimensional embeddings from high-dimensional data. The learning can be self- or semi-supervised. A cost function often implemented in contrastive learning is the *triplet loss*. In contrast to EncoderMap's distance cost, where pairwise distances between high-dimensional input and low-dimensional latent space are compared, the *triplet loss* uses triplets of points in the embedding to arrivwe at a cost scalar.\n", "\n", "A key difference between triplet loss and EncoderMap is the presence of labels (sometimes called classes in machine learning lingo). Take images of fruits as high-dimensional inputs. Let's say we have pictures of bananas, oranges, and apples. We want to define a loss function so that similar labels are pushed closely together in the embedding, while the different labels are pushed further apart.\n", "\n", "We provide the network with triplets of the inputs. These triplets are selected from the labelled train data so that we provide from the train data.\n", "\n", "- An anchor.\n", "- A positive of the same class as anchor.\n", "- A negative of a different class.\n", "\n", "The loss of a triplet $(a, p, n)$ can be calculated as:\n", "\n", "\\begin{equation}\n", "C_{\\mathrm{triplet}} = \\text{max}\\left( d(a, p) - d(a, n) + m, 0 \\right)\n", "\\end{equation}\n", "\n", "where $m$ is the so-called *margin*. A hyperparameter. While EncoderMap lacks labels that could be used for this definition of a triplet loss, we can use distances between triplets from the input and the latent space for a new loss function." ] }, { "cell_type": "code", "execution_count": 15, "id": "97bbe357-3553-4489-9d90-cdaa4508b25d", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:04:47.194166Z", "iopub.status.busy": "2025-06-19T23:04:47.194038Z", "iopub.status.idle": "2025-06-19T23:04:47.221038Z", "shell.execute_reply": "2025-06-19T23:04:47.220547Z" } }, "outputs": [], "source": [ "from encodermap.misc.distances import pairwise_dist\n", "\n", "def triplet_loss(model, parameters, margin=0.2):\n", " \"\"\"Triplet loss outer function. Takes model and parameters. Parameters is only here for demonstration purpoes.\n", " It is not actually needed in the closure.\n", "\n", " Thanks to Olivier Moindrot.\n", "\n", " \"\"\"\n", " # use the models encoder part to create low-dimensional data\n", " latent = model.encoder\n", "\n", " def triplet_loss_fn(y_true, y_pred=None):\n", " \"\"\"Triplet loss inner function. Takes y_true and y_pred. y_pred will not be used. y_true will be used to get\n", " the latent space of the autoencoder.\n", "\n", " \"\"\"\n", " # get latent output\n", " lowd = latent(y_true)\n", "\n", " # Get the pairwise distance matrix\n", " lowd_pairwise_dist = pairwise_dist(lowd, squared=False)\n", " highd_pairwise_dist = pairwise_dist(y_true, squared=False)\n", "\n", " lowd_anchor_positive_dist = tf.expand_dims(lowd_pairwise_dist, 2)\n", " lowd_anchor_negative_dist = tf.expand_dims(lowd_pairwise_dist, 1)\n", " highd_anchor_positive_dist = tf.expand_dims(highd_pairwise_dist, 2)\n", " highd_anchor_negative_dist = tf.expand_dims(highd_pairwise_dist, 1)\n", "\n", " # Compute a 3D tensor of size (batch_size, batch_size, batch_size)\n", " # triplet_loss[i, j, k] will contain the triplet loss of anchor=i, positive=j, negative=k\n", " # Uses broadcasting where the 1st argument has shape (batch_size, batch_size, 1)\n", " # and the 2nd (batch_size, 1, batch_size)\n", " lowd_triplet_loss = lowd_anchor_positive_dist - lowd_anchor_negative_dist + margin\n", " highd_triplet_loss = highd_anchor_positive_dist - highd_anchor_negative_dist + margin\n", "\n", " # return cost\n", " return tf.reduce_mean(tf.abs(lowd_triplet_loss - highd_triplet_loss))\n", "\n", " # return inner function\n", " return triplet_loss_fn" ] }, { "cell_type": "markdown", "id": "34d64fed-37fc-4575-9ca7-ab9405273652", "metadata": {}, "source": [ "As usual, we create an instance of `EncoderMap`. For this instance, we will use the cube example data. This time, we set the `distance_cost_scale` to 0, to not have the sigmoid weighted pairwise distance cost interfere with our triplet cost function." ] }, { "cell_type": "code", "execution_count": 16, "id": "a819902f-04b9-4540-91bc-0f8797ad3ab3", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:04:47.222584Z", "iopub.status.busy": "2025-06-19T23:04:47.222462Z", "iopub.status.idle": "2025-06-19T23:04:47.328323Z", "shell.execute_reply": "2025-06-19T23:04:47.327814Z" } }, "outputs": [], "source": [ "high_d_data, ids = em.misc.create_n_cube()\n", "parameters = em.Parameters(\n", " tensorboard=False,\n", " distance_cost_scale=0,\n", " n_steps=100,\n", ")\n", "emap_triplet = em.EncoderMap(\n", " parameters=parameters,\n", " train_data=high_d_data,\n", " read_only=True,\n", ")" ] }, { "cell_type": "markdown", "id": "a4441aff-1374-4a67-b7b1-bfe748e4d37d", "metadata": {}, "source": [ "Add the loss" ] }, { "cell_type": "code", "execution_count": 17, "id": "f34ab6a1-7910-46e0-aae6-30842c72614a", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:04:47.330236Z", "iopub.status.busy": "2025-06-19T23:04:47.330047Z", "iopub.status.idle": "2025-06-19T23:04:47.355956Z", "shell.execute_reply": "2025-06-19T23:04:47.355500Z" } }, "outputs": [], "source": [ "emap_triplet.add_loss(triplet_loss)" ] }, { "cell_type": "markdown", "id": "a959b8a5-b18d-46b0-b2e2-64d990dc7c8d", "metadata": {}, "source": [ "#### Train" ] }, { "cell_type": "code", "execution_count": 18, "id": "371da93d-7704-43c5-a1af-e3449a9ff92b", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:04:47.357479Z", "iopub.status.busy": "2025-06-19T23:04:47.357312Z", "iopub.status.idle": "2025-06-19T23:04:54.675078Z", "shell.execute_reply": "2025-06-19T23:04:54.674506Z" } }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "\r", " 0%| | 0/100 [00:00y=%{y}
color=%{marker.color}", "legendgroup": "", "marker": { "color": [ 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0 ], "coloraxis": "coloraxis", "symbol": "circle" }, "mode": "markers", "name": "", "showlegend": false, "type": "scattergl", "x": [ -0.28834122, -0.2753416, -0.23096094, -0.3057474, -0.20833406, -0.22980884, -0.2853228, -0.25667962, -0.24181664, -0.22259569, -0.27471104, -0.14031729, -0.28693274, -0.24240169, -0.18650222, -0.24640766, -0.26555327, -0.21202743, -0.31112123, -0.34007078, -0.27017128, -0.23568621, -0.28031728, -0.27739477, -0.24045265, -0.24599582, -0.30515936, -0.22264662, -0.2626844, -0.31539336, -0.20461065, -0.23415291, -0.20729381, -0.30947423, -0.2298758, -0.32883433, -0.2694571, -0.19704178, -0.31487882, -0.29117703, -0.23538756, -0.20644683, -0.3518718, -0.3072025, -0.3050136, -0.28586578, -0.26163733, -0.30858305, -0.22891018, -0.24438965, -0.28451666, -0.30197182, -0.22397313, -0.34144616, -0.35000595, -0.23928979, -0.28873405, -0.31279618, -0.36995524, -0.299337, -0.31446266, -0.28809485, -0.25493312, -0.29797763, -0.17109276, -0.32819587, -0.33111006, -0.2564242, -0.31810513, -0.36124647, -0.27546188, -0.29770502, -0.34335586, -0.32002813, -0.3120673, -0.33811128, -0.23695934, -0.37617293, -0.2698245, -0.34986094, -0.3394984, -0.40469363, -0.40469238, -0.30892155, -0.34558472, -0.3596946, -0.2888335, -0.30034754, -0.32969254, -0.3721589, -0.35141063, -0.35195237, -0.28576767, -0.32768226, -0.36822337, -0.30652538, -0.35879642, -0.35308602, -0.29242352, -0.3724577, -0.28803113, -0.33254826, -0.34130475, -0.3756328, -0.34870538, -0.27702585, -0.36275014, -0.39077315, -0.34281486, -0.31873742, -0.29373753, -0.27680337, -0.39220533, -0.31853944, -0.38355082, -0.37874854, -0.37040588, -0.4264491, -0.3604747, -0.37970972, -0.399084, -0.37227166, -0.33207452, -0.3543802, -0.40986553, -0.34738612, -0.35861495, -0.4364984, -0.3523754, -0.37415376, -0.34360275, -0.37363917, -0.3579632, -0.41124862, -0.4196993, -0.34946647, -0.31715512, -0.41396984, -0.43409243, -0.35527802, -0.42834938, -0.41569537, -0.29430878, -0.37700784, -0.34021932, -0.39703393, -0.42569035, -0.4151285, -0.40586334, -0.4601074, -0.3630189, -0.37717095, -0.4608602, -0.35741252, -0.34798273, -0.40768078, -0.44600236, -0.37918153, -0.39513797, -0.4070968, -0.42171258, -0.33158007, -0.4403442, -0.34350127, -0.32652158, -0.38928458, -0.37180445, -0.4965312, -0.41003555, -0.35226426, -0.38646337, -0.38117325, -0.43393168, -0.45101202, -0.3788802, -0.38854915, -0.4197265, -0.44503748, -0.4603256, -0.39005, -0.35965046, -0.41033483, -0.41189143, -0.40882814, -0.466783, -0.37848347, -0.37473273, -0.3780649, -0.4650393, -0.46581727, -0.45327556, -0.463785, -0.41849864, -0.40599805, -0.40603504, -0.37366658, -0.48810768, -0.4363569, -0.44049478, -0.42997417, -0.416565, -0.4253136, -0.41730216, -0.35657823, -0.46958548, -0.373765, -0.45362502, -0.42750734, -0.38955066, -0.5407386, -0.42455372, -0.41790202, -0.4724993, -0.52533776, -0.43570226, -0.4399878, -0.42443427, -0.43084365, -0.46903574, -0.40864858, -0.46975183, -0.47127134, -0.3655672, -0.49419224, -0.45469344, -0.4808051, -0.5437136, -0.42915156, -0.4618045, -0.45104498, -0.5018402, -0.4952826, -0.41635573, -0.48428917, -0.47804278, -0.3899184, -0.39545637, -0.43064088, -0.50985, -0.54063576, -0.46916395, -0.39480242, -0.42652887, -0.4688689, -0.53034055, -0.4505915, -0.4622349, -0.501364, -0.51966715, -0.4741493, -0.4938677, -0.5183497, -0.5127042, -0.4516521, -0.4805038, -0.4499212, -0.48060334, -0.44130224, -0.49464178, -0.529339, -0.4466862, -0.514488, -0.50534153, -0.41964722, -0.4635753, -0.4436419, -0.51601857, -0.43968573, -0.5257094, -0.5025605, -0.46729523, -0.514321, -0.51661384, -0.53840035, -0.5636563, -0.64861053, -0.52953666, -0.44622368, -0.5125254, -0.48183244, -0.42839557, -0.5487235, -0.52496624, -0.49747014, -0.49747556, -0.49166578, -0.5037616, -0.49629092, -0.5560151, -0.4972461, -0.4805712, -0.4619717, -0.4915977, -0.56189716, -0.4925875, -0.51059324, -0.5586143, -0.47775227, -0.54480165, -0.51196, -0.50743955, -0.6073282, -0.49692756, -0.45503372, -0.52346855, -0.5790609, -0.4264765, -0.5748837, -0.5525324, -0.51192635, -0.52441293, -0.5718693, -0.55394393, -0.4889694, -0.52437997, -0.5851465, -0.54716283, -0.5723113, -0.531308, -0.52617025, -0.5323789, -0.5506565, -0.5683885, -0.5491065, -0.59671074, -0.618643, -0.516159, -0.557053, -0.5998161, -0.567034, -0.5343769, -0.58850366, -0.53890675, -0.5322437, -0.5238992, -0.5040995, -0.5225184, -0.571974, -0.5305668, -0.5812432, -0.64928025, -0.5826834, -0.51864535, -0.5739353, -0.6529193, -0.55101126, -0.49568397, -0.5336614, -0.50800824, -0.63674575, -0.5577447, -0.53621405, -0.5975066, -0.59762454, -0.52926004, -0.62400764, -0.5419518, -0.49942642, -0.53471345, -0.56188446, -0.63289577, -0.541315, -0.5231325, -0.5518848, -0.59111357, -0.5732098, -0.5642206, -0.58307344, -0.5174611, -0.60764843, -0.5072734, -0.5936516, -0.61390525, -0.64328045, -0.5789912, -0.48863035, -0.55388325, -0.6121462, -0.51500005, -0.5480937, -0.604575, -0.57718295, -0.60770786, -0.6103279, -0.5906558, -0.6556254, -0.55767196, -0.6155693, -0.6373579, -0.5913868, -0.60878986, -0.5085903, -0.63817555, -0.5607263, -0.5575802, -0.60131174, -0.589075, -0.5723403, -0.607678, -0.5360437, -0.589894, -0.5864125, -0.6501353, -0.54364043, -0.6057944, -0.5870628, -0.5659008, -0.5951375, -0.58728045, -0.5894895, -0.67071706, -0.600151, -0.5999789, -0.6065908, -0.6268367, -0.66239244, -0.54564667, -0.57833046, -0.5825489, -0.58510536, -0.5635813, -0.6406378, -0.60654664, -0.6580644, -0.6377269, -0.61025745, -0.55487174, -0.6224652, -0.63622445, -0.6655485, -0.6652495, -0.6473405, -0.6046306, -0.59407777, -0.62586987, -0.6683148, -0.5874128, -0.65429884, -0.59561074, -0.55230206, -0.594039, -0.6294563, -0.67610645, -0.60442203, -0.66017205, -0.6550864, -0.6498565, -0.6426082, -0.61914635, -0.64864534, -0.5842909, -0.57520974, -0.6171478, -0.6748703, -0.63523453, -0.66787577, -0.6379591, -0.6372075, -0.6682215, -0.66289335, -0.6278588, -0.61775386, -0.6721329, -0.6995854, -0.663374, -0.6482095, -0.69508034, -0.60433686, -0.7023405, -0.5985957, -0.63148016, -0.69733065, -0.6520471, -0.6732547, -0.70285106, -0.67229706, -0.6147769, -0.6871251, -0.6917157, -0.61872107, -0.64953786, -0.69577175, -0.68192947, -0.6863192, -0.63151675, -0.6206878, -0.6265841, -0.6288288, -0.616465, -0.64659196, -0.68812656, -0.65441793, -0.61280906, -0.71058184, -0.70933115, -0.650824, -0.68885404, -0.6750743, -0.66070145, -0.66677755, -0.17870787, -0.23853901, -0.23197421, -0.21959746, -0.28060606, -0.317493, -0.23255879, -0.17582566, -0.339417, -0.3148164, -0.28696734, -0.22925091, -0.28310665, -0.24674469, -0.20243913, -0.20894516, -0.28551012, -0.2901592, -0.21342385, -0.26265088, -0.18735072, -0.18778986, -0.28304785, -0.26869738, -0.27219087, -0.2337679, -0.3355531, -0.2922376, -0.21191752, -0.2867578, -0.23156178, -0.26776326, -0.19094375, -0.33475956, -0.33389327, -0.29315266, -0.31397513, -0.3189606, -0.3176624, -0.27075997, -0.31144255, -0.25786853, -0.25000086, -0.35269767, -0.34770986, -0.34383893, -0.29776993, -0.29173926, -0.25596356, -0.3649024, -0.29975584, -0.3284907, -0.25872564, -0.23608458, -0.29323137, -0.2642301, -0.35590535, -0.28604317, -0.3536364, -0.36030596, -0.23917171, -0.32350856, -0.3790155, -0.27333027, -0.30884588, -0.27274874, -0.33000278, -0.36062104, -0.33099037, -0.29323193, -0.35337138, -0.27360892, -0.23369741, -0.40042102, -0.33677313, -0.27974635, -0.32217655, -0.32553732, -0.33567873, -0.3646867, -0.30099887, -0.3574482, -0.3285678, -0.40456736, -0.3481812, -0.36588386, -0.3694286, -0.3538013, -0.4208186, -0.35756648, -0.39594513, -0.4712165, -0.3598478, -0.37025458, -0.41851407, -0.35365728, -0.42275864, -0.31476167, -0.358733, -0.3984225, -0.3523684, -0.35902372, -0.47053987, -0.4090312, -0.34872192, -0.4191273, -0.36009583, -0.3512412, -0.41750035, -0.35782835, -0.35845906, -0.47532743, -0.35906485, -0.4123066, -0.40743768, -0.37639576, -0.4003038, -0.3834732, -0.43797374, -0.4432724, -0.4261418, -0.43441895, -0.42280966, -0.49380404, -0.45764673, -0.43158507, -0.43355295, -0.46400768, -0.4152841, -0.3741041, -0.4307146, -0.42205942, -0.41802764, -0.41432863, -0.39435875, -0.4352461, -0.43958727, -0.42482525, -0.4150537, -0.3786757, -0.45109206, -0.42341647, -0.45144898, -0.34914225, -0.50004816, -0.4049912, -0.4233605, -0.45540386, -0.4755743, -0.4557339, -0.45835733, -0.5367522, -0.4579841, -0.49335325, -0.38581994, -0.42154017, -0.52273744, -0.44896346, -0.42062142, -0.49352407, -0.4354896, -0.47567832, -0.42172396, -0.4330655, -0.5196771, -0.4699703, -0.49920505, -0.45716769, -0.5162295, -0.3969933, -0.5325424, -0.4707175, -0.43467203, -0.5202547, -0.5629006, -0.50227827, -0.54495996, -0.5560876, -0.48238313, -0.54697245, -0.49634707, -0.5434802, -0.45865166, -0.5360965, -0.5031768, -0.51407516, -0.51838976, -0.48400515, -0.57732713, -0.4485873, -0.4966936, -0.5173107, -0.45746303, -0.46618515, -0.49893773, -0.5137288, -0.51910156, -0.48271132, -0.49801284, -0.4724056, -0.5416749, -0.5126831, -0.5763301, -0.5360531, -0.5048322, -0.54910034, -0.5241603, -0.5266352, -0.5449324, -0.52082986, -0.46452928, -0.5277186, -0.52559274, -0.44770187, -0.58256257, -0.56519884, -0.57829845, -0.46560836, -0.5524908, -0.45048934, -0.5354163, -0.5109669, -0.595099, -0.5522979, -0.5986766, -0.5104728, -0.6470057, -0.5347234, -0.56170917, -0.5628354, -0.50663596, -0.45505732, -0.5849605, -0.5989413, -0.67972285, -0.54538625, -0.5762071, -0.60717195, -0.5531431, -0.5780815, -0.63996816, -0.5464334, -0.5853408, -0.5994549, -0.5440717, -0.5896804, -0.62425166, -0.5074218, -0.49817872, -0.55056465, -0.6194365, -0.6040052, -0.5944664, -0.6484823, -0.56653804, -0.58193105, -0.5837328, -0.6514178, -0.5021408, -0.5910057, -0.58407044, -0.5434287, -0.6840461, -0.635426, -0.5653131, -0.52138233, -0.6480754, -0.6364577, -0.66444, -0.5959236, -0.58128226, -0.69208515, -0.5793301, -0.5842382, -0.60620064, -0.59817415, -0.64228314, -0.6027531, -0.647958, -0.60819304, -0.6838995, -0.6617488, -0.6841182, -0.53907496, -0.6274968, -0.64327806, -0.7187757, -0.6646979, -0.6511113, -0.620134, -0.71611375, -0.6312764, -0.5839917, -0.5851496, -0.6106511, -0.75249463, -0.5813405, -0.72500074, -0.6861014, -0.6706572, -0.63004607, -0.6612028, -0.5969701, -0.6348849, -0.73057646, -0.7041793, -0.6238052, -0.72386223, -0.7120712, -0.6655057, -0.68447244, -0.66867965, -0.70011365, -0.63536793, -0.64293426, -0.6522908, -0.7426877, -0.6508551, -0.68145686, -0.7216117, -0.66972613, -0.64013463, -0.73741144, -0.73629314, -0.6728383, -0.6727273, -0.72634774, -0.6670523, -0.6522988, -0.6869001, -0.6896506, -0.79874593, -0.66434675, -0.72749084, -0.7097419, -0.6813207, -0.64951795, -0.68852246, -0.72759134, -0.65649825, -0.6696716, -0.7127715, -0.734791, -0.70570046, -0.6738612, -0.6863231, -0.8123093, -0.6987217, -0.75620294, -0.6789159, -0.6871013, -0.7114485, -0.66360575, -0.7055666, -0.7573747, -0.73336524, -0.72310466, -0.6445791, -0.7060612, -0.82411516, -0.7748035, -0.73885894, -0.7625145, -0.7906104, -0.74223393, -0.7559908, -0.7470588, -0.6582114, -0.8142305, -0.6818791, -0.76256317, -0.73424774, -0.7671641, -0.7176576, -0.70901316, -0.7514931, -0.80556434, -0.7425814, -0.8180823, -0.75346375, -0.7090475, -0.691353, -0.7423082, -0.74883646, -0.78518945, -0.73575336, -0.8144824, -0.79166037, -0.7940478, -0.7489343, -0.81385785, -0.7799932, -0.77951676, -0.79199976, -0.8077491, -0.8257785, -0.80613077, -0.8688651, -0.76940423, -0.786395, -0.78142124, -0.77485466, -0.7711459, -0.8189507, -0.85329074, -0.75233597, -0.8515931, -0.83826, -0.78361124, -0.8558768, -0.7717587, -0.7223365, -0.8028179, -0.8631372, -0.7170048, -0.8629786, -0.8109821, -0.8031319, -0.9161163, -0.8403195, -0.83351123, -0.7862397, -0.8010954, -0.87808186, -0.81095105, -0.7345114, -0.8175958, -0.8176592, -0.7587293, -0.83546454, -0.79227644, -0.82187337, -0.81454104, -0.8393387, -0.86133367, -0.76554847, -0.90426135, -0.82568467, -0.7900629, -0.7952737, -0.7936279, -0.8393743, -0.9455201, -0.8541003, -0.8335549, -0.87191886, -0.87149674, -0.81693375, -0.852366, -0.8056645, -0.8067351, -0.85659134, -0.83925754, -0.8188636, -0.8762696, -0.92332876, -0.8729026, -0.8785549, -0.879226, -0.84573144, -0.85721487, -0.84245247, -0.8977306, -0.88401836, -0.8617012, -0.9353892, -0.9350405, -0.7814673, -0.8626484, -0.87306076, -0.8421232, -0.82022166, -0.853752, -0.9248406, -0.84452826, -0.89333624, -0.88685495, -0.8376848, -0.8979673, -0.9021644, -0.8918161, -0.85899013, -0.8894693, -0.9143879, -0.937725, -0.9100903, -0.9425028, -0.82951003, -0.940761, -0.89950734, -0.8698568, -0.84097844, -0.89072096, -0.90273064, -0.9424172, -0.9471659, -0.96800977, -0.9069422, -0.9053512, -0.89289385, -0.22730821, -0.30462143, -0.18801016, -0.28061694, -0.25519928, -0.14709231, -0.29406518, -0.1891792, -0.26739916, -0.2010572, -0.222857, -0.17091689, -0.20901164, -0.28094622, -0.23574597, -0.15703177, -0.15942396, -0.2950484, -0.20173922, -0.27896607, -0.19149977, -0.26902714, -0.23287395, -0.2407259, -0.25864145, -0.23569256, -0.29423797, -0.3221174, -0.21204758, -0.24300092, -0.3084214, -0.20890364, -0.2563929, -0.20861185, -0.18996543, -0.23005232, -0.2612119, -0.24639437, -0.27111086, -0.29900458, -0.28538373, -0.23273546, -0.28201473, -0.21224123, -0.22121465, -0.2561685, -0.24042645, -0.24735746, -0.31181443, -0.2456598, -0.27431554, -0.20081967, -0.2335492, -0.2406981, -0.2170363, -0.22910526, -0.23650008, -0.30924955, -0.1979365, -0.17576557, -0.3444484, -0.20697194, -0.22097409, -0.18559998, -0.32956403, -0.2726958, -0.21101028, -0.28614038, -0.29415813, -0.3253573, -0.26266643, -0.2380647, -0.2588792, -0.23988074, -0.25669146, -0.29579473, -0.22068682, -0.32935965, -0.22817704, -0.26025942, -0.21616375, -0.27354544, -0.27912167, -0.28712597, -0.2797656, -0.3057058, -0.20829564, -0.32882106, -0.3382021, -0.19019446, -0.25165993, -0.21066922, -0.25033483, -0.26932094, -0.22542441, -0.25816286, -0.22464827, -0.21075583, -0.28297213, -0.2396506, -0.26900122, -0.24876541, -0.2678272, -0.2648691, -0.22783682, -0.24103355, -0.23696724, -0.26063076, -0.22124219, -0.28051293, -0.20187098, -0.28091252, -0.24313426, -0.27428165, -0.3084725, -0.32317993, -0.25986293, -0.3868175, -0.26251656, -0.28371194, -0.27738076, -0.17368263, -0.2627463, -0.29114112, -0.22987145, -0.2698352, -0.25793904, -0.2537688, -0.2157689, -0.22719783, -0.27963784, -0.20779419, -0.23587072, -0.38010964, -0.24942437, -0.23349667, -0.32390055, -0.3119524, -0.2811917, -0.30905664, -0.21950099, -0.25289693, -0.18655121, -0.18320218, -0.2919206, -0.23228347, -0.31540945, -0.27338037, -0.28437775, -0.23987347, -0.31653145, -0.27964664, -0.21473232, -0.25334984, -0.34734434, -0.27262527, -0.2163307, -0.27304393, -0.23938662, -0.22190788, -0.23243093, -0.27197272, -0.2581672, -0.3636197, -0.2331154, -0.27369446, -0.23178706, -0.2406021, -0.26930773, -0.25671265, -0.2946371, -0.23943353, -0.2647921, -0.15792695, -0.27382797, -0.24553943, -0.22477171, -0.25951847, -0.21895802, -0.29829067, -0.27686435, -0.27088457, -0.3347525, -0.2494883, -0.23021802, -0.22985137, -0.28779495, -0.2893657, -0.24620908, -0.26293123, -0.2420085, -0.26740247, -0.25941262, -0.24774122, -0.28958315, -0.2513694, -0.20559168, -0.25497207, -0.27958268, -0.26549843, -0.30865428, -0.2352081, -0.29108247, -0.23250824, -0.20987481, -0.287232, -0.23706442, -0.2633461, -0.26745436, -0.31301972, -0.24008378, -0.2695905, -0.21752307, -0.24580324, -0.27574855, -0.29480767, -0.32573423, -0.24999624, -0.25901517, -0.31126592, -0.26460984, -0.25202242, -0.32843003, -0.30525738, -0.27223524, -0.30334604, -0.3202567, -0.22508946, -0.23775041, -0.23407796, -0.23658341, -0.27538884, -0.27585328, -0.28417212, -0.20076585, -0.21178836, -0.19688761, -0.24638379, -0.2674372, -0.253212, -0.3639027, -0.2371099, -0.21616232, -0.31608546, -0.27526724, -0.24881077, -0.25021505, -0.24618742, -0.2936362, -0.2782547, -0.23056796, -0.22269586, -0.21435261, -0.24675164, -0.18292242, -0.17440611, -0.24740109, -0.2700121, -0.23919794, -0.25377664, -0.23793384, -0.19327214, -0.29408342, -0.2320314, -0.17321533, -0.2710966, -0.29803446, -0.24489334, -0.20434198, -0.21745941, -0.23695919, -0.22468725, -0.21449947, -0.28987303, -0.20482665, -0.29936936, -0.3273508, -0.24333778, -0.24608648, -0.16864222, -0.22405255, -0.26629242, -0.23734039, -0.24459267, -0.29406312, -0.28632975, -0.288052, -0.26947376, -0.19978213, -0.22472215, -0.30392703, -0.24964577, -0.19768342, -0.2939643, -0.27457967, -0.21711874, -0.2714516, -0.34038058, -0.22386134, -0.14939071, -0.24833086, -0.20735344, -0.22837141, -0.31449646, -0.2299667, -0.22470227, -0.30258968, -0.27020037, -0.27205336, -0.23475361, -0.18968049, -0.18924272, -0.25882864, -0.24222991, -0.21583113, -0.24317363, -0.18221705, -0.27725595, -0.22045171, -0.27603304, -0.3551953, -0.31367302, -0.1890907, -0.2950446, -0.2522158, -0.25608844, -0.23847237, -0.28103247, -0.18177891, -0.24589336, -0.27453977, -0.28899387, -0.22779241, -0.26179475, -0.24398822, -0.21170777, -0.225261, -0.26594982, -0.19400099, -0.28194678, -0.25135502, -0.2946122, -0.2580171, -0.25755724, -0.29651064, -0.248588, -0.3036254, -0.25910875, -0.2235308, -0.2609916, -0.26458028, -0.24404824, -0.24295455, -0.2597999, -0.28268147, -0.22964925, -0.22166413, -0.28048033, -0.26441157, -0.28077194, -0.3115593, -0.21842808, -0.24335572, -0.2045868, -0.26256132, -0.25380594, -0.25506607, -0.27692994, -0.23717123, -0.2430932, -0.28254944, -0.20880616, -0.17797472, -0.20178029, -0.20088097, -0.29757142, -0.14928053, -0.290847, -0.253442, -0.24155459, -0.24970445, -0.1827056, -0.31941965, -0.23553774, -0.23547235, -0.21844518, -0.16082917, -0.14612827, -0.18282887, -0.19166666, -0.2939889, -0.21434617, -0.2010225, -0.17919433, -0.25011545, -0.28934926, -0.2388359, -0.17594247, -0.16805413, -0.17883715, -0.16708532, -0.2147905, -0.21511602, -0.26223603, -0.19105008, -0.19364843, -0.22611302, -0.29634273, -0.292354, -0.20372015, -0.18149994, -0.22715017, -0.21452275, -0.20047325, -0.26160732, -0.18401399, -0.22966707, -0.22461003, -0.24968195, -0.16654292, -0.22526553, -0.2239222, -0.23078886, -0.253468, -0.19046313, -0.26679093, -0.14564611, -0.23704481, -0.2150962, -0.20523229, -0.2787427, -0.1817895, -0.25097203, -0.1925483, -0.2219556, -0.2775342, -0.20804375, -0.18669613, -0.26676983, -0.27340835, -0.2186726, -0.21280605, -0.22393608, -0.19497257, -0.19193712, -0.23401025, -0.17387901, -0.21865511, -0.19125879, -0.29393023, -0.17422628, -0.18998322, -0.25278962, -0.13848147, -0.22226253, -0.21798041, -0.23267367, -0.20155624, -0.25284055, -0.16946828, -0.20748562, -0.2178073, -0.15207192, -0.18350893, -0.18366143, -0.19503093, -0.27695677, -0.19889364, -0.18060517, -0.22767666, -0.14349942, -0.20168227, -0.16136175, -0.22272652, -0.2025952, -0.22990286, -0.27465597, -0.21348411, -0.19209772, -0.25182813, -0.20008728, -0.23469615, -0.24982786, -0.22944397, -0.26365978, -0.20851117, -0.22624391, -0.20528954, -0.18938828, -0.18289496, -0.21743003, -0.28057972, -0.1903876, -0.25534058, -0.1725536, -0.2075825, -0.1928432, -0.18089521, -0.23874292, -0.22480318, -0.21629786, -0.19450638, -0.24883687, -0.23752266, -0.13867225, -0.2303941, -0.19632417, -0.18530546, -0.21393263, -0.2328482, -0.23266935, -0.20425999, -0.3008255, -0.1252237, -0.21435213, -0.21223468, -0.21936771, -0.20737934, -0.2193067, -0.23102054, -0.21595362, -0.22389433, -0.20611036, -0.14098264, -0.22607347, -0.21927106, -0.16910933, -0.23556224, -0.18602261, -0.2165088, -0.21785977, -0.20417795, -0.21349388, -0.19839495, -0.23981425, -0.25018033, -0.24800885, -0.2778298, -0.2576179, -0.19242755, -0.2618228, -0.18264957, -0.15869252, -0.27785137, -0.18021685, -0.23689124, -0.21747738, -0.24112624, -0.27186573, -0.24050793, -0.23170528, -0.25716627, -0.25459734, -0.25911567, -0.1789087, -0.19182545, -0.2729374, -0.2717056, -0.25369024, -0.27978382, -0.24948823, -0.25974062, -0.25803933, -0.16614586, -0.17427841, -0.21515831, -0.3085498, -0.2817389, -0.29838046, -0.2952173, -0.2683806, -0.30130962, -0.31002542, -0.20628747, -0.20933437, -0.32584855, -0.2708082, -0.22810575, -0.34263477, -0.27132958, -0.24042076, -0.22875714, -0.24112862, -0.27316657, -0.2113406, -0.24280137, -0.228537, -0.28435802, -0.3201861, -0.25892395, -0.21411344, -0.2526339, -0.29468057, -0.28489596, -0.32320234, -0.23748863, -0.34072232, -0.25859278, -0.28621402, -0.36729723, -0.2788903, -0.28269055, -0.2730378, -0.29943722, -0.32714874, -0.25451574, -0.32553166, -0.27191526, -0.2764075, -0.30598623, -0.28066146, -0.3390685, -0.2901651, -0.25252497, -0.39305046, -0.30690634, -0.3196572, -0.19455278, -0.34840935, -0.25460976, -0.29319444, -0.2539221, -0.3089562, -0.25573874, -0.22870955, -0.2839063, -0.24622941, -0.3206321, -0.27402192, -0.28558305, -0.25379556, -0.35335737, -0.36323813, -0.282792, -0.28467572, -0.3484891, -0.34214032, -0.27187997, -0.3490856, -0.29307407, -0.30654827, -0.2877706, -0.21771732, -0.32200482, -0.31288952, -0.28929266, -0.21977755, -0.2859335, -0.29519433, -0.26178852, -0.3342935, -0.39926252, -0.2382088, -0.40969118, -0.2757196, -0.36972767, -0.3232593, -0.35285318, -0.34279048, -0.27557993, -0.35500988, -0.32079965, -0.31533548, -0.34761035, -0.31470633, -0.30631644, -0.34409708, -0.3497749, -0.33301216, -0.2372123, -0.43299645, -0.36967295, -0.3347037, -0.36138588, -0.31418478, -0.30416828, -0.26982248, -0.36128643, -0.35163653, -0.3445073, -0.34690222, -0.32593057, -0.34309587, -0.351045, -0.35366178, -0.30062237, -0.37758934, -0.3037115, -0.40385678, -0.28403148, -0.29707244, -0.33246824, -0.38477594, -0.41569483, -0.35888705, -0.35184512, -0.43296206, -0.4476956, -0.30163354, -0.41069573, -0.3927352, -0.30128938, -0.34699056, -0.35935494, -0.3048696, -0.41755685, -0.3896787, -0.4504137, -0.4412434, -0.44019073, -0.35137564, -0.38453788, -0.3458929, -0.34224302, -0.42622387, -0.38733196, -0.4227237, -0.3964633, -0.39169896, -0.4439897, -0.33921704, -0.41198018, -0.42211878, -0.42749614, -0.39454633, -0.40888405, -0.3405052, -0.46883982, -0.4624148, -0.41166285, -0.36305562, -0.42481112, -0.3934094, -0.42404288, -0.38855705, -0.3626282, -0.4257809, -0.39227912, -0.35997644, -0.4726889, -0.4271579, -0.3871505, -0.39231575, -0.40795672, -0.34728917, -0.42796445, -0.40809166, -0.36289024, -0.32885262, -0.37258127, -0.38620856, -0.42744192, -0.44309467, -0.46653026, -0.40666878, -0.47654653, -0.41760203, -0.3737366, -0.38779813, -0.39725205, -0.38379776, -0.46754128, -0.45761096, -0.3758896, -0.43642342, -0.3773671, -0.39130983, -0.34917206, -0.4521708, -0.4363557, -0.43913004, -0.3859333, -0.45644206, -0.36057058, -0.36917928, -0.37484974, -0.4120396, -0.5112032, -0.46684057, -0.48410606, -0.4821248, -0.3768896, -0.38792646, -0.37981635, -0.45005423, -0.46549952, -0.49660027, -0.39692205, -0.40357438, -0.3567579, -0.43556237, -0.40921384, -0.4820773, -0.4143669, -0.4102675, -0.4776162, -0.41121098, -0.47909635, -0.4021922, -0.4176812, -0.40548468, -0.3677959, -0.4445504, -0.47240245, -0.4515658, -0.46137857, -0.42547828, -0.45050424, -0.51118124, -0.46607524, -0.4939602, -0.42644715, -0.4671312, -0.53954476, -0.4966203, -0.47879195, -0.49015355, -0.43750507, -0.45232356, -0.50352794, -0.5079694, -0.3950445, -0.46218568, -0.42254543, -0.4534043, -0.49399555, -0.43673056, -0.44395638, -0.43648118, -0.4277871, -0.45215303, -0.48677617, -0.45927703, -0.46447366, -0.48315006, -0.49230808, -0.49673104, -0.46401584, -0.50730646, -0.45445728, -0.49660993, -0.48820287, -0.4585969, -0.48447853, -0.3957276, -0.5631064, -0.50773525, -0.49441355, -0.55324155, -0.52760965, -0.4598201, -0.45081812, -0.4876148, -0.512093, -0.4355935, -0.5391897, -0.47637182, -0.5218985, -0.5455955, -0.44671524, -0.6028754, -0.52342385, -0.49161923, -0.50236493, -0.5104873, -0.5286363, -0.48504108, -0.5753973, -0.51538116, -0.5282204, -0.5286589, -0.57588327, -0.5112526, -0.50488895, -0.6548528, -0.538789, -0.54359823, -0.55274475, -0.510383, -0.5405217, -0.55887735, -0.5987012, -0.5216509, -0.50104713, -0.46341997, -0.5683242, -0.5449981, -0.48301703, -0.51274663, -0.5545483, -0.5444154, -0.6115039, -0.5762703, -0.5498896, -0.5688059, -0.5401885, -0.542371, -0.49607426, -0.51242024, -0.40574372, -0.5730077, -0.49725926, -0.5927134, -0.6579033, -0.58122355, -0.5622501, -0.5644154, -0.47256422, -0.5141813, -0.5271863, -0.49961984, -0.543098, -0.5174385, -0.64052373, -0.568705, -0.5653787, -0.66026735, -0.6169239, -0.541878, -0.56584716, -0.5639304, -0.57755756, -0.56683725, -0.45089948, -0.544038, -0.55307084, -0.6188808, -0.5547668, -0.5850318, -0.5382815, -0.549375, -0.53465587, -0.6109237, -0.5781204, -0.59008026, -0.6089639, -0.481021, -0.5761577, -0.5496313, -0.53073335, -0.5999529, -0.5307671, -0.52555853, -0.6000736, -0.6119502, -0.61738575, -0.52199024, -0.53001374, -0.62823373, -0.5911272, -0.56361926, -0.6343085, -0.6415939, -0.53901327, -0.65075856, -0.5563434, -0.5357402, -0.60995835, -0.57374054, -0.6095131, -0.5821338, -0.55302995, -0.5667186, -0.5763881, -0.6158135, -0.6658434, -0.58260053, -0.6405453, -0.5752176, -0.5309008, -0.6283341, -0.62132275, -0.63959587, -0.5895851, -0.59433186, -0.6299193, -0.63762325, -0.6751617, -0.6379554, -0.59946364, -0.6504438, -0.68756944, -0.6153605, -0.5938243, -0.5530529, -0.5586164, -0.574529, -0.66266185, -0.6118693, -0.59074277, -0.5597882, -0.63119495, -0.57550675, -0.63779974, -0.67021924, -0.6303556, -0.6449111, -0.5441424, -0.5584597, -0.6042234, -0.18777335, -0.2336286, -0.18157585, -0.21894488, -0.14525393, -0.21803248, -0.17544219, -0.20758918, -0.15834233, -0.20409799, -0.14515898, -0.17995384, -0.22980529, -0.16281945, -0.19469225, -0.2749462, -0.21405968, -0.17617178, -0.21155843, -0.24488693, -0.1864096, -0.26124075, -0.26707104, -0.16782087, -0.22495127, -0.2628702, -0.24248207, -0.1746495, -0.16566792, -0.28805047, -0.28239495, -0.24552032, -0.24975121, -0.22605187, -0.2880724, -0.25412935, -0.2830823, -0.27455604, -0.2570949, -0.33341986, -0.23224682, -0.206433, -0.206263, -0.27040353, -0.12231468, -0.30552173, -0.24219161, -0.2662872, -0.32865122, -0.28907397, -0.30448955, -0.35187066, -0.2867757, -0.2836867, -0.2874451, -0.24628022, -0.3504611, -0.26982927, -0.30756485, -0.24962085, -0.25898674, -0.20980686, -0.23040682, -0.23283038, -0.24709928, -0.28980538, -0.3354116, -0.27416584, -0.24313343, -0.2834293, -0.35093266, -0.22640249, -0.27079752, -0.24622187, -0.31009352, -0.2772011, -0.31168407, -0.2952514, -0.31446984, -0.29252562, -0.23679855, -0.29662955, -0.37540144, -0.23141596, -0.33188003, -0.3560922, -0.2545116, -0.31787133, -0.30301487, -0.28396055, -0.3312097, -0.30288422, -0.29429755, -0.3280879, -0.28192812, -0.29228428, -0.30324665, -0.3799271, -0.3470081, -0.3344614, -0.2865883, -0.31978935, -0.33517694, -0.36750844, -0.3424303, -0.3551423, -0.25974226, -0.38676584, -0.32222313, -0.41693255, -0.3699035, -0.3246743, -0.2821899, -0.34408584, -0.3827603, -0.3359328, -0.39462334, -0.3741127, -0.3374595, -0.3321731, -0.355738, -0.3295956, -0.31955382, -0.23185349, -0.3274081, -0.28650627, -0.29620802, -0.34639415, -0.387795, -0.32686597, -0.3767973, -0.40731105, -0.47150737, -0.411219, -0.38143164, -0.30065727, -0.3682437, -0.4533233, -0.4007981, -0.52021176, -0.4603514, -0.34144908, -0.40920722, -0.35350886, -0.36317754, -0.32934898, -0.29539397, -0.36592805, -0.35239157, -0.37809977, -0.3824739, -0.32962596, -0.34235305, -0.38606498, -0.37045783, -0.43633294, -0.40247542, -0.3753977, -0.44115537, -0.40165955, -0.38564348, -0.4611658, -0.41021135, -0.43117398, -0.47241217, -0.39489877, -0.39257312, -0.4598732, -0.47434103, -0.48902828, -0.4980495, -0.40820634, -0.4529124, -0.50484043, -0.40516764, -0.5259482, -0.4582463, -0.4186599, -0.41725883, -0.36659655, -0.46860427, -0.46415055, -0.4715541, -0.49668437, -0.45473975, -0.42709365, -0.5134889, -0.4276126, -0.48794258, -0.51514316, -0.4656126, -0.48656762, -0.35836288, -0.4943661, -0.46740115, -0.41435072, -0.49621838, -0.44013017, -0.40803766, -0.4508956, -0.5233993, -0.5420143, -0.39470065, -0.40491894, -0.43624246, -0.52588665, -0.52960545, -0.5059151, -0.51776105, -0.4529953, -0.5361882, -0.44106126, -0.47426254, -0.5132203, -0.42934328, -0.5050922, -0.39577326, -0.4225975, -0.51801383, -0.5299311, -0.49694437, -0.49546713, -0.4489246, -0.5588612, -0.49618965, -0.48204392, -0.53408146, -0.55364054, -0.5416237, -0.4856913, -0.4170077, -0.52275974, -0.56047523, -0.5105767, -0.521191, -0.5218115, -0.5560756, -0.46713257, -0.5017527, -0.46255875, -0.52009577, -0.4843322, -0.5396111, -0.53007776, -0.45654505, -0.5638975, -0.5900288, -0.56209844, -0.50762236, -0.60338765, -0.54883, -0.5748936, -0.6939089, -0.61314, -0.5499514, -0.49865937, -0.58352834, -0.6565476, -0.59780663, -0.5567195, -0.55771357, -0.5822995, -0.58565015, -0.5653513, -0.555086, -0.5586398, -0.48851806, -0.61767644, -0.55339456, -0.5953564, -0.5988899, -0.6440193, -0.59830385, -0.5567158, -0.59772426, -0.54942757, -0.57026154, -0.6525142, -0.6132136, -0.5819801, -0.55118275, -0.6340143, -0.55107385, -0.570891, -0.6039341, -0.627706, -0.5771664, -0.5475349, -0.66020906, -0.61716014, -0.6408758, -0.54854083, -0.6511634, -0.62268317, -0.59252065, -0.58166355, -0.6139118, -0.6196205, -0.68533915, -0.5953127, -0.6562155, -0.56748307, -0.57001966, -0.6434099, -0.5857817, -0.6249671, -0.6307581, -0.5638116, -0.55326754, -0.5631005, -0.57519823, -0.7240531, -0.54254335, -0.6772809, -0.5935232, -0.5759823, -0.53530216, -0.5881953, -0.6583335, -0.6832921, -0.71755344, -0.58789676, -0.6212256, -0.65197235, -0.6407449, -0.6570305, -0.6641176, -0.6343486, -0.63376874, -0.67250484, -0.6776667, -0.65797824, -0.67617685, -0.7054314, -0.5801227, -0.73804194, -0.6670395, -0.7047761, -0.6513849, -0.62082475, -0.7096384, -0.6782354, -0.663578, -0.60458535, -0.6493407, -0.6648279, -0.70651704, -0.5985308, -0.66674566, -0.6427626, -0.64406306, -0.67937344, -0.68654174, -0.6940531, -0.7206556, -0.6106643, -0.7704967, -0.74489826, -0.7378543, -0.60864705, -0.69183314, -0.6620894, -0.7178421, -0.694725, -0.7883857, -0.69233197, -0.70343053, -0.72553366, -0.62449324, -0.7063815, -0.72781116, -0.72851133, -0.77065444, -0.71786016, -0.6634057, -0.65816396, -0.63756603, -0.72694355, -0.6911079, -0.74143964, -0.6730459, -0.73790514, -0.7445231, -0.7326552, -0.68002844, -0.7163324, -0.689968, -0.73522997, -0.6793412, -0.79024196, -0.73766714, -0.73437625, -0.68620133, -0.67895436, -0.75727075, -0.75361186, -0.7931374, -0.8165972, -0.7788586, -0.7587578, -0.80220973, -0.75010437, -0.75583124, -0.75760615, -0.81428224, -0.7942253, -0.7755768, -0.78687555, -0.8578389, -0.74463904, -0.73029894, -0.6651254, -0.7879016, -0.7666982, -0.74840754, -0.7890325, -0.72538143, -0.7644959, -0.73843986, -0.7239599, -0.8117373, -0.75151294, -0.7374872, -0.771038, -0.76342744, -0.7918655, -0.8125666, -0.6921183, -0.83188957, -0.7367727, -0.82595295, -0.7991983, -0.75806445, -0.7881294, -0.76012486, -0.7983569, -0.761049, -0.8553142, -0.82559675, -0.829345, -0.7851602, -0.7776566, -0.75753623, -0.84222764, -0.84464234, -0.75970656, -0.7771316, -0.852614, -0.9033378, -0.7871651, -0.80734915, -0.7771986, -0.8527172, -0.75175965, -0.88932747, -0.8334921, -0.8324182, -0.80532086, -0.84081644, -0.8518222, -0.8088003, -0.7798771, -0.8486193, -0.8505787, -0.875439, -0.8526587, -0.8284935, -0.8328594, -0.7620942, -0.8775837, -0.80453634, -0.8563965, -0.8053376, -0.7822463, -0.85496205, -0.79922223, -0.79175496, -0.874011, -0.9017713, -0.77326363, -0.8667857, -0.8805774, -0.90011275, -0.8483253, -0.7830018, -0.83257043, -0.9030691, -0.8443405, -0.7924795, -0.76328546, -0.8961858, -0.87579566, -0.8658486, -0.83782387, -0.88308185, -0.8603882, -0.8814593, -0.8440868, -0.8782785, -0.80685633, -0.92246574, -0.8796716, -0.8314709, -0.88103133, -0.88325584, -0.88028353, -0.9091478, -0.8994277, -0.86365676, -0.94177264, -0.8978196, -0.8853742, -0.91504985, -0.834161, -0.9255845, -0.9207799, -0.92078924, -0.9729683, -1.012234, -0.8554681, -0.91561466, -0.90474266, -0.9747395, -0.9547202, -0.9682149, -0.9041253, -0.86352724, -0.894588, -0.9394099, -0.9608771, -0.91655546, -0.9421057, -0.8789676, -0.92822725, -0.8679734, -0.8623342, -0.9452581, -0.99109274, -0.8896804, -0.90082055, -1.0118413, -0.9556007, -0.95579547, -1.0356951, -0.95597035, -0.9387651, -0.9605562, -1.001998, -1.0147357, -0.9741419, -1.0018935, -1.0200679, -0.92251706, -0.99438506, -1.0419719, -0.9143054, -0.94341177, -0.9852497, -1.0221698, -0.99631006, -0.9885648, -1.0274489, -0.8961225, -0.9677928, -1.0006824, -0.9217163, -0.9773213, -1.0069473, -0.8956501, -0.9958715, -1.0364337, -1.0136595, -0.99088615, -1.0256972, -0.9899222, -1.0211124, -1.0137167, -0.9715083, -1.0634975, -1.0979681, -0.911588, -1.0602322, -1.009512, -0.9805524, -0.9481681, -1.063009, -1.0533588, -1.0095882, -1.0221548, -0.9314341, -0.9600509, -1.0231142, -1.0278735, -0.9440214, -0.9537038, -0.9161012, -0.9761599, -1.0103478, -0.98864883, -1.0166483, -0.97753423, -1.0869527, -1.0150864, -1.1151333, -1.0182922, -1.0553832, -1.0975206, -0.9851418, -1.0649195, -1.0482147, -1.0086455, -1.050997, -1.0109189, -1.1145172, -0.9888517, -1.0597277, -1.0321441, -1.0252597, -1.1020489, -0.9581334, -1.0857656, -1.0227168, -1.022378, -1.0581672, -1.027067, -1.0615892, -1.0507245, -1.0721722, -1.0041113, -1.0810597, -0.9991223, -1.0391982, -1.0069549, -1.0935516, -1.0460031, -1.0405703, -1.0367393, -1.0523758, -1.0908909, -1.0568249, -1.0515413, -1.053261, -1.0092225, -1.0938923, -1.1110137, -1.0540245, -1.057828, -1.1152871, -1.0499086, -1.078268, -1.1286471, -1.0493193, -1.0613508, -1.1061139, -1.0935638, -1.0633297, -1.0579269, -1.105022, -1.1255667, -1.1425004, -1.1053505, -1.1150467, -1.16329, -1.0595458, -1.1376941, -1.0983937, -1.1098199, -1.072716, -1.0425403, -1.2048848, -1.1110876, -1.1408427, -1.1283498, -0.9920321, -1.0965955, -1.0769444, -1.0969841, -1.0739765, -1.065337, -1.1289408, -1.0926843, -1.0720904, -1.117801, -1.1462646, -1.1290727, -1.0565898, -1.0433009, -1.0756202, -1.1784213, -1.0874331, -1.1431437, -1.1527348, -1.1780522, -1.1753345, -1.2273498, -1.1166348, -1.0933225, -1.1679909, -1.1694546, -1.030499, -1.1111252, -1.0661869, -1.0757556, -1.1415048, -1.1845877, -1.1045628, -1.1216817, -1.1678443, -1.1306086, -1.1630049, -1.2138224, -1.135571, -1.1514552, -1.1469798, -1.1246774, -1.145838, -1.1328022, -1.1325715, -1.1089687, -1.1512885, -1.103771, -1.1933107, -1.1017563, -1.1711304, -1.1261928, -1.19664, -1.1503057, -1.1672668, -1.2040873, -1.2062583, -1.1354022, -1.1304996, -1.2113152, -1.1928883, -1.0943432, -1.1492338, -1.1781943, -1.1688812, -1.1380825, -1.2221978, -1.2155449, -1.190803, -1.1447072, -1.1635725, -1.1950967, -1.1929207, -1.2149868, -1.1601343, -1.2039473, -1.2056983, -1.1603765, -1.1378067, -1.2094257, -1.1738119, -1.1954424, -1.1717048, -1.1966772, -1.2380292, -1.2309301, -1.1529474, -1.2755919, -1.1964614, -1.2288041, -1.2607763, -1.2081778, -1.2095044, -1.125745, -1.1927855, -1.2267666, -1.1862502, -1.212373, -1.1538637, -1.2381034, -1.1757832, -1.2228734, -1.3205788, -1.2144413, -1.1820724, -1.2300127, -1.3107848, -1.1982412, -1.2782366, -1.2100627, -1.1973529, -1.2285349, -1.2464607, -1.2099853, -1.1772656, -1.2059991, -1.2568479, -1.2299576, -1.2446818, -1.2179992, -1.2227559, -1.2428329, -1.2282722, -1.2291179, -1.2250121, -1.1941257, -1.2646124, -1.2930989, -1.2459786, -1.2210102, -1.2437837, -1.2074778, -1.1797614, -1.2290239, -1.2657065, -1.1982684, -1.1881037, -1.1975398, -1.2394519, -1.3658106, -1.3022501, -1.2326434, -1.2599473, -1.2875497, -1.2428045, -1.3021882, -1.23421, -1.261133, -1.2746279, -1.2166929, -1.2458234, -1.3023565, -1.2097208, -1.1510963, -1.2252507, -1.2317386, -1.2866058, -1.2518303, -1.247999, -1.3914182, -1.2559254, -1.242259, -1.2719853, -1.2578516, -1.2728255, -1.2389116, -1.3124449, -1.2947998, -1.2815633, -1.3034062, -1.2868073, -1.2390041, -1.2565131, -1.2441306, -1.2997942, -1.3112662, -1.1932938, -1.3050005, -1.3186498, -1.2654922, -1.2641015, -1.2810142, -1.3016133, -1.3011007, -1.2665656, -1.3130953, -1.3395185, -1.2940967, -1.2932308, -1.2651663, -1.3285673, -1.3405418, -1.3548908, -1.333677, -1.3102355, -1.280082, -1.2687323, -1.2976418, -1.3579073, -1.3100691, -1.2556341, -1.3838978, -1.354938, -1.3377068, -1.262564, -1.3597658, -1.2997699, -1.3690805, -1.2992828, -1.3006446, -1.2965343, -1.3767834, -1.2994742, -1.3757687, -1.2454767, -1.3008499, -1.300313, -1.3076794, -1.3121359, -1.3298857, -1.3104036, -1.2513256, -1.3011396, -1.3521414, -1.3234918, -1.3191981, -1.3756294, -1.3664196, -1.3272467, -1.3594944, -1.360981, -1.3405423, -1.3971617, -1.3516309, -1.3619325, -1.3518128, -1.3792064, -1.3796477, -1.381871, -1.3420272, -1.2588611, -1.3484211, -1.3584404, -1.3000133, -1.3131607, -1.3607266, -1.3757668, -1.4051454, -1.3252032, -1.377383, -1.3456674, -1.3637414, -1.4316826, -1.3414345, -1.2670603, -1.2880785, -1.3796933, -1.3020461, -1.4275239, -1.3355496, -1.3465989, -1.3652227, -1.3536832, -1.393744, -1.3781104, -1.3536873, -1.3771534, -1.3196793, -1.4214392, -1.3443172, -1.3129842, -1.3135438, -1.3485005, -1.3698869, -1.3788626, -1.4207537, -1.3275163, -1.3489454, -1.4044852, -1.4406924, -1.3644326, -1.4057779, -1.328538, -1.3948317, -1.2778745, -1.3819041, -1.3792312, -1.4084094, -1.3578303, -1.3596334, -1.2965777, -1.397603, -1.336184, -1.4127092, -1.4103765, -1.4032106, -1.3811054, -1.3532901, -1.3267393, -1.3444548, -1.3583822, -1.3884156, -1.4118729, -1.4065166, -1.4216835, -1.4797506, -1.3445199, -1.434164, -1.4121475, -1.3519022, -1.4019911, -1.3988867, -1.3640685, -1.4136872, -1.4273355, -1.4156699, -1.3907044, -1.3355591, -1.3601766, -1.4115436, -1.3615422, -1.4191024, -1.3573098, -1.4774747, -1.3958247, -1.3349502, -1.438617, -0.9151059, -0.90123445, -0.8304021, -0.9348811, -0.95057803, -0.9093251, -0.9462182, -0.8654985, -0.9270285, -0.8712228, -0.880262, -0.8391368, -0.93520063, -0.9376655, -0.8755072, -0.9144932, -0.9117437, -0.9452103, -0.928477, -0.8929283, -0.8672593, -0.8807791, -0.9642555, -0.88294643, -0.9438577, -0.88519335, -0.8865682, -0.840289, -0.9216035, -0.8800307, -0.859212, -0.90602237, -0.990066, -0.89740366, -0.9345184, -0.86580914, -0.8577555, -0.95371467, -0.8862578, -1.0018735, -0.89941216, -1.004498, -0.95391554, -0.8775893, -0.85889226, -0.8974488, -0.8671354, -0.8994013, -0.9121523, -0.95202917, -0.90624887, -0.9587839, -0.90111357, -0.9616665, -0.93621653, -0.89934224, -0.913482, -0.9771411, -0.91210705, -0.9504363, -0.98783034, -0.90725344, -1.0227158, -0.96316904, -0.9610005, -0.9309821, -0.87072486, -0.8635101, -0.8605553, -0.92959255, -0.9294001, -0.9450465, -0.9868855, -0.9118438, -0.92036897, -0.9571803, -0.9224737, -0.91837394, -0.9284717, -0.8587194, -0.9244669, -0.8653798, -0.95347565, -0.84165704, -0.9172484, -0.9313354, -0.9606249, -0.97641367, -0.92209375, -0.994687, -0.96764773, -0.9429979, -0.88143665, -0.862873, -0.9621473, -0.94786566, -0.89094275, -0.98326176, -0.9805507, -0.98131305, -0.92638594, -0.9025408, -0.86115247, -0.9116835, -0.92485034, -0.9218849, -0.92953426, -0.9443882, -0.933874, -0.9813809, -0.86889714, -0.90760463, -0.8598868, -0.8825788, -0.8621432, -0.90823716, -0.97226113, -0.9935314, -0.905431, -0.9050949, -0.9276367, -1.0009484, -0.8845646, -0.9029805, -0.9227093, -0.9121526, -0.87514883, -0.90882427, -0.9351513, -0.8809131, -0.96969646, -0.9329311, -0.80202824, -1.0012362, -0.97046083, -1.0122907, -0.9372177, -0.89962983, -0.8950556, -0.9240162, -0.90533906, -0.9328944, -0.84921736, -0.9420132, -1.0097017, -0.92936707, -0.8967404, -0.93667215, -0.9438508, -0.9317401, -0.90278846, -0.9371282, -0.9113099, -0.9690282, -0.8914217, -0.87952226, -0.8988871, -0.8910386, -0.9251862, -0.9233176, -0.9382666, -0.9003864, -0.89786714, -0.9102536, -0.95119613, -0.905646, -0.9572466, -0.9291054, -0.9580433, -0.9678876, -0.94367236, -0.8919523, -0.91052693, -0.90260524, -0.877246, -0.9494932, -0.9336526, -0.9345077, -0.86579186, -0.98348457, -0.93635947, -0.89393467, -1.0520737, -0.9082951, -0.94235677, -0.9211122, -0.96932644, -0.93812543, -0.9088256, -0.958258, -0.880722, -0.9051384, -0.90057474, -0.95281225, -0.996193, -0.9244569, -0.88301426, -0.9476238, -0.95714873, -0.87529415, -1.0234597, -0.978795, -0.9435951, -0.8543127, -0.9008426, -0.9403685, -0.8666318, -0.95618457, -0.8927333, -0.93685037, -0.9140318, -0.95780784, -0.91585594, -0.9416935, -0.8493325, -0.97991496, -0.89419335, -0.90361685, -1.0170202, -0.93498814, -0.9512461, -0.9356672, -0.8774124, -0.8831385, -0.954881, -0.8717478, -0.9639421, -0.9548139, -1.0312979, -0.9272589, -0.92405456, -0.8744213, -0.97089356, -0.9185642, -0.9469852, -0.96636456, -0.878943, -0.9628896, -0.90346104, -0.9698686, -0.8903117, -0.90682954, -0.93550986, -0.9349082, -0.9413776, -0.99884623, -0.9478894, -0.8827968, -0.91015667, -0.95966643, -0.9462492, -0.9402389, -0.9302007, -0.9526848, -1.0003264, -0.9332203, -0.91937685, -0.98410505, -0.9505213, -0.8976172, -0.93058306, -0.8982349, -0.87739044, -0.94611794, -0.9575164, -1.0138266, -0.9233554, -0.93695575, -0.9062099, -0.92526215, -0.9508031, -0.87579936, -0.8900897, -0.9837521, -0.910224, -0.96167916, -0.90832317, -0.9358009, -0.86038214, -0.9187552, -0.9359376, -0.92452866, -0.9120041, -0.91664094, -0.922755, -0.9525004, -0.9022446, -0.9825359, -0.8696858, -0.89452887, -0.88924557, -1.0334618, -0.90322566, -0.8995642, -0.94372374, -0.959892, -0.9381011, -0.955242, -0.9496822, -0.9220334, -0.8705315, -0.98159665, -0.9626009, -0.92350155, -0.9053994, -0.8221895, -0.8116489, -0.8452144, -0.9462802, -0.9107648, -0.9174916, -0.92869514, -0.95705277, -0.9277071, -0.94744307, -0.9284449, -0.87300885, -0.9066369, -0.95401543, -0.8942761, -0.8979376, -0.9193587, -0.94332224, -0.87844414, -0.8799271, -0.90603787, -0.8753488, -0.9344862, -0.90019506, -0.8955304, -0.9168329, -0.96937054, -0.99193984, -0.95625705, -0.9694323, -0.9800293, -0.96618, -0.94683915, -0.9036818, -0.9773349, -0.9327964, -0.8927611, -0.8602032, -0.9923976, -0.9812514, -0.87678975, -0.90077055, -0.98371667, -0.8883551, -0.91447884, -0.95543915, -0.8847514, -0.9428641, -0.8892887, -0.89692205, -0.856028, -0.95005554, -0.9557677, -0.85231835, -0.89993775, -0.8233919, -0.86656183, -0.9180381, -0.89488965, -0.9862624, -0.9149603, -0.8971264, -0.9095171, -0.85409665, -0.8964533, -0.88362175, -0.9188182, -0.9094904, -0.88460857, -0.8944267, -0.9493316, -0.9414361, -0.8717539, -0.9281096, -0.88179743, -0.9488395, -0.9225295, -0.8927031, -0.9009833, -0.91943973, -0.88279456, -0.9090525, -0.9263118, -0.8097922, -0.8275998, -0.8742389, -0.87716705, -0.8406864, -0.94231135, -0.9645719, -0.9065815, -0.86509734, -0.90866715, -0.8873263, -0.92493755, -0.9499479, -0.8959956, -0.8631502, -0.9106124, -0.8092099, -0.88167197, -0.916279, -0.8941034, -0.84312123, -0.92049557, -0.8274533, -0.8885431, -0.8417319, -0.8560992, -0.91172403, -0.9574699, -0.91853327, -0.8163367, -0.9069267, -0.88305396, -0.98712224, -0.9334323, -0.8995778, -0.8672847, -0.8941595, -0.8857329, -0.95601624, -0.90181625, -0.8519868, -0.8120076, -0.8410035, -0.8857543, -0.82267743, -0.9278171, -0.87566453, -0.8952152, -0.87196046, -0.8968399, -0.89495796, -0.8509218, -0.87465924, -0.9118008, -0.9170145, -0.81735, -0.9086811, -0.83286554, -0.8917754, -0.8797155, -0.87538445, -0.8979339, -0.8980102, -0.827618, -0.89304465, -0.86939603, -0.89984447, -0.77125674, -0.8326331, -0.89025265, -0.9529399, -0.8923071, -0.8203288, -0.91511136, -0.88445413, -0.8495473, -0.8338395, -0.809287, -0.86463183, -0.9093786, -0.89814335, -0.850696, -0.8995482, -0.87624216, -0.89005566, -0.8411434, -0.88400775, -0.92092544, -0.8794549, -0.91153187, -0.8930525, -0.78439736, -0.9210672, -0.8254804, -0.8589601, -0.86189836, -0.9176102, -0.83910507, -0.86084396, -0.8343709, -0.8944809, -0.87697375, -0.90966994, -0.9223416, -0.9136823, -0.86585265, -0.83747834, -0.867196, -0.897308, -0.811588, -0.8882329, -0.8628836, -0.8580878, -0.8570295, -0.91828173, -0.8168935, -0.88110965, -0.81656456, -0.8398889, -0.8897428, -0.8116847, -0.8911454, -0.7861896, -0.9105627, -0.84338856, -0.894661, -0.879112, -0.9516309, -0.7368004, -0.90721434, -0.94457597, -0.86807054, -0.86543816, -0.8904266, -0.9372843, -0.8609138, -0.8645312, -0.96556205, -0.886163, -0.8529267, -0.881733, -0.9316929, -0.8638692, -0.8734245, -0.8321442, -0.85748786, -0.92559433, -0.90146285, -0.9155273, -0.8807873, -0.8994488, -0.8267997, -0.968049, -0.87871295, -0.9111615, -0.89108306, -0.8860645, -0.8955907, -0.92705256, -0.8996375, -0.9862477, -0.9030141, -0.8818411, -0.9107714, -0.9633785, -0.8779083, -0.92856055, -0.9621071, -0.9807095, -0.94842345, -0.95554847, -0.92361337, -0.8860583, -0.88941056, -0.9649883, -0.8766853, -0.9390554, -0.9222323, -0.9470157, -0.9192999, -0.9022623, -0.93895453, -0.93932325, -0.96785027, -0.97948116, -0.9028188, -0.8777898, -0.9698786, -0.9722797, -0.9366041, -0.93567914, -0.9520411, -1.0136831, -0.9471447, -0.9273496, -0.9980144, -1.0130584, -0.9453276, -0.94539076, -1.0093412, -0.994852, -0.9736609, -0.94434565, -0.9678778, -1.0170925, -1.007642, -0.95612377, -0.88148457, -0.9956755, -1.0575104, -0.93418103, -0.985974, -0.94318885, -0.8751465, -0.95499843, -1.0444713, -0.9436807, -0.9908951, -0.96904606, -1.0002973, -0.96048063, -0.9435155, -0.95855826, -1.0019763, -1.0201898, -0.9505865, -1.0097873, -1.010771, -0.96732634, -0.96725744, -1.0513022, -1.0120211, -1.0109019, -1.0842619, -0.98686296, -0.99397486, -0.9560334, -1.0168705, -1.015646, -1.0208268, -1.0238597, -0.9777704, -1.0600426, -1.0681276, -0.9897072, -0.96665853, -1.063904, -1.038327, -0.97174984, -0.9291615, -1.0083487, -0.96469027, -0.99231905, -0.91503936, -1.1052728, -1.0189271, -1.087321, -1.0094101, -1.0358336, -1.043267, -1.0114696, -0.9468213, -0.9628491, -1.0423789, -1.0294292, -0.970998, -1.088268, -1.0313601, -1.0789828, -1.1330829, -1.0503159, -1.09408, -1.0404737, -1.0326724, -1.032872, -1.0869534, -1.016123, -1.062995, -1.0564992, -1.0817344, -1.0985413, -1.0413089, -1.0747821, -1.0705397, -1.0865433, -1.0574591, -0.97271615, -1.0475655, -1.0244527, -0.99327034, -1.0534022, -1.0191181, -1.0212965, -1.0136821, -1.1814482, -1.0816398, -1.089952, -1.0502298, -1.0350122, -1.0091903, -1.0327861, -1.1532578, -1.0806832, -1.0566893, -1.0881114, -1.009321, -1.081717, -1.0383985, -0.986667, -1.0696247, -1.0979137, -1.0666993, -1.1591539, -1.0325224, -1.0850844, -1.0702779, -1.029459, -1.116113, -1.0816412, -1.1278749, -1.0256925, -1.1557581, -1.1178827, -1.05792, -1.1550131, -1.1380639, -1.1555536, -1.0585113, -1.1142719, -1.118743, -1.1107671, -1.1112046, -1.1125107, -1.141556, -1.0514007, -1.126559, -1.1585848, -1.0863259, -1.1178939, -1.0086536, -1.1238465, -1.1703749, -1.1224773, -1.0815341, -1.114615, -1.1879537, -1.159584, -1.103082, -1.1450202, -1.1362586, -1.1136143, -1.1287758, -1.1507456, -1.2263224, -1.0813262, -1.0890174, -1.1619227, -1.1279895, -1.0578654, -1.0979471, -1.1870744, -1.1306648, -1.1301084, -1.142668, -1.1797013, -1.2069206, -1.1707633, -1.1239841, -1.1443083, -1.175441, -1.0798252, -1.1657479, -1.081943, -1.2374578, -1.1298265, -1.2055397, -1.1256659, -1.1820943, -1.2117662, -1.1429703, -1.141623, -1.1648366, -1.1197572, -1.2267494, -1.1485744, -1.1684093, -1.1731064, -1.1647675, -1.1969559, -1.2059274, -1.1974847, -1.1630197, -1.1396286, -1.2177961, -1.1317348, -1.1492271, -1.233588, -1.1831038, -1.1957498, -1.1204357, -1.123945, -1.1785231, -1.2012818, -1.1120615, -1.1836667, -1.110445, -1.1723528, -1.1238911, -1.139554, -1.1281044, -1.1647818, -1.2335145, -1.192929, -1.1829474, -1.2498515, -1.1899018, -1.2241457, -1.2046306, -1.2407999, -1.2274501, -1.1457176, -1.2121847, -1.1610773, -1.1942744, -1.2411706, -1.186173, -1.2348287, -1.2732112, -1.2366214, -1.1948175, -1.2393734, -1.1788764, -1.216372, -1.2375679, -1.2943013, -1.1767571, -1.1960607, -1.2819583, -1.1776485, -1.2107649, -1.2435935, -1.1857729, -1.232702, -1.2527902, -1.2016892, -1.2876778, -1.2197969, -1.2351811, -1.1723769, -1.2560484, -1.2710233, -1.1972468, -1.2382863, -1.3022151, -1.1477811, -1.2607906, -1.2233772, -1.3154387, -1.2613835, -1.2528653, -1.2495582, -1.2255781, -1.2863257, -1.2938836, -1.1978312, -1.2504866, -1.2194226, -1.1938128, -1.2279274, -1.2861402, -1.2903621, -1.1519551, -1.255394, -1.2338035, -1.31851, -1.209336, -1.259429, -1.2891772, -1.198106, -1.3265314, -1.2620049, -1.3107028, -1.2211087, -1.292839, -1.2400064, -1.2547836, -1.3710356, -1.3244205, -1.3077147, -1.2739978, -1.2396863, -1.3350048, -1.3180914, -1.2769241, -1.3148735, -1.2195814, -1.305171, -1.2468827, -1.378856, -1.2590747, -1.2511022, -1.2949176, -1.2801063, -1.2578108, -1.2853327, -1.2056239, -1.2235427, -1.264353, -1.2652688, -1.255758, -1.2606359, -1.2666707, -1.3447073, -1.2564118, -1.3072178, -1.306191, -1.2666218, -1.281826, -1.3295257, -1.2740986, -1.3473382, -1.3050652, -1.309479, -1.2357054, -1.2568803, -1.3261733, -1.2455828, -1.2639492, -1.2786529, -1.3169343, -1.2359567, -1.3298695, -1.2867644, -1.3072114, -1.2766314, -1.378809, -1.2235241, -1.2865639, -1.3168914, -1.3131399, -1.3323381, -1.3275847, -1.3152046, -1.3539603, -1.3375816, -1.3124163, -1.3551962, -1.3539019, -1.3143036, -1.3384459, -1.2830565, -1.2972198, -1.3135321, -1.2989955, -1.3247006, -1.3712261, -1.3079488, -1.2910302, -1.2956061, -1.2760668, -1.391015, -1.3491457, -1.3713999, -1.2735584, -1.373934, -1.3663216, -1.3326509, -1.3347132, -1.3278861, -1.269741, -1.4060297, -1.3886602, -1.347672, -1.3224764, -1.4084527, -1.3811159, -1.2868452, -1.3953493, -1.4074104, -1.3779206, -1.3866723, -1.3342805, -1.3348207, -1.3101952, -1.353189, -1.3638391, -1.4148581, -1.3995426, -1.3454196, -1.3770683, -1.3700082, -1.3416855, -1.3367896, -1.381645, -1.2796252, -1.353277, -1.3426623, -1.4030428, -1.3583496, -1.4052908, -1.368756, -1.3043323, -1.3995588, -1.4393194, -1.3389325, -1.3273883, -1.2997577, -1.3678567, -1.380353, -1.3453584, -1.3446741, -1.3588734, -0.7150063, -0.69977516, -0.6199054, -0.6806626, -0.6710517, -0.702794, -0.6717676, -0.62784106, -0.7344211, -0.71496505, -0.65409714, -0.6424997, -0.7731013, -0.6876916, -0.65935636, -0.75820196, -0.66535556, -0.67871374, -0.6847839, -0.73135394, -0.6828614, -0.71140164, -0.70655733, -0.7227506, -0.6366273, -0.7765561, -0.69628996, -0.6176364, -0.7741088, -0.74914217, -0.73096067, -0.7689714, -0.6766475, -0.72184986, -0.7081472, -0.7562483, -0.7294243, -0.6838936, -0.69356364, -0.77393913, -0.73801064, -0.78255045, -0.7641626, -0.72762597, -0.77492875, -0.7707302, -0.6955819, -0.7286075, -0.74290663, -0.73297006, -0.70979255, -0.74220365, -0.78655535, -0.7887371, -0.7319742, -0.74797076, -0.79692006, -0.7393135, -0.7880356, -0.73851407, -0.81286734, -0.73159975, -0.68870825, -0.71470433, -0.8188663, -0.80781776, -0.7174146, -0.7878863, -0.8320464, -0.7393809, -0.7024506, -0.7530126, -0.73585814, -0.849443, -0.8448289, -0.7389479, -0.7578921, -0.7487755, -0.79236895, -0.7477813, -0.7334707, -0.8293521, -0.8054114, -0.74796194, -0.7628273, -0.86739093, -0.83738786, -0.8594453, -0.704256, -0.81805456, -0.77033037, -0.84096795, -0.78832215, -0.7394962, -0.7967955, -0.8140824, -0.80543417, -0.7911462, -0.74519426, -0.7658929, -0.8312244, -0.8491302, -0.7311977, -0.7894228, -0.7771102, -0.75825155, -0.8073666, -0.77948207, -0.83271277, -0.77329123, -0.86165, -0.77406377, -0.8852546, -0.8055152, -0.7891552, -0.82090324, -0.87320894, -0.7853777, -0.8734339, -0.8631588, -0.8366056, -0.8233927, -0.83908695, -0.84838736, -0.82283086, -0.8567003, -0.87566024, -0.8960665, -0.86215824, -0.913838, -0.83499074, -0.7332064, -0.83017963, -0.7588022, -0.85572696, -0.9572112, -0.8948094, -0.854531, -0.81451184, -0.8078713, -0.8308936, -0.92731756, -0.9012211, -0.9053231, -0.900553, -0.9463976, -0.9718365, -0.9045679, -0.83705896, -0.86894643, -0.9522762, -0.91063994, -0.906221, -0.9520703, -0.8665673, -0.96929914, -0.90636045, -0.92954504, -0.89560497, -0.8719977, -0.89847594, -0.9617713, -0.9188663, -0.85168713, -0.86956155, -0.96822375, -0.9009237, -0.9649164, -0.9201587, -0.8956744, -0.94390625, -0.91160184, -0.9237257, -0.8755662, -0.90410775, -0.94712025, -0.8640031, -0.9987213, -0.91064984, -0.9431388, -0.95396286, -0.92829674, -0.87899935, -0.93970734, -1.0244529, -0.9599003, -0.9597332, -1.0244169, -0.93805844, -0.97950906, -0.93562585, -0.87888986, -0.9125872, -0.9957003, -1.022999, -0.9331139, -1.0383508, -0.9715561, -0.94295925, -0.9512544, -0.99081224, -0.9009988, -1.0809066, -1.0204804, -1.0072658, -0.9937412, -0.9804296, -0.9558111, -0.9442267, -0.9973485, -1.0291257, -0.96177727, -1.0665462, -0.96362597, -0.96119446, -1.12433, -0.9612866, -1.0476444, -1.0311635, -1.0165076, -0.9536229, -0.9671106, -0.92815167, -0.9941327, -1.0314565, -0.93263406, -0.9574148, -0.98414606, -0.9523074, -0.92644733, -1.0153608, -1.0358181, -0.96414226, -1.015775, -1.0855622, -1.058676, -1.0132537, -1.0602183, -1.0873418, -0.98991877, -0.9815646, -1.0901966, -1.0366626, -1.0345759, -1.0295477, -0.9770326, -1.0149224, -1.0680981, -1.0081687, -1.0161989, -1.023082, -1.010174, -0.9819769, -1.0777655, -1.0919068, -1.007477, -1.050812, -1.1103094, -1.0855873, -1.0106943, -0.9957165, -1.0734415, -1.062012, -1.0003138, -1.020798, -1.0952315, -1.069468, -1.0748031, -0.9708219, -1.0360646, -1.1485114, -1.0320168, -1.0517948, -1.1104484, -1.0484588, -1.0366368, -1.0609343, -1.0082796, -1.0242827, -1.069263, -1.0482135, -1.0724223, -1.0786874, -1.0777156, -1.1565697, -1.1646042, -1.1890595, -1.1148605, -1.1552291, -1.1433713, -1.1209114, -1.1076336, -1.0872087, -1.1288753, -1.1180573, -1.194205, -1.1513922, -1.1379316, -1.1292267, -1.062243, -1.1194334, -1.1363277, -1.2246468, -1.1369472, -1.1139221, -1.0973566, -1.0983727, -1.227745, -1.1981149, -1.1934597, -1.152318, -1.2347279, -1.1417205, -1.0894845, -1.1664219, -1.1406479, -1.086513, -1.2511258, -1.1498158, -1.1708698, -1.220047, -1.1412468, -1.1434014, -1.1805639, -1.2014711, -1.176883, -1.1624434, -1.1319375, -1.2551684, -1.1474786, -1.1612887, -1.1722715, -1.1671207, -1.199965, -1.2236943, -1.1488266, -1.2027345, -1.1939559, -1.1985261, -1.1897397, -1.165813, -1.1848056, -1.1633303, -1.2268045, -1.2361882, -1.2016323, -1.1884668, -1.2340107, -1.2168922, -1.2013531, -1.2628579, -1.2960162, -1.2131145, -1.2015071, -1.2026248, -1.1782198, -1.2402575, -1.1972713, -1.1788666, -1.1743371, -1.2245808, -1.1934626, -1.2482953, -1.1823487, -1.1848714, -1.20668, -1.243129, -1.2413824, -1.2349687, -1.2123778, -1.2088485, -1.2998977, -1.1800032, -1.1810763, -1.2067208, -1.2455392, -1.198142, -1.227108, -1.2532773, -1.2275472, -1.2445474, -1.2913866, -1.210072, -1.2764826, -1.3383441, -1.3151493, -1.2437935, -1.2901747, -1.2040722, -1.2992909, -1.2643611, -1.2855759, -1.3054502, -1.2412415, -1.2531228, -1.2661414, -1.2939081, -1.249449, -1.2484667, -1.2952089, -1.2494416, -1.2493289, -1.2430606, -1.255563, -1.255974, -1.3396716, -1.250634, -1.283587, -1.3211026, -1.2682602, -1.3622267, -1.3034365, -1.3255985, -1.2767367, -1.301409, -1.3402836, -1.317002, -1.3188884, -1.3537006, -1.3475792, -1.3445129, -1.2991796, -1.3273666, -1.276144, -1.357554, -1.2647319, -1.3058486, -1.3446488, -1.3402095, -1.336041, -1.3413186, -1.2775192, -1.3485978, -1.3706393, -1.2804289, -1.3365588, -1.285491, -1.3423467, -1.3070514, -1.378876, -1.3449354, -1.3270185, -1.3679459, -1.3298955, -1.3663232, -1.3681159, -1.33476, -1.304858, -1.3818834, -1.2975221, -1.3807092, -1.3425767, -1.4302669, -1.3542392, -1.3584659, -1.3430283, -1.342133, -1.2900584, -1.4001191, -1.4377067, -1.336405, -1.3641241, -1.4304631, -1.3811557, -1.3614559, -1.4242034, -1.336443, -1.379066, -1.2940826, -1.3563094, -1.4028664, -1.3507626, -1.4392152, -1.2500963, -1.4179404, -1.3797443, -1.4116125, -1.4490926, -1.4126291, -1.4151654, -1.3905175, -1.3764548, -1.3114355, -1.4095747, -1.3548126, -1.4090726, -1.3943017, -1.3904903, -1.4141326, -1.3601725, -1.4300957, -1.3845973, -1.4246335, -1.4574072, -1.375273, -1.4808936, -1.4030252, -1.4354131, -1.4461787, -1.387908, -0.6380127, -0.72816104, -0.6701084, -0.66717064, -0.617093, -0.6499155, -0.57322615, -0.6875132, -0.6512783, -0.62350833, -0.6275214, -0.6415929, -0.71243626, -0.67005473, -0.663256, -0.73953784, -0.6983403, -0.68362814, -0.6440489, -0.6635992, -0.6954307, -0.6365538, -0.65689, -0.6906584, -0.6275712, -0.69837934, -0.5896686, -0.62905216, -0.6830979, -0.72935945, -0.6658754, -0.6837389, -0.64745873, -0.62941784, -0.68152577, -0.6845531, -0.64622694, -0.6988335, -0.6619923, -0.64013076, -0.71607685, -0.7473164, -0.69758564, -0.6573289, -0.6817737, -0.61247754, -0.66641325, -0.6659761, -0.7252165, -0.62187827, -0.5773267, -0.6758555, -0.65176934, -0.6655064, -0.66602844, -0.5846021, -0.6613203, -0.6961271, -0.6616058, -0.7758475, -0.68798816, -0.75266916, -0.66087526, -0.6543397, -0.7192353, -0.67465335, -0.7063469, -0.7363071, -0.68538034, -0.6457904, -0.6381616, -0.6362886, -0.66011846, -0.6840023, -0.7235227, -0.6973048, -0.6669145, -0.6771539, -0.6572966, -0.6390245, -0.6542813, -0.6367121, -0.6458035, -0.70526606, -0.68853843, -0.69264215, -0.7059236, -0.6690157, -0.71080834, -0.6736559, -0.69209176, -0.67267364, -0.7157307, -0.7220473, -0.6780925, -0.68279594, -0.6740214, -0.66777664, -0.6555639, -0.69797975, -0.65611756, -0.76579547, -0.64373344, -0.6716478, -0.6420117, -0.6928123, -0.6593446, -0.7510565, -0.68683213, -0.7172801, -0.6823922, -0.6284523, -0.6362002, -0.6403305, -0.66929895, -0.69651514, -0.69135773, -0.73089045, -0.6293538, -0.69580394, -0.61059326, -0.7424249, -0.65443534, -0.6625177, -0.66963434, -0.60622066, -0.625701, -0.69602066, -0.6171704, -0.6565059, -0.65471524, -0.67941123, -0.6551271, -0.68215185, -0.67567587, -0.6397628, -0.693613, -0.653246, -0.70510507, -0.659769, -0.6498442, -0.68236035, -0.74178237, -0.7131455, -0.6929664, -0.72116965, -0.7503287, -0.7246851, -0.6417715, -0.71250886, -0.6075277, -0.6295251, -0.73890454, -0.67758304, -0.71670514, -0.7088788, -0.68320495, -0.69839716, -0.7010928, -0.6207149, -0.7094422, -0.6553875, -0.7110264, -0.59045833, -0.6600689, -0.6359654, -0.66550034, -0.73602104, -0.67701447, -0.69046885, -0.6855683, -0.7508572, -0.6550345, -0.70727175, -0.65124196, -0.717717, -0.6750246, -0.65262276, -0.61994344, -0.6427166, -0.66673636, -0.65785426, -0.6797282, -0.65482736, -0.67686534, -0.72274333, -0.6401255, -0.6692584, -0.7129616, -0.6175035, -0.71987206, -0.72192746, -0.6177407, -0.716975, -0.6611472, -0.65338176, -0.70596427, -0.6925937, -0.6422234, -0.6839686, -0.65392154, -0.7015136, -0.68356806, -0.64098555, -0.6345042, -0.74077874, -0.686789, -0.7182126, -0.6102563, -0.72923344, -0.72082096, -0.63624007, -0.6342034, -0.674425, -0.65258783, -0.6664726, -0.62198573, -0.6201406, -0.69114363, -0.7020808, -0.6456806, -0.6027185, -0.6445984, -0.68175226, -0.6700694, -0.6242518, -0.6981336, -0.6352486, -0.6428073, -0.6507195, -0.6420049, -0.6805243, -0.70011085, -0.6482193, -0.7061979, -0.75684553, -0.6701399, -0.65256655, -0.6430218, -0.7569905, -0.6608651, -0.67896146, -0.6204589, -0.706596, -0.66944325, -0.6335297, -0.6459432, -0.6111952, -0.72941, -0.73177856, -0.7047817, -0.6279709, -0.6728913, -0.6963126, -0.67496127, -0.63573015, -0.6842889, -0.677973, -0.7442088, -0.7081205, -0.73182815, -0.67967534, -0.65526193, -0.61677545, -0.70804834, -0.68351686, -0.619981, -0.61052054, -0.67189926, -0.70806915, -0.6717729, -0.6760791, -0.6885938, -0.67131066, -0.6912568, -0.7087559, -0.6571294, -0.7036846, -0.6466866, -0.7283992, -0.62267053, -0.6357855, -0.66793746, -0.6770517, -0.7302111, -0.71914965, -0.72041214, -0.6832403, -0.71651286, -0.61357516, -0.66042817, -0.6664339, -0.659965, -0.65200824, -0.6432697, -0.71156377, -0.6834743, -0.6606026, -0.6697935, -0.62224275, -0.70516926, -0.6453002, -0.6524132, -0.6728144, -0.7035083, -0.685376, -0.6641849, -0.6366821, -0.65958464, -0.6966506, -0.77991265, -0.650685, -0.662989, -0.7135278, -0.66062254, -0.6275942, -0.7117175, -0.61486226, -0.7102722, -0.6564721, -0.64413375, -0.7079236, -0.68408334, -0.6157545, -0.73335767, -0.63708067, -0.6343624, -0.6491976, -0.6068903, -0.6399068, -0.7123874, -0.6078926, -0.64139813, -0.6659208, -0.6781017, -0.67177075, -0.67054945, -0.7337504, -0.70145506, -0.6864908, -0.61986643, -0.672714, -0.64055216, -0.6814263, -0.70193166, -0.64746207, -0.6452216, -0.6784769, -0.6068615, -0.6817476, -0.6781022, -0.6075817, -0.66564137, -0.61275464, -0.71382636, -0.6372902, -0.6172204, -0.6747274, -0.5957357, -0.69663864, -0.6959782, -0.61526364, -0.6563402, -0.6354682, -0.6461886, -0.63323987, -0.6412659, -0.73597604, -0.674041, -0.66276526, -0.59043443, -0.6360947, -0.6426096, -0.6661708, -0.6467225, -0.668299, -0.6830666, -0.6312226, -0.6520341, -0.7392911, -0.64206314, -0.6152027, -0.63259304, -0.6085915, -0.6750788, -0.59638834, -0.60237586, -0.6255173, -0.6353978, -0.6923823, -0.6596349, -0.6578868, -0.6770531, -0.6217715, -0.61545885, -0.5853881, -0.6524903, -0.61870617, -0.65729946, -0.65899855, -0.6335146, -0.62195474, -0.6553088, -0.6728092, -0.68097126, -0.6991679, -0.65836066, -0.6734476, -0.6264939, -0.69267774, -0.6639412, -0.681232, -0.5757899, -0.68854123, -0.6726812, -0.6775618, -0.65474844, -0.71637803, -0.61081845, -0.61133575, -0.6651283, -0.64729875, -0.68459356, -0.61991614, -0.5651786, -0.69619876, -0.6708872, -0.6520849, -0.6332998, -0.69510454, -0.6358302, -0.5817625, -0.64680624, -0.61885756, -0.63377684, -0.61238027, -0.6529394, -0.5425845, -0.6304582, -0.6120971, -0.625282, -0.6159297, -0.5789488, -0.6483557, -0.6055831, -0.606404, -0.5952034, -0.6466411, -0.6233648, -0.5540885, -0.672172, -0.63932365, -0.631411, -0.58178824, -0.53764075, -0.682803, -0.60705566, -0.603664, -0.6818487, -0.60396636, -0.6251112, -0.6557897, -0.61898375, -0.6061646, -0.7255507, -0.5556732, -0.6195702, -0.5753722, -0.60888976, -0.6393248, -0.60209906, -0.6052215, -0.5577606, -0.63641435, -0.61187804, -0.5934909, -0.6538959, -0.58515006, -0.58988744, -0.6095186, -0.6008269, -0.66607755, -0.5655176, -0.6538095, -0.679184, -0.67454153, -0.6548083, -0.57321423, -0.5251997, -0.6386855, -0.5768954, -0.60330534, -0.61721724, -0.64996165, -0.6136918, -0.64438456, -0.675506, -0.5761121, -0.6600807, -0.58338565, -0.6794422, -0.6655048, -0.62961525, -0.64038956, -0.6190353, -0.6072142, -0.6176153, -0.65528685, -0.60845786, -0.6000294, -0.64996916, -0.6749181, -0.5905435, -0.5712771, -0.57958657, -0.5805537, -0.6364183, -0.65697765, -0.6721642, -0.60614324, -0.680387, -0.68393606, -0.63113505, -0.6354419, -0.7134583, -0.74276143, -0.7039668, -0.60253024, -0.68725187, -0.68137795, -0.59953225, -0.70557016, -0.6932437, -0.66173846, -0.6953184, -0.64918983, -0.68683064, -0.668885, -0.7096959, -0.6708172, -0.65951943, -0.6749841, -0.72405475, -0.59753364, -0.6855238, -0.7263291, -0.70717615, -0.73442537, -0.7143435, -0.67798, -0.6864844, -0.6583777, -0.66066724, -0.672453, -0.692612, -0.71017957, -0.80456096, -0.7111236, -0.6994924, -0.7048741, -0.695397, -0.69060594, -0.6161975, -0.7765214, -0.65298635, -0.66699535, -0.78013206, -0.71544766, -0.8400236, -0.72886086, -0.72389346, -0.7914341, -0.75402325, -0.6614009, -0.752322, -0.6889891, -0.7481939, -0.7850709, -0.6883342, -0.6916803, -0.8156614, -0.7029539, -0.7354712, -0.7655067, -0.71809393, -0.7770899, -0.7350524, -0.749205, -0.7365715, -0.85500556, -0.7999787, -0.6551273, -0.7907798, -0.7413324, -0.756152, -0.7954496, -0.73719233, -0.7441594, -0.80748016, -0.75805897, -0.73975044, -0.7162324, -0.76575667, -0.78954417, -0.7709215, -0.78976774, -0.78153664, -0.78108436, -0.7496337, -0.7797088, -0.75219804, -0.76627225, -0.7481006, -0.77174556, -0.8239384, -0.7789535, -0.7770744, -0.8430161, -0.8256412, -0.8229343, -0.86676747, -0.7733732, -0.8803031, -0.7599917, -0.8208613, -0.86621, -0.834887, -0.8023675, -0.79289496, -0.7769248, -0.8487207, -0.86975724, -0.85647327, -0.8452938, -0.7469422, -0.7828056, -0.7642869, -0.81447077, -0.7872433, -0.8880401, -0.81752795, -0.76886666, -0.85438704, -0.8432793, -0.8152714, -0.8598854, -0.81236374, -0.8440476, -0.8322415, -0.8208545, -0.8723596, -0.75782526, -0.89037126, -0.8520631, -0.87564385, -0.80747, -0.84201896, -0.87695205, -0.8764942, -0.8729286, -0.93106323, -0.8345128, -0.8408789, -0.81760806, -0.90606546, -0.91662127, -0.8588844, -0.8304496, -0.9171125, -0.8917888, -0.80598015, -0.8929903, -0.8721941, -0.8617535, -0.8827737, -0.8276959, -0.85729855, -0.9265906, -0.8710919, -0.87096256, -0.85019785, -0.84023446, -0.92993456, -0.83813626, -0.99862987, -0.8270789, -0.88940305, -0.8790496, -0.93720585, -0.94777757, -0.96338993, -0.85050064, -0.8882368, -0.9109679, -0.95919603, -0.9041138, -0.9065632, -0.9876719, -1.0073991, -0.9180564, -0.9068722, -0.9306126, -0.9472498, -0.8252124, -0.93450767, -0.90193725, -0.9097982, -0.83453673, -0.8718559, -1.0079575, -0.9477548, -0.91649044, -0.99428695, -0.9000511, -0.9296903, -0.9181673, -1.0256522, -0.92153203, -0.9765025, -0.987521, -0.9227511, -0.93678516, -0.97544605, -1.0182126, -0.96677274, -0.91288716, -1.0009522, -0.9387545, -1.0228834, -0.9123178, -0.9840229, -0.9899097, -0.93982667, -0.93094766, -0.98372716, -0.90072256, -1.027782, -0.8955197, -0.9227672, -0.9932948, -0.9650747, -0.97050136, -0.9940354, -1.1005151, -0.9472459, -0.9415229, -1.0097923, -1.0914674, -0.97680706, -1.035399, -1.036191, -0.9201637, -1.0722544, -0.9999631, -1.0202396, -0.9988684, -0.974659, -0.9076523, -1.0100358, -0.9935096, -1.0105562, -1.0676751, -1.0313287, -0.98568743, -1.0701201, -1.0279803, -1.0766692, -1.0808716, -1.1091595, -1.0086946, -1.0180147, -1.0276029, -1.0694141, -1.0607846, -1.0688908, -1.0431089, -1.0704312, -1.0575979, -1.0400355, -1.1082101, -1.086725, -0.98862725, -1.0182252, -1.0523303, -1.0521309, -1.0939426, -1.0754454, -1.0166113, -1.1001067, -1.1016431, -0.9912482, -1.0317123, -1.0789511, -1.0813417, -1.0505242, -1.0632641, -1.0552516, -1.1525548, -1.040765, -1.1039231, -1.1638603, -1.1223922, -1.0565264, -1.136261, -1.0845246, -1.0814619, -1.0738554, -1.0306144, -1.060725, -1.0908792, -1.0387146, -1.1376331, -1.1540251, -1.0570893, -1.0234401, -1.1484969, -1.1036062, -1.1809673, -1.1395819, -1.1672962, -1.1568868, -1.0372131, -1.1691351, -1.1259832, -1.1712298, -1.0758657, -1.1253917, -1.1131241, -1.0856719, -1.1936467, -1.0969667, -1.1719561, -1.205214, -1.10203, -1.0842357, -1.1575089, -1.1365361, -1.1388252, -1.1389599, -1.1402788, -1.2488863, -1.2054703, -1.1301847, -1.2164199, -1.1489341, -1.1752748, -1.18508, -1.0719287, -1.1058075, -1.1056771, -1.1738627, -1.1776865, -1.1513329, -1.0954087, -1.1680112, -1.1519079, -1.2312012, -1.1258981, -1.2149901, -1.2208691, -1.0876157, -1.1653826, -1.207334, -1.1759748, -1.1273463, -1.1698697, -1.2125926, -1.1725154, -1.260001, -1.2515934, -1.2096655, -1.1925645, -1.1387639, -1.2070198, -1.2217815, -1.1659524, -1.2155292, -1.275142, -1.1584928, -1.2069867, -1.1306353, -1.201103, -1.232918, -1.217334, -1.2517157, -1.1731851, -1.2081041, -1.2195234, -1.1514814, -1.2147224, -1.1556621, -1.2495515, -1.2762322, -1.2609203, -1.1755884, -1.1934617, -1.211267, -1.1598995, -1.2147226, -1.2800186, -1.2195401, -1.1928716, -1.2315996, -1.2591667, -1.2634027, -1.2408946, -1.3132114, -1.2765896, -1.2718036, -1.2445207, -1.3011866, -1.1093569, -1.2830896, -1.2387059, -1.2099853, -1.2721329, -1.3512857, -1.2694192, -1.2579219, -1.2762473, -1.3214924, -1.2578146, -1.263607, -1.253324, -1.2413707, -1.2559035, -1.2426217, -1.2994432, -1.243171, -1.3038087, -1.2845783, -1.3379569, -1.293364, -1.2393858, -1.2501047, -1.3865392, -1.2658739, -1.3183274, -1.3212314, -1.2941637, -1.3155537, -1.362179, -1.2436428, -1.2862735, -1.2700975, -1.2887771, -1.2968903, -1.257129, -1.3366156, -1.2596257, -1.2915065, -1.3279281, -1.3057525, -1.3407726, -1.2817614, -1.287435, -1.3551981, -1.2989988, -1.3579354, -1.35271, -1.3840153, -1.3413832, -1.2677736, -1.3421457, -1.3052676, -1.3574014, -1.3443668, -1.3844349, -1.3562248, -1.344085, -1.3948731, -1.3893337, -1.3272119, -1.3399894, -1.3874106, -1.4052491, -1.3701599, -1.384012, -1.3188574, -1.4814153, -1.3311474, -1.3160582, -1.3713565, -1.3310957, -1.3389606, -1.3284206, -1.3399987, -1.3739457, -1.3158467, -1.3492167, -1.322036, -1.3355904, -1.3128614, -1.3160639, -1.4008543, -1.4219897, -1.3994572, -1.4586232, -1.3809464, -1.4513333, -1.3953125, -1.4466164, -1.4809225, -1.4172192, -1.475985, -1.4234338, -1.3856122, -1.4497406, -1.3919628, -1.3583488, -1.4640934, -1.4110053, -1.4241652, -1.4273312, -1.461117, -1.4014535, -1.3859107, -1.3869636, -1.4041648, -1.4083097, -1.390223, -1.4587474, -1.4001136, -1.495456, -1.423651, -1.4272981, -1.4566598, -1.4441664, -1.377207, -1.4476674, -1.4012866, -1.4648376, -1.4005678, -1.3913774, -1.3898149, -1.4490054, -1.4220881, -1.4352906, -1.3751526, -1.426791, -1.4407501, -1.4820733, -1.4223299, -1.3924799, -1.4457049, -1.3903077, -1.4528954, -1.4475124, -1.392235, -1.4122429, -1.3886607, -1.4212539, -1.4059038, -1.4328587, -1.4139638, -1.402411, -1.488244, -1.4905741, -1.38058, -1.4800317, -1.4124827, -1.3919156, -1.4228911, -1.499505, -1.4289412, -1.4346361, -1.4155273, -1.4725668, -1.4382112, -1.4097397, -1.4175766, -1.3740423, -1.4531345, -1.3968923, -1.4452593, -1.4231634, -1.4459739, -1.4135599, -1.407656, -1.437228, -1.4636259, -1.4681172, -1.4578769, -1.4100575, -1.4510751, -1.404355, -1.4006834, -1.4092197, -1.4218674, -1.3582456, -1.3882039, -1.4649792, -1.4228094, -1.4191701, -1.4188449, -1.3924718, -1.4341319, -1.4838002, -1.4323373, -1.3904212, -1.3547349, -1.3650758, -1.4187994, -1.3942046, -1.3870869, -1.4755282, -1.4060526, -1.4539299, -1.4943695, -1.4123068, -1.4871032, -1.4625235, -1.4121442, -1.4621639, -1.4233363, -1.4002204, -1.4002666, -1.5036142, -1.4489934, -1.4583416, -1.4101343, -1.4658036, -1.4442816, -1.3958848, -1.4212449, -1.4542086, -1.469301, -1.4823873, -1.4511108, -1.4376111, -1.4594898, -1.3994944, -1.4409583, -1.4765365, -1.414434, -1.4373815, -1.4103167, -1.4637282, -1.4821355, -1.4132702, -1.441268, -1.446852, -1.4405403, -1.4270976, -1.392961, -1.3880422, -1.401659, -1.4466715, -1.447854, -1.3853858, -1.4739959, -1.4262426, -1.4402537, -1.4266486, -1.441333, -1.4464471, -1.4562926, -1.4685259, -1.4173107, -1.3740168, -1.3175914, -1.4214201, -1.4241538, -1.4738905, -1.4465408, -1.3710966, -1.4159482, -1.4784427, -1.4702721, -1.4074969, -1.4517386, -1.4188693, -1.4953284, -1.471653, -1.3870924, -1.3714652, -1.4097657, -1.4354601, -1.4375632, -1.4864733, -1.4317794, -1.414156, -1.3594744, -1.4154072, -1.4391811, -1.4433498, -1.4345818, -1.4066241, -1.4206874, -1.4214783, -1.4893155, -1.4572885, -1.4195611, -1.501553, -1.417572, -1.4751623, -1.4395232, -1.4463446, -1.3965993, -1.4618869, -1.3836188, -1.4163747, -1.4001727, -1.367182, -1.3982849, -1.4855626, -1.4074013, -1.4394898, -1.4677522, -1.413357, -1.4501629, -1.4040086, -1.3895016, -1.4388986, -1.4870076, -1.5113487, -1.4175029, -1.3995004, -1.5127017, -1.4866915, -1.4389143, -1.4549265, -1.3978009, -1.3787599, -1.4143562, -1.4235303, -1.4623001, -1.4041007, -1.481467, -1.3851931, -1.4624002, -1.3836131, -1.4511435, -1.3926144, -1.4538352, -1.3722866, -1.4286819, -1.4772909, -1.3643186, -1.47648, -1.3962786, -1.4782927, -1.4781742, -1.3911235, -1.4338663, -1.4167383, -1.4671602, -1.4347808, -1.3818552, -1.451736, -1.4843664, -1.4168918, -1.4474444, -1.4143918, -1.4328544, -1.488689, -1.4839056, -1.494627, -1.4118819, -1.4228873, -1.3496845, -1.4680939, -1.4573846, -1.4099274, -1.4458547, -1.4613514, -1.3658144, -1.4491248, -1.3841588, -1.4076178, -1.4726815, -1.451227, -1.4342306, -1.4047053, -1.4733691, -1.4523997, -1.4430635, -1.4280341, -1.4104946, -1.4330363, -1.4452589, -1.4613621, -1.4356706, -1.3565271, -1.454133, -1.4351583, -1.3828113, -1.3969705, -1.5306883, -1.4880993, -1.408864, -1.4082577, -1.4580703, -1.4015396, -1.4441707, -1.4002149, -1.4941628, -1.4019015, -1.4113724, -1.5178618, -1.3525975, -1.4271944, -1.4848099, -1.4460618, -1.3943923, -1.3832214, -1.3657162, -1.4739263, -1.3917241, -1.3876336, -1.4822836, -1.4568603, -1.4266181, -1.3762133, -1.4498117, -1.3817208, -1.4312737, -1.4347818, -1.4063358, -1.4205024, -1.4749472, -1.4529879, -1.4289939, -1.363508, -1.357574, -1.3481264, -1.3687155, -1.3851597, -1.380053, -1.4717884, -1.4458807, -1.4501088, -1.3923032, -1.4570985, -1.4096804, -1.4137902, -1.3946211, -1.4053142, -1.35485, -1.3484929, -1.4001424, -1.5135424, -1.4600365, -1.4270835, -1.3867784, -1.4586878, -1.4022288, -1.4687638, -1.4742167, -1.4236648, -1.4416757, -1.4262562, -1.3210835, -1.4840786, -1.4245799, -1.4588919, -1.3967779, -1.4213421, -1.3664224, -1.3550603, -1.4231725, -1.455888, -1.4281256, -1.411401, -1.3413973, -1.4112773, -1.4187531, -1.4272532, -1.4730957, -1.3532894, -1.4239621, -1.3912368, -1.5068994, -1.4494414, -1.4107358, -1.3929422, -1.3776126, -1.3924153, -1.4348202, -1.4597423, -1.4198818, -1.419976, -1.4579055, -1.4339294, -1.4001646, -1.3341012, -1.4171593, -1.3923981, -1.3766234, -1.3264785, -1.4082632, -1.3883774, -1.4143004, -1.4229066, -1.3749614, -1.3738217, -1.2854047, -1.3534753, -1.4597583, -1.4524105, -1.3941252, -1.3596377, -1.4315078, -1.3820918, -1.4289863, -1.3758957, -1.4126358, -1.3740201, -1.4230077, -1.3848164, -1.3722441, -1.3608627, -1.3383136, -1.3975384, -1.3884146, -1.4393873, -1.4248724, -1.429327, -1.4342794, -1.4711406, -1.3892057, -1.4660907, -1.4273014, -1.3457305, -1.4576466, -1.3934729, -1.4374108, -1.3440671, -1.3759503, -1.4050999, -1.3994968, -1.5048177, -1.4209304, -1.3364487, -1.4217103, -1.4043758, -1.3459451, -1.3954628, -1.3684933, -1.4450026, -1.439955, -1.4366481, -1.4349859, -1.3785164, -1.3998129, -1.4045217, -1.4435124, -1.3281324, -1.431952, -1.347404, -1.3924026, -1.4315174, -1.4003859, -1.3303807, -1.3537092, -1.3381984, -1.3798225, -1.3949299, -1.4416769, -1.420676, -1.427176, -1.3885689, -1.3345382, -1.4211278, -1.3849983, -1.3887494, -1.4280734, -1.3461497, -1.3728442, -1.3583975, -1.3976874, -1.3638306, -1.3808331, -1.3671143, -1.3120637, -1.3966091, -1.3727562, -1.4381158, -1.3525093, -1.405493, -1.3949804, -1.3505921, -1.369452, -1.4941669, -1.4353697, -1.3253303, -1.3728187, -1.4046986, -1.3319547, -1.3947368, -1.3374107, -1.3912542, -1.3498836, -1.3732574, -1.3815217, -1.3440468, -1.3817677, -1.3121138, -1.3477643, -1.4163661 ], "xaxis": "x", "y": [ -0.7822143, -0.7895669, -0.7403836, -0.83051324, -0.7628759, -0.8360183, -0.7589263, -0.81755984, -0.81562257, -0.6819484, -0.80745125, -0.62243783, -0.81521535, -0.8467405, -0.7053925, -0.7394078, -0.7448931, -0.76732945, -0.7988373, -0.7545637, -0.8142246, -0.7659962, -0.82969844, -0.7939843, -0.75839806, -0.80810547, -0.8026035, -0.88804734, -0.80884206, -0.7804004, -0.73813415, -0.7214571, -0.8297061, -0.82104194, -0.7928455, -0.88162374, -0.7861055, -0.9048368, -0.91133595, -0.8737209, -0.79835427, -0.7769786, -0.7970531, -0.8416681, -0.8963071, -0.8497647, -0.7193601, -0.86820686, -0.7919837, -0.79122615, -0.77238035, -0.8721863, -0.82365286, -0.8406775, -0.8177006, -0.81893206, -0.82633734, -0.88858986, -0.8224815, -0.9198787, -0.8983555, -0.84853923, -0.8350713, -0.90134907, -0.81225145, -0.82096016, -0.8412361, -0.78627956, -0.9235585, -0.84402025, -0.837221, -0.8462553, -0.8977773, -0.9225526, -0.8451444, -0.88462186, -0.70472646, -0.81935465, -0.87493575, -0.8320364, -0.8544904, -0.9037322, -0.8859687, -0.85115993, -0.96350884, -0.92066574, -0.9282594, -0.9012828, -0.9202633, -0.7881553, -0.8771522, -0.8562809, -0.83180857, -0.875687, -0.9230895, -0.91545784, -0.8201771, -0.8863418, -1.014549, -0.8461157, -0.91965365, -0.9108629, -0.89598393, -0.8870208, -0.89587617, -0.89644074, -0.9378427, -0.9455688, -0.95252836, -0.84779096, -0.92217374, -0.9223193, -0.98634934, -0.9613528, -0.9621029, -1.0145303, -0.9593618, -1.0107896, -0.9888421, -0.9476235, -0.94608855, -0.9243455, -1.0038784, -0.9465476, -0.9930202, -1.0472337, -0.935506, -0.9774052, -1.0152707, -0.9157045, -0.9750165, -1.0058733, -0.9340496, -0.9726137, -1.0108393, -0.9509727, -1.0177574, -1.0393939, -1.0073789, -0.98700404, -1.0289212, -0.9817436, -0.95181525, -0.9963393, -0.9130043, -1.0302227, -1.0467043, -1.03887, -0.934149, -0.972587, -0.9491434, -1.0320511, -1.0902512, -0.9287622, -0.983788, -1.0024838, -0.99935746, -1.0186625, -0.9870111, -0.9751843, -1.0339879, -0.94602036, -1.0575451, -1.075029, -1.0995959, -1.067779, -1.0134045, -1.0840187, -1.0584066, -1.0030564, -0.9993515, -1.0670575, -1.0777835, -1.0230465, -1.0600632, -1.0604904, -0.9769089, -1.060046, -1.0874729, -1.0952392, -1.0133196, -1.1020728, -1.0721285, -1.0135046, -1.07856, -1.0881395, -1.019724, -1.0102718, -1.0968113, -1.0710149, -1.0771065, -1.046468, -1.0279367, -1.0101539, -1.0418267, -1.0562792, -1.0858057, -1.0717031, -1.1774154, -1.1032587, -1.0545993, -1.1303701, -1.1629059, -0.98359597, -1.0957024, -1.060169, -1.0267282, -1.0853646, -1.0338383, -1.2070658, -1.1461482, -1.0958924, -1.1103565, -1.1480532, -1.0608786, -1.1536787, -1.0388312, -1.0396266, -1.0917306, -1.0737784, -1.0956336, -1.0943365, -1.1510067, -1.0412884, -1.1409541, -1.0937222, -1.1651714, -1.163833, -1.1270342, -1.0516875, -1.1403596, -1.1043832, -1.0844607, -1.1465006, -1.1124629, -1.0214105, -1.1237419, -1.121101, -1.1373053, -1.1593275, -1.184666, -1.0805732, -1.2004191, -1.1912555, -1.1265128, -1.1530969, -1.1085854, -1.1027843, -1.1458664, -1.1329314, -1.1580503, -1.1529552, -1.1186655, -1.1397139, -1.2063205, -1.1489956, -1.0941975, -1.2382643, -1.146102, -1.2157162, -1.1379099, -1.1299677, -1.2123492, -1.1396911, -1.1829559, -1.1226759, -1.1391485, -1.2253711, -1.1563866, -1.1676114, -1.1544156, -1.1838281, -1.1684024, -1.243501, -1.2487977, -1.2021255, -1.1858258, -1.1840178, -1.2044909, -1.1930007, -1.2324321, -1.2008121, -1.2988362, -1.1684821, -1.2189919, -1.1871306, -1.1563516, -1.1573387, -1.2241874, -1.1837647, -1.2294922, -1.2295423, -1.1982749, -1.2421775, -1.2785828, -1.2163093, -1.2250814, -1.1361771, -1.1646239, -1.1817247, -1.1985788, -1.212264, -1.2982693, -1.2179998, -1.2344961, -1.237386, -1.2606207, -1.2726628, -1.2417676, -1.2467256, -1.2022533, -1.1702182, -1.2728436, -1.2672995, -1.2697362, -1.193124, -1.2893784, -1.2348506, -1.251102, -1.1974452, -1.2866492, -1.3338311, -1.20331, -1.33185, -1.2569923, -1.2943984, -1.3006763, -1.2181412, -1.2213137, -1.3362348, -1.2909403, -1.2342917, -1.2861993, -1.2606704, -1.3190243, -1.2756543, -1.3342837, -1.3136744, -1.2899745, -1.1936285, -1.2941806, -1.2617157, -1.296782, -1.2938716, -1.3242747, -1.2617068, -1.2772565, -1.2591934, -1.2931238, -1.3666182, -1.3333062, -1.2694604, -1.2367289, -1.3606055, -1.2656837, -1.3507948, -1.3498205, -1.3256733, -1.2983485, -1.288216, -1.3482349, -1.2530181, -1.2373121, -1.3415976, -1.2877216, -1.2656583, -1.2699448, -1.2749267, -1.3713439, -1.3145859, -1.2944437, -1.3418111, -1.3983767, -1.355382, -1.3733068, -1.3417985, -1.3091683, -1.3646402, -1.4038084, -1.2941887, -1.325468, -1.330996, -1.3218571, -1.3319552, -1.3553013, -1.4253633, -1.3649737, -1.3660343, -1.2891719, -1.2739291, -1.3105438, -1.3680496, -1.4065666, -1.3296518, -1.3310324, -1.3369358, -1.3281095, -1.361898, -1.3790162, -1.3505886, -1.3932384, -1.4250331, -1.4129117, -1.2810887, -1.3680823, -1.3530192, -1.3995304, -1.4056935, -1.3722079, -1.3584983, -1.4001513, -1.32774, -1.3985339, -1.4209318, -1.4143903, -1.3750525, -1.3457048, -1.3714643, -1.4163287, -1.4602969, -1.3927497, -1.3947943, -1.3876708, -1.3813992, -1.3785903, -1.390835, -1.433789, -1.4064636, -1.3898585, -1.3820379, -1.3902035, -1.3941685, -1.4094567, -1.4856286, -1.3728437, -1.4385383, -1.4276713, -1.4546207, -1.3853483, -1.424496, -1.4511497, -1.4885628, -1.4502225, -1.4306405, -1.4486969, -1.4267368, -1.4767652, -1.4166875, -1.436441, -1.4044269, -1.4252101, -1.4335451, -1.4314153, -1.4343045, -1.4186313, -1.4272184, -1.4737606, -1.3654759, -1.4260353, -1.4299792, -1.4959326, -1.4594119, -1.5067606, -1.3809676, -1.4384995, -1.4666233, -1.4550812, -1.4442327, -1.463255, -1.5175657, -1.4505584, -1.4605861, -1.4203293, -1.4998088, -1.4058437, -1.4031719, -1.4721482, -1.4138918, -1.4802824, -1.4955666, -1.4813406, -1.410553, -1.462187, -1.5350244, -1.4432142, -1.4470068, -1.5094502, -1.4984338, -1.4958241, -1.3999423, -1.4582047, -1.514581, -1.5061767, -1.5025754, -1.4194651, -1.5065072, -1.4335241, -1.4699962, -1.4655466, -1.4490044, -0.7340634, -0.76330364, -0.7380011, -0.73129857, -0.7370169, -0.72622466, -0.6966671, -0.6766434, -0.84662426, -0.7622323, -0.7819096, -0.7351327, -0.7486826, -0.70629704, -0.7311686, -0.741848, -0.7915299, -0.7581762, -0.7173693, -0.7818184, -0.66519284, -0.6935524, -0.72877514, -0.744184, -0.70944965, -0.69484866, -0.7320738, -0.7900348, -0.678157, -0.7810186, -0.6675955, -0.75512993, -0.7715802, -0.75789046, -0.79841006, -0.7938739, -0.66834867, -0.76932836, -0.685398, -0.72869396, -0.74148333, -0.7493634, -0.73310435, -0.7421557, -0.7390944, -0.7339796, -0.68847466, -0.71029854, -0.7865075, -0.73539543, -0.638257, -0.7121167, -0.6631725, -0.69656646, -0.75094914, -0.64399433, -0.7621162, -0.7577119, -0.7779038, -0.6991396, -0.6974226, -0.68126726, -0.7762681, -0.6013721, -0.7779653, -0.69533646, -0.7210852, -0.63196313, -0.7182058, -0.70581913, -0.73191035, -0.61337554, -0.681968, -0.7806158, -0.7417395, -0.68824947, -0.73545825, -0.6463306, -0.6739806, -0.7280042, -0.679376, -0.6960105, -0.75071037, -0.7366537, -0.71370065, -0.6872641, -0.7177764, -0.7798625, -0.64632964, -0.7327758, -0.6475252, -0.7168418, -0.700892, -0.7085347, -0.6772964, -0.7061262, -0.64524853, -0.7002528, -0.67056525, -0.74458313, -0.69485533, -0.6863625, -0.6373249, -0.7173419, -0.64471924, -0.7127173, -0.6509212, -0.7072494, -0.7667612, -0.6788093, -0.59565806, -0.657357, -0.69935966, -0.669225, -0.6182531, -0.7257829, -0.6704296, -0.6646081, -0.6915673, -0.74884033, -0.63027966, -0.60490274, -0.6937485, -0.7143793, -0.75411093, -0.69204414, -0.74559915, -0.5906284, -0.6185545, -0.6770003, -0.70318305, -0.6668509, -0.67997086, -0.6619513, -0.66175056, -0.67759013, -0.6311326, -0.64913714, -0.67983615, -0.64927316, -0.69710386, -0.5895312, -0.7046678, -0.52036726, -0.69247174, -0.62149894, -0.67612076, -0.6599072, -0.71160483, -0.6720141, -0.55881166, -0.6044662, -0.65994716, -0.6013857, -0.5839782, -0.6753707, -0.68479526, -0.6826, -0.52001023, -0.63406813, -0.6231152, -0.59447825, -0.4358693, -0.70209634, -0.72508514, -0.65121424, -0.59160304, -0.6298268, -0.6845319, -0.5729028, -0.6387094, -0.562593, -0.60279346, -0.6977546, -0.5807462, -0.64959216, -0.63759446, -0.5849019, -0.5677068, -0.5966978, -0.6767596, -0.5981716, -0.5984323, -0.65392447, -0.5446781, -0.505216, -0.60980403, -0.6082667, -0.64704025, -0.5819658, -0.54996336, -0.5323496, -0.58248365, -0.5803212, -0.5944394, -0.5241178, -0.539137, -0.59917045, -0.5695845, -0.47580215, -0.5855142, -0.5745535, -0.59420586, -0.6277722, -0.5385467, -0.58020306, -0.65170705, -0.5423683, -0.596684, -0.5286882, -0.49224553, -0.59813595, -0.5070263, -0.513657, -0.5241568, -0.6982949, -0.6931002, -0.56683147, -0.5221449, -0.54868174, -0.5960804, -0.53157854, -0.5872381, -0.51826274, -0.53427804, -0.541595, -0.5525713, -0.57881844, -0.55081403, -0.62007606, -0.5767056, -0.5688046, -0.5097964, -0.6389359, -0.4925274, -0.47824213, -0.5748545, -0.5435082, -0.5890782, -0.51061976, -0.5373018, -0.55708873, -0.54301083, -0.55136514, -0.5915854, -0.6131679, -0.6260561, -0.51108027, -0.45910946, -0.5580424, -0.44935623, -0.5291232, -0.53931403, -0.5446701, -0.5809039, -0.5017978, -0.5687535, -0.5302001, -0.5524758, -0.59696853, -0.52837753, -0.51268554, -0.49398437, -0.575984, -0.57026196, -0.5036497, -0.53841734, -0.5466198, -0.50883985, -0.48253295, -0.50196314, -0.52655053, -0.47535744, -0.5465605, -0.46288082, -0.56047165, -0.5378157, -0.5618471, -0.49876568, -0.43132815, -0.52416503, -0.5605328, -0.5169554, -0.43578348, -0.5158609, -0.522491, -0.4924582, -0.5208868, -0.51039886, -0.4327205, -0.5225903, -0.5379013, -0.46501002, -0.51921535, -0.42096475, -0.48537537, -0.45820257, -0.44850388, -0.55252063, -0.52932286, -0.48368797, -0.51969206, -0.5013571, -0.48349598, -0.6569114, -0.49638376, -0.5277648, -0.53770804, -0.5498643, -0.55397534, -0.48406383, -0.47965363, -0.5133289, -0.49420294, -0.41881242, -0.50573516, -0.5975356, -0.5003109, -0.45050833, -0.5106039, -0.49234334, -0.5256524, -0.46179727, -0.5093955, -0.49357417, -0.41917142, -0.48393968, -0.4609824, -0.49162528, -0.4690704, -0.35568255, -0.5229727, -0.44129595, -0.43875304, -0.48309848, -0.5187775, -0.40126225, -0.43483916, -0.5034051, -0.5390849, -0.41240272, -0.48737904, -0.48797533, -0.4380199, -0.460723, -0.46751252, -0.47297058, -0.4754713, -0.46018252, -0.43746498, -0.4556251, -0.40783098, -0.42403814, -0.38057604, -0.4305654, -0.4504113, -0.4459968, -0.40321055, -0.4559445, -0.5065955, -0.4447998, -0.40407535, -0.4706808, -0.43194202, -0.4578338, -0.51163507, -0.45522746, -0.43708494, -0.4631516, -0.453863, -0.42117086, -0.42478225, -0.5324304, -0.42081937, -0.4201413, -0.38723758, -0.4104685, -0.42433217, -0.48629507, -0.46845803, -0.45430627, -0.4221761, -0.44505373, -0.44267306, -0.4942802, -0.43342617, -0.4489257, -0.38981822, -0.43413648, -0.41187063, -0.4331778, -0.37152782, -0.4474989, -0.45169082, -0.46332982, -0.36641866, -0.41052726, -0.40245113, -0.38875273, -0.3951498, -0.34965444, -0.48829052, -0.341571, -0.44189337, -0.39741096, -0.39497778, -0.4417769, -0.43126598, -0.40263477, -0.43632182, -0.37360254, -0.37238523, -0.4115512, -0.4593617, -0.32501277, -0.37301186, -0.39441863, -0.33561268, -0.48073658, -0.4718738, -0.3810904, -0.2972838, -0.3870286, -0.44696668, -0.35086554, -0.33404148, -0.4060903, -0.43769494, -0.4143012, -0.31807446, -0.46455213, -0.45064506, -0.34788498, -0.29935303, -0.46662316, -0.34887448, -0.44289467, -0.40244505, -0.37178358, -0.32218254, -0.34064853, -0.34446713, -0.41402593, -0.39695546, -0.35183597, -0.3288366, -0.30521446, -0.37324494, -0.46552828, -0.26415366, -0.34793302, -0.3914077, -0.45190683, -0.324751, -0.34657094, -0.28406858, -0.2805665, -0.37964424, -0.42726722, -0.45281664, -0.3944079, -0.34442714, -0.354929, -0.43057045, -0.4025803, -0.42505977, -0.4091198, -0.24723262, -0.3374475, -0.37313357, -0.3112323, -0.27165467, -0.37193635, -0.4009814, -0.32594937, -0.322701, -0.33819893, -0.26073757, -0.31860605, -0.32536626, -0.26578844, -0.32858974, -0.43433872, -0.29483578, -0.2840293, -0.30069944, -0.3457901, -0.25065783, -0.3649557, -0.36046922, -0.3209157, -0.2732905, -0.30060634, -0.3461646, -0.3288977, -0.33536777, -0.3160285, -0.3434257, -0.2166616, -0.3799251, -0.77672493, -0.7302222, -0.76219535, -0.79736817, -0.71532, -0.70979106, -0.8707949, -0.6827916, -0.7985892, -0.6980251, -0.7995299, -0.7273592, -0.73677504, -0.77782, -0.66952884, -0.70695627, -0.7520338, -0.8265716, -0.7709881, -0.8294753, -0.77691686, -0.77259386, -0.8002732, -0.7365389, -0.8957844, -0.78784823, -0.8144691, -0.8508829, -0.81549203, -0.737031, -0.7206913, -0.72913957, -0.7224859, -0.7677654, -0.6423751, -0.7142365, -0.7311156, -0.8012049, -0.7399328, -0.8143041, -0.75629973, -0.70303404, -0.77400064, -0.75443935, -0.7875023, -0.7176304, -0.7526243, -0.73588085, -0.7513298, -0.8725909, -0.74999, -0.7444482, -0.73765147, -0.7757702, -0.7431077, -0.700436, -0.6821455, -0.8781229, -0.7533572, -0.8259615, -0.8554145, -0.757651, -0.787976, -0.72443616, -0.7986151, -0.78082633, -0.68419003, -0.74701464, -0.7556577, -0.8421526, -0.7469748, -0.76230085, -0.76231897, -0.79517555, -0.7325777, -0.7354249, -0.7727897, -0.7821022, -0.8489438, -0.7529825, -0.8454484, -0.74796283, -0.8547056, -0.78135884, -0.8331504, -0.7643318, -0.84534144, -0.8118501, -0.79876614, -0.80153835, -0.8048552, -0.7693062, -0.7938665, -0.76133585, -0.7488142, -0.7955556, -0.782735, -0.7038567, -0.810194, -0.7284595, -0.7970545, -0.84418, -0.71091497, -0.85333216, -0.7881863, -0.7824502, -0.80195296, -0.75150394, -0.8104212, -0.73262715, -0.786978, -0.7960197, -0.7729324, -0.87245095, -0.8032019, -0.7957034, -0.81856036, -0.81019497, -0.7626617, -0.8420149, -0.8593266, -0.7834339, -0.7592629, -0.833114, -0.75197375, -0.7761781, -0.7598926, -0.8652791, -0.75797224, -0.8516011, -0.8479204, -0.75564885, -0.77828586, -0.7624508, -0.7984412, -0.86194813, -0.81066644, -0.82689524, -0.78835535, -0.80489767, -0.72341025, -0.78156734, -0.785449, -0.70863116, -0.8120527, -0.79109776, -0.8184631, -0.7541895, -0.8020606, -0.79775095, -0.75149703, -0.7593136, -0.7861346, -0.76326287, -0.8585223, -0.7854903, -0.754763, -0.72618353, -0.76898956, -0.7583964, -0.77735746, -0.8912786, -0.774119, -0.8300834, -0.7041935, -0.79308414, -0.7366519, -0.71267235, -0.7894137, -0.8715193, -0.781634, -0.7557956, -0.8474655, -0.79452217, -0.7944969, -0.8525647, -0.7368001, -0.78941596, -0.802263, -0.7915652, -0.75271523, -0.78944945, -0.8975656, -0.76811826, -0.7574272, -0.83452606, -0.7830982, -0.76842844, -0.8133491, -0.81440973, -0.7797755, -0.80613863, -0.7535714, -0.79255784, -0.7831906, -0.7865304, -0.7686688, -0.8027892, -0.7937249, -0.8689641, -0.8247559, -0.7793913, -0.7825631, -0.73965645, -0.84527946, -0.7747066, -0.79335773, -0.8406551, -0.84513307, -0.82754433, -0.8195845, -0.8279587, -0.73324764, -0.73993266, -0.835701, -0.8294697, -0.8848603, -0.79466283, -0.79249454, -0.8269708, -0.800611, -0.8015913, -0.81683064, -0.7694038, -0.75551295, -0.7168093, -0.8343396, -0.79781044, -0.83998084, -0.8299868, -0.76421845, -0.8113123, -0.79433775, -0.8779739, -0.81999815, -0.76716614, -0.8201941, -0.7788707, -0.74889874, -0.8309789, -0.8389231, -0.7851939, -0.76102364, -0.82217944, -0.81134987, -0.85374475, -0.82548845, -0.8428894, -0.76164377, -0.819844, -0.7389903, -0.7490232, -0.80036473, -0.8362862, -0.7795962, -0.80242467, -0.8325008, -0.8048376, -0.80254817, -0.76969135, -0.783983, -0.75136375, -0.7992562, -0.8101313, -0.7293235, -0.8056896, -0.80899787, -0.6993178, -0.82733655, -0.7901088, -0.80943024, -0.75751626, -0.7483393, -0.8478532, -0.75480247, -0.79841185, -0.78724563, -0.8039608, -0.80184746, -0.81879044, -0.8334359, -0.78470623, -0.839797, -0.81793547, -0.79223585, -0.87224376, -0.9227209, -0.8056667, -0.7425922, -0.8564801, -0.8631859, -0.8379953, -0.82439554, -0.84644115, -0.82076716, -0.7796581, -0.7850225, -0.8843293, -0.81974626, -0.70401025, -0.73443663, -0.8375863, -0.8090452, -0.80369186, -0.8528489, -0.73784864, -0.861904, -0.7862114, -0.8072486, -0.8117459, -0.833261, -0.79437494, -0.84102, -0.7992095, -0.76677203, -0.79527104, -0.85572016, -0.82732713, -0.82517195, -0.7948122, -0.8593228, -0.8188559, -0.77371323, -0.80047655, -0.82644844, -0.8167368, -0.8575288, -0.87250924, -0.78682506, -0.79979753, -0.85986125, -0.76674294, -0.76364815, -0.7784064, -0.78035796, -0.8101493, -0.7990309, -0.8146875, -0.7828598, -0.8309562, -0.8865423, -0.88381934, -0.82039726, -0.8946347, -0.8264595, -0.7739097, -0.79628944, -0.8397751, -0.725273, -0.8043643, -0.7528882, -0.80077374, -0.8477489, -0.7336538, -0.78260505, -0.7611449, -0.81970704, -0.9037926, -0.84221613, -0.8461294, -0.8388792, -0.83088005, -0.8344768, -0.7916095, -0.7804632, -0.7663355, -0.768064, -0.8176451, -0.78534555, -0.81902957, -0.8447217, -0.7069936, -0.8143475, -0.79390466, -0.7891675, -0.82324314, -0.7830789, -0.8112894, -0.8092481, -0.7742218, -0.7984456, -0.7691834, -0.7713512, -0.7148478, -0.77651477, -0.7837491, -0.7569816, -0.75533354, -0.8208238, -0.7864109, -0.7472278, -0.77476835, -0.81884515, -0.7867055, -0.80453753, -0.7981895, -0.7895341, -0.8284048, -0.8161148, -0.73134375, -0.80010796, -0.7835516, -0.7857002, -0.8307798, -0.78490317, -0.79035556, -0.82149625, -0.8536023, -0.8641869, -0.8536358, -0.7325467, -0.8334018, -0.81924784, -0.7878138, -0.81919706, -0.7679359, -0.76771843, -0.8307049, -0.79419637, -0.7819232, -0.80550325, -0.88701665, -0.8206582, -0.78047884, -0.8613982, -0.7509091, -0.7307161, -0.8417665, -0.8505688, -0.7984452, -0.85597026, -0.7392281, -0.7760674, -0.764961, -0.7939656, -0.82335865, -0.77729905, -0.7718812, -0.80627525, -0.8013593, -0.83310163, -0.77835226, -0.7714577, -0.8635875, -0.76840067, -0.76909363, -0.83390856, -0.7960801, -0.8601767, -0.7640424, -0.7649596, -0.8662256, -0.9018526, -0.70640063, -0.83608675, -0.79319096, -0.8513454, -0.7842947, -0.7593088, -0.7625153, -0.8349674, -0.78241944, -0.7848736, -0.7444253, -0.8114171, -0.8267877, -0.788031, -0.79903793, -0.7471417, -0.8298904, -0.75352037, -0.73143935, -0.75974333, -0.89325714, -0.7584151, -0.8286264, -0.8496574, -0.810225, -0.809054, -0.7827606, -0.8364121, -0.78282714, -0.8134866, -0.77603245, -0.8412231, -0.81609976, -0.73193395, -0.79250693, -0.87603366, -0.81000817, -0.76928985, -0.82032144, -0.77658534, -0.8125111, -0.7596921, -0.7699454, -0.778216, -0.74421847, -0.77144253, -0.7813332, -0.79913294, -0.8417772, -0.78523076, -0.8859731, -0.78971887, -0.82518184, -0.79159105, -0.7508174, -0.75131786, -0.82576644, -0.78772795, -0.7927896, -0.8478967, -0.82043314, -0.75124216, -0.78487957, -0.82672083, -0.82816505, -0.86675453, -0.75955415, -0.8375964, -0.8202419, -0.84748876, -0.82227063, -0.851923, -0.77440333, -0.7437452, -0.85310876, -0.7676079, -0.7944318, -0.8282298, -0.93205404, -0.8454795, -0.7899729, -0.8420814, -0.86746156, -0.82237613, -0.8606056, -0.8742473, -0.85723424, -0.8761344, -0.7981559, -0.7909734, -0.835776, -0.8317925, -0.87136066, -0.8769766, -0.89971006, -0.8368447, -0.7844564, -0.92935395, -0.8477509, -0.8325516, -0.7865764, -0.9067805, -0.8883163, -0.8872099, -0.83144987, -0.8188335, -0.80367935, -0.8514255, -0.8856771, -0.9109061, -0.8432888, -0.87002814, -0.8181989, -0.8622279, -0.91969585, -0.8929316, -0.87391055, -0.889403, -0.9820633, -0.93288195, -0.9073602, -0.9199296, -0.9169233, -0.93743, -0.8731235, -0.9393816, -0.8700268, -0.9558842, -0.891103, -0.8975867, -0.8811841, -0.8493892, -0.97382855, -0.87251616, -0.94171786, -0.9334252, -0.969993, -0.92624724, -0.8922341, -0.9360225, -0.80059636, -0.9409158, -0.9034977, -0.9662465, -0.8947458, -0.9738312, -0.9714508, -0.9235885, -0.967697, -0.9210638, -0.9474418, -0.9383936, -0.8963282, -1.0030471, -0.9824898, -0.9576032, -0.99302745, -1.0041133, -0.9775357, -0.89982295, -0.90487075, -1.0058904, -0.9026406, -0.9734645, -0.95450115, -0.98186994, -0.9376528, -0.91917634, -0.99039364, -0.9095317, -0.9756739, -0.9139466, -0.9599867, -0.9668467, -0.9663775, -1.0050342, -1.0237731, -0.96257293, -0.9408891, -1.0277151, -1.0268358, -0.96731997, -0.98671806, -0.9268894, -0.99965525, -0.94575095, -0.96464896, -0.98887265, -0.9384148, -0.9333589, -1.0051928, -1.0145949, -1.0068197, -0.9817668, -0.94525146, -0.9925512, -0.9718145, -0.9294162, -1.0170103, -1.022075, -1.0652349, -1.0236937, -1.000747, -1.0665935, -0.9647491, -1.0164201, -0.9961394, -1.0456487, -1.105693, -1.0654001, -1.1053002, -0.9999356, -1.0797596, -1.0118754, -1.0722623, -1.0227307, -1.0411162, -1.1000106, -1.0057875, -1.0302534, -0.97450054, -0.96008945, -0.9701731, -1.0926203, -1.0318216, -1.0364377, -1.1080477, -1.0911055, -1.0605353, -1.1461668, -1.0197339, -1.0424123, -1.0903851, -1.067975, -1.0763974, -1.1643093, -1.1287162, -1.0041821, -0.98093104, -1.1300781, -1.0858482, -1.0847926, -1.0915481, -1.0377182, -1.14828, -1.1056556, -1.1267698, -1.0753148, -1.0763395, -1.0218277, -1.0534841, -1.0599725, -1.0694582, -1.0339104, -1.072305, -1.0980294, -1.2016943, -1.1423239, -1.0827823, -1.0742007, -1.1572359, -1.1493523, -1.1498567, -1.0639718, -1.1088398, -1.1044745, -1.120959, -1.1267121, -1.1466413, -1.1603892, -1.1038357, -1.0841757, -1.0539773, -1.1072727, -1.1712656, -1.1134008, -1.1022965, -1.0971344, -1.1964841, -1.1069086, -1.0462068, -1.1856413, -1.1577504, -1.1239386, -1.1585107, -1.1377017, -1.1026397, -1.1507467, -1.161689, -1.1807883, -1.1972246, -1.1982666, -1.1620612, -1.1480231, -1.1626625, -1.1358553, -1.1346658, -1.151355, -1.1797004, -1.1795034, -1.1695385, -1.1657786, -1.1549848, -1.120198, -1.1516857, -1.1084554, -1.1389767, -1.246222, -1.1742429, -1.1299578, -1.2087638, -1.212019, -1.1590035, -1.2813854, -1.1741035, -1.1747032, -1.2195325, -1.1973426, -1.2266933, -1.2433684, -1.1377757, -1.1430614, -1.1748825, -1.2060173, -1.2369549, -1.2149191, -1.1645656, -1.2363086, -1.1577787, -1.1619233, -1.1765221, -1.266256, -1.19296, -1.2741082, -1.1391747, -1.2500193, -1.1942229, -1.1699038, -1.1912671, -1.2672763, -1.2781518, -1.2206864, -1.259461, -1.2397981, -1.2532864, -1.2946026, -1.1897014, -1.2770739, -1.1543782, -1.2712253, -1.2268728, -1.2877183, -1.2399445, -1.2772125, -1.2095227, -1.1642579, -1.237725, -1.2504315, -1.2656243, -1.2287035, -1.2486954, -1.2338276, -1.2359438, -1.3085699, -1.1707549, -1.2062844, -1.2338762, -1.2970493, -1.2813013, -1.2058735, -1.254401, -1.2975768, -1.2055151, -1.2348421, -1.2839813, -1.2026017, -1.2675252, -1.2575915, -1.2929177, -1.3580084, -1.210113, -1.3227603, -1.2334094, -1.2864099, -1.2652342, -1.2729475, -1.2906268, -1.3416871, -1.3258791, -1.3105226, -1.3239298, -1.2962909, -1.3333021, -1.3211024, -1.2781394, -1.3299239, -1.2748752, -1.3065007, -1.3300116, -1.3311738, -1.2965655, -1.3663156, -1.3558499, -1.2764184, -1.2919877, -1.3211223, -1.3611677, -1.3125978, -1.2699838, -1.2854615, -1.3682992, -1.2597463, -1.2602601, -1.4335892, -1.3282704, -1.2504117, -1.370053, -1.3440051, -1.3535222, -1.3447711, -1.2749364, -1.3099431, -1.3321341, -1.3196918, -1.3598092, -1.4013348, -1.3057907, -1.342915, -1.4189682, -1.4158919, -1.3529468, -1.3251305, -1.2959297, -1.3858013, -1.384361, -1.4230394, -1.3391101, -1.3201673, -1.4262736, -1.3474545, -1.4612479, -1.3777262, -1.3837204, -1.3105063, -1.369349, -1.3557535, -1.347023, -1.384939, -1.4107903, -1.3936111, -1.4023473, -1.4005139, -1.3926609, -1.3255192, -1.3696249, -1.3483882, -1.3357899, -1.4719979, -1.339972, -1.3899425, -1.4755728, -1.3764414, -1.3581303, -1.4527957, -1.3329399, -1.3933203, -1.3729583, -1.3649757, -1.3509436, -1.3873492, -1.4248803, -1.4216259, -1.3976074, -1.382796, -1.4470758, -1.446104, -1.3840433, -1.3882518, -1.4329772, -1.4053915, -1.4252782, -1.3486189, -1.3513558, -1.400995, -1.4594917, -1.3973053, -1.4356956, -1.4433125, -1.3600423, -1.4242555, -1.4252508, -1.4516766, -1.4277902, -1.4720755, -1.5144737, -1.434489, -1.4518063, -1.3972584, -1.4645894, -1.3873146, -1.4954218, -1.3942425, -1.3829604, -1.439008, -1.4451286, -1.4394058, -1.4386618, -1.4631809, -1.4405744, -1.4510281, -1.492502, -1.3483038, -1.3872269, -1.4433944, -1.463539, -1.486649, -1.449039, -1.3876392, -1.515099, -1.4840705, -1.4530355, -1.4933057, -1.4362383, -1.5571587, -1.4448922, -1.4762592, -1.503611, -1.5111737, -1.4752232, -1.5118773, -1.4717331, -1.5405428, -1.4404576, -1.4630885, -1.4204519, -1.449652, -1.5425806, -1.5357351, -1.4926801, -1.5333492, -1.4830602, -1.5263782, -1.5340779, -1.5275817, -1.4653416, -1.426589, -1.5015519, -0.7343986, -0.78528404, -0.79605126, -0.8272679, -0.7415427, -0.7472377, -0.8120141, -0.75669277, -0.85653853, -0.81535983, -0.7382916, -0.7683644, -0.76932144, -0.73500633, -0.82268703, -0.7737278, -0.7431179, -0.7633916, -0.787678, -0.7321185, -0.7450888, -0.75601315, -0.78650033, -0.7805325, -0.83991647, -0.7722416, -0.7724515, -0.8077116, -0.72241163, -0.6987152, -0.7918017, -0.7660662, -0.747651, -0.8490684, -0.8003385, -0.7431359, -0.7914647, -0.7366384, -0.7538825, -0.78845835, -0.7230123, -0.794413, -0.72916925, -0.7314396, -0.7168411, -0.7391571, -0.7682015, -0.82603955, -0.7487668, -0.7377101, -0.8184602, -0.80042434, -0.7167007, -0.7014011, -0.7606828, -0.6751776, -0.6847316, -0.70637095, -0.73703015, -0.7370143, -0.7433883, -0.7822999, -0.7268975, -0.7944703, -0.74008965, -0.73870707, -0.71565855, -0.7288258, -0.7375164, -0.6812428, -0.78785884, -0.7156609, -0.7211735, -0.6624851, -0.69277906, -0.7874669, -0.71565115, -0.8105856, -0.7226521, -0.730976, -0.70757604, -0.75353944, -0.7418127, -0.7433952, -0.7403258, -0.7383779, -0.6896554, -0.7704046, -0.71732736, -0.7101326, -0.7409307, -0.74350464, -0.7521781, -0.66588354, -0.72726583, -0.7017056, -0.7081852, -0.67764056, -0.7080263, -0.72035885, -0.72989714, -0.70174026, -0.68075716, -0.7325008, -0.7030908, -0.6367363, -0.64607286, -0.6798618, -0.6887059, -0.6814661, -0.73607206, -0.72713923, -0.70007646, -0.7144104, -0.68683064, -0.61491215, -0.7324501, -0.76509833, -0.68552005, -0.80728817, -0.6783297, -0.70413804, -0.7150258, -0.6813334, -0.67824435, -0.69542336, -0.6776707, -0.63952494, -0.67976415, -0.6822045, -0.6671772, -0.66278243, -0.671234, -0.6088717, -0.66919315, -0.7423384, -0.634572, -0.73711777, -0.6947433, -0.6415267, -0.7176492, -0.6492237, -0.5837256, -0.6829113, -0.64369893, -0.64272, -0.62903106, -0.66865563, -0.6559179, -0.64120114, -0.675557, -0.63167393, -0.65693045, -0.64881337, -0.686664, -0.68313086, -0.66289747, -0.64434195, -0.68109715, -0.5745108, -0.74387336, -0.61217606, -0.6964046, -0.6628455, -0.62849224, -0.6490011, -0.6961864, -0.6608474, -0.6101763, -0.6362586, -0.6031468, -0.63886, -0.64800465, -0.6133032, -0.6573179, -0.6212956, -0.5866139, -0.6841011, -0.6080773, -0.61610043, -0.6231978, -0.63162255, -0.5584049, -0.543296, -0.6582422, -0.6548575, -0.62637424, -0.7311444, -0.6020458, -0.58968425, -0.5950537, -0.6678617, -0.58103526, -0.6131115, -0.5652919, -0.58916616, -0.60340965, -0.5918318, -0.5424639, -0.6192037, -0.6546289, -0.6697353, -0.62254107, -0.655264, -0.60811937, -0.5589429, -0.60563314, -0.65411735, -0.66485155, -0.68465126, -0.61996984, -0.63417673, -0.6220031, -0.6079575, -0.6214422, -0.61654234, -0.5848348, -0.53499734, -0.62546146, -0.5847542, -0.5616771, -0.61035967, -0.5709057, -0.702567, -0.6016408, -0.6644772, -0.60627115, -0.5380542, -0.6454594, -0.6016331, -0.6587864, -0.56899285, -0.63861036, -0.59216416, -0.6184635, -0.57510424, -0.5999378, -0.5995619, -0.6661706, -0.6216656, -0.6331909, -0.579787, -0.5116708, -0.65185165, -0.6011847, -0.61600685, -0.614799, -0.5980209, -0.6129906, -0.5874307, -0.59195685, -0.5862645, -0.49755338, -0.60343325, -0.591985, -0.61434627, -0.6395322, -0.534933, -0.5449039, -0.5220803, -0.5983542, -0.56241786, -0.5326532, -0.51020026, -0.5751678, -0.4781256, -0.6601051, -0.54731596, -0.5620854, -0.50527716, -0.5764283, -0.57091236, -0.5392306, -0.545591, -0.5588521, -0.5047891, -0.56012726, -0.522612, -0.4714379, -0.5963267, -0.55006194, -0.5737001, -0.55240655, -0.58140683, -0.5272379, -0.5922097, -0.60341537, -0.46459094, -0.5415845, -0.5348861, -0.5480095, -0.60225916, -0.52097523, -0.5318891, -0.5871521, -0.602792, -0.5536822, -0.47531804, -0.57551265, -0.48864678, -0.5330211, -0.44433054, -0.4812933, -0.46691874, -0.5281079, -0.62237954, -0.5840075, -0.5105305, -0.5030247, -0.48745033, -0.5341611, -0.569262, -0.4882268, -0.57279706, -0.4998012, -0.5188712, -0.51204455, -0.43511882, -0.5189817, -0.5097592, -0.6183218, -0.520489, -0.5079409, -0.4702846, -0.52868176, -0.5019233, -0.50804114, -0.53624356, -0.52890813, -0.4750431, -0.46765944, -0.5118135, -0.61886775, -0.5136901, -0.5263152, -0.48739466, -0.4847335, -0.44700727, -0.5313411, -0.49655852, -0.50716674, -0.5319741, -0.4694986, -0.48890117, -0.45717773, -0.51527417, -0.4254531, -0.4728665, -0.50675416, -0.49544862, -0.4539062, -0.46732178, -0.45238218, -0.48500362, -0.42375645, -0.3934246, -0.46294352, -0.4785442, -0.46343032, -0.53622496, -0.4565284, -0.4726, -0.44014332, -0.53048897, -0.46304706, -0.41880956, -0.5117451, -0.4486883, -0.47027048, -0.4210578, -0.54267323, -0.50708795, -0.3570801, -0.48027292, -0.39183298, -0.43402097, -0.38899943, -0.54921794, -0.49506977, -0.41474542, -0.38634053, -0.5102936, -0.44624355, -0.5098891, -0.47407672, -0.4849458, -0.47793695, -0.44011322, -0.44648662, -0.46632406, -0.44888064, -0.48057118, -0.42363063, -0.4162356, -0.46537766, -0.3445271, -0.4482014, -0.48852494, -0.40135732, -0.4209681, -0.42996266, -0.43564782, -0.4731625, -0.44010678, -0.45092764, -0.36902124, -0.5193547, -0.39751384, -0.4230664, -0.45158926, -0.29195327, -0.46570584, -0.39348653, -0.3618758, -0.3788558, -0.3433563, -0.42313626, -0.4191003, -0.4578189, -0.42256746, -0.48839054, -0.4047676, -0.40913847, -0.3958541, -0.40505436, -0.49435297, -0.40547058, -0.4019492, -0.4058195, -0.43014547, -0.36575937, -0.40828457, -0.32256177, -0.39744857, -0.4050391, -0.42746654, -0.35065353, -0.4310529, -0.34899378, -0.37079763, -0.38757858, -0.41471097, -0.43107495, -0.4023849, -0.39974985, -0.36000317, -0.33404323, -0.38938162, -0.36372402, -0.36310014, -0.35746288, -0.34072798, -0.36645406, -0.33247963, -0.4497768, -0.3783132, -0.43746242, -0.41395667, -0.40211537, -0.4235867, -0.43456706, -0.40451917, -0.46886012, -0.407563, -0.3221438, -0.3809542, -0.3824805, -0.3452132, -0.30592453, -0.4622862, -0.38188326, -0.34788454, -0.3904278, -0.35868123, -0.3429718, -0.35906735, -0.35147962, -0.3242446, -0.33703518, -0.34181687, -0.34448752, -0.34370434, -0.3589645, -0.36732054, -0.38294122, -0.31209558, -0.39511165, -0.36872366, -0.2978308, -0.3015194, -0.418412, -0.3081353, -0.32201567, -0.35687095, -0.3301624, -0.34638184, -0.3246682, -0.36490056, -0.3520048, -0.31451312, -0.32865083, -0.2324084, -0.34945518, -0.3721125, -0.2838352, -0.341434, -0.32620925, -0.36524174, -0.3211808, -0.30354843, -0.247801, -0.33485958, -0.34070328, -0.34170943, -0.27692914, -0.33739075, -0.3829265, -0.44084468, -0.35141447, -0.36324096, -0.32450563, -0.34496287, -0.35018855, -0.2843798, -0.37045413, -0.41482845, -0.3523484, -0.3859289, -0.3472784, -0.39620432, -0.43443003, -0.39804026, -0.3781754, -0.40720138, -0.39349565, -0.34057763, -0.2832921, -0.3855255, -0.30101052, -0.32962048, -0.3525188, -0.3696892, -0.3348581, -0.47713527, -0.41676018, -0.33525553, -0.38859186, -0.36511946, -0.38160682, -0.35072595, -0.4816738, -0.41325966, -0.41787854, -0.39906815, -0.46217027, -0.38088432, -0.47618648, -0.48162976, -0.412012, -0.37336296, -0.50455236, -0.51284707, -0.37809688, -0.4677104, -0.37237966, -0.5148518, -0.43202618, -0.40757725, -0.4199141, -0.39257005, -0.38206634, -0.3861849, -0.41286847, -0.3932195, -0.4888682, -0.42652777, -0.3885202, -0.36762187, -0.4290727, -0.47546467, -0.42605004, -0.44685265, -0.37001267, -0.41946682, -0.41330948, -0.47461805, -0.41287425, -0.4051688, -0.4757212, -0.38966843, -0.46276912, -0.45865855, -0.46341613, -0.39002421, -0.40728495, -0.41120318, -0.4794605, -0.4283242, -0.36582914, -0.4113408, -0.37274072, -0.5044888, -0.52698696, -0.4850501, -0.50501263, -0.4391466, -0.5129398, -0.4921783, -0.44785765, -0.5602521, -0.4634879, -0.53995144, -0.437153, -0.542698, -0.4974909, -0.48348507, -0.50699985, -0.4319745, -0.48880962, -0.4632844, -0.45422664, -0.5390754, -0.4279637, -0.52078223, -0.42558494, -0.5286006, -0.51150143, -0.46458295, -0.5357592, -0.53995216, -0.53590965, -0.5137514, -0.5185665, -0.6141006, -0.59459805, -0.47241405, -0.5397837, -0.5414908, -0.5870913, -0.54990613, -0.54202986, -0.63389957, -0.51374114, -0.59906006, -0.49540505, -0.4896706, -0.55271924, -0.51829696, -0.5657122, -0.5357275, -0.5467677, -0.5408524, -0.5595485, -0.50177884, -0.5012952, -0.5414833, -0.54632926, -0.55773365, -0.5502428, -0.60664284, -0.5834849, -0.5334333, -0.60285866, -0.44236264, -0.56110775, -0.6308594, -0.520658, -0.6704551, -0.53549635, -0.57505333, -0.6161436, -0.4753128, -0.6214943, -0.5721673, -0.5280243, -0.5214151, -0.6059927, -0.55860686, -0.62812674, -0.5569825, -0.584389, -0.5454495, -0.68518424, -0.51034784, -0.56924105, -0.57449925, -0.5469482, -0.47904125, -0.55230176, -0.53542495, -0.6169746, -0.599643, -0.55530775, -0.5667267, -0.63383114, -0.63264215, -0.63376236, -0.6102656, -0.5927123, -0.580179, -0.5597398, -0.68117094, -0.5557909, -0.49277905, -0.56891346, -0.6264938, -0.50586927, -0.62551725, -0.6816056, -0.6789155, -0.5847771, -0.66644883, -0.6376034, -0.5510292, -0.63002825, -0.65813553, -0.7030723, -0.6710733, -0.6553489, -0.7258482, -0.6106825, -0.72005725, -0.62700653, -0.57934904, -0.6746905, -0.6079689, -0.6494281, -0.6811348, -0.6469648, -0.60903835, -0.65727174, -0.68538654, -0.68348515, -0.7064822, -0.65554917, -0.6862916, -0.58308816, -0.68540823, -0.6331762, -0.71475554, -0.62544084, -0.6812581, -0.6263559, -0.7578409, -0.6901773, -0.6674124, -0.68431044, -0.79293406, -0.7365968, -0.648183, -0.6592562, -0.69190395, -0.6290487, -0.65143776, -0.7336674, -0.69114244, -0.6960006, -0.7660421, -0.6230607, -0.754727, -0.71677804, -0.7589302, -0.7234762, -0.6912135, -0.70799184, -0.7244314, -0.7335689, -0.76425135, -0.7266792, -0.69048715, -0.7523247, -0.7099093, -0.68568397, -0.68158007, -0.66837585, -0.78422284, -0.66712964, -0.75459087, -0.6695188, -0.69736934, -0.7610915, -0.69337916, -0.77879524, -0.67036974, -0.75831246, -0.74640846, -0.65266895, -0.7607143, -0.6823156, -0.6487169, -0.6747172, -0.6650647, -0.71276224, -0.7231823, -0.69165766, -0.7982875, -0.77820325, -0.78663313, -0.7749301, -0.73831904, -0.7559259, -0.77271914, -0.7033707, -0.71795213, -0.78053725, -0.74224627, -0.8015337, -0.76602256, -0.72138906, -0.7159481, -0.7069185, -0.707633, -0.79215634, -0.80722725, -0.7342638, -0.759053, -0.7022016, -0.739195, -0.7593653, -0.80621374, -0.78749204, -0.71740246, -0.79118717, -0.82361174, -0.78189147, -0.69195104, -0.7478478, -0.79801154, -0.69119227, -0.7851455, -0.8015307, -0.8311149, -0.7626982, -0.8086648, -0.792554, -0.80829465, -0.8198173, -0.8144338, -0.6838943, -0.8058572, -0.7378267, -0.8181448, -0.76989365, -0.7653818, -0.82538736, -0.8088883, -0.8544725, -0.8084607, -0.7796314, -0.77022064, -0.8206322, -0.8280364, -0.75473106, -0.8087802, -0.82880795, -0.84823084, -0.85422814, -0.8891387, -0.79524577, -0.8356273, -0.8599794, -0.8248004, -0.83503556, -0.792727, -0.85884106, -0.9322078, -0.72064495, -0.8237281, -0.8910614, -0.74329114, -0.8899032, -0.85226345, -0.8724835, -0.80319965, -0.810516, -0.831918, -0.8848251, -0.82257533, -0.8618324, -0.87931883, -0.8525014, -0.963933, -0.89655685, -0.8200127, -0.9193535, -0.8468214, -0.8293865, -0.90121317, -0.8364445, -0.87860036, -0.8386078, -0.75402725, -0.8580698, -0.9306457, -0.834036, -0.88125956, -0.9432454, -0.8694347, -0.8500514, -0.86145484, -0.86005914, -0.8669051, -0.90919507, -0.955662, -0.93051195, -0.88867235, -0.869926, -0.9454675, -0.8609755, -0.8413148, -0.9213244, -0.9079797, -0.9197551, -0.9288572, -0.9224453, -0.9040142, -0.8997152, -0.9158257, -0.98217857, -0.8363955, -0.9103775, -0.9104645, -0.8794372, -0.9635029, -0.863068, -0.87306976, -0.87112606, -0.9525285, -0.91179466, -0.9090005, -0.8379775, -0.8307893, -0.9185444, -0.8799052, -1.0196908, -0.898654, -0.8998264, -0.88018405, -0.91799736, -0.92623556, -0.94729877, -0.87967217, -0.965448, -0.8634019, -0.8815402, -0.9106755, -0.97823143, -0.88106406, -0.91295195, -0.9514718, -0.90694785, -0.96577597, -0.92620206, -0.91790795, -1.0381752, -0.9524976, -0.8892503, -1.0061963, -0.94543993, -0.94098735, -0.9910419, -0.95262086, -1.0206378, -0.95630145, -0.9892087, -0.94961154, -0.94699943, -1.0452216, -0.871838, -0.92168415, -1.0670838, -0.97548556, -0.9041227, -0.98667836, -1.0513868, -0.9727063, -0.96202016, -0.91331255, -0.9636241, -0.9878217, -0.95088124, -0.99910915, -0.9883759, -0.95581746, -0.91704154, -0.9632944, -1.0031167, -0.99554, -0.96627593, -0.96202266, -0.9659648, -1.0035348, -0.96524084, -0.99878395, -0.96427274, -1.0111394, -0.97098804, -0.97420347, -0.9967538, -1.0141741, -0.3232719, -0.3424955, -0.26068947, -0.28150293, -0.35697278, -0.41249302, -0.38878182, -0.20285347, -0.27839765, -0.35334656, -0.33839437, -0.27313802, -0.29046586, -0.32192913, -0.31447402, -0.34730858, -0.21689805, -0.304522, -0.32447213, -0.2896249, -0.33512294, -0.32773653, -0.4248295, -0.39373288, -0.30474356, -0.3288367, -0.31894615, -0.265663, -0.34730902, -0.3034945, -0.35643414, -0.3413877, -0.29857278, -0.29912362, -0.37403202, -0.33149236, -0.32426783, -0.35501337, -0.31760535, -0.32441667, -0.40314695, -0.37271526, -0.3442514, -0.3342493, -0.25783783, -0.3306707, -0.3019457, -0.3878294, -0.32955238, -0.30633527, -0.36775216, -0.32882944, -0.23324913, -0.35081652, -0.3317641, -0.30828965, -0.24097264, -0.34963566, -0.4148282, -0.34530377, -0.36527503, -0.4001787, -0.3185012, -0.31677517, -0.32117516, -0.33966008, -0.29611632, -0.28480014, -0.38080642, -0.3247347, -0.34749028, -0.4344047, -0.35467547, -0.3228204, -0.26763257, -0.33541307, -0.35306028, -0.3185663, -0.33492997, -0.39379218, -0.32145587, -0.32018277, -0.36341664, -0.28571656, -0.35643443, -0.2524289, -0.29585838, -0.3473762, -0.33187148, -0.3439271, -0.29668778, -0.29600903, -0.2685875, -0.34301186, -0.26425108, -0.42627582, -0.3440093, -0.35049817, -0.40867803, -0.375897, -0.31311357, -0.3734425, -0.23774752, -0.2670157, -0.3416501, -0.24419978, -0.34672487, -0.3854967, -0.33385736, -0.34075418, -0.35980228, -0.30387652, -0.30498913, -0.36595878, -0.26542127, -0.30606967, -0.38743344, -0.28746292, -0.29436612, -0.22944027, -0.38562486, -0.3936477, -0.3633493, -0.35856357, -0.33321765, -0.30554774, -0.3257056, -0.29171133, -0.3160363, -0.32041553, -0.38015482, -0.45353797, -0.261606, -0.36593366, -0.36587334, -0.42093632, -0.31433523, -0.35597774, -0.3211407, -0.3972182, -0.3832195, -0.35321692, -0.36933225, -0.28107777, -0.38827208, -0.32386002, -0.33559263, -0.34320474, -0.3285949, -0.31037825, -0.3884146, -0.35347104, -0.43315074, -0.2906191, -0.40349278, -0.31625375, -0.35741812, -0.36374453, -0.344228, -0.35848022, -0.36371487, -0.2543289, -0.40266606, -0.41519746, -0.30876347, -0.33492294, -0.36133504, -0.38083458, -0.34929737, -0.43598315, -0.32880092, -0.29732427, -0.3503514, -0.23911849, -0.32939568, -0.4203644, -0.31995308, -0.34878194, -0.39636454, -0.43340322, -0.35974547, -0.32377574, -0.34813747, -0.33525094, -0.35575417, -0.39557335, -0.33231077, -0.35921526, -0.32924798, -0.38174868, -0.31992343, -0.28755447, -0.35086972, -0.37493667, -0.35247028, -0.36529037, -0.36500588, -0.354212, -0.3441895, -0.3878301, -0.39818987, -0.37519157, -0.38199463, -0.37151203, -0.36042818, -0.36153665, -0.2982966, -0.3835905, -0.37289375, -0.37312856, -0.35229516, -0.42053464, -0.37879467, -0.29230076, -0.39474335, -0.37589934, -0.2931178, -0.23808911, -0.37434307, -0.30141515, -0.32863286, -0.27465525, -0.39906582, -0.29619327, -0.34972936, -0.376933, -0.35857958, -0.32428658, -0.3868887, -0.33528423, -0.37907958, -0.31976512, -0.38247225, -0.33514953, -0.3538606, -0.3552718, -0.39310935, -0.39659652, -0.3802667, -0.34219268, -0.29364276, -0.4736006, -0.30337533, -0.47838256, -0.3355765, -0.28469416, -0.35502738, -0.325893, -0.39226857, -0.30322918, -0.39555094, -0.4107006, -0.39542463, -0.41370592, -0.41974363, -0.29768002, -0.39286932, -0.40502736, -0.34161028, -0.36759982, -0.3719928, -0.43312195, -0.3511563, -0.34098467, -0.30950657, -0.33497474, -0.44371334, -0.31814224, -0.29343423, -0.27829728, -0.37376747, -0.38100374, -0.3286153, -0.4238635, -0.3115044, -0.41232356, -0.3819504, -0.32319254, -0.4049634, -0.34931055, -0.29612777, -0.36636183, -0.33562, -0.37053922, -0.31244922, -0.34941563, -0.31688717, -0.3442552, -0.27186105, -0.41324708, -0.3264773, -0.35960862, -0.33533764, -0.44114015, -0.3818371, -0.33910754, -0.34870532, -0.3993747, -0.30959532, -0.29949185, -0.36360532, -0.3066532, -0.2948345, -0.38842747, -0.24901715, -0.32687125, -0.31159863, -0.25678036, -0.40737262, -0.35012105, -0.32243836, -0.3476111, -0.36278957, -0.2971044, -0.34234732, -0.41828844, -0.36111033, -0.41358915, -0.43204358, -0.34384418, -0.3503842, -0.36536083, -0.379017, -0.34788054, -0.31409016, -0.3524185, -0.2874835, -0.407212, -0.33744374, -0.39045385, -0.3399167, -0.34879377, -0.36895794, -0.34995782, -0.36706832, -0.336682, -0.3703559, -0.3510199, -0.32208568, -0.30952027, -0.3741777, -0.30708945, -0.36374715, -0.38079545, -0.40345183, -0.36560184, -0.37724456, -0.38777265, -0.3253965, -0.41182575, -0.393824, -0.2660399, -0.2811346, -0.400534, -0.42339966, -0.3234279, -0.3815027, -0.41801098, -0.34745213, -0.28966317, -0.30127463, -0.33265078, -0.3932052, -0.36418876, -0.37350556, -0.36821237, -0.33360627, -0.38959756, -0.3194441, -0.33800492, -0.38381454, -0.39269176, -0.37305838, -0.35685703, -0.39362535, -0.3556606, -0.3981088, -0.38334718, -0.42246726, -0.38238484, -0.39515987, -0.297635, -0.3482761, -0.3223434, -0.37150863, -0.374455, -0.40656576, -0.32623702, -0.3825729, -0.36284927, -0.3628683, -0.25404707, -0.36035612, -0.3369983, -0.38515708, -0.3341526, -0.3381461, -0.3098065, -0.35234696, -0.43163863, -0.40223333, -0.3277277, -0.3934169, -0.34776562, -0.36801612, -0.35934225, -0.4000748, -0.34537464, -0.34234655, -0.35872355, -0.34065557, -0.36599284, -0.32692322, -0.37014422, -0.38238126, -0.35149187, -0.30260816, -0.37901834, -0.34474817, -0.28889292, -0.39800438, -0.3583097, -0.27414045, -0.31687853, -0.32284236, -0.3058302, -0.45166114, -0.37228432, -0.36207083, -0.30135483, -0.32397094, -0.26564094, -0.3060636, -0.3211288, -0.40375105, -0.305472, -0.29683623, -0.36663732, -0.33969072, -0.3404362, -0.32191175, -0.39277497, -0.38840845, -0.31392127, -0.35672787, -0.34148636, -0.30524424, -0.33404788, -0.31790036, -0.32486585, -0.32784006, -0.34857464, -0.3678626, -0.30207416, -0.36777592, -0.33452812, -0.3269368, -0.33729064, -0.3229421, -0.36183035, -0.33437195, -0.3161535, -0.37130624, -0.26315972, -0.3099617, -0.35150406, -0.26227853, -0.29021028, -0.38275105, -0.3658557, -0.28119904, -0.30346707, -0.37030655, -0.30526224, -0.3511081, -0.3745085, -0.34763926, -0.35489953, -0.35984063, -0.38281354, -0.40086696, -0.34331235, -0.27144292, -0.2928742, -0.36451057, -0.31496492, -0.30283508, -0.40025494, -0.27551457, -0.38734654, -0.37197137, -0.388199, -0.34968987, -0.39546034, -0.24360633, -0.26498848, -0.3882726, -0.27116, -0.28572777, -0.28026447, -0.4044915, -0.29704115, -0.31177172, -0.4125099, -0.35252878, -0.43515852, -0.2322587, -0.34482774, -0.280897, -0.31808978, -0.2927975, -0.4010376, -0.31184387, -0.3057585, -0.33563367, -0.32191738, -0.33942673, -0.3516476, -0.35782766, -0.3983378, -0.46841976, -0.3309854, -0.33709124, -0.39012203, -0.39843157, -0.33472487, -0.29681274, -0.36207616, -0.31918353, -0.35671008, -0.28980684, -0.33976883, -0.44180956, -0.38395795, -0.39649686, -0.3357221, -0.39256755, -0.4042081, -0.3719458, -0.3701839, -0.39925346, -0.37974992, -0.49615493, -0.38714322, -0.42824927, -0.4026015, -0.43243542, -0.380646, -0.49924466, -0.47083327, -0.47056165, -0.47295085, -0.37338075, -0.39179763, -0.48615828, -0.47429362, -0.36409935, -0.34698558, -0.46236053, -0.43834975, -0.42058942, -0.30162466, -0.409588, -0.4063184, -0.37648174, -0.40681443, -0.36637813, -0.4515501, -0.4393904, -0.43823722, -0.41800496, -0.4052346, -0.47536585, -0.48407325, -0.5024533, -0.44297072, -0.44374874, -0.41050515, -0.4618242, -0.3870155, -0.36824328, -0.44090447, -0.38109168, -0.44354782, -0.54408, -0.4168239, -0.42865017, -0.38949725, -0.46589163, -0.44088617, -0.4882287, -0.5289258, -0.51323724, -0.49522957, -0.48235628, -0.4266931, -0.4396346, -0.519308, -0.53639185, -0.41536036, -0.4224002, -0.5516423, -0.49562892, -0.48716322, -0.40235308, -0.49092892, -0.5104754, -0.41313514, -0.5177438, -0.46757087, -0.5157746, -0.50611484, -0.48584208, -0.46767125, -0.49712637, -0.5663744, -0.48729917, -0.5606997, -0.5582217, -0.483614, -0.46216187, -0.5371417, -0.4458001, -0.52788985, -0.4735975, -0.5336144, -0.44179764, -0.48889908, -0.5590174, -0.4932424, -0.5431018, -0.5951519, -0.48358038, -0.47365305, -0.49949417, -0.58903265, -0.50923824, -0.48473147, -0.5343015, -0.52414, -0.54556763, -0.5634463, -0.479925, -0.5481795, -0.53505194, -0.58716667, -0.5483922, -0.5508169, -0.5047809, -0.45077077, -0.5792618, -0.5662447, -0.4982275, -0.41334268, -0.5130179, -0.5324192, -0.56751156, -0.5514332, -0.49080643, -0.5534605, -0.5728562, -0.6469104, -0.5845562, -0.58163536, -0.4882684, -0.53357315, -0.54301894, -0.55791116, -0.57756805, -0.57161546, -0.6102835, -0.5668237, -0.6630901, -0.62125945, -0.60060084, -0.5883069, -0.6109369, -0.5569782, -0.6425828, -0.55715084, -0.51329374, -0.5831015, -0.6617849, -0.551247, -0.54325926, -0.6454762, -0.58749175, -0.5730419, -0.59836423, -0.70013833, -0.66393065, -0.57643604, -0.63202846, -0.5941777, -0.6382172, -0.5958121, -0.557637, -0.59530103, -0.6557318, -0.639956, -0.6707212, -0.60079086, -0.56065726, -0.6148294, -0.6262096, -0.6970594, -0.63443506, -0.6476549, -0.70301926, -0.66277003, -0.6252054, -0.63276243, -0.64770377, -0.6771834, -0.6097437, -0.5699843, -0.6529175, -0.62251997, -0.56610096, -0.70251286, -0.6534518, -0.66143286, -0.6685307, -0.6910608, -0.69598734, -0.6994573, -0.64058995, -0.6779599, -0.63528943, -0.5531728, -0.6152898, -0.62120605, -0.6260086, -0.6735046, -0.6661252, -0.63301706, -0.6579374, -0.628538, -0.69491136, -0.6043947, -0.6264261, -0.6839181, -0.6738112, -0.59984744, -0.70753765, -0.6367717, -0.69528794, -0.6140903, -0.66521037, -0.67800426, -0.6993669, -0.6371746, -0.67117083, -0.7347295, -0.697778, -0.67909694, -0.7176939, -0.7360872, -0.65744984, -0.68177056, -0.64250886, -0.7001289, -0.6717291, -0.6688163, -0.7362765, -0.6870618, -0.7335912, -0.7194607, -0.7481754, -0.7134259, -0.6257701, -0.73330104, -0.6911453, -0.6455798, -0.7166878, -0.7311561, -0.7595973, -0.6633228, -0.73519135, -0.7235298, -0.6914803, -0.774547, -0.72414064, -0.71421456, -0.7365233, -0.73532176, -0.7894472, -0.7475778, -0.7404417, -0.77062, -0.75562763, -0.6771966, -0.6879575, -0.73206496, -0.66859066, -0.6985332, -0.66662467, -0.7416768, -0.75337493, -0.82136357, -0.6988003, -0.76759076, -0.7232677, -0.758535, -0.6831596, -0.71180344, -0.72204745, -0.75352645, -0.8275796, -0.71904886, -0.7658354, -0.7321774, -0.7863339, -0.7428626, -0.85224116, -0.75220144, -0.7448065, -0.7390411, -0.7876141, -0.73109674, -0.8258357, -0.7676909, -0.78031933, -0.7232646, -0.8112656, -0.73010385, -0.7577059, -0.7818631, -0.80646, -0.6933334, -0.8146126, -0.71522534, -0.74516034, -0.83840036, -0.80659425, -0.79030144, -0.8048742, -0.7055596, -0.8350452, -0.82544816, -0.84607553, -0.7652085, -0.8215517, -0.8471831, -0.8026781, -0.8184172, -0.8435279, -0.8430098, -0.8100848, -0.7436825, -0.8086766, -0.8227552, -0.81414497, -0.78676975, -0.7976341, -0.7871932, -0.7882801, -0.83588266, -0.74246454, -0.81073666, -0.8950739, -0.80366814, -0.8167319, -0.836993, -0.83241713, -0.86840165, -0.864581, -0.8290602, -0.84321713, -0.8103044, -0.8936565, -0.8090838, -0.8625586, -0.7601987, -0.80993783, -0.8491484, -0.88551474, -0.8235198, -0.7462442, -0.76164305, -0.8968309, -0.8830911, -0.90622747, -0.88811207, -0.77576673, -0.8411968, -0.8463372, -0.8402854, -0.81984925, -0.97950447, -0.8845787, -0.8965235, -0.8125707, -0.8969716, -0.82387495, -0.86619806, -0.9513588, -0.92064154, -0.89985096, -0.8817109, -0.88372517, -0.8814908, -0.899642, -0.840325, -0.7995895, -0.8880696, -0.9061552, -0.8609196, -0.83898115, -0.8147311, -0.87501466, -0.93221235, -0.8251878, -0.92743754, -0.8160361, -0.86140585, -0.8338437, -0.81380236, -0.85664856, -0.83265424, -1.0048422, -0.9543015, -0.9071593, -0.84046733, -0.9017638, -0.8629168, -0.90059865, -0.9384856, -0.9203321, -0.9254918, -0.9149401, -0.8954556, -0.9041524, -0.89970315, -0.9617423, -0.90719175, -0.94441724, -0.9408182, -0.944595, -0.91445446, -0.9554318, -0.9215013, -0.88490367, -0.9094902, -0.9975604, -0.90984714, -0.8962946, -0.9614793, -0.8842925, -0.9004761, -0.94808745, -0.9453429, -0.9498739, -1.0270691, -0.9395689, -0.97014844, -0.9513433, -0.9485569, -0.8861946, -0.92588425, -0.91464865, -0.9054589, -0.94450927, -0.90705585, -0.9526495, -0.9689126, -0.89830005, -0.947299, -0.9071722, -0.98460793, -0.99966145, -1.0176501, -0.8903979, -0.93437815, -1.0227269, -1.0087016, -1.0080571, -0.9892702, -0.93993235, -1.0343131, -1.0078645, -0.9887469, -0.99496436, -1.094068, -0.9143096, -0.93783724, -1.0446805, -0.9451376, -1.0404612, -0.9971237, -1.0069348, -1.018041, -1.0013237, -0.9430413, -0.91491055, -1.0013124, -1.0180091, -0.98123515, -1.0428691, -1.0078118, -1.4668865, -1.4723346, -1.3824983, -1.4949806, -1.4435781, -1.4841781, -1.4508395, -1.506711, -1.4332767, -1.4866831, -1.4547325, -1.4730473, -1.4247098, -1.5241861, -1.469243, -1.4635272, -1.463984, -1.4706669, -1.5062563, -1.4628829, -1.4398286, -1.4644408, -1.4148741, -1.5214077, -1.4510865, -1.459147, -1.492784, -1.4330852, -1.4071604, -1.4801728, -1.4986823, -1.4311473, -1.3747878, -1.4632341, -1.5444615, -1.4788276, -1.433884, -1.438576, -1.443968, -1.4311244, -1.3947365, -1.5082471, -1.4213135, -1.4896885, -1.488389, -1.456951, -1.4976456, -1.4121984, -1.4102819, -1.4781836, -1.4656472, -1.4373579, -1.4774349, -1.3972201, -1.5082716, -1.3992448, -1.4625397, -1.4749348, -1.4289826, -1.3860583, -1.4169608, -1.4152186, -1.4347328, -1.4447563, -1.4459723, -1.3773553, -1.5003716, -1.4256392, -1.4611285, -1.4481792, -1.4381099, -1.5244443, -1.4009753, -1.417723, -1.4388561, -1.4637381, -1.4896927, -1.4566073, -1.4600391, -1.468678, -1.4816966, -1.4537287, -1.3863654, -1.3980246, -1.4169877, -1.4016466, -1.4315141, -1.3921564, -1.4615885, -1.4329659, -1.4137709, -1.4127072, -1.4128172, -1.5091913, -1.4770246, -1.4492568, -1.388754, -1.4552447, -1.3854773, -1.3723521, -1.3841221, -1.3712397, -1.4268951, -1.4296641, -1.3861129, -1.4458717, -1.4283438, -1.431514, -1.3446522, -1.3587446, -1.3825524, -1.4183125, -1.4267949, -1.426352, -1.4119108, -1.3889992, -1.4200573, -1.4049177, -1.3668708, -1.3627276, -1.319731, -1.4016488, -1.4006933, -1.2965778, -1.3389612, -1.3078101, -1.4515753, -1.3064767, -1.4087743, -1.4206309, -1.3716528, -1.3642448, -1.4174076, -1.3109716, -1.3526468, -1.3812279, -1.3918438, -1.3532053, -1.3545089, -1.3648484, -1.4091822, -1.3194861, -1.3510108, -1.3328457, -1.3690557, -1.3779113, -1.3273423, -1.335741, -1.3086028, -1.3702413, -1.4071707, -1.3403903, -1.3191525, -1.3252774, -1.3491298, -1.2731615, -1.3747858, -1.3230629, -1.3724246, -1.3799227, -1.3899782, -1.3539289, -1.3312235, -1.2859478, -1.3702991, -1.3165016, -1.3149045, -1.3316212, -1.416587, -1.374145, -1.2456737, -1.3059766, -1.3333778, -1.3548114, -1.3498151, -1.3682947, -1.3538723, -1.3149202, -1.3468405, -1.3191539, -1.381972, -1.3450235, -1.3326523, -1.252507, -1.2875752, -1.3713841, -1.3257935, -1.3194263, -1.3462307, -1.2953918, -1.3714186, -1.2710267, -1.2985904, -1.20318, -1.3038199, -1.3047494, -1.2572737, -1.3799007, -1.3478649, -1.3637397, -1.2810166, -1.3383523, -1.2496121, -1.2790492, -1.2538123, -1.2602961, -1.2741674, -1.3543432, -1.3982844, -1.307231, -1.2459664, -1.2843103, -1.2646449, -1.280628, -1.3121474, -1.2424443, -1.2954284, -1.2921352, -1.1814356, -1.3082564, -1.2623676, -1.2889142, -1.2886335, -1.3174078, -1.2271264, -1.3086522, -1.2634126, -1.2314215, -1.279876, -1.3281367, -1.3463728, -1.19294, -1.2775393, -1.2715487, -1.2401848, -1.2921715, -1.2016612, -1.280446, -1.2792319, -1.2885826, -1.3091192, -1.2691224, -1.2585099, -1.3387327, -1.2845874, -1.2640691, -1.2960947, -1.2642477, -1.167743, -1.2501068, -1.2004771, -1.3080381, -1.2697458, -1.2109835, -1.2498578, -1.2360773, -1.2745194, -1.1969421, -1.2509263, -1.2849624, -1.2366272, -1.285588, -1.1992995, -1.2529421, -1.2387142, -1.2701546, -1.2185725, -1.2629614, -1.2392488, -1.2241414, -1.1783476, -1.2897716, -1.2450635, -1.2469018, -1.2438028, -1.2885351, -1.2367926, -1.2546966, -1.2362415, -1.244729, -1.2639802, -1.1872892, -1.1979971, -1.2158144, -1.1726816, -1.173434, -1.2441018, -1.1734343, -1.2340293, -1.2558382, -1.2467963, -1.2098117, -1.2280363, -1.2704489, -1.1955934, -1.2573991, -1.2198637, -1.2154652, -1.180361, -1.163646, -1.1504138, -1.192447, -1.1963431, -1.2184283, -1.180883, -1.1934361, -1.1552179, -1.1158339, -1.1187007, -1.1695371, -1.2236493, -1.1164305, -1.2309991, -1.2689115, -1.1737041, -1.1852405, -1.2002647, -1.1577176, -1.2296836, -1.183516, -1.1985639, -1.1901753, -1.0928184, -1.1743944, -1.1763856, -1.1387963, -1.1191156, -1.2261673, -1.1432672, -1.2282362, -1.1378541, -1.135921, -1.1910346, -1.1861665, -1.1240511, -1.1110315, -1.0733161, -1.2062356, -1.1502198, -1.1718462, -1.184708, -1.1810912, -1.1142973, -1.146693, -1.1118709, -1.1802075, -1.095844, -1.2016754, -1.1234196, -1.140317, -1.1034116, -1.10179, -1.1565278, -1.1784253, -1.1479166, -1.1939592, -1.1671871, -1.1819654, -1.1720972, -1.192864, -1.1307404, -1.1516371, -1.1814315, -1.1650035, -1.1098709, -1.1892823, -1.1411018, -1.0967257, -1.1108918, -1.0856546, -1.1527054, -1.1525844, -1.1548121, -1.1679988, -1.0920743, -1.1661465, -1.1144233, -1.1474264, -1.1553413, -1.1288943, -1.1216116, -1.1086038, -1.0753703, -1.1291001, -1.0524776, -1.1117477, -1.1302305, -1.093675, -1.151636, -1.071718, -1.1365945, -1.1012917, -1.0971551, -1.0479631, -1.0702741, -1.034616, -1.0434074, -1.1072967, -1.103123, -1.1213088, -1.0781769, -1.1018022, -1.0602406, -1.1677072, -1.1076596, -1.0900148, -1.1106815, -1.01355, -1.1531112, -1.0961311, -1.0601835, -1.1336045, -1.1172493, -1.0666206, -1.0323889, -1.0719697, -1.0679674, -1.0515804, -1.06122, -1.0310446, -1.0998268, -1.0737269, -1.032609, -1.042239, -1.0518423, -1.0869482, -1.0265183, -0.9933348, -1.1041887, -1.0387869, -1.0266511, -1.0687017, -0.98438334, -1.0433861, -0.99558353, -1.0809274, -1.039005, -0.9641783, -1.0719705, -1.0196707, -0.94320524, -1.0385993, -1.0226659, -1.0149535, -1.0253325, -1.0219867, -1.0667005, -1.0355498, -1.003709, -1.0285611, -1.0532997, -1.0409436, -1.034461, -1.0822538, -1.0349227, -1.0083871, -1.0327551, -1.1115923, -0.9908258, -0.9538071, -1.0350423, -0.9686241, -1.0207988, -1.0257478, -1.070373, -0.96118116, -1.0141351, -1.0174621, -1.0738617, -1.0051968, -0.95013607, -1.0502505, -1.0312072, -1.05843, -1.0218134, -0.97210884, -0.949381, -0.9768734, -1.0319631, -1.0370746, -0.9865458, -1.0240695, -1.0561341, -0.9337231, -1.0361177, -1.0576253, -1.0126922, -1.0402828, -1.0523213, -1.0847969, -0.99967873, -0.9708481, -1.0223726, -0.9408338, -0.9429332, -0.9777694, -0.9230864, -0.9515238, -0.98925257, -0.99967813, -1.479301, -1.4261222, -1.5130768, -1.5399747, -1.5197546, -1.4987191, -1.5049385, -1.5165632, -1.5009437, -1.5505502, -1.4841552, -1.5047332, -1.490809, -1.5449986, -1.4704636, -1.4510033, -1.4721528, -1.4930273, -1.5293492, -1.5635992, -1.4985094, -1.4367201, -1.4700714, -1.5102825, -1.5360188, -1.5085646, -1.4373517, -1.510679, -1.5161346, -1.5226685, -1.5104747, -1.5316547, -1.4936836, -1.5214758, -1.5282389, -1.5364735, -1.4994757, -1.4576019, -1.469575, -1.55688, -1.3802557, -1.4913836, -1.5846448, -1.4840953, -1.44871, -1.5300583, -1.4055763, -1.5378144, -1.4916689, -1.482747, -1.4943159, -1.5427903, -1.5190411, -1.5232327, -1.4889026, -1.4837028, -1.5454998, -1.4880593, -1.5470855, -1.4813707, -1.4370047, -1.515648, -1.4993364, -1.4920528, -1.4909534, -1.4528255, -1.512382, -1.5361981, -1.5300623, -1.5112758, -1.5615027, -1.4899569, -1.4928026, -1.5139654, -1.5377817, -1.5216594, -1.490967, -1.4982101, -1.5431935, -1.4448576, -1.512954, -1.5039423, -1.4625139, -1.5411842, -1.4438621, -1.5107145, -1.51627, -1.524575, -1.5042541, -1.5252631, -1.5776308, -1.4995005, -1.4807451, -1.4872296, -1.5335165, -1.4967797, -1.4939381, -1.4803736, -1.4287553, -1.4967945, -1.5023952, -1.5602498, -1.571068, -1.5909336, -1.5277212, -1.4841149, -1.4682165, -1.5028691, -1.5413114, -1.4436834, -1.4905565, -1.5103917, -1.5344374, -1.5466716, -1.5127008, -1.5417407, -1.5285966, -1.5068998, -1.4648136, -1.4434196, -1.5580096, -1.5035851, -1.537287, -1.5761468, -1.4941843, -1.5606546, -1.5479215, -1.5152938, -1.5042279, -1.4770107, -1.5041639, -1.5366985, -1.541527, -1.4693961, -1.547528, -1.5102531, -1.5875943, -1.5139902, -1.582997, -1.5330067, -1.4864326, -1.5367422, -1.5236981, -1.5126529, -1.5437763, -1.5343006, -1.5249124, -1.5021789, -1.5281798, -1.4694746, -1.5088792, -1.580557, -1.5257547, -1.5665431, -1.4958937, -1.5011243, -1.5263765, -1.4962928, -1.4919403, -1.5827061, -1.5514972, -1.5108732, -1.5216827, -1.5048984, -1.5096395, -1.568413, -1.5010068, -1.5683303, -1.5485133, -1.5018055, -1.4923232, -1.5467856, -1.5756809, -1.509059, -1.581281, -1.5454566, -1.5265474, -1.5359712, -1.5054033, -1.5233822, -1.5032474, -1.5779529, -1.4854877, -1.5779384, -1.5127842, -1.5378342, -1.4767182, -1.5311725, -1.5543885, -1.5415262, -1.5160954, -1.524086, -1.599921, -1.4657989, -1.5028908, -1.5113924, -1.4467067, -1.5231289, -1.5695747, -1.5853164, -1.5204247, -1.4822781, -1.5015781, -1.4981762, -1.5373514, -1.5599631, -1.5541067, -1.5023115, -1.5591336, -1.5179102, -1.5229466, -1.53849, -1.5304153, -1.5746714, -1.5198957, -1.549196, -1.548978, -1.4992199, -1.48526, -1.5355217, -1.5667624, -1.5212393, -1.5234071, -1.506666, -1.5530462, -1.5471425, -1.5087798, -1.4526052, -1.5748293, -1.5128706, -1.5172946, -1.5388038, -1.4609284, -1.5006008, -1.5192261, -1.4890826, -1.5786304, -1.5820965, -1.5789859, -1.4438244, -1.5436289, -1.5655792, -1.5218157, -1.5854094, -1.547487, -1.4726926, -1.5453671, -1.5567019, -1.5242145, -1.512609, -1.4968425, -1.5511197, -1.4979367, -1.5413084, -1.5074489, -1.5572938, -1.5016465, -1.5096622, -1.5265532, -1.5347391, -1.5111611, -1.5764551, -1.5034922, -1.5979562, -1.5289164, -1.469323, -1.6081722, -1.4976795, -1.5494142, -1.4808049, -1.5870347, -1.5459349, -1.5864315, -1.519032, -1.5825125, -1.5467155, -1.5082586, -1.5008793, -1.555752, -1.5095887, -1.5487108, -1.5167594, -1.5280113, -1.5116872, -1.5478375, -1.5608015, -1.4729661, -1.5732336, -1.5641618, -1.591786, -1.5617489, -1.5886579, -1.5270655, -1.5574007, -1.518218, -1.5332358, -1.5911577, -1.5460367, -1.5086937, -1.5006174, -1.5213923, -1.5452697, -1.5093231, -1.5609515, -1.5230619, -1.5236659, -1.5452302, -1.5000292, -1.5436404, -1.5333333, -1.4945515, -1.4858732, -1.5848286, -1.4513912, -1.5452254, -1.5867894, -1.4787773, -1.5510902, -1.5299759, -1.5117637, -1.5955455, -1.5394032, -1.588559, -1.5507951, -1.516789, -1.5762882, -1.5490977, -1.5431988, -1.5231477, -1.5199225, -1.5192311, -1.5504537, -1.5765071, -1.5481284, -1.5296793, -1.4944788, -1.4908996, -1.5459398, -1.4159771, -1.5229741, -1.5376179, -1.4843675, -1.5896924, -1.5402491, -1.5171089, -1.5483241, -1.5404193, -1.4776611, -1.509491, -1.5261714, -1.5507224, -1.5133361, -1.5644971, -1.4774916, -1.4819288, -1.4705358, -1.6047696, -1.5210814, -1.5499206, -1.5908871, -1.5469973, -1.4480647, -1.4954312, -1.5694176, -1.5611947, -1.5389025, -1.5162796, -1.4690912, -1.5295289, -1.5004041, -1.5310321, -1.5147219, -1.5291495, -1.5364039, -1.4990797, -1.4964992, -1.5496273, -1.5025377, -1.5099131, -1.560355, -1.5355451, -1.5976467, -1.5167222, -1.4867325, -1.3978188, -1.4912193, -1.527436, -1.490258, -1.5214291, -1.5371766, -1.5611129, -1.5121784, -1.4590281, -1.5047723, -1.5172887, -1.543318, -1.5430053, -1.487996, -1.5191934, -1.542645, -1.5314599, -1.4546827, -1.4864653, -1.5617323, -1.5273974, -1.476944, -1.4558768, -1.5635867, -1.5157356, -1.5448321, -1.4647722, -1.5434444, -1.5161402, -1.4517574, -1.5126989, -1.4610726, -1.550452, -1.5005851, -1.4919617, -1.5449879, -1.4789453, -1.5425032, -1.5290914, -1.5034785, -1.4699111, -1.3919427, -1.5065985, -1.6054072, -1.5137746, -1.4763715, -1.5634377, -1.4620309, -1.4791265, -1.560839, -1.488829, -1.538976, -1.4852669, -1.4942881, -1.5355113, -1.4772549, -1.5250516, -1.5653708, -1.5003746, -1.5213716, -1.5759002, -1.5929427, -1.4401972, -1.5314035, -1.5193174, -1.4956458, -1.5072227, -1.5264134, -1.5070064, -1.5069262, -1.5205886, -1.4831984, -1.4870327, -1.5110486, -1.5710304, -1.5217278, -1.4477806, -1.529114, -1.5883269, -1.4756278, -1.5029612, -1.5425916, -1.5070393, -1.4699609, -1.4951423, -1.4708245, -1.517103, -1.4925702, -1.503305, -1.4935423, -1.4851403, -1.4842963, -1.478501, -1.410262, -1.4766223, -1.513328, -1.4913948, -1.5568774, -1.5191658, -1.5365853, -1.4692905, -1.4535831, -1.5522417, -1.549074, -1.4880716, -1.4807909, -1.5028815, -1.5519549, -1.5558228, -1.5454512, -1.5110829, -1.4966402, -1.501183, -1.5066516, -1.4999061, -1.4913328, -1.4311898, -1.5368109, -1.5766076, -1.4984431, -1.5340545, -1.4539456, -1.4855632, -1.4957948, -1.4998232, -1.5499709, -1.5117853, -1.4744661, -1.5051256, -1.5337162, -1.4936678, -1.4530246, -1.5389674, -1.4823368, -1.6078737, -1.4653071, -1.5069144, -1.4804053, -1.466675, -1.4820061, -1.458344, -1.5045896, -1.4804211, -1.4851694, -1.5335882, -1.444609, -1.5042481, -1.4336323, -1.4774306, -1.4949875, -1.3803296, -1.4410079, -1.411699, -1.4521496, -1.422647, -1.3977532, -1.4320629, -1.485873, -1.3540521, -1.448396, -1.5445671, -1.4378755, -1.4586041, -1.4670253, -1.4403491, -1.5134742, -1.4527186, -1.4474483, -1.410451, -1.5275657, -1.453026, -1.3842459, -1.4993904, -1.4774635, -1.5011091, -1.4756367, -1.5013027, -1.4797987, -1.4308686, -1.4261453, -1.3769634, -1.4872694, -1.4893594, -1.4314466, -1.413223, -1.4694769, -1.4269041, -1.3948741, -1.4826323, -1.4349917, -1.4292488, -1.3904397, -1.4468246, -1.4533294, -1.4877989, -1.4693558, -1.4359727, -1.4537935, -1.4471409, -1.4470689, -1.371378, -1.4510007, -1.483388, -1.4368722, -1.4907188, -1.3776007, -1.4300054, -1.4411519, -1.3831171, -1.417262, -1.4643457, -1.3574002, -1.3517057, -1.4039071, -1.4031363, -1.3664515, -1.4838881, -1.4319842, -1.4402404, -1.3945978, -1.391098, -1.3912488, -1.4580052, -1.4011378, -1.374619, -1.3662398, -1.4682055, -1.4114269, -1.4221063, -1.3930178, -1.3417892, -1.3773164, -1.4701018, -1.4598472, -1.4182835, -1.3967274, -1.3594327, -1.4227712, -1.4100746, -1.3853397, -1.3410461, -1.3266878, -1.3597997, -1.3905988, -1.3104258, -1.3911023, -1.404447, -1.4049072, -1.4448955, -1.4088358, -1.4351666, -1.410144, -1.3559543, -1.3459924, -1.3821114, -1.3511071, -1.3182254, -1.4090974, -1.3389022, -1.3868104, -1.4019082, -1.3608544, -1.3606461, -1.3737721, -1.3575572, -1.2929821, -1.3298049, -1.3626409, -1.3249828, -1.3027861, -1.3439082, -1.3738246, -1.3999298, -1.319536, -1.4076228, -1.3334925, -1.32156, -1.2949429, -1.398777, -1.3598793, -1.3156564, -1.317534, -1.3579646, -1.3487432, -1.3765893, -1.3661575, -1.3958755, -1.3604739, -1.3426807, -1.3955889, -1.362819, -1.3195012, -1.312669, -1.3114572, -1.239388, -1.3779157, -1.362618, -1.3603718, -1.2871583, -1.3839796, -1.2591971, -1.3876057, -1.2677503, -1.3100239, -1.3373213, -1.2682376, -1.2820742, -1.3090526, -1.2782111, -1.3212222, -1.2994635, -1.3490779, -1.3559935, -1.295588, -1.3013214, -1.2290943, -1.2503986, -1.3161206, -1.3268325, -1.339617, -1.254598, -1.3355602, -1.2895008, -1.416158, -1.282541, -1.292386, -1.2376524, -1.3055534, -1.2882488, -1.3421483, -1.294405, -1.2580314, -1.3186548, -1.3044405, -1.2476401, -1.2831682, -1.2749592, -1.3444369, -1.3165174, -1.2371223, -1.295825, -1.2671845, -1.2704318, -1.2242453, -1.2895498, -1.2246041, -1.2888118, -1.185535, -1.3156494, -1.2353712, -1.2486184, -1.2277309, -1.2790992, -1.2653373, -1.1796241, -1.2466619, -1.2171657, -1.2687008, -1.1896158, -1.2896745, -1.2619241, -1.2763634, -1.1781106, -1.197178, -1.2294948, -1.2416062, -1.1750679, -1.2742686, -1.1826148, -1.2822497, -1.2761667, -1.261615, -1.2630343, -1.2280141, -1.2894439, -1.1973598, -1.2566781, -1.1969893, -1.216557, -1.2747879, -1.1830446, -1.2470264, -1.2848663, -1.2250085, -1.1912813, -1.098482, -1.2316725, -1.2420586, -1.2034883, -1.2576257, -1.1777413, -1.2775753, -1.1469973, -1.1996492, -1.2442371, -1.1831429, -1.1612444, -1.2573795, -1.1981945, -1.2764616, -1.2178643, -1.2681106, -1.2875026, -1.2149482, -1.1907332, -1.2717812, -1.1672517, -1.1978045, -1.2865598, -1.2209125, -1.2182337, -1.1935158, -1.2621169, -1.195652, -1.3322088, -1.2139056, -1.1317604, -1.1282947, -1.2518432, -1.2191322, -1.2048392, -1.1419312, -1.2171438, -1.2680526, -1.2745948, -1.2385602, -1.1592343, -1.185185, -1.2006438, -1.1439813, -1.1850936, -1.1502106, -1.1161189, -1.1416447, -1.120746, -1.1500676, -1.1587267, -1.2637103, -1.1629312, -1.1922193, -1.1980126, -1.1826401, -1.1862109, -1.123479, -1.1091862, -1.1772006, -1.2053226, -1.1100771, -1.0632839, -1.1688143, -1.1169462, -1.1664255, -1.1111101, -1.1631395, -1.2001789, -1.210554, -1.0908296, -1.1190472, -1.1285439, -1.1636902, -1.0934885, -1.1693909, -1.1599627, -1.1099083, -1.1176124, -1.2294787, -1.2086394, -1.1308768, -1.1968346, -1.2407064, -1.1716301, -1.1687698, -1.0813614, -1.1327645, -1.1852217, -1.1420763, -1.1015093, -1.0576046, -1.0745276, -1.1835926, -1.1359967, -1.10117, -1.1362324, -1.0113412, -1.0787206, -1.1693399, -1.1391788, -1.1150215, -1.1158838, -1.1286678, -1.1070378, -1.094465, -1.1278234, -1.0326416, -1.1878551, -1.1401795, -1.1328402, -1.1281606, -1.0803237, -1.0316265, -1.0953344, -1.00562, -1.0788432, -1.0547105, -1.0836692, -1.0690848, -1.1162741, -1.0654341, -1.1252545, -1.0692744, -1.0605307, -1.1033199, -1.1783221, -1.1336203, -1.0796912, -1.1044462, -1.0138433, -1.0748974, -1.1387255, -1.0809342, -1.1257598, -1.0201334, -1.0739808, -1.0498548, -1.0609806, -1.1185361, -1.0521222, -1.1972668, -1.0787618, -1.0561671, -1.0762367, -1.0179394, -1.0149393, -1.1083195, -1.0371675, -1.0499743, -1.0685729, -1.0687708, -1.0256677, -1.0620354, -1.0411077, -1.113868, -1.0152951, -1.0952659, -1.0736669, -1.0893252, -1.1255451, -1.0344565, -1.1024054, -1.0879116, -1.0922521, -1.0634055, -1.008669, -1.0355427, -1.0987613, -1.0773745, -1.062223, -1.027822, -0.9967104, -1.0012469, -1.0257486, -1.1282524, -1.0531437, -1.086858, -0.9438869, -1.0931231, -1.0574282, -1.0055957, -1.0477508, -1.0592667, -1.1038059, -1.0696539, -1.0056913, -1.0570483, -1.0005276, -0.9804009, -1.0222573, -1.0582036, -1.0474467, -1.0042378, -1.03442, -0.9775467, -1.0327504, -1.0034553, -1.0805051, -1.0849259, -0.9716985, -1.0569625, -0.93232656, -1.040501, -0.9112222, -0.97935426, -0.98746717, -0.9608333, -0.96208966, -0.9727285, -1.0211935, -0.9755845, -0.99308085, -0.9498615, -0.98782575, -1.048043, -0.9803761, -1.0723573, -1.0691198, -1.0139048, -1.0052845, -0.9907485, -1.0091691, -0.9741366, -1.0292006, -1.0061018, -0.9519007, -1.0571296, -0.98375726, -1.0069395, -0.96201444, -1.0605217, -1.0014286, -0.99210906, -0.97794807, -0.9547479, -0.95758104, -0.95547307, -0.9533721, -1.0209486, -1.010597, -1.0480968, -0.9633086, -0.93152285, -0.970371, -1.0346836, -0.9923856, -0.98650396, -0.9539089, -0.92824566, -0.9971721, -1.031808, -1.0052931, -0.9963664, -0.99990904, -0.9796921, -0.9764974, -0.98912287, -1.0801476, -1.0193989, -0.97697306, -0.97361577, -0.98312116, -1.0265602, -1.0173342, -0.9737474, -1.0187813, -0.9970486, -0.9462923, -1.0318103, -1.0453002, -0.93751633, -0.86128736, -1.0075431, -1.0525264, -1.0279595, -1.0254235, -1.0110251, -1.0771896, -1.0604777, -1.0317401, -1.0271316, -1.0757854, -1.0282648, -1.0285828, -1.0125147, -0.9343152, -1.005805, -0.99535644, -0.98214054, -1.0551717, -1.0317413, -1.003009, -0.9376657, -0.99219847, -0.93988466, -0.9811921, -0.99154985, -1.0209401, -0.9753648, -0.99856067, -1.1162571, -0.9566287, -0.932201, -1.0324799, -1.0158905, -1.0037154, -0.9806485, -0.9983952, -0.9765377, -1.0141087, -0.9952264, -1.0185012, -1.0454702, -1.0139245, -1.028347, -1.0670636, -0.96242166, -0.986953, -0.95221305, -1.0162134, -1.0244937, -1.0018126, -1.0205276, -1.040158, -0.92280674, -1.046545, -0.98303294, -1.0964144, -1.0375906, -0.989908, -1.0734266, -1.011604, -0.9955292, -1.0375099, -1.0076071, -1.0481205, -0.9171305, -0.95748794, -1.0159216, -0.97969925, -0.9587717, -1.0034828, -0.9856287, -1.0537977, -1.052048, -1.059907, -1.0586506, -1.0302895, -1.0225533, -1.0295286, -0.9893782, -1.0109608, -0.98770225, -1.0350759, -1.0196137, -1.0010196, -1.0347257, -1.0281775, -0.97832274, -1.0477248, -1.0008949, -1.0654701, -0.9643736, -0.96876574, -1.049006, -0.99234855, -1.029608, -0.97338605, -1.0597582, -1.0630561, -0.9653882, -0.99096346, -1.0317812, -0.9999056, -1.0095025, -1.00119, -0.9769033, -0.98070085, -0.98325825, -0.9504032, -0.9809313, -1.1000353, -0.9386623, -1.0583956, -1.0031825, -1.0582104, -0.9849299, -1.0092974, -1.1001105, -1.0521166, -1.0326731, -1.0891062, -0.9780773, -0.9695314, -1.0183476, -0.967497, -0.9703052, -1.0848784, -1.0231285, -1.0014226, -1.0582486, -0.99640656, -1.0316058, -1.0354999, -1.0713359, -1.0674664, -0.99325466, -1.0616429, -1.0008807, -1.0333833, -0.91953635, -1.1038198, -1.0683734, -0.94360983, -1.0041558, -0.98524594, -1.0229805, -1.008588, -1.0378466, -0.98564017, -0.9992255, -1.0575217, -0.98398876, -1.053558, -1.0132935, -1.0533926, -0.98582566, -1.0331296, -1.0574397, -1.0393878, -1.0760381, -1.0131234, -1.0093693, -1.0494603, -1.00863, -0.99116695, -0.999681, -1.0089223, -1.0238576, -1.0140954, -1.1461234, -1.1061049, -1.0399507, -1.053663, -1.0433722, -1.1115999, -0.9462453, -0.9743625, -1.0487992, -1.0084479, -1.0224396, -1.058677, -0.99326885, -1.0168234, -1.0541546, -0.972155, -1.0200201, -0.9812262, -1.0231396, -0.9771066, -0.9992591, -0.9941654, -1.0720237, -1.0626396, -1.0682211, -1.0353194, -0.95519507, -1.032407, -0.990445, -1.0423244, -1.0029757, -1.0222437, -0.9721818, -0.98972046, -1.0302129, -0.97050095, -1.0829601, -1.1199429, -0.9763901, -0.97008514, -1.02655, -1.1273322, -1.0292636, -0.99897003, -1.0392745, -1.0302813, -0.99224603, -0.952235, -1.0144609, -1.0674732, -0.9843005, -1.0020858, -1.0114698, -0.9873811, -1.0146868, -0.9670954, -0.96573853, -1.0556166, -1.0025856, -1.0124642, -0.96704876, -1.0346334, -1.0700169, -1.0321378, -0.9529505, -1.0858684, -1.0099164, -1.0714211, -1.0312612, -1.0230129, -0.97239506, -0.9959768, -1.0110971, -0.98665524, -0.9867413, -0.977546, -1.0338525, -0.9858825, -1.0092933, -1.0033809, -1.0568502, -1.0044725, -1.0470248, -1.0043366, -1.0617666, -0.97474647, -1.036906, -0.9896045, -1.0527965, -1.008316, -1.0892727, -1.058134, -1.0738944, -0.99429095, -1.0525348, -1.0406193, -0.998183, -0.96394813, -0.94592905, -1.0248852, -1.0215373, -1.0425984, -1.0564249, -1.0224526, -0.9777076, -1.0033033, -1.0193027, -1.0394512, -1.0848048, -1.0330335, -1.0405685, -0.9815799, -1.0275301, -1.0685844, -1.0123308, -1.0522668, -1.0393237, -0.9826366, -0.975487, -0.9633701, -0.9836714, -0.99848926, -1.0742757, -0.99711025, -1.0719888, -1.0447032, -1.0881066, -1.0497249, -1.0361975, -1.0561457, -1.0039304, -1.020626, -0.9638126, -0.9987979, -1.0031948, -1.0036961, -1.0764271, -1.0558537, -0.9455869, -1.0689003, -0.9534142, -1.0136297, -1.0086389, -0.99219906, -1.0697358, -0.99886143, -1.0494764, -1.0213344, -1.0603598, -1.0124598, -0.9868208, -1.0683722, -1.0159568, -0.9441409, -0.99017, -1.0701216, -1.0026495, -1.0254097, -0.969702, -1.0048944, -0.95193124, -1.0120864, -1.011064, -1.022436, -0.9622476, -0.96312976, -1.0303583, -0.9826913, -0.9779172, -0.98595285, -1.0845901, -0.98505795, -1.0414534, -1.0500469, -0.96516883, -1.0415999, -1.0563936, -1.0669751, -0.98014545, -1.0193012, -1.0047145, -0.896448, -1.001282, -1.0204039, -0.96078455, -1.0318702, -1.0448561, -1.042202, -0.9415387, -0.9959786, -0.9500879, -0.98402226, -0.9995378, -1.0802531, -1.0366058, -1.02995, -1.0659015, -1.0144312, -0.9973525, -1.0472425, -0.98638666, -1.0544941, -1.0238956, -0.9975151, -1.0657587, -0.99307156, -1.1027969, -1.0349259, -0.9989643, -1.0052624, -1.0393642, -0.9388927, -1.0517026, -1.0167322, -1.0361305, -0.95636404, -1.1127217, -1.0572355, -0.9972131, -0.9706272, -0.9954411, -1.0116737, -1.0369757, -0.9706998, -0.9701302, -1.0227932, -1.0649004, -0.98723567, -0.99979734, -0.9972228, -1.0291712, -0.9790579, -1.0622454, -1.0019693, -0.97328055, -1.0058659, -1.0032403, -0.97193325, -1.0100731, -1.0672247, -1.0090121, -0.9481416, -0.99683213, -0.9846022, -0.9023421, -1.0163544, -0.9993011, -0.9711673, -1.0682652, -1.0636458, -0.9691136, -1.0556105, -1.0289091, -1.0423857, -0.9851624, -1.0306361, -0.96294975, -0.93477726, -1.0512137, -1.01248, -0.98203576, -0.92568064, -1.0031909, -0.92645764, -0.9894748, -0.9929825, -1.0378151, -1.0599345, -0.9953865, -1.042296, -1.0415326, -0.9634925, -1.0134474, -0.9183092, -0.9893315, -0.9403055, -0.9731653, -0.9985614, -0.9973024, -0.9957956, -0.97421026, -0.90813327, -1.0365274, -1.0425909, -0.9880767, -0.9777827, -1.0736982, -1.0095892, -0.9907402 ], "yaxis": "y" } ], "layout": { "coloraxis": { "colorbar": { "title": { "text": "color" } }, "colorscale": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ] }, "legend": { "tracegroupgap": 0 }, "margin": { "t": 60 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "xaxis": { "anchor": "y", "domain": [ 0.0, 1.0 ], "title": { "text": "x" } }, "yaxis": { "anchor": "x", "domain": [ 0.0, 1.0 ], "title": { "text": "y" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "low_d_projection = emap_triplet.encode(high_d_data)\n", "fig = px.scatter(\n", " x=low_d_projection[:, 0],\n", " y=low_d_projection[:, 1],\n", " color=ids,\n", " color_continuous_scale=plotly.colors.sequential.Viridis\n", ")\n", "fig.show()" ] }, { "cell_type": "markdown", "id": "a87dcbec", "metadata": {}, "source": [ "\n", "\n", "### Adding a unit circle cost\n", "\n", "In this example, we will do something silly. We will replace EncoderMap's `center_cost` with a loss that tries to push the low-dimensional points into a unit circle. For a unit circle the following equation holds true:\n", "\n", "\\begin{align}\n", "x^2 + y^2 &= 1\\\\\n", "x^2 + y^2 - 1 &= 0\n", "\\end{align}\n", "\n", "Let us first plot a unit circle with matplotlib." ] }, { "cell_type": "code", "execution_count": 20, "id": "5ab8ffd2", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:04:54.810244Z", "iopub.status.busy": "2025-06-19T23:04:54.810011Z", "iopub.status.idle": "2025-06-19T23:04:54.878391Z", "shell.execute_reply": "2025-06-19T23:04:54.877946Z" } }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "hovertemplate": "x=%{x}
y=%{y}", "legendgroup": "", "line": { "color": "#636efa", "dash": "solid" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ 6.0, 5.997986676471885, 5.991954812830795, 5.981928697262707, 5.967948701396356, 5.950071117740945, 5.928367933016073, 5.902926538286621, 5.873849377069785, 5.841253532831181, 5.805270257531059, 5.766044443118978, 5.72373403810507, 5.678509411557132, 5.6305526670845225, 5.580056909571198, 5.527225467610503, 5.472271074772682, 5.415415013001886, 5.356886221591872, 5.296920375328275, 5.235758935509427, 5.17364817766693, 5.1108381999010115, 5.047581915823742, 4.984134036165192, 4.920750043143212, 4.857685161726715, 4.79519333193481, 4.733526186309965, 4.672932036682578, 4.613654874306872, 4.555933387394226, 4.5, 4.44607993613389, 4.394390312862333, 4.345139266054715, 4.298525112293679, 4.254735550324245, 4.213946905257212, 4.176323418570167, 4.142016586765023, 4.111164551345077, 4.0838915425679305, 4.060307379214092, 4.0405070263855025, 4.024570213114593, 4.012561111323606, 4.004528077426915, 4.000503457616815, 4.000503457616815, 4.004528077426915, 4.012561111323606, 4.024570213114593, 4.0405070263855025, 4.060307379214091, 4.0838915425679305, 4.111164551345077, 4.142016586765023, 4.176323418570167, 4.213946905257212, 4.254735550324245, 4.298525112293679, 4.345139266054715, 4.394390312862333, 4.44607993613389, 4.5, 4.5559333873942265, 4.613654874306872, 4.672932036682578, 4.733526186309965, 4.79519333193481, 4.857685161726715, 4.920750043143212, 4.984134036165193, 5.047581915823742, 5.110838199901011, 5.17364817766693, 5.235758935509428, 5.296920375328275, 5.356886221591871, 5.415415013001887, 5.472271074772683, 5.527225467610503, 5.580056909571198, 5.6305526670845225, 5.678509411557132, 5.72373403810507, 5.766044443118978, 5.805270257531059, 5.841253532831181, 5.873849377069785, 5.902926538286621, 5.928367933016073, 5.950071117740945, 5.967948701396356, 5.981928697262707, 5.991954812830795, 5.997986676471885, 6.0 ], "xaxis": "x", "y": [ 0.0, 0.0634239196565645, 0.12659245357374926, 0.18925124436041021, 0.2511479871810792, 0.3120334456984871, 0.3716624556603276, 0.42979491208917164, 0.4861967361004687, 0.5406408174555976, 0.5929079290546404, 0.6427876096865393, 0.690079011482112, 0.7345917086575333, 0.7761464642917568, 0.8145759520503357, 0.8497254299495144, 0.8814533634475821, 0.9096319953545183, 0.9341478602651067, 0.9549022414440739, 0.9718115683235417, 0.984807753012208, 0.9938384644612541, 0.998867339183008, 0.9998741276738751, 0.9968547759519424, 0.9898214418809327, 0.9788024462147787, 0.963842158559942, 0.9450008187146685, 0.9223542941045814, 0.8959937742913359, 0.8660254037844385, 0.8325698546347714, 0.795761840530832, 0.7557495743542583, 0.7126941713788627, 0.6667690005162917, 0.6181589862206051, 0.5670598638627709, 0.5136773915734063, 0.4582265217274105, 0.4009305354066136, 0.3420201433256689, 0.28173255684142967, 0.2203105327865408, 0.1580013959733499, 0.09505604330418244, 0.031727933498067656, -0.03172793349806786, -0.09505604330418263, -0.15800139597335008, -0.22031053278654056, -0.28173255684142984, -0.34202014332566866, -0.4009305354066138, -0.4582265217274103, -0.5136773915734064, -0.5670598638627706, -0.6181589862206053, -0.6667690005162915, -0.7126941713788629, -0.7557495743542582, -0.7957618405308321, -0.8325698546347713, -0.8660254037844388, -0.895993774291336, -0.9223542941045814, -0.9450008187146683, -0.9638421585599422, -0.9788024462147787, -0.9898214418809327, -0.9968547759519423, -0.9998741276738751, -0.998867339183008, -0.9938384644612541, -0.9848077530122081, -0.9718115683235417, -0.9549022414440739, -0.9341478602651068, -0.9096319953545182, -0.881453363447582, -0.8497254299495144, -0.8145759520503358, -0.7761464642917566, -0.7345917086575332, -0.690079011482112, -0.6427876096865396, -0.5929079290546402, -0.5406408174555974, -0.4861967361004688, -0.4297949120891719, -0.37166245566032724, -0.31203344569848707, -0.2511479871810794, -0.18925124436040974, -0.12659245357374904, -0.06342391965656452, -2.4492935982947064e-16 ], "yaxis": "y" } ], "layout": { "height": 500, "legend": { "tracegroupgap": 0 }, "margin": { "t": 60 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "width": 500, "xaxis": { "anchor": "y", "domain": [ 0.0, 1.0 ], "title": { "text": "x" } }, "yaxis": { "anchor": "x", "domain": [ 0.0, 1.0 ], "title": { "text": "y" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import matplotlib.pyplot as plt\n", "%matplotlib inline\n", "\n", "t = np.linspace(0,np.pi*2,100)\n", "\n", "px.line(x=np.cos(t) + 5, y=np.sin(t), width=500, height=500)" ] }, { "cell_type": "markdown", "id": "1f5b54b2", "metadata": {}, "source": [ "**How to put this information into a loss function?**\n", "\n", "We need to find a function that describes the distance between any (x, y)-coordinate to the unit circle." ] }, { "cell_type": "code", "execution_count": 21, "id": "90e74ac7-e488-4602-82e8-25e8d70587ff", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:04:54.880462Z", "iopub.status.busy": "2025-06-19T23:04:54.880289Z", "iopub.status.idle": "2025-06-19T23:04:54.991511Z", "shell.execute_reply": "2025-06-19T23:04:54.990978Z" } }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "coloraxis": "coloraxis", "hovertemplate": "x: %{x}
y: %{y}
color: %{z}", "name": "0", "type": "heatmap", "xaxis": "x", "yaxis": "y", "z": [ [ 7.0, 6.936001032241416, 6.872518185190561, 6.809551458847438, 6.747100853212045, 6.685166368284382, 6.62374800406445, 6.562845760552249, 6.502459637747778, 6.4425896356510375, 6.383235754262028, 6.324397993580749, 6.2660763536072, 6.208270834341382, 6.150981435783294, 6.094208157932937, 6.03795100079031, 5.982209964355414, 5.926985048628248, 5.872276253608813, 5.818083579297108, 5.764407025693134, 5.711246592796891, 5.6586022806083776, 5.606474089127595, 5.554862018354543, 5.503766068289222, 5.453186238931631, 5.40312253028177, 5.353574942339639, 5.30454347510524, 5.2560281285785715, 5.208028902759633, 5.160545797648425, 5.113578813244947, 5.067127949549201, 5.021193206561184, 4.975774584280899, 4.930872082708343, 4.886485701843519, 4.842615441686425, 4.799261302237061, 4.756423283495428, 4.714101385461525, 4.672295608135353, 4.6310059515169115, 4.5902324156062, 4.549975000403219, 4.51023370590797, 4.471008532120449, 4.432299479040661, 4.394106546668603, 4.356429735004275, 4.319269044047677, 4.28262447379881, 4.246496024257674, 4.210883695424267, 4.175787487298592, 4.141207399880647, 4.1071434331704335, 4.073595587167949, 4.040563861873196, 4.008048257286173, 3.9760487734068803, 3.9445654102353185, 3.9135981677714877, 3.883147046015387, 3.853212044967017, 3.8237931646263776, 3.7948904049934686, 3.766503766068289, 3.7386332478508413, 3.711278850341124, 3.6844405735391366, 3.6581184174448804, 3.6323123820583536, 3.607022467379559, 3.5822486734084933, 3.557991000145159, 3.5342494475895556, 3.5110240157416817, 3.488314704601539, 3.466121514169126, 3.4444444444444446, 3.4232834954274933, 3.4026386671182722, 3.3825099595167822, 3.3628973726230225, 3.343800906436993, 3.3252205609586944, 3.307156336188126, 3.289608232125288, 3.2725762487701813, 3.2560603861228046, 3.240060644183158, 3.2245770229512427, 3.2096095224270575, 3.1951581426106035, 3.1812228835018788, 3.167803745100886, 3.1549007274076226, 3.1425138304220903, 3.1306430541442882, 3.1192883985742164, 3.1084498637118756, 3.098127449557265, 3.0883211561103856, 3.0790309833712364, 3.0702569313398174, 3.0619990000161286, 3.054257189400171, 3.0470314994919434, 3.040321930291447, 3.034128481798681, 3.028451154013645, 3.02328994693634, 3.0186448605667655, 3.014515894904921, 3.010903049950807, 3.007806325704424, 3.005225722165772, 3.0031612393348492, 3.0016128772116577, 3.0005806357961973, 3.000064515088466, 3.000064515088466, 3.0005806357961973, 3.0016128772116577, 3.0031612393348492, 3.005225722165772, 3.007806325704424, 3.010903049950807, 3.014515894904921, 3.0186448605667646, 3.0232899469363392, 3.028451154013645, 3.034128481798681, 3.040321930291447, 3.0470314994919434, 3.054257189400171, 3.0619990000161286, 3.0702569313398174, 3.0790309833712355, 3.0883211561103847, 3.098127449557265, 3.1084498637118756, 3.1192883985742164, 3.1306430541442873, 3.1425138304220894, 3.1549007274076217, 3.167803745100885, 3.1812228835018788, 3.1951581426106026, 3.2096095224270575, 3.2245770229512427, 3.240060644183158, 3.2560603861228037, 3.2725762487701813, 3.289608232125288, 3.3071563361881253, 3.3252205609586944, 3.343800906436993, 3.3628973726230225, 3.3825099595167814, 3.4026386671182722, 3.4232834954274924, 3.4444444444444446, 3.466121514169126, 3.488314704601539, 3.5110240157416808, 3.5342494475895547, 3.557991000145159, 3.5822486734084933, 3.607022467379558, 3.6323123820583536, 3.6581184174448795, 3.6844405735391357, 3.711278850341123, 3.7386332478508404, 3.766503766068289, 3.794890404993467, 3.8237931646263768, 3.853212044967017, 3.8831470460153863, 3.9135981677714877, 3.9445654102353185, 3.9760487734068803, 4.0080482572861715, 4.040563861873196, 4.073595587167948, 4.107143433170432, 4.141207399880646, 4.175787487298591, 4.210883695424267, 4.246496024257673, 4.282624473798809, 4.319269044047676, 4.356429735004274, 4.394106546668601, 4.43229947904066, 4.4710085321204485, 4.510233705907969, 4.549975000403218, 4.590232415606199, 4.631005951516911, 4.672295608135352, 4.714101385461524, 4.756423283495426, 4.79926130223706, 4.842615441686423, 4.886485701843518, 4.930872082708342, 4.975774584280898, 5.021193206561183, 5.067127949549199, 5.113578813244947, 5.160545797648425, 5.208028902759633, 5.256028128578571, 5.304543475105239, 5.353574942339638, 5.4031225302817685, 5.453186238931629, 5.50376606828922, 5.554862018354541, 5.606474089127594, 5.658602280608377, 5.711246592796889, 5.764407025693133, 5.818083579297107, 5.872276253608812, 5.9269850486282465, 5.9822099643554125, 6.037951000790308, 6.094208157932935, 6.150981435783294, 6.208270834341381, 6.266076353607199, 6.324397993580748, 6.383235754262027, 6.442589635651036, 6.502459637747777, 6.562845760552247, 6.623748004064449, 6.6851663682843805, 6.747100853212044, 6.809551458847437, 6.872518185190559, 6.936001032241414, 7.0 ], [ 6.936001032241416, 6.872002064482831, 6.808519217431977, 6.745552491088853, 6.6831018854534605, 6.621167400525797, 6.559749036305865, 6.498846792793664, 6.438460669989194, 6.378590667892453, 6.319236786503444, 6.260399025822164, 6.202077385848615, 6.144271866582797, 6.0869824680247095, 6.030209190174352, 5.9739520330317255, 5.91821099659683, 5.862986080869663, 5.808277285850228, 5.754084611538524, 5.700408057934549, 5.647247625038306, 5.594603312849793, 5.54247512136901, 5.490863050595959, 5.439767100530637, 5.3891872711730455, 5.339123562523186, 5.289575974581055, 5.240544507346655, 5.1920291608199864, 5.144029935001049, 5.09654682988984, 5.049579845486363, 5.003128981790617, 4.9571942388026, 4.9117756165223145, 4.866873114949758, 4.822486734084935, 4.77861647392784, 4.735262334478476, 4.692424315736843, 4.65010241770294, 4.608296640376768, 4.5670069837583265, 4.526233447847615, 4.4859760326446345, 4.446234738149385, 4.407009564361865, 4.368300511282077, 4.330107578910018, 4.29243076724569, 4.255270076289092, 4.218625506040225, 4.182497056499089, 4.146884727665683, 4.111788519540008, 4.077208432122062, 4.0431444654118485, 4.009596619409365, 3.9765648941146114, 3.9440492895275883, 3.912049805648296, 3.8805664424767343, 3.8495992000129036, 3.819148078256802, 3.7892130772084327, 3.7597941968677926, 3.7308914372348836, 3.702504798309705, 3.6746342800922562, 3.6472798825825388, 3.6204416057805524, 3.5941194496862954, 3.5683134142997694, 3.5430234996209737, 3.518249705649909, 3.4939920323865747, 3.4702504798309706, 3.4470250479830966, 3.4243157368429538, 3.402122546410542, 3.3804454766858596, 3.3592845276689083, 3.338639699359688, 3.318510991758197, 3.2988984048644374, 3.2798019386784087, 3.2612215932001103, 3.243157368429542, 3.225609264366704, 3.2085772810115962, 3.1920614183642204, 3.176061676424574, 3.1605780551926586, 3.1456105546684734, 3.1311591748520184, 3.1172239157432946, 3.103804777342301, 3.0909017596490385, 3.0785148626635053, 3.066644086385703, 3.055289430815632, 3.0444508959532914, 3.034128481798681, 3.0243221883518006, 3.0150320156126513, 3.0062579635812323, 2.9980000322575444, 2.9902582216415863, 2.9830325317333592, 2.9763229625328624, 2.9701295140400963, 2.9644521862550604, 2.959290979177755, 2.9546458928081805, 2.9505169271463365, 2.9469040821922228, 2.9438073579458397, 2.941226754407187, 2.939162271576265, 2.937613909453073, 2.9365816680376122, 2.9360655473298816, 2.9360655473298816, 2.9365816680376122, 2.937613909453073, 2.9391622715762646, 2.941226754407187, 2.9438073579458397, 2.9469040821922228, 2.950516927146336, 2.9546458928081805, 2.959290979177755, 2.9644521862550604, 2.970129514040096, 2.9763229625328624, 2.983032531733359, 2.9902582216415863, 2.998000032257544, 3.0062579635812323, 3.0150320156126513, 3.0243221883518006, 3.034128481798681, 3.0444508959532905, 3.055289430815632, 3.066644086385703, 3.0785148626635053, 3.0909017596490376, 3.103804777342301, 3.1172239157432946, 3.1311591748520184, 3.1456105546684725, 3.1605780551926577, 3.176061676424574, 3.1920614183642195, 3.2085772810115962, 3.225609264366703, 3.243157368429541, 3.2612215932001094, 3.279801938678408, 3.2988984048644374, 3.318510991758197, 3.338639699359687, 3.3592845276689083, 3.3804454766858596, 3.402122546410541, 3.4243157368429538, 3.4470250479830966, 3.4702504798309697, 3.493992032386574, 3.5182497056499082, 3.5430234996209737, 3.5683134142997686, 3.5941194496862954, 3.6204416057805515, 3.6472798825825388, 3.6746342800922562, 3.702504798309704, 3.7308914372348827, 3.7597941968677917, 3.789213077208432, 3.819148078256802, 3.8495992000129027, 3.8805664424767334, 3.9120498056482953, 3.9440492895275874, 3.9765648941146106, 4.009596619409363, 4.043144465411848, 4.077208432122061, 4.111788519540006, 4.146884727665682, 4.182497056499088, 4.218625506040225, 4.255270076289091, 4.292430767245689, 4.330107578910017, 4.368300511282076, 4.407009564361864, 4.446234738149384, 4.485976032644634, 4.5262334478476145, 4.567006983758326, 4.608296640376767, 4.650102417702939, 4.692424315736842, 4.735262334478476, 4.778616473927839, 4.822486734084933, 4.866873114949757, 4.911775616522313, 4.9571942388025985, 5.003128981790615, 5.049579845486363, 5.0965468298898395, 5.144029935001048, 5.192029160819986, 5.240544507346655, 5.289575974581053, 5.339123562523184, 5.389187271173044, 5.439767100530636, 5.490863050595957, 5.542475121369009, 5.594603312849792, 5.647247625038304, 5.700408057934549, 5.754084611538522, 5.808277285850227, 5.862986080869661, 5.918210996596828, 5.973952033031724, 6.03020919017435, 6.086982468024709, 6.144271866582796, 6.2020773858486145, 6.260399025822163, 6.319236786503442, 6.3785906678924515, 6.438460669989192, 6.498846792793662, 6.559749036305865, 6.621167400525795, 6.683101885453459, 6.745552491088853, 6.808519217431975, 6.87200206448283, 6.936001032241416 ], [ 6.872518185190561, 6.808519217431977, 6.745036370381123, 6.682069644038, 6.619619038402607, 6.557684553474944, 6.496266189255012, 6.435363945742811, 6.374977822938339, 6.315107820841599, 6.255753939452589, 6.1969161787713105, 6.138594538797761, 6.080789019531943, 6.023499620973856, 5.966726343123499, 5.910469185980871, 5.854728149545975, 5.799503233818809, 5.744794438799374, 5.69060176448767, 5.636925210883696, 5.583764777987453, 5.531120465798939, 5.4789922743181565, 5.427380203545105, 5.376284253479783, 5.325704424122192, 5.275640715472331, 5.226093127530201, 5.177061660295802, 5.128546313769133, 5.080547087950194, 5.0330639828389865, 4.986096998435509, 4.939646134739762, 4.893711391751745, 4.848292769471461, 4.803390267898905, 4.759003887034081, 4.715133626876986, 4.671779487427623, 4.628941468685989, 4.586619570652086, 4.544813793325915, 4.5035241367074725, 4.4627506007967614, 4.422493185593781, 4.382751891098531, 4.343526717311011, 4.304817664231223, 4.266624731859164, 4.228947920194836, 4.191787229238239, 4.155142658989371, 4.119014209448235, 4.083401880614829, 4.048305672489153, 4.013725585071208, 3.9796616183609945, 3.94611377235851, 3.9130820470637575, 3.8805664424767343, 3.8485669585974422, 3.8170835954258804, 3.7861163529620496, 3.755665231205948, 3.7257302301575788, 3.6963113498169387, 3.6674085901840296, 3.639021951258851, 3.6111514330414023, 3.583797035531685, 3.5569587587296976, 3.5306366026354414, 3.5048305672489155, 3.47954065257012, 3.454766858599055, 3.430509185335721, 3.4067676327801166, 3.3835422009322427, 3.3608328897921, 3.338639699359688, 3.3169626296350057, 3.2958016806180543, 3.275156852308834, 3.2550281447073433, 3.2354155578135835, 3.216319091627555, 3.1977387461492555, 3.179674521378688, 3.16212641731585, 3.1450944339607423, 3.1285785713133656, 3.11257882937372, 3.0970952081418046, 3.0821277076176194, 3.0676763278011645, 3.0537410686924407, 3.040321930291447, 3.0274189125981845, 3.0150320156126513, 3.0031612393348492, 2.9918065837647783, 2.980968048902437, 2.970645634747827, 2.960839341300947, 2.9515491685617974, 2.942775116530379, 2.9345171852066905, 2.9267753745907323, 2.9195496846825053, 2.9128401154820085, 2.9066466669892423, 2.9009693392042064, 2.895808132126901, 2.8911630457573265, 2.8870340800954826, 2.883421235141369, 2.8803245108949858, 2.877743907356333, 2.875679424525411, 2.874131062402219, 2.8730988209867583, 2.8725827002790276, 2.8725827002790276, 2.8730988209867583, 2.874131062402219, 2.8756794245254107, 2.877743907356333, 2.8803245108949858, 2.883421235141369, 2.887034080095482, 2.8911630457573265, 2.895808132126901, 2.9009693392042064, 2.906646666989242, 2.9128401154820085, 2.919549684682505, 2.9267753745907323, 2.93451718520669, 2.9427751165303784, 2.9515491685617974, 2.9608393413009466, 2.9706456347478265, 2.980968048902437, 2.991806583764778, 3.0031612393348492, 3.0150320156126513, 3.0274189125981836, 3.040321930291447, 3.0537410686924407, 3.0676763278011645, 3.0821277076176194, 3.0970952081418037, 3.11257882937372, 3.1285785713133656, 3.1450944339607423, 3.162126417315849, 3.1796745213786872, 3.1977387461492555, 3.216319091627554, 3.2354155578135835, 3.2550281447073433, 3.2751568523088332, 3.2958016806180543, 3.3169626296350057, 3.338639699359687, 3.3608328897921, 3.3835422009322427, 3.4067676327801157, 3.430509185335721, 3.4547668585990543, 3.47954065257012, 3.5048305672489146, 3.5306366026354414, 3.5569587587296976, 3.583797035531685, 3.6111514330414014, 3.63902195125885, 3.6674085901840288, 3.6963113498169378, 3.725730230157578, 3.7556652312059473, 3.7861163529620487, 3.8170835954258795, 3.8485669585974414, 3.8805664424767334, 3.9130820470637566, 3.946113772358509, 3.9796616183609936, 4.0137255850712075, 4.048305672489153, 4.0834018806148284, 4.119014209448234, 4.155142658989371, 4.191787229238237, 4.228947920194836, 4.266624731859163, 4.304817664231221, 4.3435267173110095, 4.38275189109853, 4.42249318559378, 4.462750600796761, 4.5035241367074725, 4.544813793325913, 4.586619570652086, 4.628941468685988, 4.671779487427622, 4.715133626876985, 4.75900388703408, 4.803390267898903, 4.84829276947146, 4.8937113917517445, 4.939646134739761, 4.986096998435508, 5.033063982838986, 5.080547087950194, 5.128546313769132, 5.1770616602958, 5.2260931275302, 5.27564071547233, 5.32570442412219, 5.376284253479781, 5.427380203545102, 5.478992274318156, 5.531120465798939, 5.583764777987451, 5.636925210883694, 5.690601764487669, 5.7447944387993735, 5.7995032338188075, 5.8547281495459735, 5.910469185980869, 5.966726343123497, 6.023499620973855, 6.080789019531942, 6.1385945387977605, 6.196916178771309, 6.255753939452589, 6.315107820841598, 6.374977822938339, 6.435363945742809, 6.49626618925501, 6.557684553474942, 6.619619038402606, 6.682069644037998, 6.745036370381121, 6.808519217431976, 6.872518185190561 ], [ 6.809551458847438, 6.745552491088853, 6.682069644038, 6.619102917694876, 6.556652312059484, 6.49471782713182, 6.433299462911888, 6.372397219399687, 6.312011096595216, 6.2521410944984765, 6.192787213109466, 6.133949452428187, 6.075627812454638, 6.01782229318882, 5.960532894630733, 5.903759616780375, 5.847502459637748, 5.7917614232028525, 5.7365365074756856, 5.681827712456251, 5.627635038144547, 5.573958484540572, 5.520798051644329, 5.468153739455816, 5.416025547975034, 5.364413477201982, 5.313317527136659, 5.262737697779068, 5.212673989129208, 5.163126401187078, 5.1140949339526784, 5.06557958742601, 5.017580361607071, 4.970097256495864, 4.923130272092386, 4.876679408396639, 4.830744665408623, 4.785326043128338, 4.740423541555781, 4.696037160690958, 4.652166900533863, 4.608812761084499, 4.565974742342866, 4.523652844308963, 4.481847066982791, 4.44055741036435, 4.399783874453639, 4.359526459250658, 4.319785164755408, 4.2805599909678875, 4.241850937888099, 4.20365800551604, 4.165981193851712, 4.128820502895115, 4.092175932646248, 4.056047483105112, 4.020435154271706, 3.9853389461460305, 3.9507588587280846, 3.916694892017871, 3.883147046015387, 3.8501153207206347, 3.8175997161336106, 3.7856002322543185, 3.7541168690827575, 3.723149626618926, 3.6926985048628254, 3.662763503814455, 3.633344623473816, 3.604441863840906, 3.576055224915727, 3.5481847066982795, 3.520830309188562, 3.4939920323865747, 3.4676698762923186, 3.4418638409057927, 3.416573926226997, 3.3918001322559315, 3.367542458992597, 3.343800906436994, 3.32057547458912, 3.297866163448977, 3.2756729730165643, 3.253995903291883, 3.2328349542749315, 3.2121901259657104, 3.1920614183642204, 3.1724488314704606, 3.153352365284431, 3.1347720198061326, 3.1167077950355644, 3.0991596909727264, 3.0821277076176194, 3.0656118449702427, 3.0496121030305963, 3.034128481798681, 3.0191609812744957, 3.0047096014580417, 2.9907743423493174, 2.9773552039483238, 2.964452186255061, 2.9520652892695285, 2.9401945129917264, 2.928839857421655, 2.9180013225593138, 2.9076789084047037, 2.897872614957824, 2.888582442218674, 2.8798083901872555, 2.871550458863567, 2.863808648247609, 2.856582958339382, 2.849873389138885, 2.843679940646119, 2.838002612861083, 2.832841405783778, 2.8281963194142032, 2.8240673537523593, 2.8204545087982456, 2.8173577845518625, 2.8147771810132096, 2.812712698182288, 2.811164336059096, 2.810132094643635, 2.8096159739359043, 2.8096159739359043, 2.810132094643635, 2.811164336059096, 2.8127126981822874, 2.8147771810132096, 2.8173577845518625, 2.8204545087982456, 2.824067353752359, 2.8281963194142032, 2.832841405783778, 2.838002612861083, 2.8436799406461186, 2.849873389138885, 2.8565829583393816, 2.863808648247609, 2.8715504588635667, 2.879808390187255, 2.888582442218674, 2.8978726149578233, 2.907678908404703, 2.9180013225593138, 2.9288398574216545, 2.940194512991726, 2.952065289269528, 2.9644521862550604, 2.9773552039483233, 2.990774342349317, 3.004709601458041, 3.0191609812744957, 3.034128481798681, 3.0496121030305963, 3.065611844970242, 3.0821277076176194, 3.0991596909727264, 3.1167077950355644, 3.1347720198061326, 3.153352365284431, 3.1724488314704606, 3.1920614183642195, 3.2121901259657104, 3.2328349542749306, 3.253995903291883, 3.2756729730165643, 3.297866163448977, 3.320575474589119, 3.343800906436993, 3.367542458992597, 3.3918001322559315, 3.416573926226996, 3.441863840905792, 3.4676698762923177, 3.493992032386574, 3.520830309188561, 3.5481847066982786, 3.576055224915727, 3.604441863840905, 3.633344623473815, 3.662763503814455, 3.6926985048628245, 3.723149626618926, 3.7541168690827567, 3.7856002322543185, 3.8175997161336106, 3.850115320720633, 3.8831470460153863, 3.916694892017871, 3.9507588587280846, 3.9853389461460296, 4.020435154271706, 4.056047483105111, 4.0921759326462475, 4.128820502895114, 4.165981193851712, 4.203658005516039, 4.241850937888098, 4.280559990967887, 4.319785164755407, 4.359526459250656, 4.399783874453638, 4.440557410364349, 4.48184706698279, 4.5236528443089625, 4.565974742342865, 4.608812761084499, 4.652166900533861, 4.696037160690956, 4.7404235415557805, 4.785326043128336, 4.830744665408622, 4.8766794083966385, 4.9231302720923855, 4.970097256495862, 5.01758036160707, 5.065579587426008, 5.114094933952678, 5.1631264011870766, 5.2126739891292075, 5.262737697779066, 5.313317527136658, 5.364413477201979, 5.416025547975032, 5.468153739455815, 5.520798051644327, 5.573958484540571, 5.627635038144545, 5.681827712456251, 5.736536507475684, 5.791761423202851, 5.847502459637746, 5.903759616780373, 5.960532894630731, 6.017822293188818, 6.075627812454638, 6.133949452428185, 6.192787213109465, 6.252141094498475, 6.312011096595215, 6.372397219399685, 6.433299462911887, 6.494717827131819, 6.556652312059482, 6.6191029176948755, 6.682069644037998, 6.745552491088853, 6.809551458847438 ], [ 6.747100853212045, 6.6831018854534605, 6.619619038402607, 6.556652312059484, 6.49420170642409, 6.432267221496428, 6.370848857276496, 6.3099466137642946, 6.249560490959823, 6.189690488863083, 6.130336607474073, 6.071498846792794, 6.013177206819245, 5.955371687553427, 5.898082288995339, 5.841309011144983, 5.785051854002354, 5.729310817567459, 5.674085901840293, 5.619377106820858, 5.565184432509153, 5.51150787890518, 5.458347446008936, 5.405703133820422, 5.35357494233964, 5.301962871566588, 5.250866921501267, 5.200287092143675, 5.150223383493815, 5.100675795551685, 5.051644328317286, 5.003128981790617, 4.955129755971678, 4.90764665086047, 4.860679666456993, 4.814228802761246, 4.768294059773229, 4.722875437492944, 4.677972935920389, 4.633586555055564, 4.589716294898469, 4.546362155449106, 4.5035241367074725, 4.46120223867357, 4.419396461347398, 4.378106804728956, 4.337333268818245, 4.297075853615264, 4.2573345591200145, 4.218109385332495, 4.1794003322527065, 4.141207399880647, 4.103530588216319, 4.066369897259722, 4.029725327010855, 3.9935968774697184, 3.957984548636313, 3.922888340510637, 3.888308253092692, 3.854244286382478, 3.8206964403799937, 3.787664715085241, 3.755149110498218, 3.723149626618926, 3.691666263447364, 3.6606990209835333, 3.630247899227432, 3.6003128981790624, 3.5708940178384223, 3.5419912582055133, 3.5136046192803345, 3.485734101062886, 3.4583797035531685, 3.4315414267511812, 3.405219270656925, 3.379413235270399, 3.3541233205916035, 3.329349526620539, 3.3050918533572045, 3.2813503008016003, 3.2581248689537263, 3.2354155578135835, 3.2132223673811717, 3.1915452976564893, 3.170384348639538, 3.149739520330318, 3.129610812728827, 3.109998225835067, 3.0909017596490385, 3.072321414170739, 3.0542571894001718, 3.0367090853373337, 3.019677101982226, 3.0031612393348492, 2.9871614973952036, 2.971677876163288, 2.956710375639103, 2.942258995822648, 2.9283237367139243, 2.9149045983129307, 2.9020015806196677, 2.8896146836341354, 2.8777439073563333, 2.866389251786262, 2.8555507169239207, 2.8452283027693106, 2.8354220093224307, 2.826131836583281, 2.8173577845518625, 2.809099853228174, 2.801358042612216, 2.794132352703989, 2.787422783503492, 2.781229335010726, 2.77555200722569, 2.770390800148385, 2.76574571377881, 2.7616167481169662, 2.7580039031628525, 2.7549071789164694, 2.7523265753778166, 2.750262092546895, 2.748713730423703, 2.747681489008242, 2.7471653683005113, 2.7471653683005113, 2.747681489008242, 2.748713730423703, 2.7502620925468944, 2.7523265753778166, 2.7549071789164694, 2.7580039031628525, 2.761616748116966, 2.76574571377881, 2.770390800148385, 2.77555200722569, 2.7812293350107256, 2.787422783503492, 2.7941323527039885, 2.801358042612216, 2.8090998532281737, 2.817357784551862, 2.826131836583281, 2.8354220093224303, 2.84522830276931, 2.8555507169239207, 2.8663892517862615, 2.877743907356333, 2.889614683634135, 2.9020015806196673, 2.9149045983129303, 2.9283237367139243, 2.9422589958226477, 2.9567103756391027, 2.9716778761632874, 2.987161497395203, 3.0031612393348492, 3.019677101982226, 3.036709085337333, 3.054257189400171, 3.072321414170739, 3.0909017596490376, 3.109998225835067, 3.129610812728827, 3.149739520330317, 3.170384348639538, 3.1915452976564893, 3.213222367381171, 3.2354155578135835, 3.2581248689537263, 3.2813503008015994, 3.3050918533572045, 3.329349526620538, 3.3541233205916035, 3.3794132352703983, 3.405219270656925, 3.4315414267511812, 3.4583797035531685, 3.485734101062885, 3.5136046192803336, 3.5419912582055124, 3.5708940178384214, 3.6003128981790615, 3.630247899227431, 3.6606990209835324, 3.691666263447363, 3.723149626618925, 3.755149110498217, 3.7876647150852403, 3.820696440379993, 3.8542442863824773, 3.888308253092691, 3.922888340510637, 3.957984548636312, 3.9935968774697175, 4.029725327010855, 4.066369897259721, 4.103530588216319, 4.1412073998806465, 4.179400332252705, 4.218109385332493, 4.257334559120014, 4.297075853615263, 4.337333268818244, 4.378106804728956, 4.419396461347397, 4.46120223867357, 4.503524136707472, 4.546362155449105, 4.589716294898468, 4.6335865550555635, 4.677972935920387, 4.722875437492943, 4.768294059773228, 4.814228802761245, 4.860679666456992, 4.907646650860469, 4.955129755971678, 5.003128981790615, 5.051644328317284, 5.100675795551684, 5.150223383493814, 5.2002870921436735, 5.250866921501265, 5.301962871566586, 5.353574942339639, 5.405703133820422, 5.4583474460089345, 5.511507878905178, 5.565184432509152, 5.619377106820857, 5.674085901840291, 5.729310817567457, 5.785051854002353, 5.841309011144981, 5.898082288995338, 5.955371687553425, 6.013177206819244, 6.071498846792792, 6.130336607474073, 6.189690488863081, 6.249560490959823, 6.309946613764293, 6.370848857276494, 6.432267221496426, 6.494201706424089, 6.556652312059482, 6.619619038402605, 6.68310188545346, 6.747100853212045 ], [ 6.685166368284382, 6.621167400525797, 6.557684553474944, 6.49471782713182, 6.432267221496428, 6.3703327365687645, 6.308914372348832, 6.248012128836631, 6.18762600603216, 6.127756003935421, 6.06840212254641, 6.009564361865131, 5.951242721891582, 5.893437202625764, 5.836147804067677, 5.779374526217319, 5.723117369074692, 5.667376332639797, 5.61215141691263, 5.557442621893195, 5.503249947581491, 5.449573393977516, 5.396412961081273, 5.34376864889276, 5.291640457411978, 5.240028386638926, 5.188932436573603, 5.138352607216012, 5.0882888985661525, 5.038741310624022, 4.9897098433896225, 4.941194496862954, 4.893195271044015, 4.845712165932808, 4.7987451815293305, 4.7522943178335835, 4.706359574845567, 4.660940952565282, 4.6160384509927255, 4.571652070127902, 4.527781809970807, 4.484427670521443, 4.44158965177981, 4.3992677537459075, 4.357461976419735, 4.316172319801294, 4.275398783890583, 4.235141368687602, 4.195400074192352, 4.156174900404832, 4.117465847325043, 4.079272914952984, 4.041596103288656, 4.004435412332059, 3.9677908420831924, 3.931662392542056, 3.8960500637086497, 3.8609538555829745, 3.8263737681650287, 3.792309801454815, 3.7587619554523313, 3.7257302301575788, 3.6932146255705547, 3.6612151416912626, 3.6297317785197016, 3.59876453605587, 3.5683134142997694, 3.538378413251399, 3.50895953291076, 3.48005677327785, 3.4516701343526712, 3.4237996161352235, 3.396445218625506, 3.369606941823519, 3.3432847857292627, 3.3174787503427368, 3.292188835663941, 3.2674150416928756, 3.243157368429541, 3.219415815873938, 3.196190384026064, 3.173481072885921, 3.1512878824535084, 3.129610812728827, 3.1084498637118756, 3.0878050354026545, 3.0676763278011645, 3.0480637409074047, 3.028967274721375, 3.0103869292430767, 2.9923227044725085, 2.9747746004096705, 2.9577426170545635, 2.941226754407187, 2.925227012467541, 2.909743391235625, 2.89477589071144, 2.8803245108949853, 2.8663892517862615, 2.852970113385268, 2.840067095692005, 2.8276801987064726, 2.8158094224286705, 2.804454766858599, 2.793616231996258, 2.7832938178416478, 2.773487524394768, 2.764197351655618, 2.7554232996241996, 2.7471653683005113, 2.739423557684553, 2.732197867776326, 2.7254882985758293, 2.719294850083063, 2.713617522298027, 2.708456315220722, 2.7038112288511473, 2.6996822631893034, 2.6960694182351896, 2.6929726939888066, 2.6903920904501537, 2.688327607619232, 2.68677924549604, 2.685747004080579, 2.6852308833728484, 2.6852308833728484, 2.685747004080579, 2.68677924549604, 2.6883276076192315, 2.6903920904501537, 2.6929726939888066, 2.6960694182351896, 2.699682263189303, 2.7038112288511473, 2.708456315220722, 2.713617522298027, 2.7192948500830627, 2.7254882985758293, 2.7321978677763257, 2.739423557684553, 2.747165368300511, 2.755423299624199, 2.764197351655618, 2.7734875243947674, 2.7832938178416473, 2.793616231996258, 2.8044547668585986, 2.81580942242867, 2.827680198706472, 2.8400670956920044, 2.8529701133852674, 2.866389251786261, 2.880324510894985, 2.89477589071144, 2.9097433912356245, 2.9252270124675404, 2.9412267544071864, 2.957742617054563, 2.97477460040967, 2.992322704472508, 3.0103869292430767, 3.028967274721375, 3.0480637409074047, 3.0676763278011636, 3.0878050354026545, 3.1084498637118747, 3.129610812728827, 3.1512878824535084, 3.173481072885921, 3.196190384026063, 3.219415815873937, 3.243157368429541, 3.2674150416928756, 3.29218883566394, 3.317478750342736, 3.343284785729262, 3.369606941823518, 3.396445218625505, 3.4237996161352227, 3.4516701343526712, 3.480056773277849, 3.508959532910759, 3.538378413251399, 3.5683134142997686, 3.59876453605587, 3.6297317785197007, 3.6612151416912626, 3.6932146255705547, 3.725730230157577, 3.7587619554523304, 3.792309801454815, 3.8263737681650287, 3.8609538555829737, 3.8960500637086497, 3.931662392542055, 3.9677908420831915, 4.004435412332058, 4.041596103288656, 4.079272914952983, 4.117465847325042, 4.156174900404831, 4.195400074192351, 4.2351413686876, 4.275398783890582, 4.316172319801293, 4.357461976419734, 4.399267753745907, 4.441589651779809, 4.484427670521443, 4.527781809970805, 4.5716520701279, 4.616038450992725, 4.66094095256528, 4.706359574845566, 4.752294317833583, 4.79874518152933, 4.845712165932806, 4.893195271044014, 4.941194496862952, 4.989709843389622, 5.038741310624021, 5.088288898566152, 5.13835260721601, 5.1889324365736025, 5.240028386638923, 5.291640457411976, 5.343768648892759, 5.396412961081271, 5.4495733939775155, 5.503249947581489, 5.557442621893195, 5.612151416912628, 5.667376332639795, 5.72311736907469, 5.7793745262173175, 5.836147804067675, 5.893437202625762, 5.951242721891582, 6.009564361865129, 6.068402122546409, 6.127756003935419, 6.1876260060321595, 6.2480121288366295, 6.3089143723488315, 6.370332736568763, 6.432267221496426, 6.4947178271318196, 6.557684553474942, 6.621167400525797, 6.685166368284382 ], [ 6.62374800406445, 6.559749036305865, 6.496266189255012, 6.433299462911888, 6.370848857276496, 6.308914372348832, 6.2474960081289, 6.186593764616699, 6.126207641812228, 6.0663376397154885, 6.006983758326478, 5.948145997645199, 5.88982435767165, 5.832018838405832, 5.774729439847745, 5.717956161997387, 5.66169900485476, 5.605957968419864, 5.5507330526926975, 5.4960242576732625, 5.441831583361559, 5.388155029757584, 5.334994596861341, 5.282350284672828, 5.230222093192046, 5.178610022418994, 5.127514072353671, 5.07693424299608, 5.02687053434622, 4.97732294640409, 4.92829147916969, 4.879776132643022, 4.831776906824083, 4.7842938017128755, 4.737326817309398, 4.690875953613651, 4.6449412106256345, 4.59952258834535, 4.554620086772793, 4.51023370590797, 4.466363445750875, 4.423009306301511, 4.380171287559878, 4.337849389525975, 4.296043612199803, 4.254753955581362, 4.2139804196706505, 4.17372300446767, 4.13398170997242, 4.094756536184899, 4.056047483105111, 4.017854550733052, 3.980177739068724, 3.943017048112127, 3.9063724778632603, 3.8702440283221238, 3.8346316994887175, 3.7995354913630424, 3.7649554039450965, 3.7308914372348827, 3.697343591232399, 3.6643118659376466, 3.6317962613506225, 3.5997967774713304, 3.5683134142997694, 3.537346171835938, 3.5068950500798373, 3.476960049031467, 3.4475411686908277, 3.418638409057918, 3.390251770132739, 3.3623812519152914, 3.335026854405574, 3.3081885776035866, 3.2818664215093305, 3.2560603861228046, 3.230770471444009, 3.2059966774729434, 3.181739004209609, 3.1579974516540057, 3.1347720198061317, 3.112062708665989, 3.0898695182335763, 3.0681924485088947, 3.0470314994919434, 3.0263866711827223, 3.0062579635812323, 2.9866453766874725, 2.9675489105014434, 2.9489685650231445, 2.9309043402525763, 2.9133562361897383, 2.8963242528346314, 2.8798083901872547, 2.8638086482476086, 2.848325027015693, 2.8333575264915076, 2.818906146675053, 2.8049708875663293, 2.7915517491653357, 2.7786487314720727, 2.7662618344865404, 2.7543910582087383, 2.743036402638667, 2.7321978677763257, 2.7218754536217156, 2.7120691601748357, 2.702778987435686, 2.6940049354042674, 2.685747004080579, 2.678005193464621, 2.670779503556394, 2.664069934355897, 2.657876485863131, 2.652199158078095, 2.6470379510007898, 2.642392864631215, 2.638263898969371, 2.6346510540152575, 2.6315543297688744, 2.6289737262302215, 2.6269092433992998, 2.625360881276108, 2.624328639860647, 2.6238125191529162, 2.6238125191529162, 2.624328639860647, 2.625360881276108, 2.6269092433992993, 2.6289737262302215, 2.6315543297688744, 2.6346510540152575, 2.6382638989693707, 2.642392864631215, 2.6470379510007898, 2.652199158078095, 2.6578764858631305, 2.664069934355897, 2.6707795035563935, 2.678005193464621, 2.6857470040805786, 2.694004935404267, 2.702778987435686, 2.7120691601748352, 2.721875453621715, 2.7321978677763257, 2.7430364026386664, 2.754391058208738, 2.76626183448654, 2.7786487314720723, 2.791551749165335, 2.804970887566329, 2.8189061466750527, 2.8333575264915076, 2.8483250270156923, 2.863808648247608, 2.879808390187254, 2.896324252834631, 2.913356236189738, 2.930904340252576, 2.948968565023144, 2.9675489105014425, 2.986645376687472, 3.0062579635812314, 3.0263866711827223, 3.0470314994919425, 3.0681924485088947, 3.0898695182335763, 3.112062708665989, 3.134772019806131, 3.157997451654005, 3.181739004209609, 3.2059966774729434, 3.230770471444008, 3.2560603861228037, 3.2818664215093296, 3.3081885776035858, 3.335026854405573, 3.3623812519152905, 3.390251770132739, 3.418638409057917, 3.447541168690827, 3.476960049031467, 3.5068950500798364, 3.537346171835938, 3.5683134142997686, 3.5997967774713304, 3.6317962613506225, 3.664311865937645, 3.697343591232398, 3.7308914372348827, 3.7649554039450965, 3.7995354913630415, 3.8346316994887175, 3.870244028322123, 3.9063724778632594, 3.943017048112126, 3.980177739068724, 4.017854550733051, 4.05604748310511, 4.0947565361848985, 4.133981709972419, 4.173723004467668, 4.21398041967065, 4.254753955581361, 4.296043612199802, 4.337849389525974, 4.380171287559877, 4.423009306301511, 4.466363445750873, 4.510233705907968, 4.554620086772792, 4.599522588345348, 4.644941210625634, 4.69087595361365, 4.737326817309397, 4.784293801712874, 4.831776906824082, 4.87977613264302, 4.9282914791696895, 4.9773229464040885, 5.026870534346219, 5.076934242996078, 5.12751407235367, 5.178610022418991, 5.230222093192044, 5.282350284672827, 5.334994596861339, 5.388155029757583, 5.441831583361557, 5.4960242576732625, 5.550733052692696, 5.605957968419863, 5.661699004854758, 5.717956161997385, 5.774729439847743, 5.83201883840583, 5.88982435767165, 5.948145997645197, 6.006983758326477, 6.066337639715487, 6.126207641812227, 6.186593764616697, 6.247496008128899, 6.308914372348831, 6.370848857276494, 6.433299462911887, 6.49626618925501, 6.559749036305865, 6.62374800406445 ], [ 6.562845760552249, 6.498846792793664, 6.435363945742811, 6.372397219399687, 6.3099466137642946, 6.248012128836631, 6.186593764616699, 6.125691521104498, 6.065305398300027, 6.005435396203287, 5.946081514814277, 5.887243754132998, 5.8289221141594485, 5.7711165948936305, 5.713827196335544, 5.657053918485186, 5.600796761342559, 5.545055724907663, 5.489830809180496, 5.435122014161061, 5.380929339849358, 5.327252786245383, 5.27409235334914, 5.2214480411606266, 5.1693198496798445, 5.117707778906793, 5.06661182884147, 5.016031999483879, 4.965968290834019, 4.916420702891889, 4.867389235657489, 4.8188738891308205, 4.770874663311882, 4.7233915582006745, 4.676424573797197, 4.62997371010145, 4.584038967113433, 4.538620344833149, 4.493717843260592, 4.449331462395769, 4.405461202238674, 4.36210706278931, 4.319269044047677, 4.276947146013774, 4.235141368687602, 4.1938517120691605, 4.153078176158449, 4.112820760955469, 4.073079466460219, 4.033854292672698, 3.99514523959291, 3.956952307220851, 3.9192754955565228, 3.882114804599926, 3.845470234351059, 3.8093417848099227, 3.7737294559765164, 3.7386332478508413, 3.7040531604328955, 3.6699891937226816, 3.636441347720198, 3.6034096224254455, 3.5708940178384214, 3.5388945339591293, 3.5074111707875684, 3.4764439283237367, 3.445992806567636, 3.416057805519266, 3.3866389251786266, 3.3577361655457167, 3.329349526620538, 3.3014790084030903, 3.274124610893373, 3.2472863340913856, 3.2209641779971294, 3.1951581426106035, 3.169868227931808, 3.1450944339607423, 3.120836760697408, 3.0970952081418046, 3.0738697762939307, 3.051160465153788, 3.028967274721375, 3.0072902049966936, 2.9861292559797423, 2.9654844276705212, 2.9453557200690312, 2.9257431331752715, 2.9066466669892423, 2.8880663215109434, 2.870002096740375, 2.852453992677537, 2.8354220093224303, 2.8189061466750536, 2.8029064047354075, 2.7874227835034917, 2.7724552829793065, 2.758003903162852, 2.744068644054128, 2.7306495056531346, 2.7177464879598716, 2.7053595909743393, 2.6934888146965372, 2.682134159126466, 2.6712956242641246, 2.6609732101095145, 2.6511669166626346, 2.641876743923485, 2.6331026918920664, 2.624844760568378, 2.61710294995242, 2.609877260044193, 2.603167690843696, 2.59697424235093, 2.591296914565894, 2.5861357074885887, 2.581490621119014, 2.57736165545717, 2.5737488105030564, 2.5706520862566733, 2.5680714827180204, 2.5660069998870987, 2.5644586377639067, 2.563426396348446, 2.562910275640715, 2.562910275640715, 2.563426396348446, 2.5644586377639067, 2.5660069998870982, 2.5680714827180204, 2.5706520862566733, 2.5737488105030564, 2.5773616554571697, 2.581490621119014, 2.5861357074885887, 2.591296914565894, 2.5969742423509294, 2.603167690843696, 2.6098772600441924, 2.61710294995242, 2.6248447605683776, 2.633102691892066, 2.641876743923485, 2.651166916662634, 2.660973210109514, 2.6712956242641246, 2.6821341591264654, 2.693488814696537, 2.705359590974339, 2.717746487959871, 2.730649505653134, 2.7440686440541278, 2.7580039031628516, 2.7724552829793065, 2.7874227835034913, 2.802906404735407, 2.818906146675053, 2.83542200932243, 2.8524539926775367, 2.8700020967403748, 2.888066321510943, 2.9066466669892415, 2.925743133175271, 2.945355720069031, 2.9654844276705212, 2.9861292559797414, 3.0072902049966936, 3.028967274721375, 3.051160465153788, 3.0738697762939298, 3.0970952081418037, 3.120836760697408, 3.1450944339607423, 3.169868227931807, 3.1951581426106026, 3.2209641779971285, 3.2472863340913847, 3.274124610893372, 3.3014790084030894, 3.329349526620538, 3.357736165545716, 3.3866389251786257, 3.416057805519266, 3.4459928065676353, 3.4764439283237367, 3.5074111707875675, 3.5388945339591293, 3.5708940178384214, 3.6034096224254437, 3.636441347720197, 3.6699891937226816, 3.7040531604328955, 3.7386332478508404, 3.7737294559765164, 3.809341784809922, 3.8454702343510583, 3.882114804599925, 3.9192754955565228, 3.95695230722085, 3.995145239592909, 4.0338542926726975, 4.073079466460218, 4.112820760955467, 4.1530781761584485, 4.19385171206916, 4.235141368687601, 4.276947146013773, 4.319269044047676, 4.36210706278931, 4.405461202238672, 4.449331462395767, 4.493717843260591, 4.538620344833147, 4.5840389671134325, 4.629973710101449, 4.676424573797196, 4.723391558200673, 4.770874663311881, 4.818873889130819, 4.867389235657488, 4.916420702891887, 4.965968290834018, 5.016031999483877, 5.066611828841469, 5.11770777890679, 5.169319849679843, 5.221448041160626, 5.274092353349138, 5.327252786245382, 5.380929339849356, 5.435122014161061, 5.489830809180495, 5.5450557249076615, 5.600796761342557, 5.657053918485184, 5.713827196335542, 5.771116594893629, 5.8289221141594485, 5.887243754132996, 5.946081514814276, 6.005435396203286, 6.065305398300026, 6.125691521104496, 6.186593764616698, 6.2480121288366295, 6.309946613764293, 6.372397219399686, 6.435363945742809, 6.498846792793664, 6.562845760552249 ], [ 6.502459637747778, 6.438460669989194, 6.374977822938339, 6.312011096595216, 6.249560490959823, 6.18762600603216, 6.126207641812228, 6.065305398300027, 6.004919275495556, 5.945049273398816, 5.885695392009806, 5.826857631328527, 5.7685359913549785, 5.7107304720891605, 5.653441073531072, 5.596667795680715, 5.540410638538088, 5.484669602103192, 5.429444686376026, 5.3747358913565915, 5.320543217044886, 5.266866663440912, 5.213706230544669, 5.161061918356156, 5.108933726875373, 5.057321656102321, 5.006225706037, 4.955645876679409, 4.905582168029548, 4.856034580087417, 4.807003112853018, 4.75848776632635, 4.710488540507411, 4.663005435396203, 4.6160384509927255, 4.569587587296979, 4.5236528443089625, 4.478234222028677, 4.433331720456121, 4.388945339591297, 4.345075079434203, 4.301720939984839, 4.258882921243206, 4.216561023209303, 4.174755245883131, 4.13346558926469, 4.092692053353979, 4.052434638150997, 4.012693343655748, 3.9734681698682275, 3.934759116788439, 3.896566184416381, 3.858889372752053, 3.821728681795455, 3.7850841115465883, 3.748955662005452, 3.7133433331720456, 3.6782471250463704, 3.6436670376284255, 3.6096030709182116, 3.576055224915727, 3.5430234996209737, 3.5105078950339514, 3.4785084111546585, 3.4470250479830966, 3.416057805519266, 3.3856066837631653, 3.355671682714795, 3.3262528023741558, 3.2973500427412468, 3.268963403816067, 3.2410928855986194, 3.213738488088902, 3.1869002112869147, 3.1605780551926586, 3.1347720198061317, 3.109482105127337, 3.0847083111562714, 3.060450637892937, 3.0367090853373337, 3.01348365348946, 2.990774342349317, 2.9685811519169043, 2.9469040821922228, 2.9257431331752715, 2.9050983048660504, 2.8849695972645604, 2.8653570103708006, 2.8462605441847715, 2.8276801987064726, 2.8096159739359043, 2.7920678698730663, 2.7750358865179594, 2.7585200238705827, 2.7425202819309367, 2.727036660699021, 2.7120691601748357, 2.697617780358381, 2.6836825212496573, 2.6702633828486637, 2.6573603651554007, 2.6449734681698684, 2.6331026918920664, 2.621748036321995, 2.6109095014596537, 2.6005870873050436, 2.5907807938581637, 2.581490621119014, 2.5727165690875955, 2.564458637763907, 2.556716827147949, 2.549491137239722, 2.542781568039225, 2.536588119546459, 2.530910791761423, 2.525749584684118, 2.521104498314543, 2.5169755326526992, 2.5133626876985855, 2.5102659634522024, 2.5076853599135496, 2.505620877082628, 2.504072514959436, 2.503040273543975, 2.5025241528362443, 2.5025241528362443, 2.503040273543975, 2.504072514959436, 2.5056208770826274, 2.5076853599135496, 2.5102659634522024, 2.5133626876985855, 2.516975532652699, 2.521104498314543, 2.525749584684118, 2.530910791761423, 2.5365881195464586, 2.542781568039225, 2.5494911372397215, 2.556716827147949, 2.5644586377639067, 2.572716569087595, 2.581490621119014, 2.5907807938581633, 2.600587087305043, 2.6109095014596537, 2.6217480363219945, 2.633102691892066, 2.644973468169868, 2.6573603651554003, 2.6702633828486633, 2.683682521249657, 2.6976177803583807, 2.7120691601748357, 2.7270366606990204, 2.742520281930936, 2.7585200238705823, 2.775035886517959, 2.792067869873066, 2.809615973935904, 2.827680198706472, 2.8462605441847706, 2.8653570103708, 2.88496959726456, 2.9050983048660504, 2.9257431331752706, 2.9469040821922223, 2.968581151916904, 2.9907743423493165, 3.013483653489459, 3.036709085337333, 3.060450637892937, 3.0847083111562714, 3.109482105127336, 3.1347720198061317, 3.1605780551926577, 3.186900211286914, 3.213738488088901, 3.2410928855986185, 3.268963403816067, 3.297350042741245, 3.326252802374155, 3.355671682714795, 3.3856066837631644, 3.416057805519266, 3.4470250479830966, 3.4785084111546585, 3.5105078950339497, 3.5430234996209737, 3.5760552249157262, 3.60960307091821, 3.6436670376284237, 3.6782471250463695, 3.7133433331720456, 3.748955662005451, 3.7850841115465874, 3.821728681795454, 3.858889372752052, 3.896566184416379, 3.934759116788438, 3.9734681698682266, 4.012693343655747, 4.052434638150996, 4.092692053353977, 4.133465589264689, 4.17475524588313, 4.2165610232093025, 4.258882921243204, 4.301720939984838, 4.345075079434201, 4.388945339591296, 4.4333317204561205, 4.478234222028676, 4.523652844308961, 4.569587587296978, 4.6160384509927255, 4.663005435396203, 4.710488540507411, 4.758487766326349, 4.8070031128530175, 4.8560345800874165, 4.905582168029547, 4.955645876679407, 5.006225706036998, 5.057321656102319, 5.108933726875372, 5.161061918356155, 5.213706230544667, 5.266866663440911, 5.320543217044885, 5.37473589135659, 5.429444686376025, 5.484669602103191, 5.540410638538086, 5.596667795680713, 5.653441073531072, 5.710730472089159, 5.768535991354977, 5.826857631328526, 5.885695392009805, 5.945049273398814, 6.004919275495555, 6.065305398300025, 6.126207641812227, 6.187626006032159, 6.249560490959822, 6.312011096595215, 6.374977822938337, 6.438460669989192, 6.502459637747778 ], [ 6.4425896356510375, 6.378590667892453, 6.315107820841599, 6.2521410944984765, 6.189690488863083, 6.127756003935421, 6.0663376397154885, 6.005435396203287, 5.945049273398816, 5.885179271302076, 5.825825389913065, 5.766987629231787, 5.708665989258238, 5.65086046999242, 5.593571071434332, 5.536797793583975, 5.480540636441347, 5.424799600006452, 5.369574684279286, 5.314865889259851, 5.260673214948146, 5.2069966613441725, 5.153836228447929, 5.101191916259415, 5.049063724778633, 4.997451654005581, 4.9463557039402595, 4.895775874582668, 4.845712165932808, 4.796164577990678, 4.747133110756279, 4.69861776422961, 4.65061853841067, 4.603135433299463, 4.556168448895986, 4.509717585200239, 4.463782842212222, 4.418364219931937, 4.373461718359382, 4.329075337494557, 4.285205077337462, 4.241850937888099, 4.199012919146465, 4.156691021112563, 4.114885243786391, 4.073595587167949, 4.032822051257238, 3.992564636054257, 3.9528233415590073, 3.9135981677714877, 3.8748891146916993, 3.83669618231964, 3.799019370655312, 3.7618586796987152, 3.7252141094498477, 3.689085659908711, 3.653473331075306, 3.6183771229496298, 3.583797035531685, 3.549733068821471, 3.5161852228189865, 3.483153497524234, 3.450637892937211, 3.4186384090579187, 3.387155045886357, 3.356187803422526, 3.3257366816664247, 3.2958016806180552, 3.266382800277415, 3.237480040644506, 3.2090934017193273, 3.1812228835018788, 3.1538684859921613, 3.127030209190174, 3.100708053095918, 3.074902017709392, 3.0496121030305963, 3.0248383090595317, 3.0005806357961973, 2.976839083240593, 2.9536136513927196, 2.9309043402525767, 2.9087111498201645, 2.8870340800954826, 2.8658731310785313, 2.8452283027693106, 2.82509959516782, 2.8054870082740604, 2.7863905420880313, 2.7678101966097324, 2.749745971839164, 2.732197867776326, 2.715165884421219, 2.6986500217738425, 2.6826502798341965, 2.6671666586022806, 2.652199158078096, 2.637747778261641, 2.623812519152917, 2.6103933807519235, 2.5974903630586605, 2.5851034660731282, 2.573232689795326, 2.5618780342252547, 2.5510394993629135, 2.5407170852083034, 2.5309107917614235, 2.521620619022274, 2.5128465669908553, 2.504588635667167, 2.496846825051209, 2.489621135142982, 2.482911565942485, 2.476718117449719, 2.471040789664683, 2.4658795825873776, 2.461234496217803, 2.457105530555959, 2.4534926856018453, 2.4503959613554622, 2.4478153578168094, 2.4457508749858876, 2.4442025128626956, 2.4431702714472348, 2.442654150739504, 2.442654150739504, 2.4431702714472348, 2.4442025128626956, 2.445750874985887, 2.4478153578168094, 2.4503959613554622, 2.4534926856018453, 2.4571055305559586, 2.461234496217803, 2.4658795825873776, 2.471040789664683, 2.4767181174497184, 2.482911565942485, 2.4896211351429813, 2.496846825051209, 2.5045886356671665, 2.512846566990855, 2.521620619022274, 2.530910791761423, 2.540717085208303, 2.5510394993629135, 2.5618780342252543, 2.5732326897953257, 2.585103466073128, 2.59749036305866, 2.610393380751923, 2.623812519152917, 2.6377477782616405, 2.6521991580780955, 2.66716665860228, 2.682650279834196, 2.698650021773842, 2.7151658844212188, 2.7321978677763257, 2.7497459718391637, 2.767810196609732, 2.7863905420880304, 2.80548700827406, 2.8250995951678197, 2.84522830276931, 2.865873131078531, 2.887034080095482, 2.9087111498201637, 2.9309043402525763, 2.953613651392719, 2.9768390832405927, 3.0005806357961973, 3.0248383090595308, 3.0496121030305963, 3.074902017709391, 3.100708053095918, 3.127030209190174, 3.1538684859921613, 3.181222883501878, 3.2090934017193264, 3.2374800406445052, 3.2663828002774142, 3.2958016806180543, 3.3257366816664238, 3.356187803422525, 3.387155045886356, 3.418638409057918, 3.45063789293721, 3.483153497524233, 3.5161852228189856, 3.54973306882147, 3.583797035531684, 3.6183771229496298, 3.653473331075305, 3.6890856599087103, 3.7252141094498477, 3.7618586796987135, 3.799019370655312, 3.8366961823196393, 3.8748891146916975, 3.913598167771486, 3.9528233415590064, 3.992564636054256, 4.032822051257237, 4.073595587167949, 4.114885243786389, 4.156691021112563, 4.1990129191464645, 4.241850937888098, 4.285205077337461, 4.329075337494556, 4.37346171835938, 4.418364219931936, 4.463782842212221, 4.509717585200238, 4.556168448895985, 4.603135433299462, 4.65061853841067, 4.698617764229608, 4.747133110756277, 4.796164577990677, 4.845712165932807, 4.895775874582666, 4.946355703940258, 4.9974516540055784, 5.049063724778632, 5.101191916259415, 5.153836228447927, 5.206996661344171, 5.260673214948145, 5.31486588925985, 5.369574684279284, 5.42479960000645, 5.480540636441345, 5.536797793583974, 5.593571071434331, 5.650860469992418, 5.708665989258237, 5.766987629231785, 5.825825389913065, 5.885179271302074, 5.945049273398816, 6.005435396203286, 6.066337639715487, 6.127756003935419, 6.189690488863082, 6.252141094498475, 6.315107820841598, 6.378590667892452, 6.4425896356510375 ], [ 6.383235754262028, 6.319236786503444, 6.255753939452589, 6.192787213109466, 6.130336607474073, 6.06840212254641, 6.006983758326478, 5.946081514814277, 5.885695392009806, 5.825825389913065, 5.766471508524056, 5.7076337478427766, 5.649312107869228, 5.59150658860341, 5.534217190045322, 5.477443912194965, 5.421186755052338, 5.365445718617442, 5.310220802890276, 5.255512007870841, 5.201319333559136, 5.147642779955162, 5.094482347058919, 5.0418380348704055, 4.9897098433896225, 4.938097772616571, 4.88700182255125, 4.8364219931936585, 4.786358284543798, 4.736810696601667, 4.687779229367268, 4.639263882840599, 4.591264657021661, 4.5437815519104525, 4.496814567506975, 4.450363703811229, 4.404428960823212, 4.359010338542927, 4.314107836970371, 4.269721456105547, 4.225851195948453, 4.182497056499089, 4.139659037757456, 4.097337139723553, 4.055531362397381, 4.0142417057789395, 3.9734681698682284, 3.9332107546652466, 3.8934694601699977, 3.8542442863824773, 3.815535233302689, 3.7773423009306306, 3.7396654892663026, 3.702504798309705, 3.665860228060838, 3.6297317785197016, 3.5941194496862954, 3.55902324156062, 3.5244431541426753, 3.4903791874324614, 3.456831341429977, 3.4237996161352235, 3.3912840115482012, 3.3592845276689083, 3.3278011644973464, 3.2968339220335157, 3.266382800277415, 3.236447799229045, 3.2070289188884056, 3.1781261592554966, 3.149739520330317, 3.121869002112869, 3.0945146046031518, 3.0676763278011645, 3.0413541717069084, 3.0155481363203815, 2.9902582216415867, 2.9654844276705217, 2.9412267544071873, 2.917485201851583, 2.8942597700037096, 2.8715504588635667, 2.849357268431154, 2.8276801987064726, 2.8065192496895213, 2.7858744213803, 2.76574571377881, 2.7461331268850504, 2.7270366606990213, 2.7084563152207224, 2.690392090450154, 2.672843986387316, 2.655812003032209, 2.6392961403848325, 2.6232963984451865, 2.6078127772132706, 2.5928452766890855, 2.578393896872631, 2.564458637763907, 2.5510394993629135, 2.5381364816696506, 2.5257495846841183, 2.513878808406316, 2.5025241528362447, 2.4916856179739035, 2.4813632038192934, 2.4715569103724135, 2.462266737633264, 2.4534926856018453, 2.445234754278157, 2.437492943662199, 2.430267253753972, 2.423557684553475, 2.417364236060709, 2.411686908275673, 2.4065257011983676, 2.401880614828793, 2.397751649166949, 2.3941388042128353, 2.3910420799664522, 2.3884614764277994, 2.3863969935968776, 2.3848486314736856, 2.3838163900582248, 2.383300269350494, 2.383300269350494, 2.3838163900582248, 2.3848486314736856, 2.386396993596877, 2.3884614764277994, 2.3910420799664522, 2.3941388042128353, 2.3977516491669486, 2.401880614828793, 2.4065257011983676, 2.411686908275673, 2.4173642360607084, 2.423557684553475, 2.4302672537539713, 2.437492943662199, 2.4452347542781565, 2.453492685601845, 2.462266737633264, 2.471556910372413, 2.481363203819293, 2.4916856179739035, 2.5025241528362443, 2.5138788084063157, 2.525749584684118, 2.53813648166965, 2.551039499362913, 2.5644586377639067, 2.5783938968726305, 2.5928452766890855, 2.60781277721327, 2.623296398445186, 2.639296140384832, 2.6558120030322088, 2.6728439863873157, 2.6903920904501537, 2.708456315220722, 2.7270366606990204, 2.74613312688505, 2.7657457137788097, 2.7858744213803, 2.8065192496895204, 2.827680198706472, 2.8493572684311537, 2.8715504588635663, 2.8942597700037087, 2.9174852018515827, 2.941226754407187, 2.965484427670521, 2.9902582216415863, 3.0155481363203815, 3.0413541717069075, 3.0676763278011636, 3.094514604603151, 3.1218690021128683, 3.149739520330317, 3.178126159255495, 3.2070289188884047, 3.236447799229045, 3.2663828002774142, 3.2968339220335157, 3.3278011644973464, 3.3592845276689083, 3.3912840115481995, 3.4237996161352235, 3.456831341429976, 3.4903791874324597, 3.5244431541426735, 3.5590232415606193, 3.5941194496862954, 3.6297317785197007, 3.6658602280608372, 3.702504798309704, 3.7396654892663017, 3.777342300930629, 3.815535233302688, 3.8542442863824764, 3.893469460169997, 3.9332107546652457, 3.9734681698682266, 4.014241705778939, 4.05553136239738, 4.097337139723552, 4.139659037757454, 4.182497056499088, 4.225851195948451, 4.269721456105546, 4.31410783697037, 4.359010338542926, 4.404428960823211, 4.450363703811227, 4.496814567506975, 4.5437815519104525, 4.591264657021661, 4.6392638828405985, 4.687779229367267, 4.736810696601666, 4.786358284543796, 4.836421993193657, 4.887001822551248, 4.938097772616569, 4.989709843389622, 5.041838034870405, 5.094482347058917, 5.147642779955161, 5.201319333559135, 5.2555120078708395, 5.310220802890274, 5.3654457186174405, 5.421186755052336, 5.477443912194963, 5.534217190045322, 5.5915065886034085, 5.6493121078692266, 5.707633747842776, 5.766471508524055, 5.825825389913064, 5.885695392009805, 5.946081514814275, 6.006983758326477, 6.068402122546408, 6.130336607474072, 6.192787213109465, 6.255753939452587, 6.319236786503442, 6.383235754262028 ], [ 6.324397993580749, 6.260399025822164, 6.1969161787713105, 6.133949452428187, 6.071498846792794, 6.009564361865131, 5.948145997645199, 5.887243754132998, 5.826857631328527, 5.766987629231787, 5.7076337478427766, 5.648795987161497, 5.590474347187948, 5.53266882792213, 5.475379429364043, 5.418606151513686, 5.362348994371058, 5.306607957936163, 5.251383042208996, 5.196674247189561, 5.142481572877857, 5.088805019273883, 5.035644586377639, 4.983000274189126, 4.930872082708344, 4.879260011935292, 4.82816406186997, 4.777584232512378, 4.727520523862519, 4.677972935920389, 4.628941468685989, 4.58042612215932, 4.5324268963403815, 4.484943791229174, 4.437976806825697, 4.39152594312995, 4.345591200141933, 4.300172577861648, 4.255270076289092, 4.210883695424268, 4.167013435267173, 4.123659295817809, 4.0808212770761765, 4.038499379042274, 3.9966936017161014, 3.95540394509766, 3.914630409186949, 3.874372993983968, 3.8346316994887184, 3.795406525701198, 3.7566974726214095, 3.7185045402493504, 3.6808277285850224, 3.6436670376284255, 3.607022467379559, 3.5708940178384223, 3.535281689005016, 3.500185480879341, 3.465605393461395, 3.4315414267511812, 3.3979935807486976, 3.364961855453945, 3.332446250866921, 3.300446766987629, 3.268963403816068, 3.2379961613522363, 3.207545039596136, 3.1776100385477655, 3.1481911582071263, 3.1192883985742164, 3.0909017596490376, 3.06303124143159, 3.0356768439218724, 3.008838567119885, 2.9825164110256286, 2.9567103756391027, 2.9314204609603074, 2.9066466669892423, 2.882388993725908, 2.858647441170304, 2.8354220093224303, 2.8127126981822874, 2.790519507749875, 2.7688424380251933, 2.747681489008242, 2.727036660699021, 2.706907953097531, 2.687295366203771, 2.668198900017742, 2.649618554539443, 2.631554329768875, 2.614006225706037, 2.59697424235093, 2.580458379703553, 2.564458637763907, 2.5489750165319913, 2.534007516007806, 2.5195561361913517, 2.505620877082628, 2.492201738681634, 2.4792987209883712, 2.466911824002839, 2.455041047725037, 2.4436863921549654, 2.432847857292624, 2.422525443138014, 2.412719149691134, 2.4034289769519845, 2.394654924920566, 2.3863969935968776, 2.3786551829809195, 2.3714294930726925, 2.3647199238721957, 2.3585264753794295, 2.3528491475943936, 2.3476879405170883, 2.3430428541475137, 2.3389138884856697, 2.335301043531556, 2.332204319285173, 2.32962371574652, 2.3275592329155983, 2.3260108707924063, 2.3249786293769454, 2.3244625086692148, 2.3244625086692148, 2.3249786293769454, 2.3260108707924063, 2.327559232915598, 2.32962371574652, 2.332204319285173, 2.335301043531556, 2.3389138884856693, 2.3430428541475137, 2.3476879405170883, 2.3528491475943936, 2.358526475379429, 2.3647199238721957, 2.371429493072692, 2.3786551829809195, 2.386396993596877, 2.3946549249205655, 2.4034289769519845, 2.4127191496911338, 2.4225254431380137, 2.432847857292624, 2.443686392154965, 2.4550410477250364, 2.4669118240028385, 2.479298720988371, 2.4922017386816337, 2.5056208770826274, 2.519556136191351, 2.534007516007806, 2.548975016531991, 2.5644586377639067, 2.5804583797035527, 2.5969742423509294, 2.6140062257060364, 2.6315543297688744, 2.6496185545394426, 2.668198900017741, 2.6872953662037706, 2.7069079530975304, 2.727036660699021, 2.747681489008241, 2.768842438025193, 2.7905195077498743, 2.812712698182287, 2.8354220093224294, 2.8586474411703033, 2.8823889937259075, 2.9066466669892415, 2.931420460960307, 2.956710375639102, 2.982516411025628, 3.0088385671198843, 3.0356768439218715, 3.063031241431589, 3.0909017596490376, 3.1192883985742155, 3.1481911582071254, 3.1776100385477655, 3.207545039596135, 3.2379961613522363, 3.268963403816067, 3.300446766987629, 3.332446250866921, 3.3649618554539433, 3.3979935807486967, 3.4315414267511812, 3.465605393461395, 3.50018548087934, 3.535281689005016, 3.5708940178384214, 3.607022467379558, 3.6436670376284246, 3.6808277285850224, 3.7185045402493495, 3.7566974726214086, 3.795406525701197, 3.8346316994887175, 3.8743729939839664, 3.914630409186948, 3.9554039450976592, 3.9966936017161006, 4.038499379042273, 4.080821277076176, 4.123659295817809, 4.1670134352671715, 4.2108836954242665, 4.255270076289091, 4.300172577861646, 4.345591200141932, 4.391525943129949, 4.437976806825696, 4.484943791229172, 4.532426896340381, 4.580426122159318, 4.628941468685988, 4.677972935920387, 4.727520523862518, 4.7775842325123765, 4.828164061869969, 4.87926001193529, 4.930872082708342, 4.983000274189125, 5.035644586377638, 5.088805019273882, 5.1424815728778555, 5.196674247189561, 5.251383042208994, 5.306607957936161, 5.3623489943710565, 5.418606151513684, 5.475379429364041, 5.532668827922128, 5.590474347187948, 5.6487959871614954, 5.707633747842776, 5.766987629231785, 5.826857631328526, 5.887243754132996, 5.948145997645198, 6.009564361865129, 6.071498846792792, 6.133949452428186, 6.196916178771309, 6.260399025822164, 6.324397993580749 ], [ 6.2660763536072, 6.202077385848615, 6.138594538797761, 6.075627812454638, 6.013177206819245, 5.951242721891582, 5.88982435767165, 5.8289221141594485, 5.7685359913549785, 5.708665989258238, 5.649312107869228, 5.590474347187948, 5.5321527072144, 5.474347187948582, 5.417057789390494, 5.3602845115401365, 5.30402735439751, 5.248286317962615, 5.193061402235448, 5.138352607216013, 5.084159932904308, 5.030483379300334, 4.97732294640409, 4.924678634215578, 4.872550442734795, 4.820938371961743, 4.7698424218964215, 4.71926259253883, 4.669198883888971, 4.61965129594684, 4.57061982871244, 4.522104482185771, 4.474105256366833, 4.426622151255625, 4.379655166852148, 4.333204303156402, 4.287269560168385, 4.241850937888099, 4.196948436315543, 4.152562055450719, 4.108691795293624, 4.06533765584426, 4.022499637102627, 3.9801777390687247, 3.9383719617425523, 3.897082305124111, 3.8563087692134, 3.816051354010419, 3.7763100595151693, 3.7370848857276497, 3.6983758326478613, 3.660182900275802, 3.622506088611474, 3.5853453976548764, 3.5487008274060097, 3.512572377864873, 3.476960049031468, 3.4418638409057927, 3.407283753487847, 3.373219786777633, 3.3396719407751494, 3.306640215480396, 3.274124610893373, 3.2421251270140807, 3.210641763842519, 3.179674521378688, 3.1492233996225867, 3.1192883985742172, 3.089869518233577, 3.060966758600668, 3.0325801196754893, 3.004709601458041, 2.9773552039483233, 2.9505169271463365, 2.92419477105208, 2.898388735665554, 2.8730988209867583, 2.8483250270156937, 2.8240673537523593, 2.800325801196755, 2.7771003693488816, 2.7543910582087388, 2.7321978677763266, 2.7105207980516446, 2.6893598490346933, 2.6687150207254726, 2.648586313123982, 2.6289737262302224, 2.6098772600441933, 2.5912969145658944, 2.573232689795326, 2.555684585732488, 2.538652602377381, 2.5221367397300045, 2.5061369977903585, 2.4906533765584427, 2.475685876034258, 2.461234496217803, 2.447299237109079, 2.4338800987080855, 2.4209770810148226, 2.4085901840292903, 2.396719407751488, 2.3853647521814167, 2.3745262173190755, 2.3642038031644654, 2.3543975097175855, 2.345107336978436, 2.3363332849470173, 2.328075353623329, 2.320333543007371, 2.313107853099144, 2.306398283898647, 2.300204835405881, 2.294527507620845, 2.2893663005435396, 2.284721214173965, 2.280592248512121, 2.2769794035580073, 2.2738826793116242, 2.2713020757729714, 2.2692375929420496, 2.2676892308188576, 2.2666569894033968, 2.266140868695666, 2.266140868695666, 2.2666569894033968, 2.2676892308188576, 2.269237592942049, 2.2713020757729714, 2.2738826793116242, 2.2769794035580073, 2.2805922485121206, 2.284721214173965, 2.2893663005435396, 2.294527507620845, 2.3002048354058804, 2.306398283898647, 2.3131078530991434, 2.320333543007371, 2.3280753536233285, 2.336333284947017, 2.345107336978436, 2.354397509717585, 2.364203803164465, 2.3745262173190755, 2.3853647521814163, 2.3967194077514877, 2.40859018402929, 2.420977081014822, 2.433880098708085, 2.447299237109079, 2.4612344962178025, 2.4756858760342575, 2.490653376558442, 2.506136997790358, 2.522136739730004, 2.5386526023773808, 2.5556845857324877, 2.5732326897953257, 2.591296914565894, 2.6098772600441924, 2.628973726230222, 2.6485863131239817, 2.668715020725472, 2.689359849034693, 2.710520798051644, 2.7321978677763257, 2.7543910582087383, 2.777100369348881, 2.8003258011967547, 2.824067353752359, 2.848325027015693, 2.8730988209867583, 2.898388735665553, 2.92419477105208, 2.950516927146336, 2.9773552039483233, 3.004709601458041, 3.0325801196754885, 3.0609667586006672, 3.0898695182335763, 3.1192883985742164, 3.1492233996225867, 3.1796745213786872, 3.210641763842518, 3.24212512701408, 3.274124610893372, 3.306640215480395, 3.3396719407751476, 3.373219786777632, 3.407283753487846, 3.441863840905791, 3.476960049031467, 3.5125723778648723, 3.5487008274060097, 3.5853453976548755, 3.6225060886114733, 3.6601829002758013, 3.6983758326478604, 3.737084885727649, 3.7763100595151684, 3.816051354010418, 3.856308769213399, 3.89708230512411, 3.9383719617425514, 3.980177739068724, 4.0224996371026265, 4.06533765584426, 4.108691795293623, 4.152562055450717, 4.196948436315542, 4.241850937888097, 4.287269560168383, 4.3332043031564, 4.379655166852148, 4.426622151255624, 4.474105256366832, 4.52210448218577, 4.57061982871244, 4.619651295946838, 4.669198883888969, 4.719262592538828, 4.769842421896421, 4.820938371961741, 4.872550442734793, 4.924678634215576, 4.9773229464040885, 5.030483379300334, 5.084159932904306, 5.138352607216012, 5.193061402235446, 5.248286317962613, 5.304027354397508, 5.360284511540135, 5.417057789390493, 5.47434718794858, 5.532152707214399, 5.590474347187947, 5.6493121078692266, 5.708665989258236, 5.768535991354977, 5.828922114159447, 5.88982435767165, 5.95124272189158, 6.013177206819243, 6.075627812454638, 6.13859453879776, 6.2020773858486145, 6.2660763536072 ], [ 6.208270834341382, 6.144271866582797, 6.080789019531943, 6.01782229318882, 5.955371687553427, 5.893437202625764, 5.832018838405832, 5.7711165948936305, 5.7107304720891605, 5.65086046999242, 5.59150658860341, 5.53266882792213, 5.474347187948582, 5.416541668682764, 5.359252270124676, 5.3024789922743185, 5.246221835131692, 5.190480798696797, 5.13525588296963, 5.080547087950195, 5.02635441363849, 4.972677860034516, 4.919517427138272, 4.86687311494976, 4.814744923468977, 4.763132852695925, 4.7120369026306035, 4.661457073273012, 4.611393364623153, 4.561845776681022, 4.512814309446622, 4.464298962919953, 4.416299737101015, 4.368816631989807, 4.32184964758633, 4.275398783890584, 4.229464040902567, 4.184045418622281, 4.139142917049725, 4.094756536184901, 4.050886276027806, 4.007532136578442, 3.9646941178368094, 3.9223722198029067, 3.8805664424767343, 3.839276785858293, 3.798503249947582, 3.758245834744601, 3.7185045402493513, 3.6792793664618317, 3.6405703133820433, 3.602377381009984, 3.564700569345656, 3.5275398783890584, 3.4908953081401917, 3.454766858599055, 3.41915452976565, 3.3840583216399747, 3.349478234222029, 3.315414267511815, 3.2818664215093314, 3.248834696214578, 3.216319091627555, 3.1843196077482627, 3.152836244576701, 3.12186900211287, 3.0914178803567687, 3.0614828793083992, 3.032063998967759, 3.00316123933485, 2.9747746004096713, 2.946904082192223, 2.9195496846825053, 2.8927114078805185, 2.866389251786262, 2.840583216399736, 2.8152933017209403, 2.7905195077498757, 2.7662618344865413, 2.742520281930937, 2.7192948500830636, 2.6965855389429207, 2.6743923485105086, 2.6527152787858266, 2.6315543297688753, 2.6109095014596546, 2.590780793858164, 2.5711682069644044, 2.5520717407783753, 2.5334913953000764, 2.515427170529508, 2.49787906646667, 2.480847083111563, 2.4643312204641865, 2.4483314785245405, 2.4328478572926246, 2.41788035676844, 2.403428976951985, 2.389493717843261, 2.3760745794422675, 2.3631715617490046, 2.3507846647634723, 2.33891388848567, 2.3275592329155987, 2.3167206980532575, 2.3063982838986474, 2.2965919904517675, 2.287301817712618, 2.2785277656811993, 2.270269834357511, 2.262528023741553, 2.255302333833326, 2.248592764632829, 2.242399316140063, 2.236721988355027, 2.2315607812777216, 2.226915694908147, 2.222786729246303, 2.2191738842921893, 2.2160771600458062, 2.2134965565071534, 2.2114320736762316, 2.2098837115530396, 2.2088514701375788, 2.208335349429848, 2.208335349429848, 2.2088514701375788, 2.2098837115530396, 2.211432073676231, 2.2134965565071534, 2.2160771600458062, 2.2191738842921893, 2.2227867292463026, 2.226915694908147, 2.2315607812777216, 2.236721988355027, 2.2423993161400624, 2.248592764632829, 2.2553023338333253, 2.262528023741553, 2.2702698343575105, 2.278527765681199, 2.287301817712618, 2.296591990451767, 2.306398283898647, 2.3167206980532575, 2.3275592329155983, 2.3389138884856697, 2.350784664763472, 2.363171561749004, 2.376074579442267, 2.389493717843261, 2.4034289769519845, 2.4178803567684395, 2.432847857292624, 2.44833147852454, 2.464331220464186, 2.4808470831115628, 2.4978790664666697, 2.5154271705295077, 2.533491395300076, 2.5520717407783744, 2.571168206964404, 2.5907807938581637, 2.610909501459654, 2.631554329768875, 2.652715278785826, 2.6743923485105077, 2.6965855389429203, 2.719294850083063, 2.7425202819309367, 2.766261834486541, 2.790519507749875, 2.8152933017209403, 2.840583216399735, 2.866389251786262, 2.892711407880518, 2.9195496846825053, 2.9469040821922223, 2.974774600409671, 3.0031612393348492, 3.0320639989677582, 3.0614828793083984, 3.0914178803567687, 3.121869002112869, 3.1528362445767, 3.184319607748262, 3.216319091627554, 3.248834696214577, 3.2818664215093296, 3.315414267511814, 3.349478234222028, 3.384058321639973, 3.419154529765649, 3.4547668585990543, 3.4908953081401917, 3.5275398783890575, 3.5647005693456553, 3.6023773810099833, 3.6405703133820424, 3.679279366461831, 3.7185045402493504, 3.7582458347446, 3.798503249947581, 3.839276785858292, 3.8805664424767334, 3.922372219802906, 3.9646941178368085, 4.007532136578442, 4.050886276027805, 4.094756536184899, 4.139142917049724, 4.184045418622279, 4.229464040902565, 4.275398783890582, 4.32184964758633, 4.368816631989806, 4.416299737101014, 4.464298962919952, 4.512814309446622, 4.56184577668102, 4.611393364623151, 4.66145707327301, 4.712036902630603, 4.763132852695923, 4.814744923468975, 4.866873114949758, 4.9195174271382704, 4.972677860034516, 5.026354413638488, 5.080547087950194, 5.135255882969628, 5.190480798696795, 5.24622183513169, 5.302478992274317, 5.359252270124675, 5.416541668682762, 5.474347187948581, 5.532668827922129, 5.5915065886034085, 5.650860469992418, 5.710730472089159, 5.771116594893629, 5.832018838405832, 5.893437202625762, 5.955371687553425, 6.01782229318882, 6.080789019531942, 6.1442718665827964, 6.208270834341382 ], [ 6.150981435783294, 6.0869824680247095, 6.023499620973856, 5.960532894630733, 5.898082288995339, 5.836147804067677, 5.774729439847745, 5.713827196335544, 5.653441073531072, 5.593571071434332, 5.534217190045322, 5.475379429364043, 5.417057789390494, 5.359252270124676, 5.301962871566588, 5.245189593716232, 5.188932436573603, 5.133191400138708, 5.077966484411542, 5.023257689392107, 4.969065015080402, 4.915388461476429, 4.862228028580185, 4.809583716391671, 4.757455524910889, 4.705843454137837, 4.654747504072516, 4.604167674714924, 4.554103966065064, 4.504556378122934, 4.455524910888535, 4.407009564361866, 4.359010338542927, 4.311527233431719, 4.264560249028242, 4.218109385332495, 4.172174642344478, 4.126756020064193, 4.081853518491638, 4.037467137626813, 3.9935968774697184, 3.9502427380203553, 3.9074047192787216, 3.865082821244819, 3.8232770439186474, 3.7819873873002052, 3.741213851389494, 3.7009564361865133, 3.6612151416912635, 3.621989967903744, 3.5832809148239555, 3.5450879824518964, 3.5074111707875684, 3.4702504798309715, 3.433605909582104, 3.3974774600409674, 3.361865131207562, 3.326768923081886, 3.292188835663941, 3.258124868953727, 3.2245770229512427, 3.19154529765649, 3.159029693069467, 3.127030209190175, 3.095546846018613, 3.0645796035547823, 3.034128481798681, 3.0041934807503115, 2.9747746004096713, 2.9458718407767623, 2.9174852018515836, 2.8896146836341354, 2.8622602861244175, 2.8354220093224307, 2.809099853228174, 2.783293817841648, 2.7580039031628525, 2.733230109191788, 2.7089724359284535, 2.6852308833728493, 2.662005451524976, 2.639296140384833, 2.6171029499524208, 2.595425880227739, 2.5742649312107875, 2.553620102901567, 2.5334913953000764, 2.5138788084063166, 2.4947823422202875, 2.4762019967419886, 2.4581377719714204, 2.4405896679085823, 2.4235576845534754, 2.4070418219060987, 2.3910420799664527, 2.375558458734537, 2.360590958210352, 2.346139578393897, 2.3322043192851734, 2.3187851808841797, 2.3058821631909168, 2.2934952662053845, 2.2816244899275824, 2.270269834357511, 2.2594312994951697, 2.2491088853405596, 2.2393025918936798, 2.23001241915453, 2.2212383671231115, 2.212980435799423, 2.205238625183465, 2.198012935275238, 2.191303366074741, 2.185109917581975, 2.179432589796939, 2.174271382719634, 2.169626296350059, 2.1654973306882153, 2.1618844857341015, 2.1587877614877184, 2.1562071579490656, 2.154142675118144, 2.152594312994952, 2.151562071579491, 2.1510459508717603, 2.1510459508717603, 2.151562071579491, 2.152594312994952, 2.1541426751181434, 2.1562071579490656, 2.1587877614877184, 2.1618844857341015, 2.165497330688215, 2.169626296350059, 2.174271382719634, 2.179432589796939, 2.1851099175819746, 2.191303366074741, 2.1980129352752376, 2.205238625183465, 2.2129804357994227, 2.221238367123111, 2.23001241915453, 2.2393025918936793, 2.249108885340559, 2.2594312994951697, 2.2702698343575105, 2.281624489927582, 2.293495266205384, 2.3058821631909163, 2.3187851808841793, 2.3322043192851734, 2.3461395783938968, 2.3605909582103517, 2.3755584587345364, 2.3910420799664522, 2.4070418219060983, 2.423557684553475, 2.440589667908582, 2.45813777197142, 2.476201996741988, 2.4947823422202866, 2.513878808406316, 2.533491395300076, 2.5536201029015664, 2.574264931210787, 2.5954258802277383, 2.61710294995242, 2.6392961403848325, 2.6620054515249754, 2.685230883372849, 2.708972435928453, 2.733230109191787, 2.7580039031628525, 2.7832938178416473, 2.809099853228174, 2.8354220093224303, 2.8622602861244175, 2.8896146836341345, 2.917485201851583, 2.9458718407767615, 2.9747746004096705, 3.0041934807503106, 3.03412848179868, 3.0645796035547814, 3.095546846018612, 3.127030209190174, 3.159029693069466, 3.1915452976564893, 3.224577022951242, 3.2581248689537263, 3.29218883566394, 3.326768923081886, 3.361865131207561, 3.3974774600409665, 3.433605909582104, 3.4702504798309697, 3.5074111707875684, 3.5450879824518955, 3.5832809148239537, 3.621989967903742, 3.6612151416912626, 3.7009564361865124, 3.7412138513894933, 3.7819873873002052, 3.8232770439186456, 3.865082821244819, 3.9074047192787207, 3.9502427380203544, 3.9935968774697175, 4.0374671376268125, 4.081853518491636, 4.126756020064192, 4.172174642344477, 4.218109385332494, 4.264560249028241, 4.311527233431718, 4.359010338542927, 4.407009564361864, 4.455524910888533, 4.504556378122933, 4.554103966065063, 4.6041676747149225, 4.654747504072514, 4.705843454137835, 4.757455524910888, 4.809583716391671, 4.8622280285801835, 4.915388461476427, 4.969065015080401, 5.023257689392106, 5.07796648441154, 5.133191400138706, 5.188932436573602, 5.24518959371623, 5.301962871566587, 5.359252270124674, 5.417057789390493, 5.475379429364041, 5.534217190045322, 5.59357107143433, 5.653441073531072, 5.713827196335542, 5.774729439847743, 5.836147804067675, 5.898082288995338, 5.960532894630731, 6.023499620973854, 6.086982468024709, 6.150981435783294 ], [ 6.094208157932937, 6.030209190174352, 5.966726343123499, 5.903759616780375, 5.841309011144983, 5.779374526217319, 5.717956161997387, 5.657053918485186, 5.596667795680715, 5.536797793583975, 5.477443912194965, 5.418606151513686, 5.3602845115401365, 5.3024789922743185, 5.245189593716232, 5.188416315865874, 5.132159158723247, 5.076418122288351, 5.021193206561184, 4.9664844115417495, 4.912291737230046, 4.858615183626071, 4.805454750729828, 4.752810438541315, 4.7006822470605325, 4.649070176287481, 4.597974226222158, 4.547394396864567, 4.497330688214707, 4.447783100272577, 4.398751633038177, 4.3502362865115085, 4.30223706069257, 4.2547539555813625, 4.207786971177885, 4.161336107482138, 4.115401364494121, 4.069982742213837, 4.02508024064128, 3.9806938597764567, 3.9368235996193617, 3.8934694601699977, 3.850631441428365, 3.8083095433944623, 3.76650376606829, 3.7252141094498485, 3.6844405735391375, 3.6441831583361566, 3.604441863840907, 3.5652166900533864, 3.526507636973598, 3.488314704601539, 3.450637892937211, 3.413477201980614, 3.376832631731747, 3.3407041821906107, 3.3050918533572045, 3.2699956452315293, 3.2354155578135835, 3.2013515911033696, 3.167803745100886, 3.1347720198061335, 3.1022564152191094, 3.0702569313398174, 3.0387735681682564, 3.0078063257044247, 2.977355203948324, 2.947420202899954, 2.918001322559314, 2.889098562926405, 2.860711924001226, 2.8328414057837783, 2.805487008274061, 2.7786487314720736, 2.752326575377817, 2.726520539991291, 2.701230625312496, 2.6764568313414308, 2.6521991580780964, 2.628457605522492, 2.6052321736746187, 2.582522862534476, 2.560329672102063, 2.5386526023773817, 2.5174916533604303, 2.4968468250512093, 2.4767181174497193, 2.4571055305559595, 2.4380090643699304, 2.4194287188916315, 2.4013644941210632, 2.383816390058225, 2.3667844067031183, 2.3502685440557416, 2.3342688021160956, 2.3187851808841797, 2.3038176803599946, 2.28936630054354, 2.2754310414348162, 2.2620119030338226, 2.2491088853405596, 2.2367219883550273, 2.2248512120772252, 2.213496556507154, 2.2026580216448126, 2.1923356074902025, 2.1825293140433226, 2.173239141304173, 2.1644650892727544, 2.156207157949066, 2.148465347333108, 2.141239657424881, 2.134530088224384, 2.128336639731618, 2.122659311946582, 2.1174981048692767, 2.112853018499702, 2.108724052837858, 2.1051112078837444, 2.1020144836373613, 2.0994338800987085, 2.0973693972677867, 2.0958210351445947, 2.094788793729134, 2.094272673021403, 2.094272673021403, 2.094788793729134, 2.0958210351445947, 2.0973693972677863, 2.0994338800987085, 2.1020144836373613, 2.1051112078837444, 2.1087240528378577, 2.112853018499702, 2.1174981048692767, 2.122659311946582, 2.1283366397316175, 2.134530088224384, 2.1412396574248804, 2.148465347333108, 2.1562071579490656, 2.164465089272754, 2.173239141304173, 2.182529314043322, 2.192335607490202, 2.2026580216448126, 2.2134965565071534, 2.224851212077225, 2.236721988355027, 2.249108885340559, 2.262011903033822, 2.275431041434816, 2.2893663005435396, 2.3038176803599946, 2.3187851808841793, 2.334268802116095, 2.350268544055741, 2.366784406703118, 2.3838163900582248, 2.401364494121063, 2.419428718891631, 2.4380090643699295, 2.457105530555959, 2.476718117449719, 2.4968468250512093, 2.5174916533604295, 2.538652602377381, 2.5603296721020627, 2.5825228625344754, 2.605232173674618, 2.6284576055224917, 2.652199158078096, 2.67645683134143, 2.7012306253124954, 2.7265205399912906, 2.7523265753778166, 2.7786487314720727, 2.8054870082740604, 2.8328414057837774, 2.860711924001226, 2.889098562926404, 2.9180013225593138, 2.9474202028999534, 2.9773552039483233, 3.0078063257044247, 3.0387735681682555, 3.0702569313398174, 3.1022564152191094, 3.1347720198061317, 3.167803745100885, 3.2013515911033696, 3.2354155578135835, 3.2699956452315284, 3.3050918533572045, 3.34070418219061, 3.3768326317317463, 3.413477201980613, 3.450637892937211, 3.488314704601538, 3.526507636973597, 3.5652166900533855, 3.604441863840906, 3.644183158336155, 3.6844405735391366, 3.7252141094498477, 3.766503766068289, 3.8083095433944614, 3.850631441428364, 3.8934694601699977, 3.93682359961936, 3.980693859776455, 4.025080240641279, 4.069982742213835, 4.1154013644941205, 4.161336107482137, 4.207786971177884, 4.254753955581361, 4.302237060692569, 4.350236286511507, 4.398751633038176, 4.447783100272575, 4.497330688214706, 4.547394396864565, 4.597974226222157, 4.649070176287478, 4.700682247060531, 4.752810438541314, 4.805454750729826, 4.85861518362607, 4.912291737230044, 4.9664844115417495, 5.021193206561183, 5.0764181222883495, 5.132159158723245, 5.188416315865872, 5.24518959371623, 5.302478992274317, 5.3602845115401365, 5.418606151513684, 5.477443912194964, 5.536797793583974, 5.596667795680714, 5.657053918485184, 5.717956161997386, 5.7793745262173175, 5.841309011144981, 5.903759616780374, 5.966726343123497, 6.030209190174352, 6.094208157932937 ], [ 6.03795100079031, 5.9739520330317255, 5.910469185980871, 5.847502459637748, 5.785051854002354, 5.723117369074692, 5.66169900485476, 5.600796761342559, 5.540410638538088, 5.480540636441347, 5.421186755052338, 5.362348994371058, 5.30402735439751, 5.246221835131692, 5.188932436573603, 5.132159158723247, 5.075902001580619, 5.020160965145724, 4.964936049418558, 4.910227254399123, 4.856034580087417, 4.802358026483444, 4.7491975935872, 4.696553281398687, 4.644425089917904, 4.592813019144852, 4.541717069079532, 4.49113723972194, 4.44107353107208, 4.391525943129949, 4.34249447589555, 4.293979129368881, 4.245979903549943, 4.198496798438734, 4.151529814035257, 4.105078950339511, 4.059144207351494, 4.013725585071208, 3.968823083498653, 3.9244367026338285, 3.8805664424767343, 3.8372123030273704, 3.7943742842857375, 3.752052386251835, 3.7102466089256625, 3.668956952307221, 3.62818341639651, 3.5879260011935283, 3.5481847066982795, 3.508959532910759, 3.4702504798309706, 3.4320575474589123, 3.3943807357945843, 3.3572200448379865, 3.32057547458912, 3.2844470250479834, 3.248834696214577, 3.213738488088902, 3.179158400670957, 3.145094433960743, 3.1115465879582587, 3.0785148626635053, 3.045999258076483, 3.01399977419719, 2.9825164110256286, 2.9515491685617974, 2.921098046805697, 2.8911630457573265, 2.861744165416687, 2.832841405783778, 2.8044547668585986, 2.776584248641151, 2.7492298511314335, 2.7223915743294462, 2.6960694182351896, 2.6702633828486637, 2.6449734681698684, 2.6201996741988034, 2.595942000935469, 2.572200448379865, 2.5489750165319913, 2.5262657053918485, 2.504072514959436, 2.4823954452347543, 2.461234496217803, 2.440589667908582, 2.420460960307092, 2.400848373413332, 2.381751907227303, 2.363171561749004, 2.345107336978436, 2.327559232915598, 2.310527249560491, 2.2940113869131142, 2.278011644973468, 2.2625280237415524, 2.247560523217367, 2.2331091434009127, 2.219173884292189, 2.2057547458911952, 2.1928517281979323, 2.1804648312124, 2.168594054934598, 2.1572393993645265, 2.1464008645021853, 2.136078450347575, 2.1262721569006953, 2.1169819841615456, 2.108207932130127, 2.0999500008064387, 2.0922081901904805, 2.0849825002822535, 2.0782729310817567, 2.0720794825889906, 2.0664021548039546, 2.0612409477266493, 2.0565958613570747, 2.0524668956952308, 2.048854050741117, 2.045757326494734, 2.043176722956081, 2.0411122401251593, 2.0395638780019674, 2.0385316365865065, 2.038015515878776, 2.038015515878776, 2.0385316365865065, 2.0395638780019674, 2.041112240125159, 2.043176722956081, 2.045757326494734, 2.048854050741117, 2.0524668956952303, 2.0565958613570747, 2.0612409477266493, 2.0664021548039546, 2.07207948258899, 2.0782729310817567, 2.084982500282253, 2.0922081901904805, 2.0999500008064382, 2.1082079321301266, 2.1169819841615456, 2.126272156900695, 2.1360784503475747, 2.1464008645021853, 2.157239399364526, 2.1685940549345974, 2.1804648312123995, 2.192851728197932, 2.205754745891195, 2.2191738842921884, 2.2331091434009123, 2.247560523217367, 2.262528023741552, 2.2780116449734678, 2.294011386913114, 2.3105272495604905, 2.3275592329155974, 2.3451073369784354, 2.3631715617490037, 2.381751907227302, 2.4008483734133317, 2.4204609603070915, 2.440589667908582, 2.461234496217802, 2.482395445234754, 2.5040725149594354, 2.526265705391848, 2.5489750165319904, 2.5722004483798644, 2.5959420009354686, 2.6201996741988025, 2.644973468169868, 2.6702633828486633, 2.696069418235189, 2.7223915743294453, 2.749229851131433, 2.77658424864115, 2.8044547668585986, 2.8328414057837765, 2.8617441654166864, 2.891163045757326, 2.921098046805696, 2.951549168561797, 2.9825164110256277, 3.01399977419719, 3.045999258076481, 3.0785148626635053, 3.111546587958258, 3.1450944339607414, 3.1791584006709552, 3.213738488088901, 3.248834696214577, 3.2844470250479825, 3.320575474589119, 3.3572200448379856, 3.3943807357945834, 3.4320575474589106, 3.4702504798309697, 3.508959532910758, 3.5481847066982786, 3.5879260011935274, 3.6281834163965083, 3.6689569523072203, 3.7102466089256616, 3.752052386251834, 3.7943742842857358, 3.8372123030273695, 3.8805664424767325, 3.9244367026338276, 3.968823083498652, 4.0137255850712075, 4.059144207351492, 4.105078950339509, 4.151529814035257, 4.198496798438734, 4.245979903549943, 4.29397912936888, 4.342494475895549, 4.391525943129948, 4.441073531072078, 4.4911372397219385, 4.54171706907953, 4.592813019144851, 4.644425089917903, 4.696553281398686, 4.749197593587199, 4.802358026483443, 4.8560345800874165, 4.910227254399121, 4.964936049418556, 5.020160965145722, 5.0759020015806176, 5.132159158723245, 5.188932436573603, 5.24622183513169, 5.304027354397508, 5.362348994371057, 5.421186755052337, 5.480540636441345, 5.540410638538087, 5.600796761342557, 5.661699004854759, 5.72311736907469, 5.7850518540023534, 5.847502459637747, 5.910469185980869, 5.973952033031724, 6.03795100079031 ], [ 5.982209964355414, 5.91821099659683, 5.854728149545975, 5.7917614232028525, 5.729310817567459, 5.667376332639797, 5.605957968419864, 5.545055724907663, 5.484669602103192, 5.424799600006452, 5.365445718617442, 5.306607957936163, 5.248286317962615, 5.190480798696797, 5.133191400138708, 5.076418122288351, 5.020160965145724, 4.964419928710829, 4.909195012983663, 4.854486217964228, 4.800293543652522, 4.746616990048548, 4.693456557152305, 4.640812244963792, 4.588684053483009, 4.537071982709957, 4.485976032644636, 4.435396203287045, 4.3853324946371846, 4.335784906695054, 4.286753439460655, 4.238238092933986, 4.190238867115047, 4.142755762003839, 4.095788777600362, 4.0493379139046155, 4.003403170916599, 3.957984548636313, 3.9130820470637575, 3.868695666198933, 3.824825406041839, 3.781471266592475, 3.738633247850842, 3.6963113498169395, 3.654505572490767, 3.613215915872326, 3.5724423799616147, 3.532184964758633, 3.492443670263384, 3.4532184964758637, 3.414509443396075, 3.376316511024017, 3.338639699359689, 3.301479008403091, 3.2648344381542245, 3.228705988613088, 3.1930936597796817, 3.1579974516540066, 3.1234173642360616, 3.089353397525848, 3.0558055515233633, 3.02277382622861, 2.990258221641587, 2.958258737762295, 2.9267753745907332, 2.895808132126902, 2.8653570103708015, 2.835422009322431, 2.8060031289817915, 2.7771003693488825, 2.7487137304237033, 2.7208432122062556, 2.693488814696538, 2.666650537894551, 2.6403283818002943, 2.6145223464137684, 2.589232431734973, 2.564458637763908, 2.5402009645005736, 2.5164594119449695, 2.493233980097096, 2.470524668956953, 2.4483314785245405, 2.426654408799859, 2.4054934597829076, 2.3848486314736865, 2.3647199238721965, 2.3451073369784368, 2.3260108707924076, 2.3074305253141087, 2.2893663005435405, 2.2718181964807025, 2.2547862131255956, 2.238270350478219, 2.222270608538573, 2.206786987306657, 2.191819486782472, 2.1773681069660173, 2.1634328478572935, 2.1500137094563, 2.137110691763037, 2.1247237947775046, 2.1128530184997025, 2.101498362929631, 2.09065982806729, 2.08033741391268, 2.0705311204658, 2.0612409477266502, 2.0524668956952317, 2.0442089643715433, 2.036467153755585, 2.029241463847358, 2.0225318946468613, 2.016338446154095, 2.0106611183690593, 2.005499911291754, 2.0008548249221794, 1.9967258592603354, 1.9931130143062217, 1.9900162900598386, 1.9874356865211857, 1.985371203690264, 1.983822841567072, 1.9827906001516111, 1.9822744794438805, 1.9822744794438805, 1.9827906001516111, 1.983822841567072, 1.9853712036902635, 1.9874356865211857, 1.9900162900598386, 1.9931130143062217, 1.996725859260335, 2.0008548249221794, 2.005499911291754, 2.0106611183690593, 2.0163384461540947, 2.0225318946468613, 2.0292414638473577, 2.036467153755585, 2.044208964371543, 2.052466895695231, 2.0612409477266502, 2.0705311204657995, 2.0803374139126793, 2.09065982806729, 2.1014983629296307, 2.112853018499702, 2.124723794777504, 2.1371106917630365, 2.1500137094562994, 2.163432847857293, 2.177368106966017, 2.191819486782472, 2.2067869873066566, 2.2222706085385724, 2.2382703504782184, 2.254786213125595, 2.271818196480702, 2.28936630054354, 2.3074305253141083, 2.3260108707924068, 2.3451073369784363, 2.364719923872196, 2.3848486314736865, 2.4054934597829067, 2.4266544087998585, 2.44833147852454, 2.4705246689569527, 2.493233980097095, 2.516459411944969, 2.540200964500573, 2.564458637763907, 2.5892324317349726, 2.614522346413768, 2.640328381800294, 2.66665053789455, 2.6934888146965377, 2.7208432122062547, 2.7487137304237033, 2.777100369348881, 2.806003128981791, 2.8354220093224307, 2.8653570103708006, 2.8958081321269016, 2.9267753745907323, 2.9582587377622946, 2.9902582216415863, 3.02277382622861, 3.0558055515233624, 3.089353397525846, 3.12341736423606, 3.1579974516540057, 3.1930936597796817, 3.228705988613087, 3.2648344381542236, 3.3014790084030903, 3.338639699359688, 3.376316511024015, 3.4145094433960743, 3.4532184964758628, 3.492443670263383, 3.532184964758632, 3.572442379961613, 3.613215915872325, 3.6545055724907662, 3.6963113498169387, 3.7386332478508404, 3.781471266592474, 3.824825406041837, 3.8686956661989322, 3.9130820470637566, 3.957984548636312, 4.003403170916597, 4.049337913904614, 4.095788777600362, 4.142755762003839, 4.190238867115047, 4.238238092933985, 4.286753439460654, 4.335784906695053, 4.385332494637183, 4.435396203287043, 4.4859760326446345, 4.537071982709955, 4.588684053483008, 4.640812244963791, 4.693456557152303, 4.7466169900485475, 4.800293543652521, 4.854486217964226, 4.909195012983661, 4.964419928710827, 5.020160965145722, 5.0764181222883495, 5.133191400138708, 5.190480798696795, 5.248286317962613, 5.306607957936162, 5.365445718617441, 5.42479960000645, 5.4846696021031915, 5.5450557249076615, 5.6059579684198635, 5.667376332639795, 5.729310817567458, 5.791761423202852, 5.8547281495459735, 5.918210996596828, 5.982209964355414 ], [ 5.926985048628248, 5.862986080869663, 5.799503233818809, 5.7365365074756856, 5.674085901840293, 5.61215141691263, 5.5507330526926975, 5.489830809180496, 5.429444686376026, 5.369574684279286, 5.310220802890276, 5.251383042208996, 5.193061402235448, 5.13525588296963, 5.077966484411542, 5.021193206561184, 4.964936049418558, 4.909195012983663, 4.853970097256496, 4.799261302237061, 4.745068627925356, 4.6913920743213815, 4.638231641425138, 4.585587329236626, 4.533459137755843, 4.481847066982791, 4.430751116917469, 4.380171287559878, 4.3301075789100185, 4.2805599909678875, 4.231528523733488, 4.183013177206819, 4.135013951387881, 4.087530846276673, 4.040563861873196, 3.9941129981774495, 3.9481782551894327, 3.902759632909147, 3.8578571313365906, 3.813470750471767, 3.769600490314672, 3.726246350865308, 3.6834083321236752, 3.6410864340897726, 3.5992806567636, 3.557991000145159, 3.517217464234448, 3.476960049031467, 3.437218754536217, 3.3979935807486976, 3.359284527668909, 3.32109159529685, 3.283414783632522, 3.2462540926759242, 3.2096095224270575, 3.173481072885921, 3.1378687440525157, 3.1027725359268405, 3.0681924485088947, 3.034128481798681, 3.0005806357961973, 2.967548910501444, 2.9350333059144207, 2.9030338220351286, 2.8715504588635667, 2.8405832163997355, 2.810132094643635, 2.7801970935952647, 2.750778213254625, 2.721875453621716, 2.6934888146965372, 2.665618296479089, 2.638263898969371, 2.6114256221673844, 2.585103466073128, 2.559297430686602, 2.534007516007806, 2.5092337220367416, 2.484976048773407, 2.461234496217803, 2.4380090643699295, 2.4152997532297866, 2.3931065627973744, 2.3714294930726925, 2.350268544055741, 2.3296237157465205, 2.30949500814503, 2.2898824212512703, 2.270785955065241, 2.2522056095869423, 2.234141384816374, 2.216593280753536, 2.199561297398429, 2.1830454347510524, 2.1670456928114064, 2.1515620715794905, 2.136594571055306, 2.122143191238851, 2.108207932130127, 2.0947887937291334, 2.0818857760358704, 2.069498879050338, 2.057628102772536, 2.0462734472024646, 2.0354349123401234, 2.0251124981855133, 2.0153062047386334, 2.0060160319994838, 1.9972419799680652, 1.9889840486443768, 1.9812422380284187, 1.9740165481201917, 1.9673069789196949, 1.9611135304269287, 1.9554362026418928, 1.9502749955645875, 1.9456299091950129, 1.941500943533169, 1.9378880985790552, 1.9347913743326721, 1.9322107707940193, 1.9301462879630975, 1.9285979258399055, 1.9275656844244446, 1.927049563716714, 1.927049563716714, 1.9275656844244446, 1.9285979258399055, 1.930146287963097, 1.9322107707940193, 1.9347913743326721, 1.9378880985790552, 1.9415009435331685, 1.9456299091950129, 1.9502749955645875, 1.9554362026418928, 1.9611135304269283, 1.9673069789196949, 1.9740165481201912, 1.9812422380284187, 1.9889840486443764, 1.9972419799680647, 2.0060160319994838, 2.015306204738633, 2.025112498185513, 2.0354349123401234, 2.046273447202464, 2.0576281027725356, 2.0694988790503377, 2.08188577603587, 2.094788793729133, 2.108207932130127, 2.1221431912388504, 2.1365945710553054, 2.15156207157949, 2.167045692811406, 2.183045434751052, 2.1995612973984286, 2.2165932807535356, 2.2341413848163736, 2.252205609586942, 2.2707859550652403, 2.28988242125127, 2.3094950081450296, 2.32962371574652, 2.3502685440557407, 2.371429493072692, 2.3931065627973735, 2.415299753229786, 2.438009064369929, 2.4612344962178025, 2.4849760487734067, 2.5092337220367407, 2.534007516007806, 2.559297430686601, 2.585103466073128, 2.611425622167384, 2.638263898969371, 2.665618296479088, 2.693488814696537, 2.721875453621715, 2.750778213254624, 2.7801970935952642, 2.810132094643634, 2.840583216399735, 2.871550458863566, 2.903033822035128, 2.93503330591442, 2.967548910501443, 3.0005806357961955, 3.03412848179868, 3.068192448508894, 3.1027725359268388, 3.137868744052515, 3.17348107288592, 3.2096095224270575, 3.2462540926759234, 3.283414783632521, 3.321091595296849, 3.3592845276689083, 3.3979935807486967, 3.4372187545362163, 3.476960049031466, 3.517217464234447, 3.557991000145158, 3.5992806567635993, 3.6410864340897717, 3.6834083321236744, 3.726246350865308, 3.769600490314671, 3.8134707504717653, 3.8578571313365897, 3.902759632909145, 3.948178255189431, 3.9941129981774477, 4.040563861873196, 4.087530846276672, 4.13501395138788, 4.183013177206818, 4.231528523733488, 4.280559990967886, 4.330107578910017, 4.380171287559876, 4.4307511169174685, 4.481847066982789, 4.533459137755841, 4.585587329236624, 4.638231641425136, 4.6913920743213815, 4.745068627925354, 4.79926130223706, 4.853970097256494, 4.909195012983661, 4.964936049418556, 5.021193206561183, 5.077966484411541, 5.135255882969628, 5.193061402235447, 5.251383042208995, 5.310220802890274, 5.369574684279284, 5.429444686376025, 5.489830809180495, 5.5507330526926975, 5.612151416912628, 5.674085901840291, 5.7365365074756856, 5.7995032338188075, 5.862986080869662, 5.926985048628248 ], [ 5.872276253608813, 5.808277285850228, 5.744794438799374, 5.681827712456251, 5.619377106820858, 5.557442621893195, 5.4960242576732625, 5.435122014161061, 5.3747358913565915, 5.314865889259851, 5.255512007870841, 5.196674247189561, 5.138352607216013, 5.080547087950195, 5.023257689392107, 4.9664844115417495, 4.910227254399123, 4.854486217964228, 4.799261302237061, 4.744552507217626, 4.690359832905921, 4.636683279301947, 4.583522846405703, 4.530878534217191, 4.478750342736408, 4.427138271963356, 4.376042321898034, 4.325462492540443, 4.275398783890584, 4.225851195948453, 4.176819728714053, 4.128304382187384, 4.080305156368446, 4.032822051257238, 3.9858550668537607, 3.9394042031580145, 3.8934694601699977, 3.848050837889712, 3.8031483363171557, 3.758761955452332, 3.714891695295237, 3.671537555845873, 3.6286995371042403, 3.5863776390703377, 3.5445718617441653, 3.503282205125724, 3.462508669215013, 3.422251254012032, 3.3825099595167822, 3.3432847857292627, 3.3045757326494742, 3.266382800277415, 3.228705988613087, 3.1915452976564893, 3.1549007274076226, 3.118772277866486, 3.0831599490330808, 3.0480637409074056, 3.01348365348946, 2.979419686779246, 2.945871840776762, 2.912840115482009, 2.8803245108949858, 2.8483250270156937, 2.816841663844132, 2.7858744213803006, 2.7554232996242, 2.7254882985758297, 2.69606941823519, 2.667166658602281, 2.6387800196771023, 2.610909501459654, 2.5835551039499363, 2.5567168271479495, 2.530394671053693, 2.504588635667167, 2.4792987209883712, 2.4545249270173066, 2.4302672537539722, 2.406525701198368, 2.3833002693504945, 2.3605909582103517, 2.3383977677779395, 2.3167206980532575, 2.295559749036306, 2.2749149207270856, 2.254786213125595, 2.2351736262318354, 2.2160771600458062, 2.1974968145675073, 2.179432589796939, 2.161884485734101, 2.144852502378994, 2.1283366397316175, 2.1123368977919714, 2.0968532765600556, 2.081885776035871, 2.067434396219416, 2.053499137110692, 2.0400799987096985, 2.0271769810164355, 2.014790084030903, 2.002919307753101, 1.9915646521830297, 1.9807261173206885, 1.9704037031660784, 1.9605974097191985, 1.9513072369800488, 1.9425331849486303, 1.934275253624942, 1.9265334430089838, 1.9193077531007567, 1.91259818390026, 1.9064047354074938, 1.9007274076224578, 1.8955662005451526, 1.890921114175578, 1.886792148513734, 1.8831793035596203, 1.8800825793132372, 1.8775019757745843, 1.8754374929436626, 1.8738891308204706, 1.8728568894050097, 1.872340768697279, 1.872340768697279, 1.8728568894050097, 1.8738891308204706, 1.8754374929436621, 1.8775019757745843, 1.8800825793132372, 1.8831793035596203, 1.8867921485137336, 1.890921114175578, 1.8955662005451526, 1.9007274076224578, 1.9064047354074933, 1.91259818390026, 1.9193077531007563, 1.9265334430089838, 1.9342752536249415, 1.9425331849486298, 1.9513072369800488, 1.960597409719198, 1.970403703166078, 1.9807261173206885, 1.9915646521830292, 2.0029193077531007, 2.0147900840309028, 2.027176981016435, 2.040079998709698, 2.053499137110692, 2.0674343962194155, 2.0818857760358704, 2.096853276560055, 2.112336897791971, 2.128336639731617, 2.1448525023789937, 2.1618844857341006, 2.1794325897969387, 2.197496814567507, 2.2160771600458053, 2.235173626231835, 2.2547862131255947, 2.274914920727085, 2.2955597490363058, 2.316720698053257, 2.3383977677779386, 2.3605909582103513, 2.383300269350494, 2.4065257011983676, 2.430267253753972, 2.4545249270173057, 2.4792987209883712, 2.504588635667166, 2.530394671053693, 2.556716827147949, 2.5835551039499363, 2.6109095014596533, 2.638780019677102, 2.66716665860228, 2.696069418235189, 2.7254882985758293, 2.755423299624199, 2.7858744213803, 2.816841663844131, 2.8483250270156932, 2.880324510894985, 2.912840115482008, 2.9458718407767606, 2.979419686779245, 3.013483653489459, 3.048063740907404, 3.08315994903308, 3.1187722778664853, 3.1549007274076226, 3.1915452976564884, 3.228705988613086, 3.2663828002774142, 3.3045757326494734, 3.343284785729262, 3.3825099595167814, 3.422251254012031, 3.462508669215012, 3.503282205125723, 3.5445718617441644, 3.586377639070337, 3.6286995371042394, 3.671537555845873, 3.714891695295236, 3.7587619554523304, 3.8031483363171548, 3.8480508378897103, 3.893469460169996, 3.9394042031580128, 3.9858550668537607, 4.032822051257237, 4.080305156368445, 4.128304382187383, 4.176819728714053, 4.225851195948451, 4.275398783890582, 4.325462492540441, 4.3760423218980335, 4.427138271963354, 4.478750342736406, 4.530878534217189, 4.583522846405701, 4.636683279301947, 4.690359832905919, 4.744552507217625, 4.799261302237059, 4.854486217964226, 4.910227254399121, 4.966484411541748, 5.023257689392106, 5.080547087950193, 5.138352607216012, 5.19667424718956, 5.2555120078708395, 5.314865889259849, 5.37473589135659, 5.43512201416106, 5.4960242576732625, 5.557442621893193, 5.619377106820856, 5.681827712456251, 5.744794438799373, 5.808277285850227, 5.872276253608813 ], [ 5.818083579297108, 5.754084611538524, 5.69060176448767, 5.627635038144547, 5.565184432509153, 5.503249947581491, 5.441831583361559, 5.380929339849358, 5.320543217044886, 5.260673214948146, 5.201319333559136, 5.142481572877857, 5.084159932904308, 5.02635441363849, 4.969065015080402, 4.912291737230046, 4.856034580087417, 4.800293543652522, 4.745068627925356, 4.690359832905921, 4.636167158594216, 4.582490604990243, 4.529330172093999, 4.476685859905485, 4.424557668424703, 4.372945597651651, 4.32184964758633, 4.271269818228738, 4.221206109578878, 4.171658521636748, 4.122627054402349, 4.07411170787568, 4.026112482056741, 3.978629376945533, 3.931662392542056, 3.885211528846309, 3.839276785858292, 3.7938581635780073, 3.748955662005452, 3.7045692811406274, 3.6606990209835324, 3.6173448815341693, 3.5745068627925356, 3.532184964758633, 3.4903791874324614, 3.4490895308140193, 3.408315994903308, 3.3680585797003273, 3.3283172852050775, 3.289092111417558, 3.2503830583377695, 3.2121901259657104, 3.1745133143013824, 3.1373526233447855, 3.100708053095918, 3.0645796035547814, 3.028967274721376, 2.9938710665957005, 2.959290979177755, 2.9252270124675412, 2.891679166465057, 2.8586474411703042, 2.826131836583281, 2.794132352703989, 2.762648989532427, 2.731681747068596, 2.7012306253124954, 2.671295624264125, 2.6418767439234854, 2.6129739842905764, 2.5845873453653976, 2.5567168271479495, 2.5293624296382315, 2.5025241528362447, 2.476201996741988, 2.4503959613554622, 2.4251060466766665, 2.400332252705602, 2.3760745794422675, 2.3523330268866633, 2.32910759503879, 2.306398283898647, 2.284205093466235, 2.262528023741553, 2.2413670747246015, 2.220722246415381, 2.2005935388138904, 2.1809809519201306, 2.1618844857341015, 2.1433041402558026, 2.1252399154852344, 2.1076918114223964, 2.0906598280672894, 2.0741439654199127, 2.0581442234802667, 2.042660602248351, 2.027693101724166, 2.0132417219077112, 1.9993064627989874, 1.9858873243979938, 1.9729843067047308, 1.9605974097191985, 1.9487266334413964, 1.937371977871325, 1.9265334430089838, 1.9162110288543737, 1.9064047354074938, 1.897114562668344, 1.8883405106369255, 1.8800825793132372, 1.872340768697279, 1.865115078789052, 1.8584055095885552, 1.852212061095789, 1.8465347333107531, 1.8413735262334479, 1.8367284398638732, 1.8325994742020293, 1.8289866292479156, 1.8258899050015325, 1.8233093014628796, 1.8212448186319579, 1.8196964565087659, 1.818664215093305, 1.8181480943855743, 1.8181480943855743, 1.818664215093305, 1.8196964565087659, 1.8212448186319574, 1.8233093014628796, 1.8258899050015325, 1.8289866292479156, 1.8325994742020288, 1.8367284398638732, 1.8413735262334479, 1.8465347333107531, 1.8522120610957886, 1.8584055095885552, 1.8651150787890516, 1.872340768697279, 1.8800825793132367, 1.888340510636925, 1.897114562668344, 1.9064047354074933, 1.9162110288543732, 1.9265334430089838, 1.9373719778713245, 1.948726633441396, 1.960597409719198, 1.9729843067047304, 1.9858873243979933, 1.9993064627989874, 2.013241721907711, 2.0276931017241657, 2.0426606022483504, 2.0581442234802663, 2.0741439654199123, 2.090659828067289, 2.107691811422396, 2.125239915485234, 2.143304140255802, 2.1618844857341006, 2.18098095192013, 2.20059353881389, 2.2207222464153804, 2.241367074724601, 2.2625280237415524, 2.284205093466234, 2.3063982838986465, 2.3291075950387894, 2.352333026886663, 2.376074579442267, 2.400332252705601, 2.4251060466766665, 2.4503959613554613, 2.476201996741988, 2.5025241528362443, 2.5293624296382315, 2.5567168271479486, 2.584587345365397, 2.6129739842905755, 2.6418767439234845, 2.6712956242641246, 2.7012306253124945, 2.7316817470685955, 2.762648989532426, 2.7941323527039885, 2.82613183658328, 2.8586474411703033, 2.891679166465056, 2.9252270124675404, 2.959290979177754, 2.9938710665956996, 3.028967274721375, 3.0645796035547805, 3.100708053095918, 3.1373526233447837, 3.1745133143013824, 3.2121901259657095, 3.2503830583377677, 3.289092111417556, 3.3283172852050766, 3.3680585797003264, 3.4083159949033073, 3.4490895308140193, 3.4903791874324597, 3.532184964758633, 3.5745068627925347, 3.6173448815341684, 3.6606990209835315, 3.7045692811406266, 3.74895566200545, 3.7938581635780064, 3.8392767858582912, 3.885211528846308, 3.931662392542055, 3.9786293769455323, 4.026112482056741, 4.074111707875678, 4.122627054402347, 4.171658521636747, 4.221206109578877, 4.2712698182287365, 4.321849647586328, 4.372945597651649, 4.424557668424702, 4.476685859905485, 4.529330172093998, 4.582490604990241, 4.6361671585942155, 4.69035983290592, 4.745068627925354, 4.80029354365252, 4.856034580087416, 4.912291737230044, 4.969065015080401, 5.026354413638488, 5.084159932904307, 5.1424815728778555, 5.201319333559136, 5.260673214948144, 5.320543217044886, 5.380929339849356, 5.441831583361557, 5.503249947581489, 5.565184432509152, 5.627635038144545, 5.690601764487668, 5.754084611538523, 5.818083579297108 ], [ 5.764407025693134, 5.700408057934549, 5.636925210883696, 5.573958484540572, 5.51150787890518, 5.449573393977516, 5.388155029757584, 5.327252786245383, 5.266866663440912, 5.2069966613441725, 5.147642779955162, 5.088805019273883, 5.030483379300334, 4.972677860034516, 4.915388461476429, 4.858615183626071, 4.802358026483444, 4.746616990048548, 4.6913920743213815, 4.636683279301947, 4.582490604990243, 4.528814051386268, 4.475653618490025, 4.423009306301512, 4.37088111482073, 4.319269044047678, 4.268173093982355, 4.217593264624764, 4.167529555974904, 4.117981968032774, 4.068950500798374, 4.020435154271706, 3.972435928452767, 3.9249528233415596, 3.8779858389380824, 3.8315349752423353, 3.7856002322543185, 3.7401816099740337, 3.6952791084014773, 3.650892727536654, 3.607022467379559, 3.563668327930195, 3.520830309188562, 3.4785084111546594, 3.436702633828487, 3.3954129772100456, 3.3546394412993346, 3.3143820260963537, 3.274640731601104, 3.2354155578135835, 3.196706504733795, 3.158513572361736, 3.120836760697408, 3.083676069740811, 3.0470314994919443, 3.010903049950808, 2.9752907211174016, 2.9401945129917264, 2.905614425573781, 2.871550458863567, 2.838002612861083, 2.80497088756633, 2.772455282979307, 2.740455799100015, 2.708972435928453, 2.678005193464622, 2.6475540717085213, 2.617619070660151, 2.5882001903195113, 2.5592974306866023, 2.530910791761423, 2.5030402735439754, 2.475685876034258, 2.4488475992322707, 2.422525443138014, 2.396719407751488, 2.371429493072693, 2.346655699101628, 2.3223980258382935, 2.2986564732826893, 2.275431041434816, 2.252721730294673, 2.2305285398622603, 2.2088514701375788, 2.1876905211206275, 2.1670456928114064, 2.1469169852099164, 2.1273043983161566, 2.1082079321301275, 2.0896275866518286, 2.0715633618812603, 2.0540152578184223, 2.0369832744633154, 2.0204674118159387, 2.0044676698762927, 1.9889840486443768, 1.9740165481201917, 1.9595651683037372, 1.9456299091950133, 1.9322107707940197, 1.9193077531007567, 1.9069208561152244, 1.8950500798374224, 1.883695424267351, 1.8728568894050097, 1.8625344752503996, 1.8527281818035197, 1.84343800906437, 1.8346639570329515, 1.8264060257092631, 1.818664215093305, 1.811438525185078, 1.8047289559845812, 1.798535507491815, 1.792858179706779, 1.7876969726294738, 1.7830518862598992, 1.7789229205980552, 1.7753100756439415, 1.7722133513975584, 1.7696327478589056, 1.7675682650279838, 1.7660199029047918, 1.764987661489331, 1.7644715407816003, 1.7644715407816003, 1.764987661489331, 1.7660199029047918, 1.7675682650279834, 1.7696327478589056, 1.7722133513975584, 1.7753100756439415, 1.7789229205980548, 1.7830518862598992, 1.7876969726294738, 1.792858179706779, 1.7985355074918146, 1.8047289559845812, 1.8114385251850775, 1.818664215093305, 1.8264060257092627, 1.834663957032951, 1.84343800906437, 1.8527281818035193, 1.8625344752503992, 1.8728568894050097, 1.8836954242673505, 1.895050079837422, 1.906920856115224, 1.9193077531007563, 1.9322107707940193, 1.9456299091950129, 1.9595651683037367, 1.9740165481201917, 1.9889840486443764, 2.004467669876292, 2.0204674118159383, 2.036983274463315, 2.054015257818422, 2.07156336188126, 2.089627586651828, 2.1082079321301266, 2.127304398316156, 2.146916985209916, 2.1670456928114064, 2.1876905211206266, 2.2088514701375783, 2.23052853986226, 2.2527217302946725, 2.275431041434815, 2.298656473282689, 2.322398025838293, 2.346655699101627, 2.3714294930726925, 2.3967194077514877, 2.4225254431380137, 2.44884759923227, 2.4756858760342575, 2.5030402735439745, 2.530910791761423, 2.559297430686601, 2.588200190319511, 2.6176190706601505, 2.6475540717085204, 2.6780051934646214, 2.708972435928452, 2.7404557991000145, 2.772455282979306, 2.8049708875663293, 2.8380026128610822, 2.8715504588635663, 2.90561442557378, 2.9401945129917255, 2.9752907211174016, 3.010903049950807, 3.0470314994919434, 3.08367606974081, 3.120836760697408, 3.158513572361735, 3.196706504733794, 3.2354155578135826, 3.274640731601103, 3.314382026096352, 3.3546394412993337, 3.3954129772100448, 3.436702633828486, 3.4785084111546585, 3.520830309188561, 3.563668327930195, 3.607022467379557, 3.650892727536652, 3.6952791084014764, 3.740181609974032, 3.7856002322543176, 3.8315349752423344, 3.8779858389380815, 3.924952823341558, 3.972435928452766, 4.020435154271704, 4.0689505007983735, 4.1179819680327725, 4.1675295559749035, 4.217593264624762, 4.268173093982354, 4.319269044047675, 4.370881114820728, 4.423009306301511, 4.475653618490023, 4.528814051386267, 4.582490604990241, 4.636683279301947, 4.69139207432138, 4.746616990048547, 4.802358026483442, 4.858615183626069, 4.915388461476427, 4.972677860034514, 5.030483379300334, 5.088805019273881, 5.147642779955161, 5.206996661344171, 5.266866663440911, 5.327252786245381, 5.388155029757583, 5.449573393977515, 5.511507878905178, 5.573958484540571, 5.636925210883694, 5.700408057934549, 5.764407025693134 ], [ 5.711246592796891, 5.647247625038306, 5.583764777987453, 5.520798051644329, 5.458347446008936, 5.396412961081273, 5.334994596861341, 5.27409235334914, 5.213706230544669, 5.153836228447929, 5.094482347058919, 5.035644586377639, 4.97732294640409, 4.919517427138272, 4.862228028580185, 4.805454750729828, 4.7491975935872, 4.693456557152305, 4.638231641425138, 4.583522846405703, 4.529330172093999, 4.475653618490025, 4.4224931855937815, 4.369848873405268, 4.317720681924486, 4.266108611151434, 4.215012661086112, 4.16443283172852, 4.114369123078661, 4.064821535136531, 4.015790067902131, 3.967274721375462, 3.9192754955565237, 3.871792390445316, 3.824825406041839, 3.778374542346092, 3.732439799358075, 3.6870211770777903, 3.642118675505234, 3.5977322946404104, 3.5538620344833154, 3.5105078950339514, 3.4676698762923186, 3.425347978258416, 3.3835422009322436, 3.3422525443138023, 3.301479008403091, 3.2612215932001103, 3.2214802987048605, 3.18225512491734, 3.1435460718375516, 3.1053531394654925, 3.0676763278011645, 3.0305156368445676, 2.993871066595701, 2.9577426170545644, 2.922130288221158, 2.887034080095483, 2.8524539926775376, 2.818390025967324, 2.7848421799648397, 2.751810454670087, 2.7192948500830636, 2.6872953662037715, 2.6558120030322097, 2.6248447605683785, 2.594393638812278, 2.5644586377639076, 2.535039757423268, 2.506136997790359, 2.4777503588651797, 2.449879840647732, 2.4225254431380145, 2.3956871663360273, 2.3693650102417707, 2.343558974855245, 2.3182690601764495, 2.2934952662053845, 2.26923759294205, 2.245496040386446, 2.2222706085385724, 2.1995612973984295, 2.177368106966017, 2.1556910372413354, 2.134530088224384, 2.113885259915163, 2.093756552313673, 2.074143965419913, 2.055047499233884, 2.036467153755585, 2.018402928985017, 2.000854824922179, 1.983822841567072, 1.9673069789196953, 1.9513072369800493, 1.9358236157481334, 1.9208561152239483, 1.9064047354074938, 1.89246947629877, 1.8790503378977763, 1.8661473202045133, 1.853760423218981, 1.841889646941179, 1.8305349913711075, 1.8196964565087663, 1.8093740423541562, 1.7995677489072763, 1.7902775761681267, 1.781503524136708, 1.7732455928130197, 1.7655037821970616, 1.7582780922888346, 1.7515685230883378, 1.7453750745955716, 1.7396977468105357, 1.7345365397332304, 1.7298914533636558, 1.7257624877018118, 1.722149642747698, 1.719052918501315, 1.7164723149626622, 1.7144078321317404, 1.7128594700085484, 1.7118272285930876, 1.711311107885357, 1.711311107885357, 1.7118272285930876, 1.7128594700085484, 1.71440783213174, 1.7164723149626622, 1.719052918501315, 1.722149642747698, 1.7257624877018114, 1.7298914533636558, 1.7345365397332304, 1.7396977468105357, 1.7453750745955712, 1.7515685230883378, 1.7582780922888341, 1.7655037821970616, 1.7732455928130193, 1.7815035241367077, 1.7902775761681267, 1.7995677489072759, 1.8093740423541558, 1.8196964565087663, 1.830534991371107, 1.8418896469411785, 1.8537604232189806, 1.866147320204513, 1.8790503378977759, 1.8924694762987695, 1.9064047354074933, 1.9208561152239483, 1.935823615748133, 1.9513072369800488, 1.9673069789196949, 1.9838228415670716, 2.0008548249221785, 2.0184029289850165, 2.0364671537555847, 2.055047499233883, 2.0741439654199127, 2.0937565523136725, 2.113885259915163, 2.134530088224383, 2.155691037241335, 2.1773681069660165, 2.199561297398429, 2.2222706085385715, 2.2454960403864455, 2.2692375929420496, 2.2934952662053836, 2.318269060176449, 2.3435589748552443, 2.3693650102417703, 2.3956871663360264, 2.422525443138014, 2.449879840647731, 2.4777503588651797, 2.5061369977903576, 2.5350397574232675, 2.564458637763907, 2.594393638812277, 2.624844760568378, 2.6558120030322088, 2.687295366203771, 2.7192948500830627, 2.751810454670086, 2.784842179964839, 2.818390025967323, 2.8524539926775367, 2.887034080095482, 2.922130288221158, 2.9577426170545635, 2.9938710665957, 3.0305156368445667, 3.0676763278011645, 3.1053531394654916, 3.1435460718375507, 3.182255124917339, 3.2214802987048596, 3.2612215932001085, 3.3014790084030903, 3.3422525443138014, 3.3835422009322427, 3.425347978258415, 3.4676698762923177, 3.5105078950339514, 3.5538620344833136, 3.5977322946404087, 3.642118675505233, 3.6870211770777885, 3.7324397993580742, 3.778374542346091, 3.824825406041838, 3.8717923904453144, 3.9192754955565228, 3.9672747213754604, 4.01579006790213, 4.064821535136529, 4.11436912307866, 4.164432831728519, 4.215012661086111, 4.266108611151432, 4.317720681924484, 4.369848873405267, 4.42249318559378, 4.475653618490024, 4.529330172093998, 4.583522846405703, 4.638231641425136, 4.693456557152303, 4.749197593587199, 4.805454750729826, 4.8622280285801835, 4.9195174271382704, 4.97732294640409, 5.035644586377638, 5.094482347058918, 5.153836228447927, 5.213706230544668, 5.274092353349138, 5.33499459686134, 5.396412961081271, 5.4583474460089345, 5.520798051644328, 5.583764777987451, 5.647247625038306, 5.711246592796891 ], [ 5.6586022806083776, 5.594603312849793, 5.531120465798939, 5.468153739455816, 5.405703133820422, 5.34376864889276, 5.282350284672828, 5.2214480411606266, 5.161061918356156, 5.101191916259415, 5.0418380348704055, 4.983000274189126, 4.924678634215578, 4.86687311494976, 4.809583716391671, 4.752810438541315, 4.696553281398687, 4.640812244963792, 4.585587329236626, 4.530878534217191, 4.476685859905485, 4.423009306301512, 4.369848873405268, 4.317204561216755, 4.265076369735972, 4.21346429896292, 4.1623683488975995, 4.111788519540008, 4.061724810890148, 4.012177222948017, 3.963145755713618, 3.914630409186949, 3.8666311833680105, 3.819148078256802, 3.772181093853325, 3.7257302301575788, 3.679795487169562, 3.6343768648892762, 3.5894743633167208, 3.5450879824518964, 3.501217722294802, 3.4578635828454383, 3.4150255641038054, 3.372703666069903, 3.3308978887437304, 3.289608232125289, 3.248834696214578, 3.2085772810115962, 3.1688359865163473, 3.129610812728827, 3.0909017596490385, 3.0527088272769802, 3.015032015612652, 2.9778713246560544, 2.9412267544071877, 2.9050983048660513, 2.869485976032645, 2.83438976790697, 2.7998096804890245, 2.7657457137788106, 2.7321978677763266, 2.6991661424815736, 2.6666505378945504, 2.6346510540152583, 2.6031676908436965, 2.5722004483798653, 2.5417493266237647, 2.5118143255753944, 2.4823954452347547, 2.4534926856018457, 2.4251060466766665, 2.397235528459219, 2.3698811309495014, 2.343042854147514, 2.3167206980532575, 2.2909146626667316, 2.2656247479879363, 2.2408509540168713, 2.216593280753537, 2.1928517281979327, 2.169626296350059, 2.1469169852099164, 2.1247237947775037, 2.103046725052822, 2.081885776035871, 2.06124094772665, 2.04111224012516, 2.0214996532314, 2.002403187045371, 1.983822841567072, 1.9657586167965038, 1.9482105127336657, 1.9311785293785588, 1.9146626667311821, 1.898662924791536, 1.8831793035596203, 1.868211803035435, 1.8537604232189806, 1.8398251641102568, 1.8264060257092631, 1.8135030080160002, 1.8011161110304679, 1.7892453347526658, 1.7778906791825944, 1.7670521443202531, 1.756729730165643, 1.7469234367187632, 1.7376332639796135, 1.728859211948195, 1.7206012806245066, 1.7128594700085484, 1.7056337801003214, 1.6989242108998246, 1.6927307624070584, 1.6870534346220225, 1.6818922275447172, 1.6772471411751426, 1.6731181755132987, 1.669505330559185, 1.6664086063128019, 1.663828002774149, 1.6617635199432272, 1.6602151578200353, 1.6591829164045744, 1.6586667956968437, 1.6586667956968437, 1.6591829164045744, 1.6602151578200353, 1.6617635199432268, 1.663828002774149, 1.6664086063128019, 1.669505330559185, 1.6731181755132982, 1.6772471411751426, 1.6818922275447172, 1.6870534346220225, 1.692730762407058, 1.6989242108998246, 1.705633780100321, 1.7128594700085484, 1.7206012806245061, 1.7288592119481945, 1.7376332639796135, 1.7469234367187627, 1.7567297301656426, 1.7670521443202531, 1.777890679182594, 1.7892453347526653, 1.8011161110304674, 1.8135030080159997, 1.8264060257092627, 1.8398251641102563, 1.8537604232189802, 1.868211803035435, 1.8831793035596198, 1.8986629247915356, 1.9146626667311817, 1.9311785293785584, 1.9482105127336653, 1.9657586167965033, 1.9838228415670716, 2.00240318704537, 2.0214996532313996, 2.0411122401251593, 2.06124094772665, 2.08188577603587, 2.1030467250528218, 2.1247237947775033, 2.146916985209916, 2.1696262963500583, 2.1928517281979323, 2.2165932807535365, 2.2408509540168704, 2.265624747987936, 2.290914662666731, 2.316720698053257, 2.3430428541475132, 2.369881130949501, 2.397235528459218, 2.4251060466766665, 2.4534926856018444, 2.4823954452347543, 2.511814325575394, 2.541749326623764, 2.572200448379865, 2.6031676908436956, 2.634651054015258, 2.6666505378945495, 2.6991661424815727, 2.7321978677763257, 2.7657457137788097, 2.7998096804890236, 2.834389767906969, 2.869485976032645, 2.9050983048660504, 2.941226754407187, 2.9778713246560535, 3.0150320156126513, 3.0527088272769785, 3.0909017596490376, 3.129610812728826, 3.1688359865163465, 3.2085772810115953, 3.248834696214576, 3.289608232125288, 3.3308978887437295, 3.372703666069902, 3.4150255641038036, 3.4578635828454374, 3.5012177222948004, 3.5450879824518955, 3.58947436331672, 3.6343768648892754, 3.67979548716956, 3.725730230157577, 3.772181093853325, 3.819148078256802, 3.8666311833680105, 3.914630409186948, 3.963145755713617, 4.012177222948016, 4.061724810890146, 4.111788519540006, 4.162368348897598, 4.2134642989629185, 4.265076369735971, 4.317204561216754, 4.3698488734052665, 4.423009306301511, 4.476685859905484, 4.530878534217189, 4.585587329236624, 4.64081224496379, 4.696553281398685, 4.752810438541313, 4.809583716391671, 4.866873114949758, 4.924678634215576, 4.983000274189125, 5.041838034870405, 5.101191916259413, 5.161061918356155, 5.221448041160625, 5.282350284672827, 5.343768648892758, 5.405703133820421, 5.468153739455815, 5.531120465798937, 5.594603312849792, 5.6586022806083776 ], [ 5.606474089127595, 5.54247512136901, 5.4789922743181565, 5.416025547975034, 5.35357494233964, 5.291640457411978, 5.230222093192046, 5.1693198496798445, 5.108933726875373, 5.049063724778633, 4.9897098433896225, 4.930872082708344, 4.872550442734795, 4.814744923468977, 4.757455524910889, 4.7006822470605325, 4.644425089917904, 4.588684053483009, 4.533459137755843, 4.478750342736408, 4.424557668424703, 4.37088111482073, 4.317720681924486, 4.265076369735972, 4.21294817825519, 4.161336107482138, 4.110240157416817, 4.059660328059225, 4.009596619409365, 3.9600490314672347, 3.9110175642328358, 3.862502217706167, 3.8145029918872275, 3.76701988677602, 3.720052902372543, 3.673602038676796, 3.627667295688779, 3.582248673408494, 3.5373461718359387, 3.4929597909711143, 3.4490895308140193, 3.405735391364656, 3.3628973726230225, 3.32057547458912, 3.2787696972629483, 3.237480040644506, 3.196706504733795, 3.156449089530814, 3.1167077950355644, 3.077482621248045, 3.0387735681682564, 3.0005806357961973, 2.9629038241318693, 2.925743133175272, 2.8890985629264048, 2.8529701133852683, 2.817357784551863, 2.7822615764261873, 2.747681489008242, 2.713617522298028, 2.680069676295544, 2.647037951000791, 2.614522346413768, 2.582522862534476, 2.551039499362914, 2.5200722568990828, 2.4896211351429822, 2.459686134094612, 2.4302672537539722, 2.4013644941210632, 2.3729778551958844, 2.3451073369784363, 2.3177529394687184, 2.2909146626667316, 2.264592506572475, 2.238786471185949, 2.2134965565071534, 2.1887227625360888, 2.1644650892727544, 2.14072353671715, 2.1174981048692767, 2.094788793729134, 2.0725956032967217, 2.0509185335720397, 2.0297575845550884, 2.0091127562458677, 1.9889840486443773, 1.9693714617506175, 1.9502749955645884, 1.9316946500862895, 1.9136304253157213, 1.8960823212528832, 1.8790503378977763, 1.8625344752503996, 1.8465347333107536, 1.8310511120788378, 1.816083611554653, 1.801632231738198, 1.7876969726294742, 1.7742778342284806, 1.7613748165352177, 1.7489879195496854, 1.7371171432718833, 1.7257624877018118, 1.7149239528394706, 1.7046015386848605, 1.6947952452379806, 1.685505072498831, 1.6767310204674124, 1.668473089143724, 1.660731278527766, 1.653505588619539, 1.646796019419042, 1.640602570926276, 1.63492524314124, 1.6297640360639347, 1.62511894969436, 1.6209899840325162, 1.6173771390784024, 1.6142804148320193, 1.6116998112933665, 1.6096353284624447, 1.6080869663392527, 1.6070547249237919, 1.6065386042160612, 1.6065386042160612, 1.6070547249237919, 1.6080869663392527, 1.6096353284624443, 1.6116998112933665, 1.6142804148320193, 1.6173771390784024, 1.6209899840325157, 1.62511894969436, 1.6297640360639347, 1.63492524314124, 1.6406025709262755, 1.646796019419042, 1.6535055886195384, 1.660731278527766, 1.6684730891437236, 1.676731020467412, 1.685505072498831, 1.6947952452379802, 1.70460153868486, 1.7149239528394706, 1.7257624877018114, 1.7371171432718828, 1.748987919549685, 1.7613748165352172, 1.7742778342284802, 1.7876969726294742, 1.8016322317381976, 1.8160836115546526, 1.8310511120788373, 1.8465347333107531, 1.8625344752503992, 1.8790503378977759, 1.8960823212528828, 1.9136304253157208, 1.931694650086289, 1.9502749955645875, 1.969371461750617, 1.9889840486443768, 2.0091127562458673, 2.029757584555088, 2.0509185335720392, 2.0725956032967208, 2.0947887937291334, 2.1174981048692763, 2.1407235367171498, 2.164465089272754, 2.188722762536088, 2.2134965565071534, 2.238786471185948, 2.264592506572475, 2.290914662666731, 2.3177529394687184, 2.3451073369784354, 2.372977855195884, 2.4013644941210623, 2.4302672537539713, 2.4596861340946115, 2.4896211351429813, 2.5200722568990823, 2.551039499362913, 2.5825228625344754, 2.614522346413767, 2.64703795100079, 2.6800696762955427, 2.713617522298027, 2.747681489008241, 2.7822615764261864, 2.817357784551862, 2.8529701133852674, 2.8890985629264048, 2.9257431331752706, 2.962903824131869, 3.0005806357961964, 3.0387735681682546, 3.077482621248043, 3.1167077950355635, 3.1564490895308133, 3.196706504733794, 3.237480040644506, 3.2787696972629465, 3.32057547458912, 3.3628973726230216, 3.4057353913646553, 3.4490895308140184, 3.4929597909711134, 3.537346171835937, 3.5822486734084933, 3.627667295688778, 3.673602038676795, 3.720052902372542, 3.767019886776019, 3.8145029918872275, 3.862502217706165, 3.911017564232834, 3.960049031467234, 4.009596619409364, 4.059660328059223, 4.110240157416815, 4.161336107482136, 4.212948178255189, 4.265076369735972, 4.317720681924484, 4.370881114820728, 4.424557668424702, 4.478750342736407, 4.533459137755841, 4.588684053483007, 4.6444250899179025, 4.700682247060531, 4.757455524910888, 4.814744923468975, 4.872550442734794, 4.930872082708342, 4.9897098433896225, 5.049063724778631, 5.108933726875373, 5.169319849679843, 5.230222093192044, 5.291640457411976, 5.353574942339639, 5.416025547975032, 5.478992274318155, 5.5424751213690095, 5.606474089127595 ], [ 5.554862018354543, 5.490863050595959, 5.427380203545105, 5.364413477201982, 5.301962871566588, 5.240028386638926, 5.178610022418994, 5.117707778906793, 5.057321656102321, 4.997451654005581, 4.938097772616571, 4.879260011935292, 4.820938371961743, 4.763132852695925, 4.705843454137837, 4.649070176287481, 4.592813019144852, 4.537071982709957, 4.481847066982791, 4.427138271963356, 4.372945597651651, 4.319269044047678, 4.266108611151434, 4.21346429896292, 4.161336107482138, 4.109724036709086, 4.058628086643765, 4.008048257286173, 3.957984548636313, 3.908436960694183, 3.859405493459784, 3.810890146933115, 3.7628909211141757, 3.715407816002968, 3.668440831599491, 3.621989967903744, 3.576055224915727, 3.5306366026354423, 3.485734101062887, 3.4413477201980625, 3.3974774600409674, 3.3541233205916043, 3.3112853018499706, 3.268963403816068, 3.2271576264898965, 3.1858679698714543, 3.145094433960743, 3.1048370187577623, 3.0650957242625125, 3.025870550474993, 2.9871614973952045, 2.9489685650231454, 2.9112917533588174, 2.87413106240222, 2.837486492153353, 2.8013580426122164, 2.765745713778811, 2.7306495056531355, 2.69606941823519, 2.6620054515249763, 2.628457605522492, 2.5954258802277392, 2.562910275640716, 2.530910791761424, 2.499427428589862, 2.468460186126031, 2.4380090643699304, 2.40807406332156, 2.3786551829809204, 2.3497524233480114, 2.3213657844228326, 2.2934952662053845, 2.2661408686956666, 2.2393025918936798, 2.212980435799423, 2.1871744004128972, 2.1618844857341015, 2.137110691763037, 2.1128530184997025, 2.0891114659440984, 2.065886034096225, 2.043176722956082, 2.02098353252367, 1.9993064627989878, 1.9781455137820365, 1.9575006854728159, 1.9373719778713254, 1.9177593909775656, 1.8986629247915365, 1.8800825793132376, 1.8620183545426694, 1.8444702504798314, 1.8274382671247245, 1.8109224044773478, 1.7949226625377017, 1.779439041305786, 1.7644715407816012, 1.7500201609651462, 1.7360849018564224, 1.7226657634554288, 1.7097627457621658, 1.6973758487766335, 1.6855050724988314, 1.67415041692876, 1.6633118820664188, 1.6529894679118087, 1.6431831744649288, 1.6338930017257791, 1.6251189496943605, 1.6168610183706722, 1.609119207754714, 1.601893517846487, 1.5951839486459902, 1.588990500153224, 1.5833131723681881, 1.5781519652908829, 1.5735068789213082, 1.5693779132594643, 1.5657650683053506, 1.5626683440589675, 1.5600877405203146, 1.5580232576893929, 1.5564748955662009, 1.55544265415074, 1.5549265334430094, 1.5549265334430094, 1.55544265415074, 1.5564748955662009, 1.5580232576893924, 1.5600877405203146, 1.5626683440589675, 1.5657650683053506, 1.5693779132594639, 1.5735068789213082, 1.5781519652908829, 1.5833131723681881, 1.5889905001532236, 1.5951839486459902, 1.6018935178464866, 1.609119207754714, 1.6168610183706718, 1.62511894969436, 1.6338930017257791, 1.6431831744649283, 1.6529894679118082, 1.6633118820664188, 1.6741504169287595, 1.685505072498831, 1.697375848776633, 1.7097627457621654, 1.7226657634554283, 1.7360849018564224, 1.7500201609651458, 1.7644715407816007, 1.7794390413057855, 1.7949226625377013, 1.8109224044773473, 1.827438267124724, 1.844470250479831, 1.862018354542669, 1.8800825793132372, 1.8986629247915356, 1.9177593909775652, 1.937371977871325, 1.9575006854728154, 1.978145513782036, 1.9993064627989874, 2.020983532523669, 2.0431767229560815, 2.0658860340962244, 2.089111465944098, 2.112853018499702, 2.137110691763036, 2.1618844857341015, 2.1871744004128963, 2.212980435799423, 2.2393025918936793, 2.2661408686956666, 2.2934952662053836, 2.321365784422832, 2.3497524233480105, 2.3786551829809195, 2.4080740633215596, 2.4380090643699295, 2.4684601861260305, 2.499427428589861, 2.5309107917614235, 2.562910275640715, 2.5954258802277383, 2.628457605522491, 2.6620054515249754, 2.696069418235189, 2.7306495056531346, 2.76574571377881, 2.8013580426122155, 2.837486492153353, 2.8741310624022187, 2.911291753358817, 2.9489685650231445, 2.987161497395203, 3.025870550474991, 3.0650957242625116, 3.1048370187577614, 3.1450944339607423, 3.1858679698714543, 3.2271576264898947, 3.268963403816068, 3.3112853018499697, 3.3541233205916035, 3.3974774600409665, 3.4413477201980616, 3.485734101062885, 3.5306366026354414, 3.5760552249157262, 3.621989967903743, 3.66844083159949, 3.7154078160029673, 3.7628909211141757, 3.8108901469331133, 3.859405493459782, 3.908436960694182, 3.957984548636312, 4.0080482572861715, 4.058628086643763, 4.109724036709084, 4.161336107482137, 4.21346429896292, 4.266108611151433, 4.319269044047676, 4.3729455976516505, 4.427138271963355, 4.481847066982789, 4.537071982709955, 4.592813019144851, 4.649070176287479, 4.7058434541378364, 4.763132852695923, 4.820938371961742, 4.8792600119352905, 4.938097772616571, 4.997451654005579, 5.057321656102321, 5.117707778906791, 5.178610022418992, 5.240028386638924, 5.301962871566587, 5.36441347720198, 5.427380203545103, 5.490863050595958, 5.554862018354543 ], [ 5.503766068289222, 5.439767100530637, 5.376284253479783, 5.313317527136659, 5.250866921501267, 5.188932436573603, 5.127514072353671, 5.06661182884147, 5.006225706037, 4.9463557039402595, 4.88700182255125, 4.82816406186997, 4.7698424218964215, 4.7120369026306035, 4.654747504072516, 4.597974226222158, 4.541717069079532, 4.485976032644636, 4.430751116917469, 4.376042321898034, 4.32184964758633, 4.268173093982355, 4.215012661086112, 4.1623683488975995, 4.110240157416817, 4.058628086643765, 4.007532136578443, 3.9569523072208517, 3.9068885985709922, 3.8573410106288613, 3.8083095433944614, 3.7597941968677926, 3.711794971048855, 3.6643118659376466, 3.6173448815341693, 3.570894017838423, 3.5249592748504064, 3.4795406525701207, 3.4346381509975643, 3.390251770132741, 3.3463815099756458, 3.303027370526282, 3.260189351784649, 3.2178674537507463, 3.176061676424574, 3.1347720198061326, 3.0939984838954215, 3.0537410686924407, 3.013999774197191, 2.9747746004096713, 2.936065547329883, 2.897872614957824, 2.8601958032934958, 2.8230351123368984, 2.7863905420880313, 2.750262092546895, 2.7146497637134894, 2.679553555587814, 2.6449734681698684, 2.6109095014596546, 2.5773616554571706, 2.5443299301624176, 2.5118143255753944, 2.4798148416961023, 2.4483314785245405, 2.4173642360607093, 2.3869131143046087, 2.3569781132562384, 2.3275592329155987, 2.2986564732826897, 2.270269834357511, 2.242399316140063, 2.215044918630345, 2.188206641828358, 2.1618844857341015, 2.1360784503475756, 2.11078853566878, 2.0860147416977153, 2.061757068434381, 2.0380155158787767, 2.014790084030903, 1.9920807728907604, 1.9698875824583482, 1.9482105127336662, 1.9270495637167149, 1.9064047354074942, 1.8862760278060038, 1.866663440912244, 1.847566974726215, 1.828986629247916, 1.8109224044773478, 1.7933743004145097, 1.7763423170594028, 1.7598264544120261, 1.74382671247238, 1.7283430912404643, 1.7133755907162795, 1.6989242108998246, 1.6849889517911008, 1.6715698133901071, 1.6586667956968442, 1.6462798987113119, 1.6344091224335098, 1.6230544668634383, 1.6122159320010971, 1.601893517846487, 1.5920872243996071, 1.5827970516604575, 1.574022999629039, 1.5657650683053506, 1.5580232576893924, 1.5507975677811654, 1.5440879985806686, 1.5378945500879024, 1.5322172223028665, 1.5270560152255612, 1.5224109288559866, 1.5182819631941427, 1.514669118240029, 1.5115723939936458, 1.508991790454993, 1.5069273076240712, 1.5053789455008793, 1.5043467040854184, 1.5038305833776877, 1.5038305833776877, 1.5043467040854184, 1.5053789455008793, 1.5069273076240708, 1.508991790454993, 1.5115723939936458, 1.514669118240029, 1.5182819631941422, 1.5224109288559866, 1.5270560152255612, 1.5322172223028665, 1.537894550087902, 1.5440879985806686, 1.550797567781165, 1.5580232576893924, 1.5657650683053501, 1.5740229996290385, 1.5827970516604575, 1.5920872243996067, 1.6018935178464866, 1.6122159320010971, 1.623054466863438, 1.6344091224335093, 1.6462798987113114, 1.6586667956968437, 1.6715698133901067, 1.6849889517911008, 1.6989242108998241, 1.713375590716279, 1.7283430912404638, 1.7438267124723796, 1.7598264544120257, 1.7763423170594024, 1.7933743004145093, 1.8109224044773473, 1.8289866292479156, 1.847566974726214, 1.8666634409122436, 1.8862760278060033, 1.9064047354074938, 1.9270495637167144, 1.9482105127336657, 1.9698875824583473, 1.99208077289076, 2.0147900840309028, 2.0380155158787763, 2.0617570684343804, 2.0860147416977144, 2.11078853566878, 2.1360784503475747, 2.1618844857341015, 2.1882066418283577, 2.215044918630345, 2.242399316140062, 2.2702698343575105, 2.298656473282689, 2.327559232915598, 2.356978113256238, 2.386913114304608, 2.417364236060709, 2.4483314785245396, 2.479814841696102, 2.5118143255753935, 2.5443299301624167, 2.577361655457169, 2.6109095014596537, 2.6449734681698676, 2.679553555587813, 2.7146497637134885, 2.750262092546894, 2.7863905420880313, 2.823035112336897, 2.8601958032934953, 2.897872614957823, 2.9360655473298816, 2.97477460040967, 3.01399977419719, 3.0537410686924398, 3.0939984838954206, 3.1347720198061317, 3.176061676424573, 3.2178674537507455, 3.260189351784648, 3.303027370526282, 3.346381509975645, 3.390251770132739, 3.4346381509975634, 3.479540652570119, 3.5249592748504046, 3.5708940178384214, 3.6173448815341693, 3.6643118659376457, 3.711794971048854, 3.7597941968677917, 3.8083095433944614, 3.8573410106288595, 3.9068885985709905, 3.95695230722085, 4.007532136578442, 4.058628086643763, 4.110240157416815, 4.162368348897598, 4.21501266108611, 4.268173093982355, 4.321849647586328, 4.3760423218980335, 4.430751116917468, 4.4859760326446345, 4.54171706907953, 4.597974226222156, 4.654747504072515, 4.712036902630602, 4.769842421896421, 4.828164061869969, 4.887001822551248, 4.946355703940258, 5.006225706036998, 5.066611828841468, 5.127514072353671, 5.188932436573602, 5.250866921501265, 5.313317527136659, 5.376284253479781, 5.439767100530636, 5.503766068289222 ], [ 5.453186238931631, 5.3891872711730455, 5.325704424122192, 5.262737697779068, 5.200287092143675, 5.138352607216012, 5.07693424299608, 5.016031999483879, 4.955645876679409, 4.895775874582668, 4.8364219931936585, 4.777584232512378, 4.71926259253883, 4.661457073273012, 4.604167674714924, 4.547394396864567, 4.49113723972194, 4.435396203287045, 4.380171287559878, 4.325462492540443, 4.271269818228738, 4.217593264624764, 4.16443283172852, 4.111788519540008, 4.059660328059225, 4.008048257286173, 3.9569523072208517, 3.9063724778632603, 3.856308769213401, 3.80676118127127, 3.75772971403687, 3.709214367510201, 3.6612151416912635, 3.613732036580055, 3.566765052176578, 3.5203141884808318, 3.474379445492815, 3.4289608232125293, 3.384058321639973, 3.3396719407751494, 3.2958016806180543, 3.2524475411686904, 3.2096095224270575, 3.167287624393155, 3.1254818470669825, 3.084192190448541, 3.04341865453783, 3.0031612393348492, 2.9634199448395995, 2.92419477105208, 2.8854857179722915, 2.8472927856002324, 2.8096159739359043, 2.772455282979307, 2.73581071273044, 2.6996822631893034, 2.664069934355898, 2.6289737262302224, 2.594393638812277, 2.560329672102063, 2.526781826099579, 2.493750100804826, 2.461234496217803, 2.429235012338511, 2.397751649166949, 2.366784406703118, 2.3363332849470173, 2.306398283898647, 2.2769794035580073, 2.2480766439250983, 2.2196900049999195, 2.1918194867824714, 2.1644650892727535, 2.1376268124707667, 2.11130465637651, 2.085498620989984, 2.0602087063111885, 2.035434912340124, 2.0111772390767895, 1.9874356865211853, 1.9642102546733118, 1.941500943533169, 1.9193077531007567, 1.8976306833760748, 1.8764697343591235, 1.8558249060499028, 1.8356961984484124, 1.8160836115546526, 1.7969871453686235, 1.7784067998903246, 1.7603425751197563, 1.7427944710569183, 1.7257624877018114, 1.7092466250544347, 1.6932468831147887, 1.6777632618828728, 1.6627957613586881, 1.6483443815422332, 1.6344091224335093, 1.6209899840325157, 1.6080869663392527, 1.5957000693537204, 1.5838292930759184, 1.572474637505847, 1.5616361026435057, 1.5513136884888956, 1.5415073950420157, 1.532217222302866, 1.5234431702714475, 1.5151852389477591, 1.507443428331801, 1.500217738423574, 1.4935081692230772, 1.487314720730311, 1.481637392945275, 1.4764761858679698, 1.4718310994983952, 1.4677021338365512, 1.4640892888824375, 1.4609925646360544, 1.4584119610974016, 1.4563474782664798, 1.4547991161432878, 1.453766874727827, 1.4532507540200963, 1.4532507540200963, 1.453766874727827, 1.4547991161432878, 1.4563474782664794, 1.4584119610974016, 1.4609925646360544, 1.4640892888824375, 1.4677021338365508, 1.4718310994983952, 1.4764761858679698, 1.481637392945275, 1.4873147207303106, 1.4935081692230772, 1.5002177384235735, 1.507443428331801, 1.5151852389477587, 1.523443170271447, 1.532217222302866, 1.5415073950420153, 1.5513136884888952, 1.5616361026435057, 1.5724746375058465, 1.583829293075918, 1.59570006935372, 1.6080869663392523, 1.6209899840325153, 1.6344091224335093, 1.6483443815422327, 1.6627957613586877, 1.6777632618828724, 1.6932468831147882, 1.7092466250544343, 1.725762487701811, 1.7427944710569179, 1.760342575119756, 1.7784067998903241, 1.7969871453686226, 1.8160836115546521, 1.835696198448412, 1.8558249060499024, 1.876469734359123, 1.8976306833760743, 1.9193077531007559, 1.9415009435331685, 1.9642102546733113, 1.9874356865211849, 2.011177239076789, 2.035434912340123, 2.0602087063111885, 2.0854986209899833, 2.11130465637651, 2.1376268124707662, 2.1644650892727535, 2.1918194867824705, 2.219690004999919, 2.2480766439250974, 2.2769794035580064, 2.3063982838986465, 2.3363332849470164, 2.3667844067031174, 2.397751649166948, 2.4292350123385105, 2.461234496217802, 2.4937501008048253, 2.526781826099578, 2.5603296721020623, 2.594393638812276, 2.6289737262302215, 2.664069934355897, 2.6996822631893025, 2.73581071273044, 2.7724552829793057, 2.809615973935904, 2.8472927856002315, 2.88548571797229, 2.9241947710520786, 2.9634199448395986, 3.0031612393348484, 3.0434186545378292, 3.0841921904485403, 3.1254818470669816, 3.167287624393154, 3.2096095224270567, 3.2524475411686904, 3.2958016806180535, 3.3396719407751476, 3.384058321639972, 3.4289608232125275, 3.474379445492813, 3.52031418848083, 3.566765052176578, 3.6137320365800543, 3.6612151416912626, 3.7092143675102003, 3.75772971403687, 3.806761181271268, 3.856308769213399, 3.9063724778632585, 3.956952307220851, 4.0080482572861715, 4.059660328059223, 4.111788519540006, 4.164432831728519, 4.217593264624764, 4.2712698182287365, 4.325462492540442, 4.380171287559876, 4.435396203287043, 4.4911372397219385, 4.547394396864565, 4.604167674714923, 4.66145707327301, 4.719262592538829, 4.777584232512377, 4.836421993193657, 4.895775874582666, 4.955645876679407, 5.016031999483877, 5.07693424299608, 5.13835260721601, 5.2002870921436735, 5.262737697779068, 5.32570442412219, 5.389187271173045, 5.453186238931631 ], [ 5.40312253028177, 5.339123562523186, 5.275640715472331, 5.212673989129208, 5.150223383493815, 5.0882888985661525, 5.02687053434622, 4.965968290834019, 4.905582168029548, 4.845712165932808, 4.786358284543798, 4.727520523862519, 4.669198883888971, 4.611393364623153, 4.554103966065064, 4.497330688214707, 4.44107353107208, 4.3853324946371846, 4.3301075789100185, 4.275398783890584, 4.221206109578878, 4.167529555974904, 4.114369123078661, 4.061724810890148, 4.009596619409365, 3.957984548636313, 3.9068885985709922, 3.856308769213401, 3.8062450605635405, 3.7566974726214095, 3.7076660053870105, 3.6591506588603417, 3.611151433041403, 3.563668327930195, 3.5167013435267176, 3.4702504798309715, 3.4243157368429546, 3.378897114562669, 3.3339946129901135, 3.289608232125289, 3.245737971968195, 3.202383832518831, 3.159545813777198, 3.1172239157432955, 3.075418138417123, 3.0341284817986818, 2.9933549458879707, 2.9530975306849894, 2.91335623618974, 2.8741310624022196, 2.835422009322431, 2.7972290769503725, 2.7595522652860445, 2.722391574329447, 2.6857470040805804, 2.649618554539444, 2.6140062257060377, 2.5789100175803625, 2.544329930162417, 2.5102659634522033, 2.4767181174497193, 2.4436863921549663, 2.411170787567943, 2.379171303688651, 2.347687940517089, 2.316720698053258, 2.2862695762971574, 2.256334575248787, 2.2269156949081474, 2.1980129352752384, 2.169626296350059, 2.1417557781326115, 2.114401380622894, 2.087563103820907, 2.0612409477266502, 2.0354349123401243, 2.010144997661329, 1.985371203690264, 1.9611135304269296, 1.9373719778713254, 1.914146546023452, 1.891437234883309, 1.8692440444508964, 1.847566974726215, 1.8264060257092636, 1.8057611974000425, 1.7856324897985525, 1.7660199029047927, 1.7469234367187636, 1.7283430912404647, 1.7102788664698965, 1.6927307624070584, 1.6756987790519515, 1.6591829164045748, 1.6431831744649288, 1.627699553233013, 1.6127320527088278, 1.5982806728923733, 1.5843454137836495, 1.5709262753826558, 1.5580232576893929, 1.5456363607038606, 1.5337655844260585, 1.522410928855987, 1.5115723939936458, 1.5012499798390357, 1.4914436863921559, 1.4821535136530062, 1.4733794616215876, 1.4651215302978993, 1.4573797196819411, 1.450154029773714, 1.4434444605732173, 1.4372510120804511, 1.4315736842954152, 1.42641247721811, 1.4217673908485353, 1.4176384251866914, 1.4140255802325776, 1.4109288559861946, 1.4083482524475417, 1.40628376961662, 1.404735407493428, 1.403703166077967, 1.4031870453702364, 1.4031870453702364, 1.403703166077967, 1.404735407493428, 1.4062837696166195, 1.4083482524475417, 1.4109288559861946, 1.4140255802325776, 1.417638425186691, 1.4217673908485353, 1.42641247721811, 1.4315736842954152, 1.4372510120804507, 1.4434444605732173, 1.4501540297737137, 1.4573797196819411, 1.4651215302978988, 1.4733794616215872, 1.4821535136530062, 1.4914436863921554, 1.5012499798390353, 1.5115723939936458, 1.5224109288559866, 1.533765584426058, 1.5456363607038601, 1.5580232576893924, 1.5709262753826554, 1.584345413783649, 1.5982806728923729, 1.6127320527088278, 1.6276995532330125, 1.6431831744649283, 1.6591829164045744, 1.675698779051951, 1.692730762407058, 1.710278866469896, 1.7283430912404643, 1.7469234367187627, 1.7660199029047923, 1.785632489798552, 1.8057611974000425, 1.8264060257092627, 1.8475669747262145, 1.869244044450896, 1.8914372348833086, 1.914146546023451, 1.937371977871325, 1.9611135304269292, 1.985371203690263, 2.0101449976613286, 2.035434912340124, 2.06124094772665, 2.087563103820906, 2.1144013806228936, 2.1417557781326106, 2.169626296350059, 2.198012935275237, 2.226915694908147, 2.2563345752487867, 2.2862695762971565, 2.3167206980532575, 2.3476879405170883, 2.3791713036886506, 2.4111707875679422, 2.4436863921549654, 2.4767181174497184, 2.5102659634522024, 2.5443299301624163, 2.5789100175803616, 2.6140062257060377, 2.649618554539443, 2.6857470040805795, 2.7223915743294462, 2.759552265286044, 2.797229076950371, 2.8354220093224303, 2.8741310624022187, 2.913356236189739, 2.953097530684988, 2.9933549458879694, 3.034128481798681, 3.075418138417122, 3.1172239157432946, 3.1595458137771963, 3.20238383251883, 3.245737971968193, 3.289608232125288, 3.3339946129901126, 3.378897114562668, 3.424315736842953, 3.4702504798309697, 3.5167013435267176, 3.563668327930195, 3.611151433041403, 3.659150658860341, 3.7076660053870096, 3.7566974726214086, 3.8062450605635387, 3.856308769213399, 3.9068885985709905, 3.957984548636311, 4.009596619409364, 4.061724810890147, 4.114369123078659, 4.1675295559749035, 4.221206109578877, 4.275398783890582, 4.330107578910017, 4.385332494637183, 4.441073531072078, 4.4973306882147055, 4.554103966065064, 4.611393364623151, 4.669198883888969, 4.727520523862518, 4.786358284543797, 4.845712165932806, 4.9055821680295475, 4.9659682908340175, 5.026870534346219, 5.088288898566151, 5.150223383493814, 5.2126739891292075, 5.2756407154723295, 5.339123562523184, 5.40312253028177 ], [ 5.353574942339639, 5.289575974581055, 5.226093127530201, 5.163126401187078, 5.100675795551685, 5.038741310624022, 4.97732294640409, 4.916420702891889, 4.856034580087417, 4.796164577990678, 4.736810696601667, 4.677972935920389, 4.61965129594684, 4.561845776681022, 4.504556378122934, 4.447783100272577, 4.391525943129949, 4.335784906695054, 4.2805599909678875, 4.225851195948453, 4.171658521636748, 4.117981968032774, 4.064821535136531, 4.012177222948017, 3.9600490314672347, 3.908436960694183, 3.8573410106288613, 3.80676118127127, 3.7566974726214095, 3.7071498846792794, 3.6581184174448804, 3.6096030709182116, 3.561603845099272, 3.5141207399880647, 3.4671537555845875, 3.4207028918888405, 3.3747681489008237, 3.329349526620539, 3.2844470250479834, 3.240060644183159, 3.196190384026064, 3.152836244576701, 3.109998225835067, 3.0676763278011645, 3.025870550474993, 2.984580893856551, 2.9438073579458397, 2.903549942742859, 2.863808648247609, 2.8245834744600895, 2.785874421380301, 2.747681489008242, 2.710004677343914, 2.6728439863873166, 2.6361994161384494, 2.600070966597313, 2.5644586377639076, 2.529362429638232, 2.4947823422202866, 2.4607183755100728, 2.4271705295075887, 2.3941388042128358, 2.3616231996258126, 2.3296237157465205, 2.2981403525749586, 2.2671731101111274, 2.236721988355027, 2.2067869873066566, 2.177368106966017, 2.148465347333108, 2.120078708407929, 2.092208190190481, 2.064853792680763, 2.0380155158787763, 2.0116933597845197, 1.9858873243979938, 1.960597409719198, 1.9358236157481334, 1.911565942484799, 1.8878243899291949, 1.8645989580813214, 1.8418896469411785, 1.8196964565087663, 1.7980193867840844, 1.776858437767133, 1.7562136094579124, 1.736084901856422, 1.7164723149626622, 1.697375848776633, 1.6787955032983342, 1.660731278527766, 1.643183174464928, 1.626151191109821, 1.6096353284624443, 1.5936355865227982, 1.5781519652908824, 1.5631844647666977, 1.5487330849502428, 1.534797825841519, 1.5213786874405253, 1.5084756697472623, 1.49608877276173, 1.484217996483928, 1.4728633409138565, 1.4620248060515153, 1.4517023918969052, 1.4418960984500253, 1.4326059257108756, 1.423831873679457, 1.4155739423557687, 1.4078321317398106, 1.4006064418315836, 1.3938968726310867, 1.3877034241383206, 1.3820260963532847, 1.3768648892759794, 1.3722198029064048, 1.3680908372445608, 1.364477992290447, 1.361381268044064, 1.3588006645054111, 1.3567361816744894, 1.3551878195512974, 1.3541555781358365, 1.3536394574281059, 1.3536394574281059, 1.3541555781358365, 1.3551878195512974, 1.356736181674489, 1.3588006645054111, 1.361381268044064, 1.364477992290447, 1.3680908372445604, 1.3722198029064048, 1.3768648892759794, 1.3820260963532847, 1.3877034241383202, 1.3938968726310867, 1.4006064418315831, 1.4078321317398106, 1.4155739423557683, 1.4238318736794566, 1.4326059257108756, 1.4418960984500249, 1.4517023918969048, 1.4620248060515153, 1.472863340913856, 1.4842179964839275, 1.4960887727617296, 1.5084756697472619, 1.5213786874405248, 1.534797825841519, 1.5487330849502423, 1.5631844647666973, 1.578151965290882, 1.5936355865227978, 1.6096353284624438, 1.6261511911098205, 1.6431831744649275, 1.6607312785277655, 1.6787955032983337, 1.6973758487766322, 1.7164723149626617, 1.7360849018564215, 1.756213609457912, 1.7768584377671326, 1.798019386784084, 1.8196964565087654, 1.841889646941178, 1.864598958081321, 1.8878243899291944, 1.9115659424847986, 1.9358236157481326, 1.960597409719198, 1.9858873243979929, 2.0116933597845197, 2.038015515878776, 2.064853792680763, 2.09220819019048, 2.1200787084079287, 2.148465347333107, 2.177368106966016, 2.206786987306656, 2.236721988355026, 2.267173110111127, 2.2981403525749577, 2.32962371574652, 2.3616231996258117, 2.394138804212835, 2.4271705295075874, 2.460718375510072, 2.4947823422202857, 2.529362429638231, 2.5644586377639067, 2.600070966597312, 2.6361994161384494, 2.6728439863873152, 2.7100046773439135, 2.747681489008241, 2.7858744213802997, 2.824583474460088, 2.863808648247608, 2.903549942742858, 2.943807357945839, 2.9845808938565503, 3.025870550474991, 3.0676763278011645, 3.1099982258350662, 3.1528362445767, 3.196190384026063, 3.240060644183158, 3.2844470250479816, 3.329349526620538, 3.3747681489008228, 3.4207028918888396, 3.4671537555845866, 3.514120739988064, 3.561603845099272, 3.60960307091821, 3.6581184174448786, 3.7071498846792785, 3.7566974726214086, 3.806761181271268, 3.8573410106288595, 3.9084369606941802, 3.960049031467234, 4.012177222948017, 4.064821535136529, 4.1179819680327725, 4.171658521636747, 4.225851195948452, 4.280559990967886, 4.335784906695052, 4.391525943129947, 4.447783100272575, 4.504556378122933, 4.56184577668102, 4.619651295946839, 4.677972935920387, 4.736810696601667, 4.796164577990676, 4.856034580087417, 4.916420702891887, 4.9773229464040885, 5.038741310624021, 5.100675795551684, 5.1631264011870766, 5.226093127530199, 5.289575974581054, 5.353574942339639 ], [ 5.30454347510524, 5.240544507346655, 5.177061660295802, 5.1140949339526784, 5.051644328317286, 4.9897098433896225, 4.92829147916969, 4.867389235657489, 4.807003112853018, 4.747133110756279, 4.687779229367268, 4.628941468685989, 4.57061982871244, 4.512814309446622, 4.455524910888535, 4.398751633038177, 4.34249447589555, 4.286753439460655, 4.231528523733488, 4.176819728714053, 4.122627054402349, 4.068950500798374, 4.015790067902131, 3.963145755713618, 3.9110175642328358, 3.859405493459784, 3.8083095433944614, 3.75772971403687, 3.7076660053870105, 3.6581184174448804, 3.6090869502104805, 3.5605716036838118, 3.512572377864873, 3.4650892727536657, 3.4181222883501885, 3.3716714246544415, 3.3257366816664247, 3.28031805938614, 3.2354155578135835, 3.19102917694876, 3.147158916791665, 3.103804777342301, 3.060966758600668, 3.0186448605667655, 2.976839083240593, 2.935549426622152, 2.8947758907114407, 2.8545184755084594, 2.81477718101321, 2.7755520072256896, 2.736842954145901, 2.6986500217738425, 2.6609732101095145, 2.623812519152917, 2.5871679489040504, 2.551039499362914, 2.5154271705295077, 2.4803309624038326, 2.445750874985887, 2.4116869082756733, 2.3781390622731893, 2.3451073369784363, 2.312591732391413, 2.280592248512121, 2.249108885340559, 2.218141642876728, 2.1876905211206275, 2.157755520072257, 2.1283366397316175, 2.0994338800987085, 2.0710472411735292, 2.0431767229560815, 2.015822325446364, 1.9889840486443768, 1.9626618925501202, 1.9368558571635943, 1.911565942484799, 1.886792148513734, 1.8625344752503996, 1.8387929226947954, 1.815567490846922, 1.792858179706779, 1.7706649892743664, 1.748987919549685, 1.7278269705327336, 1.7071821422235125, 1.6870534346220225, 1.6674408477282627, 1.6483443815422336, 1.6297640360639347, 1.6116998112933665, 1.5941517072305285, 1.5771197238754215, 1.5606038612280448, 1.5446041192883988, 1.529120498056483, 1.5141529975322978, 1.4997016177158433, 1.4857663586071195, 1.4723472202061259, 1.4594442025128629, 1.4470573055273306, 1.4351865292495285, 1.423831873679457, 1.4129933388171159, 1.4026709246625058, 1.3928646312156259, 1.3835744584764762, 1.3748004064450576, 1.3665424751213693, 1.3588006645054111, 1.3515749745971841, 1.3448654053966873, 1.3386719569039212, 1.3329946291188852, 1.32783342204158, 1.3231883356720053, 1.3190593700101614, 1.3154465250560476, 1.3123498008096646, 1.3097691972710117, 1.30770471444009, 1.306156352316898, 1.305124110901437, 1.3046079901937064, 1.3046079901937064, 1.305124110901437, 1.306156352316898, 1.3077047144400895, 1.3097691972710117, 1.3123498008096646, 1.3154465250560476, 1.319059370010161, 1.3231883356720053, 1.32783342204158, 1.3329946291188852, 1.3386719569039207, 1.3448654053966873, 1.3515749745971837, 1.3588006645054111, 1.3665424751213688, 1.3748004064450572, 1.3835744584764762, 1.3928646312156254, 1.4026709246625053, 1.4129933388171159, 1.4238318736794566, 1.435186529249528, 1.4470573055273301, 1.4594442025128624, 1.4723472202061254, 1.485766358607119, 1.4997016177158429, 1.5141529975322978, 1.5291204980564825, 1.5446041192883984, 1.5606038612280444, 1.577119723875421, 1.594151707230528, 1.611699811293366, 1.6297640360639343, 1.6483443815422327, 1.6674408477282623, 1.687053434622022, 1.7071821422235125, 1.7278269705327327, 1.7489879195496845, 1.770664989274366, 1.7928581797067786, 1.815567490846921, 1.838792922694795, 1.8625344752503992, 1.8867921485137331, 1.9115659424847986, 1.9368558571635939, 1.9626618925501198, 1.988984048644376, 2.0158223254463636, 2.0431767229560807, 2.0710472411735292, 2.099433880098707, 2.128336639731617, 2.1577555200722567, 2.1876905211206266, 2.2181416428767275, 2.2491088853405583, 2.2805922485121206, 2.3125917323914122, 2.3451073369784354, 2.3781390622731884, 2.4116869082756724, 2.4457508749858863, 2.4803309624038317, 2.5154271705295077, 2.551039499362913, 2.5871679489040496, 2.6238125191529162, 2.660973210109514, 2.698650021773841, 2.7368429541459003, 2.7755520072256887, 2.814777181013209, 2.854518475508458, 2.8947758907114394, 2.935549426622151, 2.976839083240592, 3.0186448605667646, 3.0609667586006672, 3.103804777342301, 3.147158916791663, 3.191029176948758, 3.2354155578135826, 3.280318059386138, 3.3257366816664238, 3.3716714246544406, 3.4181222883501876, 3.465089272753664, 3.5125723778648723, 3.56057160368381, 3.6090869502104796, 3.6581184174448786, 3.7076660053870096, 3.757729714036868, 3.8083095433944605, 3.8594054934597812, 3.911017564232834, 3.963145755713617, 4.015790067902129, 4.0689505007983735, 4.122627054402347, 4.176819728714053, 4.231528523733486, 4.286753439460653, 4.342494475895548, 4.3987516330381755, 4.455524910888533, 4.51281430944662, 4.57061982871244, 4.628941468685987, 4.687779229367267, 4.747133110756277, 4.8070031128530175, 4.8673892356574875, 4.9282914791696895, 4.989709843389621, 5.051644328317284, 5.114094933952678, 5.1770616602958, 5.240544507346655, 5.30454347510524 ], [ 5.2560281285785715, 5.1920291608199864, 5.128546313769133, 5.06557958742601, 5.003128981790617, 4.941194496862954, 4.879776132643022, 4.8188738891308205, 4.75848776632635, 4.69861776422961, 4.639263882840599, 4.58042612215932, 4.522104482185771, 4.464298962919953, 4.407009564361866, 4.3502362865115085, 4.293979129368881, 4.238238092933986, 4.183013177206819, 4.128304382187384, 4.07411170787568, 4.020435154271706, 3.967274721375462, 3.914630409186949, 3.862502217706167, 3.810890146933115, 3.7597941968677926, 3.709214367510201, 3.6591506588603417, 3.6096030709182116, 3.5605716036838118, 3.512056257157143, 3.4640570313382044, 3.416573926226997, 3.3696069418235197, 3.3231560781277727, 3.277221335139756, 3.231802712859471, 3.1869002112869147, 3.142513830422091, 3.098643570264996, 3.055289430815632, 3.0124514120739994, 2.9701295140400967, 2.9283237367139243, 2.887034080095483, 2.846260544184772, 2.8060031289817906, 2.7662618344865413, 2.727036660699021, 2.6883276076192324, 2.6501346752471737, 2.6124578635828457, 2.5752971726262484, 2.5386526023773817, 2.502524152836245, 2.466911824002839, 2.4318156158771638, 2.3972355284592184, 2.3631715617490046, 2.3296237157465205, 2.2965919904517675, 2.2640763858647444, 2.2320769019854523, 2.2005935388138904, 2.169626296350059, 2.1391751745939587, 2.1092401735455883, 2.0798212932049487, 2.0509185335720397, 2.0225318946468605, 1.9946613764294128, 1.9673069789196953, 1.940468702117708, 1.9141465460234515, 1.8883405106369255, 1.8630505959581303, 1.8382768019870652, 1.8140191287237308, 1.7902775761681267, 1.7670521443202531, 1.7443428331801103, 1.7221496427476977, 1.7004725730230161, 1.6793116240060648, 1.6586667956968437, 1.6385380880953537, 1.618925501201594, 1.5998290350155648, 1.581248689537266, 1.5631844647666977, 1.5456363607038597, 1.5286043773487528, 1.512088514701376, 1.49608877276173, 1.4806051515298142, 1.465637651005629, 1.4511862711891745, 1.4372510120804507, 1.423831873679457, 1.410928855986194, 1.3985419590006618, 1.3866711827228597, 1.3753165271527883, 1.364477992290447, 1.354155578135837, 1.344349284688957, 1.3350591119498074, 1.3262850599183889, 1.3180271285947005, 1.3102853179787424, 1.3030596280705153, 1.2963500588700185, 1.2901566103772524, 1.2844792825922164, 1.2793180755149112, 1.2746729891453366, 1.2705440234834926, 1.2669311785293789, 1.2638344542829958, 1.261253850744343, 1.2591893679134212, 1.2576410057902292, 1.2566087643747683, 1.2560926436670377, 1.2560926436670377, 1.2566087643747683, 1.2576410057902292, 1.2591893679134207, 1.261253850744343, 1.2638344542829958, 1.2669311785293789, 1.2705440234834922, 1.2746729891453366, 1.2793180755149112, 1.2844792825922164, 1.290156610377252, 1.2963500588700185, 1.303059628070515, 1.3102853179787424, 1.3180271285947, 1.3262850599183884, 1.3350591119498074, 1.3443492846889566, 1.3541555781358365, 1.364477992290447, 1.3753165271527878, 1.3866711827228593, 1.3985419590006614, 1.4109288559861937, 1.4238318736794566, 1.4372510120804503, 1.451186271189174, 1.465637651005629, 1.4806051515298138, 1.4960887727617296, 1.5120885147013756, 1.5286043773487523, 1.5456363607038592, 1.5631844647666973, 1.5812486895372655, 1.599829035015564, 1.6189255012015935, 1.6385380880953533, 1.6586667956968437, 1.679311624006064, 1.7004725730230157, 1.7221496427476972, 1.7443428331801099, 1.7670521443202523, 1.7902775761681262, 1.8140191287237304, 1.8382768019870643, 1.8630505959581298, 1.888340510636925, 1.914146546023451, 1.9404687021177072, 1.9673069789196949, 1.9946613764294119, 2.0225318946468605, 2.0509185335720383, 2.0798212932049482, 2.109240173545588, 2.139175174593958, 2.1696262963500588, 2.2005935388138895, 2.232076901985452, 2.2640763858647435, 2.2965919904517667, 2.3296237157465196, 2.3631715617490037, 2.3972355284592175, 2.431815615877163, 2.466911824002839, 2.5025241528362443, 2.5386526023773808, 2.5752971726262475, 2.6124578635828453, 2.6501346752471724, 2.6883276076192315, 2.72703666069902, 2.7662618344865404, 2.8060031289817893, 2.8462605441847706, 2.887034080095482, 2.9283237367139234, 2.970129514040096, 3.0124514120739985, 3.055289430815632, 3.0986435702649944, 3.1425138304220894, 3.186900211286914, 3.2318027128594693, 3.277221335139755, 3.323156078127772, 3.369606941823519, 3.416573926226995, 3.4640570313382035, 3.512056257157141, 3.560571603683811, 3.60960307091821, 3.659150658860341, 3.7092143675101994, 3.7597941968677917, 3.8108901469331125, 3.862502217706165, 3.914630409186948, 3.9672747213754604, 4.020435154271705, 4.074111707875678, 4.128304382187384, 4.183013177206817, 4.238238092933984, 4.293979129368879, 4.350236286511507, 4.407009564361864, 4.464298962919951, 4.522104482185771, 4.580426122159318, 4.6392638828405985, 4.698617764229608, 4.758487766326349, 4.818873889130819, 4.879776132643021, 4.941194496862952, 5.003128981790615, 5.065579587426009, 5.128546313769132, 5.1920291608199864, 5.2560281285785715 ], [ 5.208028902759633, 5.144029935001049, 5.080547087950194, 5.017580361607071, 4.955129755971678, 4.893195271044015, 4.831776906824083, 4.770874663311882, 4.710488540507411, 4.65061853841067, 4.591264657021661, 4.5324268963403815, 4.474105256366833, 4.416299737101015, 4.359010338542927, 4.30223706069257, 4.245979903549943, 4.190238867115047, 4.135013951387881, 4.080305156368446, 4.026112482056741, 3.972435928452767, 3.9192754955565237, 3.8666311833680105, 3.8145029918872275, 3.7628909211141757, 3.711794971048855, 3.6612151416912635, 3.611151433041403, 3.561603845099272, 3.512572377864873, 3.4640570313382044, 3.416057805519266, 3.3685747004080575, 3.3216077160045803, 3.275156852308834, 3.2292221093208173, 3.1838034870405316, 3.138900985467976, 3.0945146046031518, 3.0506443444460576, 3.0072902049966936, 2.964452186255061, 2.922130288221158, 2.8803245108949858, 2.8390348542765445, 2.7982613183658334, 2.758003903162852, 2.7182626086676027, 2.6790374348800823, 2.640328381800294, 2.602135449428235, 2.564458637763907, 2.52729794680731, 2.490653376558443, 2.4545249270173066, 2.4189125981839004, 2.383816390058225, 2.34923630264028, 2.315172335930066, 2.281624489927582, 2.248592764632829, 2.216077160045806, 2.1840776761665137, 2.152594312994952, 2.1216270705311207, 2.09117594877502, 2.06124094772665, 2.03182206738601, 2.002919307753101, 1.9745326688279219, 1.9466621506104742, 1.9193077531007567, 1.8924694762987695, 1.866147320204513, 1.840341284817987, 1.8150513701391917, 1.7902775761681267, 1.7660199029047923, 1.742278350349188, 1.7190529185013146, 1.6963436073611717, 1.674150416928759, 1.6524733472040776, 1.6313123981871263, 1.6106675698779052, 1.5905388622764152, 1.5709262753826554, 1.5518298091966263, 1.5332494637183274, 1.5151852389477591, 1.4976371348849211, 1.4806051515298142, 1.4640892888824375, 1.4480895469427915, 1.4326059257108756, 1.4176384251866905, 1.403187045370236, 1.3892517862615121, 1.3758326478605185, 1.3629296301672555, 1.3505427331817232, 1.3386719569039212, 1.3273173013338497, 1.3164787664715085, 1.3061563523168984, 1.2963500588700185, 1.2870598861308689, 1.2782858340994503, 1.270027902775762, 1.2622860921598038, 1.2550604022515768, 1.24835083305108, 1.2421573845583138, 1.2364800567732779, 1.2313188496959726, 1.226673763326398, 1.222544797664554, 1.2189319527104403, 1.2158352284640572, 1.2132546249254044, 1.2111901420944826, 1.2096417799712906, 1.2086095385558298, 1.208093417848099, 1.208093417848099, 1.2086095385558298, 1.2096417799712906, 1.2111901420944822, 1.2132546249254044, 1.2158352284640572, 1.2189319527104403, 1.2225447976645536, 1.226673763326398, 1.2313188496959726, 1.2364800567732779, 1.2421573845583134, 1.24835083305108, 1.2550604022515763, 1.2622860921598038, 1.2700279027757615, 1.2782858340994498, 1.2870598861308689, 1.296350058870018, 1.306156352316898, 1.3164787664715085, 1.3273173013338493, 1.3386719569039207, 1.3505427331817228, 1.362929630167255, 1.375832647860518, 1.3892517862615117, 1.4031870453702355, 1.4176384251866905, 1.4326059257108752, 1.448089546942791, 1.464089288882437, 1.4806051515298138, 1.4976371348849207, 1.5151852389477587, 1.533249463718327, 1.5518298091966254, 1.570926275382655, 1.5905388622764147, 1.6106675698779052, 1.6313123981871254, 1.6524733472040771, 1.6741504169287587, 1.6963436073611713, 1.7190529185013137, 1.7422783503491877, 1.7660199029047918, 1.7902775761681258, 1.8150513701391913, 1.8403412848179865, 1.8661473202045125, 1.8924694762987686, 1.9193077531007563, 1.9466621506104733, 1.9745326688279219, 2.0029193077531, 2.0318220673860097, 2.0612409477266493, 2.0911759487750192, 2.12162707053112, 2.152594312994951, 2.1840776761665133, 2.216077160045805, 2.248592764632828, 2.281624489927581, 2.315172335930065, 2.349236302640279, 2.3838163900582243, 2.4189125981839004, 2.4545249270173057, 2.490653376558442, 2.527297946807309, 2.5644586377639067, 2.602135449428234, 2.640328381800293, 2.6790374348800814, 2.718262608667602, 2.7580039031628507, 2.798261318365832, 2.8390348542765436, 2.880324510894985, 2.9221302882211573, 2.9644521862550595, 3.0072902049966928, 3.050644344446056, 3.094514604603151, 3.1389009854679752, 3.1838034870405307, 3.2292221093208155, 3.2751568523088324, 3.3216077160045803, 3.3685747004080575, 3.416057805519266, 3.4640570313382035, 3.5125723778648723, 3.5616038450992713, 3.6111514330414014, 3.6612151416912617, 3.711794971048853, 3.762890921114174, 3.8145029918872266, 3.8666311833680096, 3.919275495556522, 3.972435928452766, 4.02611248205674, 4.0803051563684445, 4.135013951387879, 4.1902388671150455, 4.245979903549941, 4.302237060692568, 4.359010338542927, 4.4162997371010135, 4.4741052563668315, 4.532426896340381, 4.59126465702166, 4.650618538410669, 4.71048854050741, 4.77087466331188, 4.831776906824082, 4.893195271044013, 4.955129755971677, 5.01758036160707, 5.080547087950192, 5.144029935001047, 5.208028902759633 ], [ 5.160545797648425, 5.09654682988984, 5.0330639828389865, 4.970097256495864, 4.90764665086047, 4.845712165932808, 4.7842938017128755, 4.7233915582006745, 4.663005435396203, 4.603135433299463, 4.5437815519104525, 4.484943791229174, 4.426622151255625, 4.368816631989807, 4.311527233431719, 4.2547539555813625, 4.198496798438734, 4.142755762003839, 4.087530846276673, 4.032822051257238, 3.978629376945533, 3.9249528233415596, 3.871792390445316, 3.819148078256802, 3.76701988677602, 3.715407816002968, 3.6643118659376466, 3.613732036580055, 3.563668327930195, 3.5141207399880647, 3.4650892727536657, 3.416573926226997, 3.3685747004080575, 3.32109159529685, 3.274124610893373, 3.227673747197626, 3.181739004209609, 3.136320381929324, 3.0914178803567687, 3.0470314994919443, 3.0031612393348492, 2.9598070998854857, 2.9169690811438524, 2.87464718310995, 2.832841405783778, 2.791551749165336, 2.750778213254625, 2.710520798051644, 2.6707795035563944, 2.631554329768875, 2.5928452766890864, 2.5546523443170273, 2.5169755326526992, 2.479814841696102, 2.4431702714472348, 2.4070418219060983, 2.371429493072693, 2.3363332849470173, 2.301753197529072, 2.267689230818858, 2.234141384816374, 2.201109659521621, 2.168594054934598, 2.136594571055306, 2.105111207883744, 2.0741439654199127, 2.043692843663812, 2.013757842615442, 1.9843389622748022, 1.9554362026418932, 1.9270495637167144, 1.8991790454992663, 1.8718246479895484, 1.8449863711875616, 1.818664215093305, 1.792858179706779, 1.7675682650279834, 1.7427944710569188, 1.7185367977935844, 1.6947952452379802, 1.6715698133901067, 1.6488605022499638, 1.6266673118175516, 1.6049902420928697, 1.5838292930759184, 1.5631844647666977, 1.5430557571652073, 1.5234431702714475, 1.5043467040854184, 1.4857663586071195, 1.4677021338365512, 1.4501540297737132, 1.4331220464186063, 1.4166061837712296, 1.4006064418315836, 1.3851228205996677, 1.370155320075483, 1.355703940259028, 1.3417686811503042, 1.3283495427493106, 1.3154465250560476, 1.3030596280705153, 1.2911888517927133, 1.2798341962226418, 1.2689956613603006, 1.2586732472056905, 1.2488669537588106, 1.239576781019661, 1.2308027289882424, 1.222544797664554, 1.214802987048596, 1.2075772971403689, 1.200867727939872, 1.194674279447106, 1.18899695166207, 1.1838357445847647, 1.17919065821519, 1.1750616925533461, 1.1714488475992324, 1.1683521233528493, 1.1657715198141965, 1.1637070369832747, 1.1621586748600827, 1.1611264334446219, 1.1606103127368912, 1.1606103127368912, 1.1611264334446219, 1.1621586748600827, 1.1637070369832743, 1.1657715198141965, 1.1683521233528493, 1.1714488475992324, 1.1750616925533457, 1.17919065821519, 1.1838357445847647, 1.18899695166207, 1.1946742794471055, 1.200867727939872, 1.2075772971403684, 1.214802987048596, 1.2225447976645536, 1.230802728988242, 1.239576781019661, 1.2488669537588102, 1.25867324720569, 1.2689956613603006, 1.2798341962226414, 1.2911888517927128, 1.303059628070515, 1.3154465250560472, 1.3283495427493102, 1.3417686811503042, 1.3557039402590276, 1.3701553200754826, 1.3851228205996673, 1.4006064418315831, 1.4166061837712292, 1.4331220464186059, 1.4501540297737128, 1.4677021338365508, 1.485766358607119, 1.5043467040854175, 1.523443170271447, 1.5430557571652068, 1.5631844647666973, 1.583829293075918, 1.6049902420928692, 1.6266673118175508, 1.6488605022499634, 1.6715698133901062, 1.6947952452379798, 1.718536797793584, 1.7427944710569179, 1.7675682650279834, 1.7928581797067782, 1.818664215093305, 1.8449863711875611, 1.8718246479895484, 1.8991790454992654, 1.927049563716714, 1.9554362026418923, 1.9843389622748013, 2.0137578426154414, 2.0436928436638113, 2.0741439654199123, 2.105111207883743, 2.1365945710553054, 2.168594054934597, 2.20110965952162, 2.2341413848163727, 2.267689230818857, 2.301753197529071, 2.3363332849470164, 2.371429493072692, 2.4070418219060974, 2.4431702714472348, 2.4798148416961006, 2.516975532652699, 2.5546523443170264, 2.592845276689085, 2.6315543297688735, 2.6707795035563935, 2.7105207980516433, 2.750778213254624, 2.7915517491653357, 2.8328414057837765, 2.8746471831099494, 2.9169690811438516, 2.9598070998854853, 3.0031612393348484, 3.0470314994919434, 3.091417880356767, 3.1363203819293233, 3.181739004209608, 3.227673747197625, 3.274124610893372, 3.321091595296849, 3.3685747004080575, 3.416573926226995, 3.465089272753664, 3.514120739988064, 3.563668327930194, 3.6137320365800534, 3.664311865937645, 3.7154078160029655, 3.767019886776019, 3.819148078256802, 3.8717923904453144, 3.924952823341558, 3.9786293769455323, 4.032822051257237, 4.087530846276671, 4.142755762003837, 4.1984967984387325, 4.254753955581361, 4.311527233431718, 4.368816631989805, 4.426622151255624, 4.484943791229172, 4.5437815519104525, 4.603135433299461, 4.663005435396203, 4.723391558200673, 4.784293801712874, 4.845712165932806, 4.907646650860469, 4.970097256495862, 5.033063982838985, 5.0965468298898395, 5.160545797648425 ], [ 5.113578813244947, 5.049579845486363, 4.986096998435509, 4.923130272092386, 4.860679666456993, 4.7987451815293305, 4.737326817309398, 4.676424573797197, 4.6160384509927255, 4.556168448895986, 4.496814567506975, 4.437976806825697, 4.379655166852148, 4.32184964758633, 4.264560249028242, 4.207786971177885, 4.151529814035257, 4.095788777600362, 4.040563861873196, 3.9858550668537607, 3.931662392542056, 3.8779858389380824, 3.824825406041839, 3.772181093853325, 3.720052902372543, 3.668440831599491, 3.6173448815341693, 3.566765052176578, 3.5167013435267176, 3.4671537555845875, 3.4181222883501885, 3.3696069418235197, 3.3216077160045803, 3.274124610893373, 3.2271576264898956, 3.1807067627941485, 3.1347720198061317, 3.089353397525847, 3.0444508959532914, 3.000064515088467, 2.956194254931372, 2.9128401154820085, 2.870002096740375, 2.8276801987064726, 2.7858744213803006, 2.744584764761859, 2.7038112288511478, 2.663553813648167, 2.623812519152917, 2.5845873453653976, 2.545878292285609, 2.50768535991355, 2.470008548249222, 2.4328478572926246, 2.3962032870437575, 2.360074837502621, 2.3244625086692157, 2.28936630054354, 2.2547862131255947, 2.220722246415381, 2.187174400412897, 2.154142675118144, 2.1216270705311207, 2.0896275866518286, 2.0581442234802667, 2.0271769810164355, 1.996725859260335, 1.9667908582119646, 1.937371977871325, 1.908469218238416, 1.8800825793132372, 1.852212061095789, 1.8248576635860712, 1.7980193867840844, 1.7716972306898278, 1.7458911953033018, 1.7206012806245061, 1.6958274866534415, 1.6715698133901071, 1.647828260834503, 1.6246028289866294, 1.6018935178464866, 1.5797003274140744, 1.5580232576893924, 1.5368623086724411, 1.5162174803632205, 1.49608877276173, 1.4764761858679702, 1.4573797196819411, 1.4387993742036422, 1.420735149433074, 1.403187045370236, 1.386155062015129, 1.3696391993677524, 1.3536394574281063, 1.3381558361961905, 1.3231883356720058, 1.3087369558555508, 1.294801696746827, 1.2813825583458334, 1.2684795406525704, 1.256092643667038, 1.244221867389236, 1.2328672118191646, 1.2220286769568234, 1.2117062628022133, 1.2018999693553334, 1.1926097966161837, 1.1838357445847651, 1.1755778132610768, 1.1678360026451187, 1.1606103127368916, 1.1539007435363948, 1.1477072950436287, 1.1420299672585927, 1.1368687601812875, 1.1322236738117128, 1.128094708149869, 1.1244818631957552, 1.121385138949372, 1.1188045354107192, 1.1167400525797975, 1.1151916904566055, 1.1141594490411446, 1.113643328333414, 1.113643328333414, 1.1141594490411446, 1.1151916904566055, 1.116740052579797, 1.1188045354107192, 1.121385138949372, 1.1244818631957552, 1.1280947081498685, 1.1322236738117128, 1.1368687601812875, 1.1420299672585927, 1.1477072950436282, 1.1539007435363948, 1.1606103127368912, 1.1678360026451187, 1.1755778132610764, 1.1838357445847647, 1.1926097966161837, 1.201899969355333, 1.2117062628022128, 1.2220286769568234, 1.2328672118191641, 1.2442218673892356, 1.2560926436670377, 1.26847954065257, 1.281382558345833, 1.294801696746827, 1.3087369558555504, 1.3231883356720053, 1.33815583619619, 1.3536394574281059, 1.369639199367752, 1.3861550620151286, 1.4031870453702355, 1.4207351494330736, 1.4387993742036418, 1.4573797196819402, 1.4764761858679698, 1.4960887727617296, 1.51621748036322, 1.5368623086724407, 1.558023257689392, 1.5797003274140735, 1.6018935178464861, 1.624602828986629, 1.6478282608345025, 1.6715698133901067, 1.6958274866534406, 1.7206012806245061, 1.745891195303301, 1.7716972306898278, 1.798019386784084, 1.8248576635860712, 1.8522120610957882, 1.8800825793132367, 1.908469218238415, 1.937371977871324, 1.9667908582119642, 1.996725859260334, 2.027176981016435, 2.058144223480266, 2.089627586651828, 2.1216270705311198, 2.154142675118143, 2.1871744004128955, 2.22072224641538, 2.254786213125594, 2.289366300543539, 2.3244625086692148, 2.36007483750262, 2.3962032870437575, 2.4328478572926233, 2.4700085482492216, 2.507685359913549, 2.545878292285608, 2.5845873453653962, 2.6238125191529162, 2.663553813648166, 2.703811228851147, 2.7445847647618584, 2.7858744213802993, 2.827680198706472, 2.8700020967403743, 2.912840115482008, 2.956194254931371, 3.000064515088466, 3.0444508959532897, 3.089353397525846, 3.134772019806131, 3.1807067627941477, 3.2271576264898947, 3.274124610893372, 3.3216077160045803, 3.369606941823518, 3.4181222883501867, 3.4671537555845866, 3.5167013435267167, 3.566765052176576, 3.6173448815341676, 3.6684408315994883, 3.720052902372542, 3.772181093853325, 3.824825406041837, 3.8779858389380806, 3.931662392542055, 3.98585506685376, 4.040563861873194, 4.09578877760036, 4.151529814035255, 4.2077869711778835, 4.264560249028241, 4.321849647586328, 4.379655166852147, 4.437976806825695, 4.496814567506975, 4.556168448895984, 4.6160384509927255, 4.6764245737971954, 4.7373268173093965, 4.798745181529329, 4.860679666456992, 4.923130272092385, 4.9860969984355075, 5.049579845486362, 5.113578813244947 ], [ 5.067127949549201, 5.003128981790617, 4.939646134739762, 4.876679408396639, 4.814228802761246, 4.7522943178335835, 4.690875953613651, 4.62997371010145, 4.569587587296979, 4.509717585200239, 4.450363703811229, 4.39152594312995, 4.333204303156402, 4.275398783890584, 4.218109385332495, 4.161336107482138, 4.105078950339511, 4.0493379139046155, 3.9941129981774495, 3.9394042031580145, 3.885211528846309, 3.8315349752423353, 3.778374542346092, 3.7257302301575788, 3.673602038676796, 3.621989967903744, 3.570894017838423, 3.5203141884808318, 3.4702504798309715, 3.4207028918888405, 3.3716714246544415, 3.3231560781277727, 3.275156852308834, 3.227673747197626, 3.1807067627941485, 3.1342558990984024, 3.0883211561103856, 3.0429025338301, 2.9980000322575444, 2.9536136513927205, 2.909743391235626, 2.866389251786262, 2.823551233044629, 2.7812293350107264, 2.739423557684554, 2.6981339010661127, 2.6573603651554016, 2.6171029499524203, 2.577361655457171, 2.5381364816696506, 2.499427428589862, 2.4612344962178034, 2.4235576845534754, 2.386396993596878, 2.3497524233480114, 2.313623973806875, 2.2780116449734686, 2.2429154368477935, 2.208335349429848, 2.1742713827196343, 2.14072353671715, 2.1076918114223973, 2.075176206835374, 2.043176722956082, 2.01169335978452, 1.980726117320689, 1.9502749955645884, 1.920339994516218, 1.8909211141755784, 1.8620183545426694, 1.8336317156174902, 1.8057611974000425, 1.778406799890325, 1.7515685230883378, 1.7252463669940812, 1.6994403316075553, 1.67415041692876, 1.649376622957695, 1.6251189496943605, 1.6013773971387564, 1.5781519652908829, 1.55544265415074, 1.5332494637183274, 1.5115723939936458, 1.4904114449766945, 1.4697666166674734, 1.4496379090659834, 1.4300253221722237, 1.4109288559861946, 1.3923485105078957, 1.3742842857373274, 1.3567361816744894, 1.3397041983193825, 1.3231883356720058, 1.3071885937323597, 1.291704972500444, 1.2767374719762588, 1.2622860921598043, 1.2483508330510804, 1.2349316946500868, 1.2220286769568238, 1.2096417799712915, 1.1977710036934894, 1.186416348123418, 1.1755778132610768, 1.1652553991064667, 1.1554491056595868, 1.1461589329204371, 1.1373848808890186, 1.1291269495653302, 1.121385138949372, 1.114159449041145, 1.1074498798406482, 1.101256431347882, 1.0955791035628462, 1.0904178964855409, 1.0857728101159663, 1.0816438444541223, 1.0780309995000086, 1.0749342752536255, 1.0723536717149726, 1.070289188884051, 1.068740826760859, 1.067708585345398, 1.0671924646376674, 1.0671924646376674, 1.067708585345398, 1.068740826760859, 1.0702891888840504, 1.0723536717149726, 1.0749342752536255, 1.0780309995000086, 1.0816438444541219, 1.0857728101159663, 1.0904178964855409, 1.0955791035628462, 1.1012564313478816, 1.1074498798406482, 1.1141594490411446, 1.121385138949372, 1.1291269495653298, 1.1373848808890181, 1.1461589329204371, 1.1554491056595864, 1.1652553991064662, 1.1755778132610768, 1.1864163481234176, 1.197771003693489, 1.209641779971291, 1.2220286769568234, 1.2349316946500863, 1.24835083305108, 1.2622860921598038, 1.2767374719762588, 1.2917049725004435, 1.3071885937323593, 1.3231883356720053, 1.339704198319382, 1.356736181674489, 1.374284285737327, 1.3923485105078952, 1.4109288559861937, 1.4300253221722232, 1.449637909065983, 1.4697666166674734, 1.4904114449766936, 1.5115723939936454, 1.533249463718327, 1.5554426541507396, 1.578151965290882, 1.601377397138756, 1.62511894969436, 1.649376622957694, 1.6741504169287595, 1.6994403316075548, 1.7252463669940807, 1.7515685230883369, 1.7784067998903246, 1.8057611974000416, 1.8336317156174902, 1.862018354542668, 1.890921114175578, 1.9203399945162176, 1.9502749955645875, 1.9807261173206885, 2.0116933597845192, 2.0431767229560815, 2.075176206835373, 2.1076918114223964, 2.1407235367171493, 2.1742713827196334, 2.208335349429847, 2.2429154368477926, 2.2780116449734686, 2.313623973806874, 2.3497524233480105, 2.386396993596877, 2.423557684553475, 2.461234496217802, 2.499427428589861, 2.5381364816696497, 2.57736165545717, 2.617102949952419, 2.6573603651554003, 2.698133901066112, 2.739423557684553, 2.7812293350107256, 2.8235512330446277, 2.8663892517862615, 2.909743391235624, 2.953613651392719, 2.9980000322575435, 3.042902533830099, 3.088321156110384, 3.1342558990984006, 3.1807067627941485, 3.227673747197626, 3.275156852308834, 3.323156078127772, 3.3716714246544406, 3.4207028918888396, 3.4702504798309697, 3.52031418848083, 3.5708940178384214, 3.621989967903742, 3.673602038676795, 3.725730230157578, 3.77837454234609, 3.8315349752423344, 3.885211528846308, 3.9394042031580128, 3.9941129981774477, 4.049337913904614, 4.105078950339509, 4.1613361074821364, 4.218109385332495, 4.275398783890582, 4.3332043031564, 4.391525943129949, 4.450363703811228, 4.509717585200237, 4.5695875872969784, 4.629973710101448, 4.69087595361365, 4.752294317833582, 4.814228802761245, 4.8766794083966385, 4.93964613473976, 5.003128981790615, 5.067127949549201 ], [ 5.021193206561184, 4.9571942388026, 4.893711391751745, 4.830744665408623, 4.768294059773229, 4.706359574845567, 4.6449412106256345, 4.584038967113433, 4.5236528443089625, 4.463782842212222, 4.404428960823212, 4.345591200141933, 4.287269560168385, 4.229464040902567, 4.172174642344478, 4.115401364494121, 4.059144207351494, 4.003403170916599, 3.9481782551894327, 3.8934694601699977, 3.839276785858292, 3.7856002322543185, 3.732439799358075, 3.679795487169562, 3.627667295688779, 3.576055224915727, 3.5249592748504064, 3.474379445492815, 3.4243157368429546, 3.3747681489008237, 3.3257366816664247, 3.277221335139756, 3.2292221093208173, 3.181739004209609, 3.1347720198061317, 3.0883211561103856, 3.042386413122369, 2.9969677908420835, 2.9520652892695276, 2.9076789084047037, 2.863808648247609, 2.820454508798245, 2.7776164900566123, 2.7352945920227096, 2.6934888146965372, 2.652199158078096, 2.611425622167385, 2.5711682069644035, 2.531426912469154, 2.4922017386816337, 2.4534926856018453, 2.4152997532297866, 2.3776229415654586, 2.3404622506088613, 2.3038176803599946, 2.267689230818858, 2.232076901985452, 2.1969806938597767, 2.1624006064418313, 2.1283366397316175, 2.0947887937291334, 2.0617570684343804, 2.0292414638473573, 1.9972419799680652, 1.9657586167965033, 1.9347913743326721, 1.9043402525765716, 1.8744052515282013, 1.8449863711875616, 1.8160836115546526, 1.7876969726294734, 1.7598264544120257, 1.7324720569023082, 1.705633780100321, 1.6793116240060644, 1.6535055886195384, 1.6282156739407432, 1.6034418799696781, 1.5791842067063437, 1.5554426541507396, 1.532217222302866, 1.5095079111627232, 1.4873147207303106, 1.465637651005629, 1.4444767019886777, 1.4238318736794566, 1.4037031660779666, 1.3840905791842069, 1.3649941129981777, 1.3464137675198788, 1.3283495427493106, 1.3108014386864726, 1.2937694553313657, 1.277253592683989, 1.261253850744343, 1.245770229512427, 1.230802728988242, 1.2163513491717874, 1.2024160900630636, 1.18899695166207, 1.176093933968807, 1.1637070369832747, 1.1518362607054726, 1.1404816051354012, 1.12964307027306, 1.1193206561184499, 1.10951436267157, 1.1002241899324203, 1.0914501379010018, 1.0831922065773134, 1.0754503959613553, 1.0682247060531282, 1.0615151368526314, 1.0553216883598653, 1.0496443605748293, 1.044483153497524, 1.0398380671279495, 1.0357091014661055, 1.0320962565119918, 1.0289995322656087, 1.0264189287269558, 1.024354445896034, 1.022806083772842, 1.0217738423573812, 1.0212577216496506, 1.0212577216496506, 1.0217738423573812, 1.022806083772842, 1.0243544458960336, 1.0264189287269558, 1.0289995322656087, 1.0320962565119918, 1.035709101466105, 1.0398380671279495, 1.044483153497524, 1.0496443605748293, 1.0553216883598648, 1.0615151368526314, 1.0682247060531278, 1.0754503959613553, 1.083192206577313, 1.0914501379010013, 1.1002241899324203, 1.1095143626715696, 1.1193206561184494, 1.12964307027306, 1.1404816051354008, 1.1518362607054722, 1.1637070369832743, 1.1760939339688066, 1.1889969516620695, 1.2024160900630632, 1.216351349171787, 1.230802728988242, 1.2457702295124267, 1.2612538507443425, 1.2772535926839885, 1.2937694553313652, 1.3108014386864721, 1.3283495427493102, 1.3464137675198784, 1.3649941129981769, 1.3840905791842064, 1.4037031660779662, 1.4238318736794566, 1.4444767019886768, 1.4656376510056286, 1.4873147207303101, 1.5095079111627228, 1.5322172223028652, 1.5554426541507391, 1.5791842067063433, 1.6034418799696772, 1.6282156739407427, 1.653505588619538, 1.679311624006064, 1.70563378010032, 1.7324720569023078, 1.7598264544120248, 1.7876969726294734, 1.8160836115546513, 1.8449863711875611, 1.8744052515282008, 1.9043402525765707, 1.9347913743326717, 1.9657586167965024, 1.9972419799680647, 2.0292414638473564, 2.0617570684343796, 2.0947887937291325, 2.1283366397316166, 2.1624006064418304, 2.196980693859776, 2.232076901985452, 2.267689230818857, 2.3038176803599937, 2.3404622506088604, 2.377622941565458, 2.4152997532297853, 2.4534926856018444, 2.492201738681633, 2.5314269124691533, 2.571168206964402, 2.6114256221673835, 2.652199158078095, 2.6934888146965363, 2.7352945920227087, 2.777616490056611, 2.8204545087982447, 2.8638086482476073, 2.9076789084047023, 2.9520652892695267, 2.996967790842082, 3.042386413122367, 3.088321156110384, 3.1347720198061317, 3.181739004209609, 3.2292221093208173, 3.277221335139755, 3.3257366816664238, 3.3747681489008228, 3.424315736842953, 3.474379445492813, 3.5249592748504046, 3.5760552249157254, 3.627667295688778, 3.679795487169561, 3.7324397993580734, 3.7856002322543176, 3.8392767858582912, 3.893469460169996, 3.948178255189431, 4.003403170916597, 4.059144207351492, 4.11540136449412, 4.172174642344478, 4.229464040902565, 4.287269560168383, 4.345591200141932, 4.4044289608232114, 4.46378284221222, 4.523652844308962, 4.584038967113432, 4.644941210625634, 4.706359574845565, 4.768294059773228, 4.830744665408622, 4.893711391751744, 4.9571942388025985, 5.021193206561184 ], [ 4.975774584280899, 4.9117756165223145, 4.848292769471461, 4.785326043128338, 4.722875437492944, 4.660940952565282, 4.59952258834535, 4.538620344833149, 4.478234222028677, 4.418364219931937, 4.359010338542927, 4.300172577861648, 4.241850937888099, 4.184045418622281, 4.126756020064193, 4.069982742213837, 4.013725585071208, 3.957984548636313, 3.902759632909147, 3.848050837889712, 3.7938581635780073, 3.7401816099740337, 3.6870211770777903, 3.6343768648892762, 3.582248673408494, 3.5306366026354423, 3.4795406525701207, 3.4289608232125293, 3.378897114562669, 3.329349526620539, 3.28031805938614, 3.231802712859471, 3.1838034870405316, 3.136320381929324, 3.089353397525847, 3.0429025338301, 2.9969677908420835, 2.9515491685617983, 2.9066466669892423, 2.8622602861244184, 2.8183900259673234, 2.77503588651796, 2.7321978677763266, 2.689875969742424, 2.648070192416252, 2.60678053579781, 2.566006999887099, 2.5257495846841183, 2.4860082901888685, 2.446783116401349, 2.4080740633215605, 2.3698811309495014, 2.3322043192851734, 2.295043628328576, 2.258399058079709, 2.2222706085385724, 2.186658279705167, 2.1515620715794914, 2.116981984161546, 2.082918017451332, 2.049370171448848, 2.016338446154095, 1.983822841567072, 1.95182335768778, 1.920339994516218, 1.8893727520523869, 1.8589216302962863, 1.828986629247916, 1.7995677489072763, 1.7706649892743673, 1.7422783503491885, 1.7144078321317404, 1.6870534346220225, 1.6602151578200357, 1.6338930017257791, 1.6080869663392532, 1.5827970516604575, 1.5580232576893929, 1.5337655844260585, 1.5100240318704543, 1.4867986000225808, 1.464089288882438, 1.4418960984500258, 1.4202190287253438, 1.3990580797083925, 1.3784132513991718, 1.3582845437976814, 1.3386719569039216, 1.3195754907178925, 1.3009951452395936, 1.2829309204690253, 1.2653828164061873, 1.2483508330510804, 1.2318349704037037, 1.2158352284640577, 1.2003516072321418, 1.1853841067079571, 1.1709327268915022, 1.1569974677827783, 1.1435783293817847, 1.1306753116885218, 1.1182884147029895, 1.1064176384251874, 1.095062982855116, 1.0842244479927747, 1.0739020338381646, 1.0640957403912847, 1.054805567652135, 1.0460315156207165, 1.0377735842970282, 1.03003177368107, 1.022806083772843, 1.0160965145723462, 1.00990306607958, 1.004225738294544, 0.9990645312172388, 0.9944194448476642, 0.99029047918582, 0.9866776342317065, 0.9835809099853232, 0.9810003064466708, 0.9789358236157486, 0.9773874614925571, 0.976355220077096, 0.9758390993693655, 0.9758390993693655, 0.976355220077096, 0.9773874614925571, 0.9789358236157486, 0.9810003064466706, 0.9835809099853232, 0.9866776342317063, 0.99029047918582, 0.9944194448476642, 0.9990645312172388, 1.004225738294544, 1.0099030660795796, 1.0160965145723462, 1.0228060837728425, 1.03003177368107, 1.0377735842970277, 1.046031515620716, 1.054805567652135, 1.0640957403912843, 1.0739020338381642, 1.0842244479927747, 1.0950629828551155, 1.106417638425187, 1.118288414702989, 1.1306753116885213, 1.1435783293817843, 1.1569974677827783, 1.1709327268915017, 1.1853841067079567, 1.2003516072321414, 1.2158352284640572, 1.2318349704037033, 1.24835083305108, 1.2653828164061869, 1.282930920469025, 1.3009951452395931, 1.3195754907178916, 1.3386719569039212, 1.358284543797681, 1.3784132513991714, 1.399058079708392, 1.4202190287253433, 1.4418960984500249, 1.4640892888824375, 1.4867986000225804, 1.5100240318704539, 1.533765584426058, 1.558023257689392, 1.5827970516604575, 1.6080869663392523, 1.6338930017257791, 1.6602151578200353, 1.6870534346220225, 1.7144078321317395, 1.742278350349188, 1.7706649892743664, 1.7995677489072754, 1.8289866292479156, 1.8589216302962854, 1.8893727520523864, 1.9203399945162172, 1.9518233576877795, 1.9838228415670711, 2.0163384461540943, 2.049370171448847, 2.0829180174513313, 2.116981984161545, 2.1515620715794905, 2.186658279705166, 2.2222706085385715, 2.258399058079709, 2.2950436283285747, 2.332204319285173, 2.3698811309495005, 2.408074063321559, 2.4467831164013476, 2.4860082901888676, 2.5257495846841174, 2.5660069998870982, 2.6067805357978098, 2.6480701924162506, 2.6898759697424235, 2.7321978677763257, 2.7750358865179594, 2.8183900259673225, 2.862260286124417, 2.906646666989241, 2.951549168561797, 2.996967790842082, 3.042902533830099, 3.089353397525846, 3.1363203819293233, 3.1838034870405316, 3.2318027128594693, 3.280318059386138, 3.329349526620538, 3.378897114562668, 3.4289608232125275, 3.479540652570119, 3.5306366026354397, 3.5822486734084933, 3.6343768648892762, 3.6870211770777885, 3.740181609974032, 3.7938581635780064, 3.848050837889711, 3.902759632909145, 3.957984548636311, 4.013725585071207, 4.069982742213835, 4.126756020064192, 4.184045418622279, 4.241850937888098, 4.300172577861646, 4.359010338542927, 4.418364219931935, 4.478234222028677, 4.538620344833147, 4.599522588345348, 4.66094095256528, 4.722875437492943, 4.785326043128336, 4.848292769471459, 4.911775616522314, 4.975774584280899 ], [ 4.930872082708343, 4.866873114949758, 4.803390267898905, 4.740423541555781, 4.677972935920389, 4.6160384509927255, 4.554620086772793, 4.493717843260592, 4.433331720456121, 4.373461718359382, 4.314107836970371, 4.255270076289092, 4.196948436315543, 4.139142917049725, 4.081853518491638, 4.02508024064128, 3.968823083498653, 3.9130820470637575, 3.8578571313365906, 3.8031483363171557, 3.748955662005452, 3.6952791084014773, 3.642118675505234, 3.5894743633167208, 3.5373461718359387, 3.485734101062887, 3.4346381509975643, 3.384058321639973, 3.3339946129901135, 3.2844470250479834, 3.2354155578135835, 3.1869002112869147, 3.138900985467976, 3.0914178803567687, 3.0444508959532914, 2.9980000322575444, 2.9520652892695276, 2.9066466669892423, 2.8617441654166864, 2.8173577845518625, 2.773487524394768, 2.730133384945404, 2.687295366203771, 2.6449734681698684, 2.603167690843696, 2.5618780342252547, 2.5211044983145436, 2.4808470831115623, 2.441105788616313, 2.4018806148287926, 2.363171561749004, 2.3249786293769454, 2.2873018177126174, 2.25014112675602, 2.2134965565071534, 2.177368106966017, 2.1417557781326106, 2.1066595700069355, 2.07207948258899, 2.0380155158787763, 2.004467669876292, 1.9714359445815393, 1.938920339994516, 1.906920856115224, 1.8754374929436621, 1.844470250479831, 1.8140191287237304, 1.78408412767536, 1.7546652473347204, 1.7257624877018114, 1.6973758487766322, 1.6695053305591845, 1.642150933049467, 1.6153126562474798, 1.5889905001532232, 1.5631844647666973, 1.537894550087902, 1.513120756116837, 1.4888630828535026, 1.4651215302978984, 1.4418960984500249, 1.419186787309882, 1.3969935968774694, 1.3753165271527878, 1.3541555781358365, 1.3335107498266154, 1.3133820422251254, 1.2937694553313657, 1.2746729891453366, 1.2560926436670377, 1.2380284188964694, 1.2204803148336314, 1.2034483314785245, 1.1869324688311478, 1.1709327268915017, 1.155449105659586, 1.1404816051354008, 1.1260302253189463, 1.1120949662102224, 1.0986758278092288, 1.0857728101159658, 1.0733859131304335, 1.0615151368526314, 1.05016048128256, 1.0393219464202188, 1.0289995322656087, 1.0191932388187288, 1.0099030660795791, 1.0011290140481606, 0.992871082724472, 0.9851292721085143, 0.9779035822002871, 0.9711940129997902, 0.9650005645070239, 0.9593232367219882, 0.9541620296446829, 0.9495169432751083, 0.9453879776132641, 0.9417751326591506, 0.9386784084127673, 0.9360978048741149, 0.9340333220431927, 0.9324849599200011, 0.93145271850454, 0.9309365977968096, 0.9309365977968096, 0.93145271850454, 0.9324849599200011, 0.9340333220431927, 0.9360978048741146, 0.9386784084127673, 0.9417751326591504, 0.9453879776132641, 0.9495169432751083, 0.9541620296446829, 0.9593232367219882, 0.9650005645070237, 0.97119401299979, 0.9779035822002866, 0.9851292721085141, 0.992871082724472, 1.0011290140481601, 1.0099030660795791, 1.0191932388187284, 1.0289995322656083, 1.0393219464202188, 1.0501604812825596, 1.061515136852631, 1.073385913130433, 1.0857728101159654, 1.0986758278092283, 1.112094966210222, 1.1260302253189458, 1.1404816051354008, 1.1554491056595855, 1.1709327268915013, 1.1869324688311473, 1.203448331478524, 1.220480314833631, 1.238028418896469, 1.2560926436670372, 1.2746729891453357, 1.2937694553313652, 1.313382042225125, 1.3335107498266154, 1.3541555781358356, 1.3753165271527874, 1.396993596877469, 1.4191867873098816, 1.441896098450024, 1.465121530297898, 1.488863082853502, 1.513120756116836, 1.5378945500879015, 1.5631844647666968, 1.5889905001532227, 1.6153126562474789, 1.6421509330494666, 1.6695053305591836, 1.6973758487766322, 1.72576248770181, 1.75466524733472, 1.7840841276753596, 1.8140191287237295, 1.8444702504798305, 1.8754374929436612, 1.9069208561152236, 1.9389203399945152, 1.9714359445815384, 2.0044676698762913, 2.0380155158787754, 2.072079482588989, 2.1066595700069346, 2.1417557781326106, 2.177368106966016, 2.2134965565071525, 2.250141126756019, 2.287301817712617, 2.324978629376944, 2.3631715617490032, 2.4018806148287917, 2.441105788616312, 2.480847083111561, 2.5211044983145423, 2.561878034225254, 2.603167690843695, 2.6449734681698676, 2.6872953662037697, 2.7301333849454035, 2.773487524394766, 2.817357784551861, 2.8617441654166855, 2.906646666989241, 2.9520652892695263, 2.998000032257543, 3.0444508959532905, 3.091417880356767, 3.1389009854679752, 3.186900211286913, 3.2354155578135826, 3.2844470250479816, 3.3339946129901126, 3.384058321639971, 3.4346381509975634, 3.485734101062884, 3.537346171835937, 3.58947436331672, 3.642118675505232, 3.6952791084014764, 3.74895566200545, 3.8031483363171557, 3.857857131336589, 3.9130820470637557, 3.968823083498651, 4.0250802406412785, 4.081853518491636, 4.139142917049723, 4.196948436315543, 4.25527007628909, 4.31410783697037, 4.37346171835938, 4.4333317204561205, 4.49371784326059, 4.554620086772792, 4.616038450992724, 4.677972935920387, 4.7404235415557805, 4.803390267898903, 4.866873114949758, 4.930872082708343 ], [ 4.886485701843519, 4.822486734084935, 4.759003887034081, 4.696037160690958, 4.633586555055564, 4.571652070127902, 4.51023370590797, 4.449331462395769, 4.388945339591297, 4.329075337494557, 4.269721456105547, 4.210883695424268, 4.152562055450719, 4.094756536184901, 4.037467137626813, 3.9806938597764567, 3.9244367026338285, 3.868695666198933, 3.813470750471767, 3.758761955452332, 3.7045692811406274, 3.650892727536654, 3.5977322946404104, 3.5450879824518964, 3.4929597909711143, 3.4413477201980625, 3.390251770132741, 3.3396719407751494, 3.289608232125289, 3.240060644183159, 3.19102917694876, 3.142513830422091, 3.0945146046031518, 3.0470314994919443, 3.000064515088467, 2.9536136513927205, 2.9076789084047037, 2.8622602861244184, 2.8173577845518625, 2.7729714036870385, 2.7291011435299435, 2.68574700408058, 2.6429089853389467, 2.600587087305044, 2.558781309978872, 2.5174916533604303, 2.4767181174497193, 2.4364607022467384, 2.3967194077514886, 2.357494233963969, 2.3187851808841806, 2.2805922485121215, 2.2429154368477935, 2.205754745891196, 2.169110175642329, 2.1329817261011925, 2.097369397267787, 2.0622731891421116, 2.027693101724166, 1.9936291350139523, 1.9600812890114683, 1.9270495637167153, 1.8945339591296921, 1.8625344752504, 1.8310511120788382, 1.800083869615007, 1.7696327478589065, 1.7396977468105361, 1.7102788664698965, 1.6813761068369875, 1.6529894679118087, 1.6251189496943605, 1.5977645521846426, 1.5709262753826558, 1.5446041192883992, 1.5187980839018733, 1.4935081692230776, 1.468734375252013, 1.4444767019886786, 1.4207351494330744, 1.397509717585201, 1.374800406445058, 1.3526072160126459, 1.330930146287964, 1.3097691972710126, 1.289124368961792, 1.2689956613603015, 1.2493830744665417, 1.2302866082805126, 1.2117062628022137, 1.1936420380316455, 1.1760939339688075, 1.1590619506137005, 1.1425460879663238, 1.1265463460266778, 1.111062724794762, 1.0960952242705773, 1.0816438444541223, 1.0677085853453985, 1.0542894469444049, 1.0413864292511419, 1.0289995322656096, 1.0171287559878075, 1.005774100417736, 0.9949355655553949, 0.9846131514007845, 0.9748068579539046, 0.9655166852147552, 0.9567426331833364, 0.9484847018596481, 0.9407428912436904, 0.9335172013354631, 0.9268076321349663, 0.9206141836421999, 0.9149368558571642, 0.909775648779859, 0.9051305624102843, 0.9010015967484402, 0.8973887517943266, 0.8942920275479433, 0.8917114240092909, 0.8896469411783687, 0.8880985790551772, 0.8870663376397161, 0.8865502169319857, 0.8865502169319857, 0.8870663376397161, 0.8880985790551772, 0.8896469411783687, 0.8917114240092907, 0.8942920275479433, 0.8973887517943264, 0.9010015967484402, 0.9051305624102843, 0.909775648779859, 0.9149368558571642, 0.9206141836421997, 0.9268076321349661, 0.9335172013354627, 0.9407428912436901, 0.9484847018596481, 0.9567426331833362, 0.9655166852147552, 0.9748068579539044, 0.9846131514007843, 0.9949355655553946, 1.0057741004177356, 1.017128755987807, 1.0289995322656091, 1.0413864292511414, 1.0542894469444044, 1.0677085853453985, 1.0816438444541219, 1.0960952242705768, 1.1110627247947615, 1.1265463460266774, 1.1425460879663234, 1.1590619506137, 1.176093933968807, 1.193642038031645, 1.2117062628022133, 1.2302866082805117, 1.2493830744665413, 1.268995661360301, 1.2891243689617915, 1.3097691972710122, 1.3309301462879635, 1.352607216012645, 1.3748004064450576, 1.3975097175852005, 1.420735149433074, 1.4444767019886782, 1.4687343752520121, 1.4935081692230776, 1.5187980839018724, 1.5446041192883992, 1.5709262753826554, 1.5977645521846426, 1.6251189496943597, 1.6529894679118082, 1.6813761068369866, 1.7102788664698956, 1.7396977468105357, 1.7696327478589056, 1.8000838696150065, 1.8310511120788373, 1.8625344752503996, 1.8945339591296912, 1.9270495637167144, 1.960081289011467, 1.9936291350139514, 2.0276931017241653, 2.0622731891421107, 2.0973693972677863, 2.1329817261011916, 2.169110175642329, 2.205754745891195, 2.242915436847793, 2.2805922485121206, 2.3187851808841793, 2.3574942339639677, 2.3967194077514877, 2.4364607022467375, 2.4767181174497184, 2.51749165336043, 2.5587813099788708, 2.6005870873050436, 2.642908985338946, 2.6857470040805795, 2.7291011435299426, 2.772971403687037, 2.817357784551861, 2.862260286124417, 2.9076789084047023, 2.953613651392719, 3.000064515088466, 3.0470314994919434, 3.0945146046031518, 3.1425138304220894, 3.191029176948758, 3.240060644183158, 3.289608232125288, 3.3396719407751476, 3.390251770132739, 3.44134772019806, 3.4929597909711134, 3.5450879824518964, 3.5977322946404087, 3.650892727536652, 3.7045692811406266, 3.7587619554523313, 3.8134707504717653, 3.8686956661989313, 3.9244367026338267, 3.980693859776455, 4.0374671376268125, 4.094756536184899, 4.152562055450718, 4.2108836954242665, 4.269721456105547, 4.329075337494555, 4.388945339591297, 4.449331462395767, 4.510233705907968, 4.5716520701279, 4.6335865550555635, 4.696037160690956, 4.759003887034079, 4.822486734084934, 4.886485701843519 ], [ 4.842615441686425, 4.77861647392784, 4.715133626876986, 4.652166900533863, 4.589716294898469, 4.527781809970807, 4.466363445750875, 4.405461202238674, 4.345075079434203, 4.285205077337462, 4.225851195948453, 4.167013435267173, 4.108691795293624, 4.050886276027806, 3.9935968774697184, 3.9368235996193617, 3.8805664424767343, 3.824825406041839, 3.769600490314672, 3.714891695295237, 3.6606990209835324, 3.607022467379559, 3.5538620344833154, 3.501217722294802, 3.4490895308140193, 3.3974774600409674, 3.3463815099756458, 3.2958016806180543, 3.245737971968195, 3.196190384026064, 3.147158916791665, 3.098643570264996, 3.0506443444460576, 3.0031612393348492, 2.956194254931372, 2.909743391235626, 2.863808648247609, 2.8183900259673234, 2.773487524394768, 2.7291011435299435, 2.685230883372849, 2.6418767439234854, 2.599038725181852, 2.5567168271479495, 2.5149110498217775, 2.4736213932033357, 2.4328478572926246, 2.3925904420896433, 2.352849147594394, 2.313623973806874, 2.2749149207270856, 2.2367219883550264, 2.1990451766906984, 2.1618844857341015, 2.1252399154852344, 2.089111465944098, 2.053499137110692, 2.018402928985017, 1.9838228415670711, 1.9497588748568573, 1.9162110288543737, 1.8831793035596203, 1.850663698972597, 1.818664215093305, 1.7871808519217431, 1.7562136094579124, 1.7257624877018114, 1.6958274866534415, 1.6664086063128019, 1.6375058466798924, 1.6091192077547136, 1.5812486895372655, 1.553894292027548, 1.5270560152255612, 1.5007338591313046, 1.4749278237447783, 1.449637909065983, 1.424864115094918, 1.4006064418315836, 1.3768648892759798, 1.3536394574281059, 1.330930146287963, 1.3087369558555508, 1.2870598861308689, 1.2658989371139175, 1.245254108804697, 1.2251254012032065, 1.2055128143094467, 1.1864163481234176, 1.167836002645119, 1.1497717778745509, 1.1322236738117128, 1.1151916904566055, 1.0986758278092292, 1.0826760858695827, 1.0671924646376674, 1.0522249641134822, 1.0377735842970277, 1.0238383251883034, 1.0104191867873102, 0.9975161690940471, 0.9851292721085145, 0.9732584958307124, 0.961903840260641, 0.9510653053983, 0.9407428912436897, 0.9309365977968098, 0.9216464250576606, 0.9128723730262416, 0.9046144417025532, 0.8968726310865955, 0.8896469411783683, 0.8829373719778715, 0.8767439234851051, 0.8710665957000694, 0.8659053886227641, 0.8612603022531895, 0.8571313365913453, 0.8535184916372318, 0.8504217673908485, 0.8478411638521961, 0.8457766810212739, 0.8442283188980824, 0.8431960774826213, 0.8426799567748908, 0.8426799567748908, 0.8431960774826213, 0.8442283188980824, 0.8457766810212739, 0.8478411638521959, 0.8504217673908485, 0.8535184916372316, 0.8571313365913453, 0.8612603022531895, 0.8659053886227641, 0.8710665957000694, 0.8767439234851049, 0.8829373719778713, 0.8896469411783678, 0.8968726310865953, 0.9046144417025532, 0.9128723730262414, 0.9216464250576604, 0.9309365977968096, 0.9407428912436895, 0.9510653053982998, 0.9619038402606408, 0.9732584958307122, 0.9851292721085143, 0.9975161690940466, 1.0104191867873098, 1.0238383251883034, 1.0377735842970273, 1.0522249641134822, 1.067192464637667, 1.0826760858695827, 1.0986758278092283, 1.1151916904566055, 1.1322236738117124, 1.14977177787455, 1.1678360026451187, 1.1864163481234171, 1.2055128143094467, 1.225125401203206, 1.2452541088046964, 1.265898937113917, 1.2870598861308689, 1.3087369558555504, 1.330930146287963, 1.3536394574281054, 1.376864889275979, 1.4006064418315836, 1.4248641150949175, 1.4496379090659826, 1.4749278237447778, 1.5007338591313042, 1.5270560152255603, 1.5538942920275476, 1.581248689537265, 1.6091192077547132, 1.6375058466798915, 1.666408606312801, 1.695827486653441, 1.725762487701811, 1.756213609457912, 1.7871808519217427, 1.8186642150933046, 1.8506636989725962, 1.8831793035596194, 1.9162110288543723, 1.9497588748568564, 1.9838228415670702, 2.018402928985016, 2.0534991371106917, 2.089111465944097, 2.125239915485234, 2.1618844857341, 2.1990451766906984, 2.2367219883550256, 2.2749149207270847, 2.313623973806873, 2.352849147594393, 2.3925904420896424, 2.4328478572926233, 2.4736213932033353, 2.514911049821776, 2.556716827147949, 2.5990387251818508, 2.6418767439234845, 2.6852308833728475, 2.7291011435299426, 2.7734875243947665, 2.8183900259673225, 2.8638086482476073, 2.909743391235624, 2.956194254931372, 3.0031612393348484, 3.0506443444460567, 3.0986435702649944, 3.147158916791664, 3.196190384026063, 3.245737971968193, 3.2958016806180526, 3.346381509975645, 3.3974774600409656, 3.4490895308140184, 3.5012177222948013, 3.5538620344833136, 3.607022467379558, 3.6606990209835315, 3.714891695295236, 3.7696004903146703, 3.824825406041837, 3.8805664424767325, 3.93682359961936, 3.9935968774697175, 4.050886276027804, 4.108691795293623, 4.1670134352671715, 4.225851195948452, 4.28520507733746, 4.345075079434202, 4.405461202238672, 4.466363445750874, 4.527781809970805, 4.589716294898468, 4.652166900533862, 4.715133626876984, 4.778616473927839, 4.842615441686425 ], [ 4.799261302237061, 4.735262334478476, 4.671779487427623, 4.608812761084499, 4.546362155449106, 4.484427670521443, 4.423009306301511, 4.36210706278931, 4.301720939984839, 4.241850937888099, 4.182497056499089, 4.123659295817809, 4.06533765584426, 4.007532136578442, 3.9502427380203553, 3.8934694601699977, 3.8372123030273704, 3.781471266592475, 3.726246350865308, 3.671537555845873, 3.6173448815341693, 3.563668327930195, 3.5105078950339514, 3.4578635828454383, 3.405735391364656, 3.3541233205916043, 3.303027370526282, 3.2524475411686904, 3.202383832518831, 3.152836244576701, 3.103804777342301, 3.055289430815632, 3.0072902049966936, 2.9598070998854857, 2.9128401154820085, 2.866389251786262, 2.820454508798245, 2.77503588651796, 2.730133384945404, 2.68574700408058, 2.6418767439234854, 2.5985226044741214, 2.5556845857324886, 2.513362687698586, 2.4715569103724135, 2.4302672537539722, 2.389493717843261, 2.34923630264028, 2.3094950081450305, 2.27026983435751, 2.2315607812777216, 2.193367848905663, 2.155691037241335, 2.1185303462847376, 2.081885776035871, 2.0457573264947344, 2.010144997661328, 1.975048789535653, 1.9404687021177076, 1.9064047354074938, 1.8728568894050097, 1.8398251641102568, 1.8073095595232336, 1.7753100756439415, 1.7438267124723796, 1.7128594700085484, 1.682408348252448, 1.6524733472040776, 1.623054466863438, 1.594151707230529, 1.5657650683053497, 1.537894550087902, 1.5105401525781845, 1.4837018757761973, 1.4573797196819407, 1.4315736842954148, 1.4062837696166195, 1.3815099756455544, 1.35725230238222, 1.3335107498266159, 1.3102853179787424, 1.2875760068385995, 1.2653828164061869, 1.2437057466815054, 1.222544797664554, 1.201899969355333, 1.181771261753843, 1.1621586748600832, 1.143062208674054, 1.1244818631957552, 1.106417638425187, 1.088869534362349, 1.071837551007242, 1.0553216883598653, 1.0393219464202192, 1.0238383251883034, 1.0088708246641183, 0.994419444847664, 0.9804841857389399, 0.9670650473379463, 0.9541620296446833, 0.9417751326591508, 0.9299043563813487, 0.9185497008112773, 0.9077111659489363, 0.897388751794326, 0.8875824583474461, 0.8782922856082966, 0.8695182335768779, 0.8612603022531895, 0.8535184916372318, 0.8462928017290046, 0.8395832325285078, 0.8333897840357414, 0.8277124562507057, 0.8225512491734004, 0.8179061628038258, 0.8137771971419816, 0.8101643521878681, 0.8070676279414848, 0.8044870244028324, 0.8024225415719102, 0.8008741794487186, 0.7998419380332575, 0.7993258173255271, 0.7993258173255271, 0.7998419380332575, 0.8008741794487186, 0.8024225415719102, 0.8044870244028322, 0.8070676279414848, 0.8101643521878679, 0.8137771971419816, 0.8179061628038258, 0.8225512491734004, 0.8277124562507057, 0.8333897840357412, 0.8395832325285075, 0.8462928017290041, 0.8535184916372316, 0.8612603022531895, 0.8695182335768776, 0.8782922856082966, 0.8875824583474459, 0.8973887517943258, 0.9077111659489361, 0.9185497008112771, 0.9299043563813485, 0.9417751326591506, 0.9541620296446829, 0.9670650473379461, 0.9804841857389397, 0.9944194448476635, 1.0088708246641183, 1.023838325188303, 1.0393219464202188, 1.0553216883598648, 1.0718375510072415, 1.0888695343623485, 1.1064176384251865, 1.1244818631957547, 1.1430622086740532, 1.1621586748600827, 1.1817712617538425, 1.201899969355333, 1.2225447976645532, 1.243705746681505, 1.2653828164061864, 1.287576006838599, 1.3102853179787415, 1.3335107498266154, 1.3572523023822196, 1.3815099756455536, 1.406283769616619, 1.4315736842954143, 1.4573797196819402, 1.4837018757761964, 1.510540152578184, 1.537894550087901, 1.5657650683053497, 1.5941517072305276, 1.6230544668634375, 1.6524733472040771, 1.682408348252447, 1.712859470008548, 1.7438267124723787, 1.775310075643941, 1.8073095595232327, 1.8398251641102559, 1.8728568894050088, 1.906404735407493, 1.9404687021177067, 1.975048789535652, 2.010144997661328, 2.0457573264947335, 2.08188577603587, 2.1185303462847367, 2.1556910372413345, 2.1933678489056616, 2.2315607812777207, 2.270269834357509, 2.3094950081450296, 2.3492363026402785, 2.38949371784326, 2.4302672537539713, 2.4715569103724127, 2.513362687698585, 2.5556845857324872, 2.598522604474121, 2.6418767439234836, 2.6857470040805786, 2.730133384945403, 2.7750358865179585, 2.8204545087982438, 2.8663892517862606, 2.912840115482008, 2.959807099885485, 3.0072902049966928, 3.0552894308156304, 3.1038047773423, 3.152836244576699, 3.20238383251883, 3.2524475411686886, 3.303027370526281, 3.3541233205916017, 3.4057353913646544, 3.4578635828454374, 3.5105078950339497, 3.563668327930194, 3.6173448815341676, 3.671537555845873, 3.7262463508653063, 3.7814712665924732, 3.8372123030273686, 3.893469460169996, 3.9502427380203535, 4.00753213657844, 4.06533765584426, 4.1236592958178075, 4.182497056499088, 4.241850937888097, 4.301720939984838, 4.362107062789308, 4.42300930630151, 4.484427670521441, 4.5463621554491045, 4.608812761084498, 4.671779487427621, 4.735262334478476, 4.799261302237061 ], [ 4.756423283495428, 4.692424315736843, 4.628941468685989, 4.565974742342866, 4.5035241367074725, 4.44158965177981, 4.380171287559878, 4.319269044047677, 4.258882921243206, 4.199012919146465, 4.139659037757456, 4.0808212770761765, 4.022499637102627, 3.9646941178368094, 3.9074047192787216, 3.850631441428365, 3.7943742842857375, 3.738633247850842, 3.6834083321236752, 3.6286995371042403, 3.5745068627925356, 3.520830309188562, 3.4676698762923186, 3.4150255641038054, 3.3628973726230225, 3.3112853018499706, 3.260189351784649, 3.2096095224270575, 3.159545813777198, 3.109998225835067, 3.060966758600668, 3.0124514120739994, 2.964452186255061, 2.9169690811438524, 2.870002096740375, 2.823551233044629, 2.7776164900566123, 2.7321978677763266, 2.687295366203771, 2.6429089853389467, 2.599038725181852, 2.5556845857324886, 2.5128465669908553, 2.4705246689569527, 2.4287188916307807, 2.387429235012339, 2.346655699101628, 2.3063982838986465, 2.266656989403397, 2.227431815615877, 2.1887227625360888, 2.1505298301640297, 2.1128530184997016, 2.0756923275431047, 2.0390477572942376, 2.002919307753101, 1.9673069789196953, 1.9322107707940201, 1.8976306833760743, 1.8635667166658605, 1.8300188706633769, 1.7969871453686235, 1.7644715407816003, 1.7324720569023082, 1.7009886937307463, 1.6700214512669156, 1.6395703295108146, 1.6096353284624447, 1.580216448121805, 1.5513136884888956, 1.5229270495637168, 1.4950565313462687, 1.4677021338365512, 1.4408638570345644, 1.4145417009403078, 1.3887356655537815, 1.3634457508749862, 1.3386719569039212, 1.3144142836405868, 1.290672731084983, 1.267447299237109, 1.2447379880969662, 1.222544797664554, 1.200867727939872, 1.1797067789229208, 1.1590619506137, 1.1389332430122097, 1.1193206561184499, 1.1002241899324208, 1.0816438444541223, 1.063579619683554, 1.046031515620716, 1.0289995322656087, 1.0124836696182324, 0.996483927678586, 0.9810003064466706, 0.9660328059224854, 0.9515814261060309, 0.9376461669973069, 0.9242270285963132, 0.9113240109030503, 0.8989371139175177, 0.8870663376397157, 0.8757116820696442, 0.8648731472073032, 0.8545507330526929, 0.844744439605813, 0.8354542668666638, 0.8266802148352448, 0.8184222835115564, 0.8106804728955987, 0.8034547829873715, 0.7967452137868747, 0.7905517652941083, 0.7848744375090726, 0.7797132304317673, 0.7750681440621927, 0.7709391784003485, 0.767326333446235, 0.7642296091998517, 0.7616490056611993, 0.7595845228302771, 0.7580361607070856, 0.7570039192916245, 0.756487798583894, 0.756487798583894, 0.7570039192916245, 0.7580361607070856, 0.7595845228302771, 0.7616490056611991, 0.7642296091998517, 0.7673263334462348, 0.7709391784003485, 0.7750681440621927, 0.7797132304317673, 0.7848744375090726, 0.7905517652941081, 0.7967452137868745, 0.803454782987371, 0.8106804728955985, 0.8184222835115564, 0.8266802148352446, 0.8354542668666636, 0.8447444396058128, 0.8545507330526927, 0.864873147207303, 0.875711682069644, 0.8870663376397154, 0.8989371139175175, 0.9113240109030498, 0.924227028596313, 0.9376461669973066, 0.9515814261060305, 0.9660328059224852, 0.9810003064466701, 0.996483927678586, 1.0124836696182316, 1.0289995322656087, 1.0460315156207156, 1.0635796196835532, 1.0816438444541219, 1.1002241899324203, 1.1193206561184499, 1.1389332430122092, 1.1590619506136997, 1.1797067789229203, 1.200867727939872, 1.2225447976645536, 1.2447379880969662, 1.2674472992371086, 1.2906727310849821, 1.3144142836405868, 1.3386719569039207, 1.3634457508749858, 1.388735665553781, 1.4145417009403074, 1.4408638570345635, 1.4677021338365508, 1.4950565313462683, 1.5229270495637164, 1.5513136884888947, 1.5802164481218042, 1.6096353284624443, 1.6395703295108142, 1.6700214512669151, 1.700988693730746, 1.7324720569023078, 1.7644715407815994, 1.7969871453686226, 1.8300188706633755, 1.8635667166658596, 1.8976306833760734, 1.9322107707940193, 1.9673069789196949, 2.0029193077531002, 2.039047757294237, 2.0756923275431034, 2.1128530184997016, 2.1505298301640288, 2.188722762536088, 2.2274318156158763, 2.2666569894033963, 2.3063982838986457, 2.3466556991016265, 2.3874292350123385, 2.4287188916307794, 2.470524668956952, 2.512846566990854, 2.5556845857324877, 2.5990387251818508, 2.642908985338946, 2.6872953662037697, 2.7321978677763257, 2.7776164900566105, 2.8235512330446273, 2.870002096740375, 2.9169690811438516, 2.96445218625506, 3.0124514120739976, 3.0609667586006672, 3.1099982258350662, 3.1595458137771963, 3.2096095224270558, 3.260189351784648, 3.311285301849969, 3.3628973726230216, 3.4150255641038045, 3.467669876292317, 3.520830309188561, 3.5745068627925347, 3.6286995371042394, 3.6834083321236735, 3.7386332478508404, 3.7943742842857358, 3.850631441428363, 3.9074047192787207, 3.9646941178368076, 4.0224996371026265, 4.080821277076175, 4.139659037757455, 4.199012919146464, 4.258882921243205, 4.319269044047675, 4.380171287559877, 4.441589651779808, 4.503524136707472, 4.565974742342865, 4.628941468685987, 4.692424315736842, 4.756423283495428 ], [ 4.714101385461525, 4.65010241770294, 4.586619570652086, 4.523652844308963, 4.46120223867357, 4.3992677537459075, 4.337849389525975, 4.276947146013774, 4.216561023209303, 4.156691021112563, 4.097337139723553, 4.038499379042274, 3.9801777390687247, 3.9223722198029067, 3.865082821244819, 3.8083095433944623, 3.752052386251835, 3.6963113498169395, 3.6410864340897726, 3.5863776390703377, 3.532184964758633, 3.4785084111546594, 3.425347978258416, 3.372703666069903, 3.32057547458912, 3.268963403816068, 3.2178674537507463, 3.167287624393155, 3.1172239157432955, 3.0676763278011645, 3.0186448605667655, 2.9701295140400967, 2.922130288221158, 2.87464718310995, 2.8276801987064726, 2.7812293350107264, 2.7352945920227096, 2.689875969742424, 2.6449734681698684, 2.600587087305044, 2.5567168271479495, 2.513362687698586, 2.4705246689569527, 2.42820277092305, 2.386396993596878, 2.3451073369784363, 2.3043338010677252, 2.264076385864744, 2.2243350913694946, 2.1851099175819746, 2.146400864502186, 2.108207932130127, 2.070531120465799, 2.033370429509202, 1.996725859260335, 1.9605974097191985, 1.9249850808857927, 1.8898888727601175, 1.8553087853421717, 1.8212448186319579, 1.7876969726294742, 1.7546652473347208, 1.7221496427476977, 1.6901501588684056, 1.6586667956968437, 1.627699553233013, 1.597248431476912, 1.567313430428542, 1.5378945500879024, 1.508991790454993, 1.4806051515298142, 1.452734633312366, 1.4253802358026486, 1.3985419590006618, 1.3722198029064052, 1.3464137675198788, 1.3211238528410836, 1.2963500588700185, 1.2720923856066841, 1.2483508330510804, 1.2251254012032065, 1.2024160900630636, 1.1802228996306514, 1.1585458299059694, 1.1373848808890181, 1.1167400525797975, 1.096611344978307, 1.0769987580845473, 1.0579022918985181, 1.0393219464202197, 1.0212577216496515, 1.0037096175868134, 0.9866776342317061, 0.9701617715843296, 0.9541620296446833, 0.938678408412768, 0.9237109078885828, 0.9092595280721283, 0.8953242689634042, 0.8819051305624106, 0.8690021128691476, 0.8566152158836151, 0.844744439605813, 0.8333897840357416, 0.8225512491734006, 0.8122288350187903, 0.8024225415719104, 0.7931323688327612, 0.7843583168013422, 0.7761003854776538, 0.7683585748616961, 0.7611328849534689, 0.7544233157529721, 0.7482298672602057, 0.74255253947517, 0.7373913323978647, 0.7327462460282901, 0.7286172803664459, 0.7250044354123324, 0.7219077111659491, 0.7193271076272967, 0.7172626247963745, 0.7157142626731829, 0.7146820212577218, 0.7141659005499914, 0.7141659005499914, 0.7146820212577218, 0.7157142626731829, 0.7172626247963745, 0.7193271076272965, 0.7219077111659491, 0.7250044354123322, 0.7286172803664459, 0.7327462460282901, 0.7373913323978647, 0.74255253947517, 0.7482298672602055, 0.7544233157529718, 0.7611328849534684, 0.7683585748616959, 0.7761003854776538, 0.7843583168013419, 0.793132368832761, 0.8024225415719102, 0.8122288350187901, 0.8225512491734004, 0.8333897840357414, 0.8447444396058128, 0.8566152158836149, 0.8690021128691472, 0.8819051305624104, 0.895324268963404, 0.9092595280721278, 0.9237109078885826, 0.9386784084127675, 0.9541620296446833, 0.9701617715843291, 0.9866776342317061, 1.003709617586813, 1.0212577216496506, 1.0393219464202192, 1.0579022918985177, 1.0769987580845473, 1.0966113449783066, 1.116740052579797, 1.1373848808890177, 1.1585458299059694, 1.180222899630651, 1.2024160900630636, 1.225125401203206, 1.2483508330510795, 1.2720923856066841, 1.296350058870018, 1.3211238528410831, 1.3464137675198784, 1.3722198029064048, 1.398541959000661, 1.4253802358026482, 1.4527346333123656, 1.4806051515298138, 1.508991790454992, 1.5378945500879015, 1.5673134304285417, 1.5972484314769115, 1.6276995532330125, 1.6586667956968433, 1.6901501588684051, 1.7221496427476968, 1.75466524733472, 1.787696972629473, 1.821244818631957, 1.8553087853421708, 1.8898888727601166, 1.9249850808857922, 1.9605974097191976, 1.9967258592603345, 2.0333704295092008, 2.070531120465799, 2.108207932130126, 2.1464008645021853, 2.1851099175819737, 2.2243350913694937, 2.264076385864743, 2.304333801067724, 2.345107336978436, 2.3863969935968767, 2.4282027709230496, 2.4705246689569513, 2.513362687698585, 2.556716827147948, 2.600587087305043, 2.644973468169867, 2.689875969742423, 2.735294592022708, 2.7812293350107247, 2.8276801987064726, 2.874647183109949, 2.9221302882211573, 2.970129514040095, 3.0186448605667646, 3.0676763278011636, 3.1172239157432937, 3.167287624393153, 3.2178674537507455, 3.268963403816066, 3.320575474589119, 3.372703666069902, 3.425347978258414, 3.4785084111546585, 3.532184964758632, 3.586377639070337, 3.641086434089771, 3.6963113498169378, 3.752052386251833, 3.8083095433944605, 3.865082821244818, 3.922372219802905, 3.980177739068724, 4.038499379042272, 4.097337139723552, 4.156691021112561, 4.2165610232093025, 4.2769471460137725, 4.337849389525974, 4.399267753745906, 4.461202238673569, 4.5236528443089625, 4.5866195706520845, 4.650102417702939, 4.714101385461525 ], [ 4.672295608135353, 4.608296640376768, 4.544813793325915, 4.481847066982791, 4.419396461347398, 4.357461976419735, 4.296043612199803, 4.235141368687602, 4.174755245883131, 4.114885243786391, 4.055531362397381, 3.9966936017161014, 3.9383719617425523, 3.8805664424767343, 3.8232770439186474, 3.76650376606829, 3.7102466089256625, 3.654505572490767, 3.5992806567636, 3.5445718617441653, 3.4903791874324614, 3.436702633828487, 3.3835422009322436, 3.3308978887437304, 3.2787696972629483, 3.2271576264898965, 3.176061676424574, 3.1254818470669825, 3.075418138417123, 3.025870550474993, 2.976839083240593, 2.9283237367139243, 2.8803245108949858, 2.832841405783778, 2.7858744213803006, 2.739423557684554, 2.6934888146965372, 2.648070192416252, 2.603167690843696, 2.558781309978872, 2.5149110498217775, 2.4715569103724135, 2.4287188916307807, 2.386396993596878, 2.3445912162707057, 2.3033015596522644, 2.2625280237415533, 2.222270608538572, 2.1825293140433226, 2.143304140255802, 2.1045950871760137, 2.066402154803955, 2.028725343139627, 1.9915646521830297, 1.954920081934163, 1.9187916323930265, 1.8831793035596203, 1.8480830954339451, 1.8135030080159997, 1.779439041305786, 1.7458911953033018, 1.7128594700085489, 1.6803438654215257, 1.6483443815422336, 1.6168610183706718, 1.5858937759068406, 1.55544265415074, 1.5255076531023697, 1.49608877276173, 1.467186013128821, 1.4387993742036418, 1.410928855986194, 1.3835744584764766, 1.3567361816744894, 1.3304140255802328, 1.3046079901937069, 1.2793180755149116, 1.2545442815438466, 1.2302866082805122, 1.206545055724908, 1.1833196238770345, 1.1606103127368916, 1.138417122304479, 1.1167400525797975, 1.0955791035628462, 1.074934275253625, 1.054805567652135, 1.0351929807583753, 1.0160965145723462, 0.9975161690940473, 0.979451944323479, 0.9619038402606412, 0.9448718569055341, 0.9283559942581574, 0.9123562523185114, 0.8968726310865955, 0.8819051305624106, 0.8674537507459561, 0.853518491637232, 0.8400993532362384, 0.8271963355429754, 0.8148094385574429, 0.8029386622796408, 0.7915840067095694, 0.7807454718472284, 0.7704230576926181, 0.7606167642457382, 0.7513265915065888, 0.74255253947517, 0.7342946081514816, 0.7265527975355239, 0.7193271076272967, 0.7126175384267999, 0.7064240899340335, 0.7007467621489978, 0.6955855550716925, 0.6909404687021179, 0.6868115030402737, 0.6831986580861602, 0.6801019338397769, 0.6775213303011245, 0.6754568474702023, 0.6739084853470108, 0.6728762439315497, 0.6723601232238192, 0.6723601232238192, 0.6728762439315497, 0.6739084853470108, 0.6754568474702023, 0.6775213303011243, 0.6801019338397769, 0.68319865808616, 0.6868115030402737, 0.6909404687021179, 0.6955855550716925, 0.7007467621489978, 0.7064240899340333, 0.7126175384267996, 0.7193271076272962, 0.7265527975355237, 0.7342946081514816, 0.7425525394751697, 0.7513265915065888, 0.760616764245738, 0.7704230576926179, 0.7807454718472282, 0.7915840067095692, 0.8029386622796406, 0.8148094385574427, 0.827196335542975, 0.8400993532362382, 0.8535184916372318, 0.8674537507459557, 0.8819051305624104, 0.8968726310865953, 0.9123562523185109, 0.928355994258157, 0.9448718569055337, 0.9619038402606406, 0.9794519443234786, 0.9975161690940471, 1.0160965145723453, 1.0351929807583748, 1.0548055676521346, 1.074934275253625, 1.0955791035628453, 1.116740052579797, 1.1384171223044786, 1.1606103127368912, 1.1833196238770336, 1.2065450557249076, 1.2302866082805117, 1.2545442815438457, 1.2793180755149112, 1.3046079901937064, 1.3304140255802324, 1.3567361816744885, 1.3835744584764762, 1.4109288559861932, 1.4387993742036418, 1.4671860131288197, 1.4960887727617296, 1.5255076531023692, 1.5554426541507391, 1.58589377590684, 1.6168610183706709, 1.6483443815422332, 1.6803438654215248, 1.712859470008548, 1.745891195303301, 1.779439041305785, 1.8135030080159988, 1.8480830954339442, 1.8831793035596203, 1.9187916323930256, 1.9549200819341621, 1.9915646521830288, 2.0287253431396266, 2.0664021548039537, 2.104595087176013, 2.1433041402558013, 2.1825293140433217, 2.2222706085385706, 2.262528023741552, 2.3033015596522635, 2.3445912162707048, 2.386396993596877, 2.4287188916307794, 2.471556910372413, 2.5149110498217757, 2.5587813099788708, 2.603167690843695, 2.6480701924162506, 2.693488814696536, 2.7394235576845527, 2.7858744213803, 2.832841405783777, 2.8803245108949853, 2.928323736713923, 2.976839083240592, 3.025870550474991, 3.075418138417122, 3.1254818470669807, 3.176061676424573, 3.227157626489894, 3.2787696972629465, 3.3308978887437295, 3.383542200932242, 3.436702633828486, 3.4903791874324597, 3.5445718617441653, 3.5992806567635984, 3.6545055724907654, 3.7102466089256607, 3.766503766068288, 3.8232770439186456, 3.8805664424767325, 3.9383719617425523, 3.9966936017160997, 4.05553136239738, 4.114885243786389, 4.17475524588313, 4.2351413686876, 4.296043612199802, 4.357461976419733, 4.419396461347397, 4.48184706698279, 4.544813793325913, 4.608296640376768, 4.672295608135353 ], [ 4.6310059515169115, 4.5670069837583265, 4.5035241367074725, 4.44055741036435, 4.378106804728956, 4.316172319801294, 4.254753955581362, 4.1938517120691605, 4.13346558926469, 4.073595587167949, 4.0142417057789395, 3.95540394509766, 3.897082305124111, 3.839276785858293, 3.7819873873002052, 3.7252141094498485, 3.668956952307221, 3.613215915872326, 3.557991000145159, 3.503282205125724, 3.4490895308140193, 3.3954129772100456, 3.3422525443138023, 3.289608232125289, 3.237480040644506, 3.1858679698714543, 3.1347720198061326, 3.084192190448541, 3.0341284817986818, 2.984580893856551, 2.935549426622152, 2.887034080095483, 2.8390348542765445, 2.791551749165336, 2.744584764761859, 2.6981339010661127, 2.652199158078096, 2.60678053579781, 2.5618780342252547, 2.5174916533604303, 2.4736213932033357, 2.4302672537539722, 2.387429235012339, 2.3451073369784363, 2.3033015596522644, 2.2620119030338226, 2.2212383671231115, 2.18098095192013, 2.141239657424881, 2.102014483637361, 2.0633054305575724, 2.0251124981855133, 1.9874356865211853, 1.9502749955645884, 1.9136304253157213, 1.8775019757745848, 1.841889646941179, 1.8067934388155038, 1.772213351397558, 1.7381493846873441, 1.7046015386848605, 1.6715698133901071, 1.639054208803084, 1.6070547249237919, 1.57557136175223, 1.5446041192883992, 1.5141529975322983, 1.4842179964839284, 1.4547991161432887, 1.4258963565103793, 1.3975097175852005, 1.3696391993677524, 1.342284801858035, 1.315446525056048, 1.2891243689617915, 1.2633183335752651, 1.2380284188964699, 1.2132546249254048, 1.1889969516620704, 1.1652553991064667, 1.1420299672585927, 1.1193206561184499, 1.0971274656860377, 1.0754503959613557, 1.0542894469444044, 1.0336446186351838, 1.0135159110336933, 0.9939033241399338, 0.9748068579539044, 0.9562265124756057, 0.9381622877050375, 0.9206141836421997, 0.9035822002870924, 0.8870663376397159, 0.8710665957000696, 0.8555829744681542, 0.8406154739439691, 0.8261640941275146, 0.8122288350187905, 0.7988096966177969, 0.7859066789245339, 0.7735197819390014, 0.7616490056611993, 0.7502943500911279, 0.7394558152287869, 0.7291334010741766, 0.7193271076272967, 0.7100369348881475, 0.7012628828567284, 0.6930049515330401, 0.6852631409170824, 0.6780374510088552, 0.6713278818083583, 0.665134433315592, 0.6594571055305563, 0.654295898453251, 0.6496508120836764, 0.6455218464218322, 0.6419090014677187, 0.6388122772213354, 0.636231673682683, 0.6341671908517608, 0.6326188287285692, 0.6315865873131081, 0.6310704666053777, 0.6310704666053777, 0.6315865873131081, 0.6326188287285692, 0.6341671908517608, 0.6362316736826827, 0.6388122772213354, 0.6419090014677185, 0.6455218464218322, 0.6496508120836764, 0.654295898453251, 0.6594571055305563, 0.6651344333155917, 0.6713278818083581, 0.6780374510088547, 0.6852631409170822, 0.6930049515330401, 0.7012628828567282, 0.7100369348881472, 0.7193271076272965, 0.7291334010741763, 0.7394558152287867, 0.7502943500911277, 0.7616490056611991, 0.7735197819390012, 0.7859066789245335, 0.7988096966177967, 0.8122288350187903, 0.8261640941275141, 0.8406154739439688, 0.8555829744681538, 0.8710665957000696, 0.8870663376397154, 0.9035822002870924, 0.9206141836421993, 0.9381622877050371, 0.9562265124756055, 0.974806857953904, 0.9939033241399335, 1.0135159110336929, 1.0336446186351833, 1.054289446944404, 1.0754503959613557, 1.0971274656860373, 1.1193206561184499, 1.1420299672585923, 1.1652553991064658, 1.1889969516620704, 1.2132546249254044, 1.2380284188964694, 1.2633183335752647, 1.289124368961791, 1.3154465250560472, 1.3422848018580344, 1.369639199367752, 1.3975097175852, 1.4258963565103784, 1.4547991161432878, 1.484217996483928, 1.5141529975322978, 1.5446041192883988, 1.5755713617522296, 1.6070547249237914, 1.639054208803083, 1.6715698133901062, 1.7046015386848592, 1.7381493846873433, 1.772213351397557, 1.806793438815503, 1.8418896469411785, 1.8775019757745839, 1.9136304253157208, 1.950274995564587, 1.9874356865211853, 2.0251124981855124, 2.0633054305575715, 2.10201448363736, 2.14123965742488, 2.1809809519201293, 2.22123836712311, 2.262011903033822, 2.303301559652263, 2.345107336978436, 2.3874292350123376, 2.4302672537539713, 2.4736213932033344, 2.5174916533604295, 2.5618780342252534, 2.6067805357978093, 2.652199158078094, 2.698133901066111, 2.744584764761859, 2.791551749165335, 2.8390348542765436, 2.8870340800954812, 2.935549426622151, 2.98458089385655, 3.03412848179868, 3.0841921904485394, 3.1347720198061317, 3.1858679698714525, 3.2374800406445052, 3.289608232125288, 3.3422525443138005, 3.3954129772100448, 3.4490895308140184, 3.503282205125723, 3.557991000145157, 3.613215915872324, 3.6689569523072194, 3.7252141094498468, 3.7819873873002043, 3.8392767858582912, 3.89708230512411, 3.9554039450976584, 4.014241705778939, 4.073595587167947, 4.133465589264689, 4.193851712069159, 4.254753955581361, 4.316172319801292, 4.378106804728955, 4.440557410364349, 4.503524136707471, 4.567006983758326, 4.6310059515169115 ], [ 4.5902324156062, 4.526233447847615, 4.4627506007967614, 4.399783874453639, 4.337333268818245, 4.275398783890583, 4.2139804196706505, 4.153078176158449, 4.092692053353979, 4.032822051257238, 3.9734681698682284, 3.914630409186949, 3.8563087692134, 3.798503249947582, 3.741213851389494, 3.6844405735391375, 3.62818341639651, 3.5724423799616147, 3.517217464234448, 3.462508669215013, 3.408315994903308, 3.3546394412993346, 3.301479008403091, 3.248834696214578, 3.196706504733795, 3.145094433960743, 3.0939984838954215, 3.04341865453783, 2.9933549458879707, 2.9438073579458397, 2.8947758907114407, 2.846260544184772, 2.7982613183658334, 2.750778213254625, 2.7038112288511478, 2.6573603651554016, 2.611425622167385, 2.566006999887099, 2.5211044983145436, 2.4767181174497193, 2.4328478572926246, 2.389493717843261, 2.346655699101628, 2.3043338010677252, 2.2625280237415533, 2.2212383671231115, 2.1804648312124004, 2.140207416009419, 2.10046612151417, 2.06124094772665, 2.0225318946468613, 1.9843389622748022, 1.9466621506104742, 1.9095014596538773, 1.8728568894050102, 1.8367284398638737, 1.8011161110304679, 1.7660199029047927, 1.731439815486847, 1.697375848776633, 1.6638280027741494, 1.630796277479396, 1.5982806728923729, 1.5662811890130808, 1.534797825841519, 1.5038305833776882, 1.4733794616215872, 1.4434444605732173, 1.4140255802325776, 1.3851228205996682, 1.3567361816744894, 1.3288656634570413, 1.3015112659473238, 1.274672989145337, 1.2483508330510804, 1.222544797664554, 1.1972548829857588, 1.1724810890146937, 1.1482234157513593, 1.1244818631957556, 1.1012564313478816, 1.0785471202077388, 1.0563539297753266, 1.0346768600506446, 1.0135159110336933, 0.9928710827244727, 0.9727423751229825, 0.9531297882292227, 0.9340333220431933, 0.9154529765648947, 0.8973887517943264, 0.8798406477314886, 0.8628086643763813, 0.8462928017290048, 0.8302930597893585, 0.8148094385574431, 0.799841938033258, 0.7853905582168035, 0.7714552991080794, 0.7580361607070858, 0.7451331430138228, 0.7327462460282903, 0.7208754697504882, 0.7095208141804168, 0.6986822793180758, 0.6883598651634655, 0.6785535717165856, 0.6692633989774364, 0.6604893469460174, 0.652231415622329, 0.6444896050063713, 0.6372639150981441, 0.6305543458976473, 0.6243608974048809, 0.6186835696198452, 0.6135223625425399, 0.6088772761729653, 0.6047483105111211, 0.6011354655570076, 0.5980387413106243, 0.5954581377719719, 0.5933936549410497, 0.5918452928178581, 0.590813051402397, 0.5902969306946666, 0.5902969306946666, 0.590813051402397, 0.5918452928178581, 0.5933936549410497, 0.5954581377719717, 0.5980387413106243, 0.6011354655570074, 0.6047483105111211, 0.6088772761729653, 0.6135223625425399, 0.6186835696198452, 0.6243608974048807, 0.630554345897647, 0.6372639150981436, 0.6444896050063711, 0.652231415622329, 0.6604893469460171, 0.6692633989774361, 0.6785535717165854, 0.6883598651634653, 0.6986822793180756, 0.7095208141804166, 0.720875469750488, 0.7327462460282901, 0.7451331430138224, 0.7580361607070856, 0.7714552991080792, 0.785390558216803, 0.7998419380332578, 0.8148094385574427, 0.8302930597893585, 0.8462928017290043, 0.8628086643763813, 0.8798406477314882, 0.897388751794326, 0.9154529765648944, 0.9340333220431929, 0.9531297882292225, 0.9727423751229818, 0.9928710827244724, 1.0135159110336929, 1.0346768600506446, 1.0563539297753262, 1.0785471202077388, 1.1012564313478812, 1.1244818631957547, 1.1482234157513593, 1.1724810890146933, 1.1972548829857583, 1.2225447976645536, 1.24835083305108, 1.274672989145336, 1.3015112659473234, 1.3288656634570408, 1.356736181674489, 1.3851228205996673, 1.4140255802325767, 1.4434444605732168, 1.4733794616215867, 1.5038305833776877, 1.5347978258415185, 1.5662811890130803, 1.598280672892372, 1.6307962774793952, 1.663828002774148, 1.6973758487766322, 1.731439815486846, 1.7660199029047918, 1.8011161110304674, 1.8367284398638728, 1.8728568894050097, 1.909501459653876, 1.9466621506104742, 1.9843389622748013, 2.0225318946468605, 2.061240947726649, 2.100466121514169, 2.140207416009418, 2.180464831212399, 2.221238367123111, 2.262528023741552, 2.304333801067725, 2.3466556991016265, 2.3894937178432603, 2.4328478572926233, 2.4767181174497184, 2.5211044983145423, 2.5660069998870982, 2.611425622167383, 2.6573603651554, 2.7038112288511478, 2.750778213254624, 2.7982613183658325, 2.84626054418477, 2.89477589071144, 2.943807357945839, 2.993354945887969, 3.0434186545378283, 3.0939984838954206, 3.1450944339607414, 3.196706504733794, 3.248834696214577, 3.3014790084030894, 3.3546394412993337, 3.4083159949033073, 3.462508669215012, 3.517217464234446, 3.572442379961613, 3.6281834163965083, 3.6844405735391357, 3.7412138513894933, 3.79850324994758, 3.856308769213399, 3.9146304091869473, 3.9734681698682275, 4.032822051257236, 4.092692053353978, 4.153078176158448, 4.21398041967065, 4.275398783890581, 4.337333268818244, 4.399783874453638, 4.46275060079676, 4.5262334478476145, 4.5902324156062 ], [ 4.549975000403219, 4.4859760326446345, 4.422493185593781, 4.359526459250658, 4.297075853615264, 4.235141368687602, 4.17372300446767, 4.112820760955469, 4.052434638150997, 3.992564636054257, 3.9332107546652466, 3.874372993983968, 3.816051354010419, 3.758245834744601, 3.7009564361865133, 3.6441831583361566, 3.5879260011935283, 3.532184964758633, 3.476960049031467, 3.422251254012032, 3.3680585797003273, 3.3143820260963537, 3.2612215932001103, 3.2085772810115962, 3.156449089530814, 3.1048370187577623, 3.0537410686924407, 3.0031612393348492, 2.9530975306849894, 2.903549942742859, 2.8545184755084594, 2.8060031289817906, 2.758003903162852, 2.710520798051644, 2.663553813648167, 2.6171029499524203, 2.5711682069644035, 2.5257495846841183, 2.4808470831115623, 2.4364607022467384, 2.3925904420896433, 2.34923630264028, 2.3063982838986465, 2.264076385864744, 2.222270608538572, 2.18098095192013, 2.140207416009419, 2.0999500008064382, 2.0602087063111885, 2.020983532523669, 1.9822744794438805, 1.9440815470718213, 1.9064047354074933, 1.869244044450896, 1.8325994742020288, 1.7964710246608924, 1.760858695827487, 1.7257624877018114, 1.691182400283866, 1.6571184335736522, 1.6235705875711681, 1.5905388622764152, 1.558023257689392, 1.5260237738101, 1.494540410638538, 1.4635731681747068, 1.4331220464186063, 1.403187045370236, 1.3737681650295963, 1.3448654053966873, 1.3164787664715085, 1.2886082482540604, 1.2612538507443425, 1.2344155739423557, 1.208093417848099, 1.1822873824615732, 1.1569974677827775, 1.1322236738117128, 1.1079660005483785, 1.0842244479927743, 1.0609990161449008, 1.038289705004758, 1.0160965145723457, 0.9944194448476638, 0.9732584958307124, 0.9526136675214916, 0.9324849599200014, 0.9128723730262416, 0.8937759068402122, 0.8751955613619136, 0.8571313365913453, 0.8395832325285075, 0.8225512491734004, 0.8060353865260237, 0.7900356445863777, 0.7745520233544618, 0.7595845228302769, 0.7451331430138224, 0.7311978839050983, 0.7177787455041047, 0.7048757278108417, 0.6924888308253092, 0.6806180545475071, 0.6692633989774357, 0.6584248641150947, 0.6481024499604844, 0.6382961565136045, 0.629005983774455, 0.6202319317430363, 0.6119740004193479, 0.6042321898033902, 0.597006499895163, 0.5902969306946662, 0.5841034822018998, 0.5784261544168641, 0.5732649473395588, 0.5686198609699842, 0.56449089530814, 0.5608780503540265, 0.5577813261076432, 0.5552007225689908, 0.5531362397380686, 0.551587877614877, 0.5505556361994159, 0.5500395154916855, 0.5500395154916855, 0.5505556361994159, 0.551587877614877, 0.5531362397380686, 0.5552007225689906, 0.5577813261076432, 0.5608780503540263, 0.56449089530814, 0.5686198609699842, 0.5732649473395588, 0.5784261544168641, 0.5841034822018996, 0.5902969306946659, 0.5970064998951625, 0.60423218980339, 0.6119740004193479, 0.620231931743036, 0.629005983774455, 0.6382961565136043, 0.6481024499604842, 0.6584248641150945, 0.6692633989774355, 0.6806180545475069, 0.692488830825309, 0.7048757278108413, 0.7177787455041045, 0.7311978839050981, 0.7451331430138219, 0.7595845228302767, 0.7745520233544616, 0.7900356445863772, 0.8060353865260232, 0.8225512491734, 0.8395832325285069, 0.8571313365913449, 0.8751955613619133, 0.8937759068402118, 0.9128723730262411, 0.9324849599200007, 0.9526136675214913, 0.9732584958307118, 0.9944194448476633, 1.0160965145723448, 1.0382897050047575, 1.0609990161449003, 1.0842244479927738, 1.107966000548378, 1.132223673811712, 1.1569974677827775, 1.1822873824615723, 1.208093417848099, 1.2344155739423552, 1.2612538507443425, 1.2886082482540595, 1.316478766471508, 1.3448654053966864, 1.3737681650295954, 1.4031870453702355, 1.4331220464186054, 1.4635731681747064, 1.4945404106385372, 1.5260237738100995, 1.558023257689391, 1.5905388622764143, 1.6235705875711668, 1.6571184335736513, 1.6911824002838651, 1.7257624877018105, 1.760858695827486, 1.7964710246608915, 1.8325994742020288, 1.8692440444508946, 1.906404735407493, 1.9440815470718205, 1.9822744794438791, 2.0209835325236676, 2.0602087063111876, 2.0999500008064373, 2.140207416009418, 2.1809809519201298, 2.2222706085385706, 2.2640763858647435, 2.3063982838986457, 2.3492363026402794, 2.3925904420896424, 2.436460702246737, 2.480847083111561, 2.525749584684117, 2.571168206964402, 2.617102949952419, 2.6635538136481665, 2.7105207980516433, 2.7580039031628516, 2.8060031289817893, 2.8545184755084585, 2.9035499427428575, 2.953097530684988, 3.0031612393348475, 3.053741068692439, 3.1048370187577596, 3.1564490895308133, 3.2085772810115962, 3.2612215932001085, 3.314382026096352, 3.3680585797003264, 3.422251254012031, 3.476960049031465, 3.532184964758631, 3.5879260011935266, 3.644183158336155, 3.7009564361865124, 3.7582458347445993, 3.816051354010418, 3.8743729939839664, 3.9332107546652466, 3.9925646360542553, 4.052434638150997, 4.112820760955467, 4.173723004467668, 4.2351413686876, 4.297075853615263, 4.359526459250656, 4.422493185593779, 4.485976032644634, 4.549975000403219 ], [ 4.51023370590797, 4.446234738149385, 4.382751891098531, 4.319785164755408, 4.2573345591200145, 4.195400074192352, 4.13398170997242, 4.073079466460219, 4.012693343655748, 3.9528233415590073, 3.8934694601699977, 3.8346316994887184, 3.7763100595151693, 3.7185045402493513, 3.6612151416912635, 3.604441863840907, 3.5481847066982795, 3.492443670263384, 3.437218754536217, 3.3825099595167822, 3.3283172852050775, 3.274640731601104, 3.2214802987048605, 3.1688359865163473, 3.1167077950355644, 3.0650957242625125, 3.013999774197191, 2.9634199448395995, 2.91335623618974, 2.863808648247609, 2.81477718101321, 2.7662618344865413, 2.7182626086676027, 2.6707795035563944, 2.623812519152917, 2.577361655457171, 2.531426912469154, 2.4860082901888685, 2.441105788616313, 2.3967194077514886, 2.352849147594394, 2.3094950081450305, 2.266656989403397, 2.2243350913694946, 2.1825293140433226, 2.141239657424881, 2.10046612151417, 2.0602087063111885, 2.020467411815939, 1.9812422380284191, 1.9425331849486307, 1.9043402525765716, 1.8666634409122436, 1.8295027499556467, 1.7928581797067795, 1.756729730165643, 1.7211174013322372, 1.686021193206562, 1.6514411057886162, 1.6173771390784024, 1.5838292930759188, 1.5507975677811654, 1.5182819631941422, 1.4862824793148501, 1.4547991161432883, 1.4238318736794575, 1.3933807519233565, 1.3634457508749867, 1.334026870534347, 1.3051241109014375, 1.2767374719762588, 1.2488669537588106, 1.2215125562490932, 1.1946742794471064, 1.1683521233528498, 1.1425460879663234, 1.1172561732875281, 1.092482379316463, 1.0682247060531287, 1.044483153497525, 1.021257721649651, 0.9985484105095084, 0.976355220077096, 0.954678150352414, 0.9335172013354627, 0.912872373026242, 0.8927436654247518, 0.873131078530992, 0.8540346123449627, 0.835454266866664, 0.8173900420960958, 0.799841938033258, 0.7828099546781506, 0.7662940920307741, 0.7502943500911279, 0.7348107288592125, 0.7198432283350273, 0.7053918485185728, 0.6914565894098488, 0.6780374510088552, 0.6651344333155922, 0.6527475363300597, 0.6408767600522576, 0.6295221044821862, 0.6186835696198452, 0.6083611554652348, 0.598554862018355, 0.5892646892792057, 0.5804906372477867, 0.5722327059240984, 0.5644908953081407, 0.5572652053999134, 0.5505556361994166, 0.5443621877066502, 0.5386848599216145, 0.5335236528443092, 0.5288785664747346, 0.5247496008128905, 0.521136755858777, 0.5180400316123936, 0.5154594280737412, 0.513394945242819, 0.5118465831196275, 0.5108143417041664, 0.510298220996436, 0.510298220996436, 0.5108143417041664, 0.5118465831196275, 0.513394945242819, 0.515459428073741, 0.5180400316123936, 0.5211367558587767, 0.5247496008128905, 0.5288785664747346, 0.5335236528443092, 0.5386848599216145, 0.54436218770665, 0.5505556361994164, 0.557265205399913, 0.5644908953081405, 0.5722327059240984, 0.5804906372477865, 0.5892646892792055, 0.5985548620183547, 0.6083611554652346, 0.6186835696198449, 0.6295221044821859, 0.6408767600522574, 0.6527475363300594, 0.6651344333155917, 0.6780374510088549, 0.6914565894098486, 0.7053918485185724, 0.7198432283350271, 0.7348107288592121, 0.7502943500911279, 0.7662940920307737, 0.7828099546781506, 0.7998419380332575, 0.8173900420960953, 0.8354542668666638, 0.8540346123449623, 0.8731310785309918, 0.8927436654247511, 0.9128723730262418, 0.9335172013354622, 0.9546781503524138, 0.9763552200770953, 0.9985484105095079, 1.0212577216496506, 1.044483153497524, 1.0682247060531287, 1.0924823793164626, 1.1172561732875277, 1.142546087966323, 1.1683521233528493, 1.1946742794471055, 1.2215125562490927, 1.2488669537588102, 1.2767374719762583, 1.3051241109014367, 1.334026870534346, 1.3634457508749862, 1.393380751923356, 1.423831873679457, 1.4547991161432878, 1.4862824793148497, 1.5182819631941413, 1.5507975677811645, 1.5838292930759175, 1.6173771390784015, 1.6514411057886154, 1.6860211932065612, 1.7211174013322368, 1.7567297301656422, 1.792858179706779, 1.8295027499556453, 1.8666634409122436, 1.9043402525765707, 1.9425331849486298, 1.9812422380284183, 2.0204674118159383, 2.0602087063111876, 2.1004661215141684, 2.1412396574248804, 2.1825293140433213, 2.224335091369494, 2.266656989403396, 2.3094950081450296, 2.3528491475943927, 2.3967194077514877, 2.4411057886163117, 2.4860082901888676, 2.5314269124691524, 2.577361655457169, 2.623812519152917, 2.6707795035563935, 2.718262608667602, 2.7662618344865395, 2.814777181013209, 2.863808648247608, 2.9133562361897383, 2.9634199448395977, 3.01399977419719, 3.0650957242625108, 3.1167077950355635, 3.1688359865163465, 3.2214802987048587, 3.274640731601103, 3.3283172852050766, 3.3825099595167814, 3.4372187545362154, 3.4924436702633823, 3.5481847066982777, 3.604441863840905, 3.6612151416912626, 3.7185045402493495, 3.7763100595151684, 3.8346316994887166, 3.893469460169997, 3.9528233415590055, 4.012693343655747, 4.073079466460217, 4.133981709972419, 4.19540007419235, 4.257334559120014, 4.319785164755407, 4.382751891098529, 4.446234738149384, 4.51023370590797 ], [ 4.471008532120449, 4.407009564361865, 4.343526717311011, 4.2805599909678875, 4.218109385332495, 4.156174900404832, 4.094756536184899, 4.033854292672698, 3.9734681698682275, 3.9135981677714877, 3.8542442863824773, 3.795406525701198, 3.7370848857276497, 3.6792793664618317, 3.621989967903744, 3.5652166900533864, 3.508959532910759, 3.4532184964758637, 3.3979935807486976, 3.3432847857292627, 3.289092111417558, 3.2354155578135835, 3.18225512491734, 3.129610812728827, 3.077482621248045, 3.025870550474993, 2.9747746004096713, 2.92419477105208, 2.8741310624022196, 2.8245834744600895, 2.7755520072256896, 2.727036660699021, 2.6790374348800823, 2.631554329768875, 2.5845873453653976, 2.5381364816696506, 2.4922017386816337, 2.446783116401349, 2.4018806148287926, 2.357494233963969, 2.313623973806874, 2.27026983435751, 2.227431815615877, 2.1851099175819746, 2.143304140255802, 2.102014483637361, 2.06124094772665, 2.020983532523669, 1.9812422380284191, 1.9420170642408991, 1.9033080111611107, 1.865115078789052, 1.827438267124724, 1.7902775761681262, 1.7536330059192595, 1.717504556378123, 1.6818922275447172, 1.6467960194190416, 1.6122159320010967, 1.5781519652908829, 1.5446041192883984, 1.5115723939936458, 1.4790567894066227, 1.4470573055273301, 1.4155739423557687, 1.3846066998919375, 1.3541555781358365, 1.3242205770874667, 1.294801696746827, 1.265898937113918, 1.2375122981887388, 1.2096417799712906, 1.1822873824615732, 1.155449105659586, 1.1291269495653298, 1.1033209141788038, 1.0780309995000081, 1.053257205528943, 1.0289995322656087, 1.005257979710005, 0.982032547862131, 0.9593232367219884, 0.937130046289576, 0.915452976564894, 0.8942920275479427, 0.873647199238722, 0.8535184916372318, 0.833905904743472, 0.8148094385574427, 0.796229093079144, 0.7781648683085758, 0.760616764245738, 0.7435847808906306, 0.7270689182432541, 0.7110691763036079, 0.6955855550716925, 0.6806180545475073, 0.6661666747310528, 0.6522314156223288, 0.6388122772213352, 0.6259092595280722, 0.6135223625425397, 0.6016515862647376, 0.5902969306946662, 0.5794583958323252, 0.5691359816777148, 0.559329688230835, 0.5500395154916857, 0.5412654634602667, 0.5330075321365784, 0.5252657215206207, 0.5180400316123934, 0.5113304624118966, 0.5051370139191302, 0.4994596861340945, 0.49429847905678925, 0.48965339268721464, 0.48552442702537046, 0.48191158207125695, 0.47881485782487365, 0.47623425428622124, 0.47416977145529904, 0.4726214093321075, 0.4715891679166464, 0.47107304720891596, 0.47107304720891596, 0.4715891679166464, 0.4726214093321075, 0.47416977145529904, 0.476234254286221, 0.47881485782487365, 0.4819115820712567, 0.48552442702537046, 0.48965339268721464, 0.49429847905678925, 0.4994596861340945, 0.50513701391913, 0.5113304624118964, 0.518040031612393, 0.5252657215206205, 0.5330075321365784, 0.5412654634602665, 0.5500395154916855, 0.5593296882308347, 0.5691359816777146, 0.579458395832325, 0.5902969306946659, 0.6016515862647374, 0.6135223625425394, 0.6259092595280717, 0.6388122772213349, 0.6522314156223286, 0.6661666747310524, 0.6806180545475071, 0.6955855550716921, 0.7110691763036079, 0.7270689182432537, 0.7435847808906306, 0.7606167642457375, 0.7781648683085753, 0.7962290930791438, 0.8148094385574423, 0.8339059047434718, 0.8535184916372311, 0.8736471992387218, 0.8942920275479422, 0.9154529765648938, 0.9371300462895753, 0.9593232367219879, 0.9820325478621306, 1.005257979710004, 1.0289995322656083, 1.0532572055289426, 1.0780309995000077, 1.103320914178803, 1.1291269495653293, 1.1554491056595855, 1.1822873824615727, 1.2096417799712897, 1.2375122981887383, 1.2658989371139167, 1.294801696746826, 1.3242205770874662, 1.3541555781358356, 1.384606699891937, 1.4155739423557678, 1.4470573055273297, 1.4790567894066218, 1.511572393993645, 1.5446041192883975, 1.578151965290882, 1.6122159320010958, 1.6467960194190407, 1.6818922275447168, 1.7175045563781222, 1.753633005919259, 1.7902775761681253, 1.8274382671247231, 1.8651150787890507, 1.9033080111611094, 1.9420170642408978, 1.9812422380284183, 2.0209835325236676, 2.061240947726649, 2.10201448363736, 2.1433041402558013, 2.1851099175819737, 2.2274318156158763, 2.27026983435751, 2.3136239738068727, 2.3574942339639673, 2.4018806148287917, 2.446783116401347, 2.492201738681633, 2.5381364816696497, 2.5845873453653967, 2.631554329768874, 2.6790374348800823, 2.72703666069902, 2.7755520072256887, 2.8245834744600877, 2.8741310624022187, 2.924194771052078, 2.9747746004096696, 3.0258705504749903, 3.077482621248043, 3.129610812728826, 3.1822551249173383, 3.2354155578135826, 3.289092111417556, 3.343284785729262, 3.397993580748696, 3.453218496475862, 3.5089595329107572, 3.5652166900533846, 3.621989967903743, 3.67927936646183, 3.737084885727649, 3.795406525701197, 3.8542442863824764, 3.913598167771486, 3.9734681698682266, 4.033854292672697, 4.0947565361848985, 4.15617490040483, 4.218109385332493, 4.280559990967887, 4.3435267173110095, 4.407009564361864, 4.471008532120449 ], [ 4.432299479040661, 4.368300511282077, 4.304817664231223, 4.241850937888099, 4.1794003322527065, 4.117465847325043, 4.056047483105111, 3.99514523959291, 3.934759116788439, 3.8748891146916993, 3.815535233302689, 3.7566974726214095, 3.6983758326478613, 3.6405703133820433, 3.5832809148239555, 3.526507636973598, 3.4702504798309706, 3.414509443396075, 3.359284527668909, 3.3045757326494742, 3.2503830583377695, 3.196706504733795, 3.1435460718375516, 3.0909017596490385, 3.0387735681682564, 2.9871614973952045, 2.936065547329883, 2.8854857179722915, 2.835422009322431, 2.785874421380301, 2.736842954145901, 2.6883276076192324, 2.640328381800294, 2.5928452766890864, 2.545878292285609, 2.499427428589862, 2.4534926856018453, 2.4080740633215605, 2.363171561749004, 2.3187851808841806, 2.2749149207270856, 2.2315607812777216, 2.1887227625360888, 2.146400864502186, 2.1045950871760137, 2.0633054305575724, 2.0225318946468613, 1.9822744794438805, 1.9425331849486307, 1.9033080111611107, 1.8645989580813223, 1.8264060257092636, 1.7887292140449356, 1.7515685230883378, 1.714923952839471, 1.6787955032983346, 1.6431831744649288, 1.6080869663392532, 1.5735068789213082, 1.5394429122110944, 1.50589506620861, 1.4728633409138574, 1.4403477363268342, 1.4083482524475417, 1.3768648892759803, 1.345897646812149, 1.315446525056048, 1.2855115240076782, 1.2560926436670385, 1.2271898840341295, 1.1988032451089503, 1.1709327268915022, 1.1435783293817847, 1.1167400525797975, 1.0904178964855413, 1.0646118610990154, 1.0393219464202197, 1.0145481524491546, 0.9902904791858202, 0.9665489266302165, 0.9433234947823426, 0.9206141836421999, 0.8984209932097875, 0.8767439234851055, 0.8555829744681542, 0.8349381461589336, 0.8148094385574434, 0.7951968516636836, 0.7761003854776543, 0.7575200399993556, 0.7394558152287873, 0.7219077111659495, 0.7048757278108422, 0.6883598651634657, 0.6723601232238194, 0.6568765019919041, 0.6419090014677189, 0.6274576216512644, 0.6135223625425403, 0.6001032241415467, 0.5872002064482837, 0.5748133094627512, 0.5629425331849491, 0.5515878776148777, 0.5407493427525367, 0.5304269285979264, 0.5206206351510465, 0.5113304624118973, 0.5025564103804783, 0.4942984790567899, 0.48655666844083223, 0.479330978532605, 0.47262140933210817, 0.4664279608393418, 0.4607506330543061, 0.4555894259770008, 0.4509443396074262, 0.446815373945582, 0.4432025289914685, 0.4401058047450852, 0.4375252012064328, 0.4354607183755106, 0.43391235625231905, 0.43288011483685795, 0.4323639941291275, 0.4323639941291275, 0.43288011483685795, 0.43391235625231905, 0.4354607183755106, 0.43752520120643257, 0.4401058047450852, 0.4432025289914683, 0.446815373945582, 0.4509443396074262, 0.4555894259770008, 0.4607506330543061, 0.46642796083934157, 0.47262140933210794, 0.47933097853260453, 0.486556668440832, 0.4942984790567899, 0.502556410380478, 0.5113304624118971, 0.5206206351510463, 0.5304269285979262, 0.5407493427525365, 0.5515878776148775, 0.5629425331849489, 0.574813309462751, 0.5872002064482833, 0.6001032241415465, 0.6135223625425401, 0.627457621651264, 0.6419090014677187, 0.6568765019919036, 0.6723601232238194, 0.6883598651634653, 0.7048757278108422, 0.7219077111659491, 0.7394558152287869, 0.7575200399993554, 0.7761003854776538, 0.7951968516636834, 0.8148094385574427, 0.8349381461589334, 0.8555829744681538, 0.8767439234851053, 0.8984209932097869, 0.9206141836421995, 0.9433234947823421, 0.9665489266302156, 0.99029047918582, 1.0145481524491542, 1.0393219464202192, 1.0646118610990145, 1.0904178964855409, 1.116740052579797, 1.1435783293817843, 1.1709327268915013, 1.1988032451089499, 1.2271898840341282, 1.2560926436670377, 1.2855115240076778, 1.3154465250560472, 1.3458976468121486, 1.3768648892759794, 1.4083482524475412, 1.4403477363268333, 1.4728633409138565, 1.505895066208609, 1.5394429122110935, 1.5735068789213074, 1.6080869663392523, 1.6431831744649283, 1.6787955032983337, 1.7149239528394706, 1.7515685230883369, 1.7887292140449347, 1.8264060257092622, 1.864598958081321, 1.9033080111611094, 1.9425331849486298, 1.9822744794438791, 2.0225318946468605, 2.0633054305575715, 2.104595087176013, 2.1464008645021853, 2.188722762536088, 2.2315607812777216, 2.2749149207270842, 2.318785180884179, 2.3631715617490032, 2.4080740633215587, 2.4534926856018444, 2.499427428589861, 2.5458782922856082, 2.5928452766890855, 2.640328381800294, 2.6883276076192315, 2.7368429541459003, 2.7858744213802993, 2.8354220093224303, 2.8854857179722897, 2.936065547329881, 2.987161497395202, 3.0387735681682546, 3.0909017596490376, 3.14354607183755, 3.196706504733794, 3.2503830583377677, 3.3045757326494734, 3.3592845276689074, 3.4145094433960734, 3.470250479830969, 3.526507636973596, 3.5832809148239546, 3.6405703133820415, 3.6983758326478604, 3.7566974726214086, 3.815535233302688, 3.8748891146916975, 3.934759116788438, 3.995145239592908, 4.05604748310511, 4.117465847325041, 4.179400332252705, 4.241850937888098, 4.304817664231221, 4.368300511282076, 4.432299479040661 ], [ 4.394106546668603, 4.330107578910018, 4.266624731859164, 4.20365800551604, 4.141207399880647, 4.079272914952984, 4.017854550733052, 3.956952307220851, 3.896566184416381, 3.83669618231964, 3.7773423009306306, 3.7185045402493504, 3.660182900275802, 3.602377381009984, 3.5450879824518964, 3.488314704601539, 3.4320575474589123, 3.376316511024017, 3.32109159529685, 3.266382800277415, 3.2121901259657104, 3.158513572361736, 3.1053531394654925, 3.0527088272769802, 3.0005806357961973, 2.9489685650231454, 2.897872614957824, 2.8472927856002324, 2.7972290769503725, 2.747681489008242, 2.6986500217738425, 2.6501346752471737, 2.602135449428235, 2.5546523443170273, 2.50768535991355, 2.4612344962178034, 2.4152997532297866, 2.3698811309495014, 2.3249786293769454, 2.2805922485121215, 2.2367219883550264, 2.193367848905663, 2.1505298301640297, 2.108207932130127, 2.066402154803955, 2.0251124981855133, 1.9843389622748022, 1.9440815470718213, 1.9043402525765716, 1.865115078789052, 1.8264060257092636, 1.7882130933372045, 1.7505362816728764, 1.713375590716279, 1.676731020467412, 1.6406025709262755, 1.6049902420928701, 1.5698940339671945, 1.5353139465492491, 1.5012499798390353, 1.4677021338365512, 1.4346704085417983, 1.402154803954775, 1.370155320075483, 1.3386719569039212, 1.30770471444009, 1.2772535926839894, 1.247318591635619, 1.2178997112949794, 1.1889969516620704, 1.1606103127368916, 1.1327397945194435, 1.1053853970097256, 1.0785471202077388, 1.0522249641134822, 1.0264189287269563, 1.0011290140481606, 0.976355220077096, 0.9520975468137616, 0.9283559942581574, 0.9051305624102839, 0.882421251270141, 0.8602280608377286, 0.8385509911130469, 0.8173900420960956, 0.7967452137868747, 0.7766165061853845, 0.7570039192916247, 0.7379074531055954, 0.7193271076272967, 0.7012628828567284, 0.6837147787938906, 0.6666827954387835, 0.6501669327914068, 0.6341671908517608, 0.6186835696198449, 0.60371606909566, 0.5892646892792055, 0.5753294301704814, 0.5619102917694878, 0.5490072740762248, 0.5366203770906923, 0.5247496008128902, 0.5133949452428188, 0.5025564103804778, 0.4922339962258675, 0.4824277027789876, 0.47313753003983816, 0.4643634780084194, 0.456105546684731, 0.44836373606877333, 0.4411380461605461, 0.43442847696004927, 0.4282350284672829, 0.4225577006822472, 0.4173964936049419, 0.4127514072353673, 0.4086224415735231, 0.4050095966194096, 0.4019128723730263, 0.3993322688343739, 0.3972677860034517, 0.39571942388026016, 0.39468718246479906, 0.3941710617570686, 0.3941710617570686, 0.39468718246479906, 0.39571942388026016, 0.3972677860034517, 0.39933226883437367, 0.4019128723730263, 0.4050095966194094, 0.4086224415735231, 0.4127514072353673, 0.4173964936049419, 0.4225577006822472, 0.4282350284672827, 0.43442847696004905, 0.44113804616054564, 0.4483637360687731, 0.456105546684731, 0.46436347800841915, 0.47313753003983816, 0.4824277027789874, 0.4922339962258673, 0.5025564103804776, 0.5133949452428186, 0.52474960081289, 0.5366203770906921, 0.5490072740762244, 0.5619102917694876, 0.5753294301704812, 0.5892646892792051, 0.6037160690956598, 0.6186835696198447, 0.6341671908517603, 0.6501669327914064, 0.6666827954387831, 0.68371477879389, 0.701262882856728, 0.7193271076272965, 0.7379074531055949, 0.7570039192916242, 0.7766165061853838, 0.7967452137868745, 0.8173900420960949, 0.8385509911130464, 0.860228060837728, 0.8824212512701406, 0.9051305624102832, 0.928355994258157, 0.9520975468137611, 0.9763552200770951, 1.0011290140481606, 1.0264189287269554, 1.0522249641134822, 1.0785471202077384, 1.1053853970097256, 1.1327397945194426, 1.1606103127368912, 1.1889969516620695, 1.2178997112949785, 1.2473185916356186, 1.2772535926839885, 1.3077047144400895, 1.3386719569039203, 1.3701553200754826, 1.4021548039547742, 1.4346704085417974, 1.46770213383655, 1.5012499798390344, 1.5353139465492482, 1.5698940339671936, 1.6049902420928692, 1.6406025709262746, 1.676731020467412, 1.7133755907162778, 1.750536281672876, 1.7882130933372036, 1.8264060257092622, 1.8651150787890507, 1.9043402525765707, 1.9440815470718205, 1.9843389622748013, 2.025112498185513, 2.0664021548039537, 2.1082079321301266, 2.1505298301640288, 2.1933678489056625, 2.2367219883550256, 2.28059224851212, 2.324978629376944, 2.3698811309495, 2.4152997532297853, 2.461234496217802, 2.5076853599135496, 2.5546523443170264, 2.6021354494282347, 2.6501346752471724, 2.6986500217738416, 2.7476814890082406, 2.797229076950371, 2.8472927856002306, 2.8978726149578224, 2.948968565023143, 3.0005806357961955, 3.0527088272769785, 3.1053531394654907, 3.158513572361736, 3.2121901259657086, 3.2663828002774142, 3.3210915952968483, 3.376316511024015, 3.4320575474589106, 3.488314704601537, 3.5450879824518955, 3.6023773810099824, 3.6601829002758013, 3.7185045402493495, 3.777342300930629, 3.8366961823196384, 3.896566184416379, 3.956952307220849, 4.017854550733052, 4.079272914952982, 4.141207399880646, 4.20365800551604, 4.266624731859162, 4.330107578910017, 4.394106546668603 ], [ 4.356429735004275, 4.29243076724569, 4.228947920194836, 4.165981193851712, 4.103530588216319, 4.041596103288656, 3.980177739068724, 3.9192754955565228, 3.858889372752053, 3.799019370655312, 3.7396654892663026, 3.6808277285850224, 3.622506088611474, 3.564700569345656, 3.5074111707875684, 3.450637892937211, 3.3943807357945843, 3.338639699359689, 3.283414783632522, 3.228705988613087, 3.1745133143013824, 3.120836760697408, 3.0676763278011645, 3.015032015612652, 2.9629038241318693, 2.9112917533588174, 2.8601958032934958, 2.8096159739359043, 2.7595522652860445, 2.710004677343914, 2.6609732101095145, 2.6124578635828457, 2.564458637763907, 2.5169755326526992, 2.470008548249222, 2.4235576845534754, 2.3776229415654586, 2.3322043192851734, 2.2873018177126174, 2.2429154368477935, 2.1990451766906984, 2.155691037241335, 2.1128530184997016, 2.070531120465799, 2.028725343139627, 1.9874356865211853, 1.9466621506104742, 1.9064047354074933, 1.8666634409122436, 1.827438267124724, 1.7887292140449356, 1.7505362816728764, 1.7128594700085484, 1.675698779051951, 1.639054208803084, 1.6029257592619475, 1.567313430428542, 1.5322172223028665, 1.4976371348849211, 1.4635731681747073, 1.4300253221722232, 1.3969935968774703, 1.364477992290447, 1.332478508411155, 1.3009951452395931, 1.270027902775762, 1.2395767810196614, 1.209641779971291, 1.1802228996306514, 1.1513201399977424, 1.1229335010725636, 1.0950629828551155, 1.0677085853453976, 1.0408703085434108, 1.0145481524491542, 0.9887421170626283, 0.9634522023838328, 0.938678408412768, 0.9144207351494336, 0.8906791825938294, 0.8674537507459559, 0.844744439605813, 0.8225512491734006, 0.8008741794487189, 0.7797132304317675, 0.7590684021225467, 0.7389396945210565, 0.7193271076272967, 0.7002306414412673, 0.6816502959629687, 0.6635860711924004, 0.6460379671295626, 0.6290059837744555, 0.6124901211270788, 0.5964903791874328, 0.5810067579555169, 0.566039257431332, 0.5515878776148775, 0.5376526185061534, 0.5242334801051598, 0.5113304624118968, 0.4989435654263643, 0.4870727891485622, 0.4757181335784908, 0.4648795987161498, 0.4545571845615395, 0.4447508911146596, 0.43546071837551015, 0.42668666634409136, 0.418428735020403, 0.4106869244044453, 0.40346123449621807, 0.39675166529572126, 0.3905582168029549, 0.38488088901791917, 0.3797196819406139, 0.3750745955710393, 0.3709456299091951, 0.3673327849550816, 0.3642360607086983, 0.3616554571700459, 0.3595909743391237, 0.35804261221593214, 0.35701037080047104, 0.3564942500927406, 0.3564942500927406, 0.35701037080047104, 0.35804261221593214, 0.3595909743391237, 0.36165545717004566, 0.3642360607086983, 0.36733278495508137, 0.3709456299091951, 0.3750745955710393, 0.3797196819406139, 0.38488088901791917, 0.39055821680295466, 0.39675166529572103, 0.4034612344962176, 0.4106869244044451, 0.418428735020403, 0.42668666634409114, 0.43546071837551015, 0.4447508911146594, 0.45455718456153926, 0.4648795987161496, 0.4757181335784906, 0.487072789148562, 0.4989435654263641, 0.5113304624118964, 0.5242334801051596, 0.5376526185061532, 0.551587877614877, 0.5660392574313318, 0.5810067579555167, 0.5964903791874323, 0.6124901211270783, 0.629005983774455, 0.646037967129562, 0.6635860711924, 0.6816502959629684, 0.7002306414412669, 0.7193271076272962, 0.7389396945210558, 0.7590684021225464, 0.7797132304317669, 0.8008741794487184, 0.8225512491734, 0.8447444396058126, 0.8674537507459552, 0.8906791825938289, 0.9144207351494331, 0.9386784084127671, 0.9634522023838326, 0.9887421170626276, 1.0145481524491542, 1.0408703085434103, 1.0677085853453976, 1.0950629828551146, 1.1229335010725632, 1.1513201399977415, 1.1802228996306505, 1.2096417799712906, 1.2395767810196605, 1.2700279027757615, 1.3009951452395923, 1.3324785084111546, 1.3644779922904462, 1.3969935968774694, 1.430025322172222, 1.4635731681747064, 1.4976371348849202, 1.5322172223028656, 1.5673134304285412, 1.6029257592619466, 1.639054208803084, 1.6756987790519497, 1.712859470008548, 1.7505362816728756, 1.7887292140449342, 1.8274382671247227, 1.8666634409122427, 1.9064047354074924, 1.9466621506104733, 1.9874356865211849, 2.0287253431396257, 2.0705311204657986, 2.1128530184997008, 2.1556910372413345, 2.1990451766906975, 2.242915436847792, 2.287301817712616, 2.332204319285172, 2.3776229415654573, 2.423557684553474, 2.4700085482492216, 2.5169755326526984, 2.5644586377639067, 2.6124578635828444, 2.6609732101095136, 2.7100046773439126, 2.759552265286043, 2.8096159739359026, 2.8601958032934944, 2.911291753358815, 2.962903824131868, 3.0150320156126504, 3.0676763278011627, 3.120836760697408, 3.1745133143013806, 3.228705988613086, 3.2834147836325203, 3.338639699359687, 3.3943807357945825, 3.450637892937209, 3.5074111707875675, 3.5647005693456544, 3.6225060886114733, 3.6808277285850215, 3.739665489266301, 3.7990193706553104, 3.858889372752051, 3.919275495556521, 3.980177739068724, 4.041596103288654, 4.1035305882163176, 4.165981193851712, 4.228947920194834, 4.292430767245689, 4.356429735004275 ], [ 4.319269044047677, 4.255270076289092, 4.191787229238239, 4.128820502895115, 4.066369897259722, 4.004435412332059, 3.943017048112127, 3.882114804599926, 3.821728681795455, 3.7618586796987152, 3.702504798309705, 3.6436670376284255, 3.5853453976548764, 3.5275398783890584, 3.4702504798309715, 3.413477201980614, 3.3572200448379865, 3.301479008403091, 3.2462540926759242, 3.1915452976564893, 3.1373526233447855, 3.083676069740811, 3.0305156368445676, 2.9778713246560544, 2.925743133175272, 2.87413106240222, 2.8230351123368984, 2.772455282979307, 2.722391574329447, 2.6728439863873166, 2.623812519152917, 2.5752971726262484, 2.52729794680731, 2.479814841696102, 2.4328478572926246, 2.386396993596878, 2.3404622506088613, 2.295043628328576, 2.25014112675602, 2.205754745891196, 2.1618844857341015, 2.1185303462847376, 2.0756923275431047, 2.033370429509202, 1.9915646521830297, 1.9502749955645884, 1.9095014596538773, 1.869244044450896, 1.8295027499556467, 1.7902775761681262, 1.7515685230883378, 1.713375590716279, 1.675698779051951, 1.6385380880953537, 1.601893517846487, 1.5657650683053506, 1.5301527394719443, 1.4950565313462691, 1.4604764439283238, 1.42641247721811, 1.3928646312156259, 1.359832905920873, 1.3273173013338497, 1.2953178174545577, 1.2638344542829958, 1.2328672118191646, 1.202416090063064, 1.1724810890146937, 1.143062208674054, 1.114159449041145, 1.0857728101159658, 1.0579022918985181, 1.0305478943888007, 1.0037096175868134, 0.9773874614925568, 0.9515814261060309, 0.9262915114272354, 0.9015177174561706, 0.8772600441928362, 0.853518491637232, 0.8302930597893585, 0.8075837486492157, 0.7853905582168033, 0.7637134884921215, 0.7425525394751702, 0.7219077111659493, 0.7017790035644591, 0.6821664166706993, 0.66306995048467, 0.6444896050063713, 0.6264253802358031, 0.6088772761729653, 0.5918452928178581, 0.5753294301704814, 0.5593296882308354, 0.5438460669989196, 0.5288785664747346, 0.5144271866582801, 0.5004919275495561, 0.48707278914856245, 0.4741697714552995, 0.46178287446976696, 0.44991209819196487, 0.43855744262189345, 0.42771890775955246, 0.41739649360494213, 0.40759020015806224, 0.3983000274189128, 0.389525975387494, 0.38126804406380566, 0.37352623344784797, 0.3663005435396207, 0.3595909743391239, 0.35339752584635753, 0.3477201980613218, 0.34255899098401654, 0.33791390461444193, 0.33378493895259775, 0.33017209399848424, 0.32707536975210094, 0.3244947662134485, 0.32243028338252633, 0.3208819212593348, 0.3198496798438737, 0.31933355913614325, 0.31933355913614325, 0.3198496798438737, 0.3208819212593348, 0.32243028338252633, 0.3244947662134483, 0.32707536975210094, 0.330172093998484, 0.33378493895259775, 0.33791390461444193, 0.34255899098401654, 0.3477201980613218, 0.3533975258463573, 0.3595909743391237, 0.36630054353962027, 0.37352623344784774, 0.38126804406380566, 0.3895259753874938, 0.3983000274189128, 0.407590200158062, 0.4173964936049419, 0.42771890775955224, 0.4385574426218932, 0.44991209819196465, 0.46178287446976674, 0.47416977145529904, 0.4870727891485622, 0.5004919275495558, 0.5144271866582797, 0.5288785664747344, 0.5438460669989194, 0.559329688230835, 0.575329430170481, 0.5918452928178577, 0.6088772761729646, 0.6264253802358026, 0.6444896050063711, 0.6630699504846695, 0.6821664166706989, 0.7017790035644584, 0.7219077111659491, 0.7425525394751695, 0.7637134884921211, 0.7853905582168026, 0.8075837486492152, 0.8302930597893579, 0.8535184916372316, 0.8772600441928358, 0.9015177174561697, 0.9262915114272352, 0.9515814261060302, 0.9773874614925566, 1.0037096175868125, 1.0305478943888002, 1.0579022918985173, 1.0857728101159658, 1.1141594490411437, 1.1430622086740536, 1.1724810890146933, 1.2024160900630632, 1.2328672118191641, 1.263834454282995, 1.2953178174545572, 1.3273173013338488, 1.359832905920872, 1.392864631215625, 1.426412477218109, 1.4604764439283229, 1.4950565313462683, 1.5301527394719443, 1.5657650683053497, 1.6018935178464861, 1.6385380880953528, 1.6756987790519506, 1.7133755907162778, 1.7515685230883369, 1.7902775761681253, 1.8295027499556458, 1.8692440444508946, 1.909501459653876, 1.9502749955645875, 1.9915646521830288, 2.033370429509201, 2.0756923275431034, 2.118530346284737, 2.1618844857340997, 2.205754745891195, 2.250141126756019, 2.2950436283285747, 2.34046225060886, 2.3863969935968767, 2.432847857292624, 2.479814841696101, 2.5272979468073093, 2.575297172626247, 2.6238125191529162, 2.6728439863873152, 2.722391574329446, 2.772455282979305, 2.823035112336897, 2.874131062402218, 2.9257431331752706, 2.9778713246560535, 3.030515636844566, 3.08367606974081, 3.1373526233447837, 3.1915452976564893, 3.2462540926759225, 3.3014790084030894, 3.3572200448379848, 3.413477201980612, 3.4702504798309697, 3.5275398783890566, 3.5853453976548764, 3.6436670376284237, 3.702504798309704, 3.7618586796987135, 3.821728681795454, 3.882114804599924, 3.943017048112126, 4.004435412332057, 4.066369897259721, 4.128820502895114, 4.191787229238237, 4.255270076289092, 4.319269044047677 ], [ 4.28262447379881, 4.218625506040225, 4.155142658989371, 4.092175932646248, 4.029725327010855, 3.9677908420831924, 3.9063724778632603, 3.845470234351059, 3.7850841115465883, 3.7252141094498477, 3.665860228060838, 3.607022467379559, 3.5487008274060097, 3.4908953081401917, 3.433605909582104, 3.376832631731747, 3.32057547458912, 3.2648344381542245, 3.2096095224270575, 3.1549007274076226, 3.100708053095918, 3.0470314994919443, 2.993871066595701, 2.9412267544071877, 2.8890985629264048, 2.837486492153353, 2.7863905420880313, 2.73581071273044, 2.6857470040805804, 2.6361994161384494, 2.5871679489040504, 2.5386526023773817, 2.490653376558443, 2.4431702714472348, 2.3962032870437575, 2.3497524233480114, 2.3038176803599946, 2.258399058079709, 2.2134965565071534, 2.169110175642329, 2.1252399154852344, 2.081885776035871, 2.0390477572942376, 1.996725859260335, 1.954920081934163, 1.9136304253157213, 1.8728568894050102, 1.8325994742020288, 1.7928581797067795, 1.7536330059192595, 1.714923952839471, 1.676731020467412, 1.639054208803084, 1.601893517846487, 1.56524894759762, 1.5291204980564834, 1.4935081692230776, 1.4584119610974025, 1.4238318736794566, 1.3897679069692428, 1.3562200609667592, 1.3231883356720058, 1.2906727310849826, 1.2586732472056905, 1.2271898840341287, 1.196222641570298, 1.165771519814197, 1.135836518765827, 1.1064176384251874, 1.077514878792278, 1.0491282398670991, 1.021257721649651, 0.9939033241399335, 0.9670650473379465, 0.9407428912436901, 0.914936855857164, 0.8896469411783685, 0.8648731472073035, 0.8406154739439691, 0.8168739213883653, 0.7936484895404914, 0.7709391784003488, 0.7487459879679363, 0.7270689182432544, 0.7059079692263031, 0.6852631409170824, 0.6651344333155922, 0.6455218464218324, 0.6264253802358031, 0.6078450347575044, 0.5897808099869362, 0.5722327059240984, 0.555200722568991, 0.5386848599216145, 0.5226851179819683, 0.5072014967500529, 0.4922339962258677, 0.4777826164094132, 0.46384735730068916, 0.45042821889969553, 0.43752520120643257, 0.42513830422090004, 0.41326752794309796, 0.40191287237302653, 0.39107433751068554, 0.3807519233560752, 0.37094562990919533, 0.3616554571700461, 0.3528814051386271, 0.34462347381493874, 0.33688166319898105, 0.3296559732907538, 0.322946404090257, 0.3167529555974906, 0.3110756278124549, 0.30591442073514963, 0.301269334365575, 0.29714036870373084, 0.2935275237496173, 0.290430799503234, 0.2878501959645816, 0.2857857131336594, 0.2842373510104679, 0.2832051095950068, 0.28268898888727634, 0.28268898888727634, 0.2832051095950068, 0.2842373510104679, 0.2857857131336594, 0.2878501959645814, 0.290430799503234, 0.2935275237496171, 0.29714036870373084, 0.301269334365575, 0.30591442073514963, 0.3110756278124549, 0.3167529555974904, 0.32294640409025677, 0.32965597329075336, 0.33688166319898083, 0.34462347381493874, 0.35288140513862687, 0.3616554571700459, 0.3709456299091951, 0.380751923356075, 0.3910743375106853, 0.4019128723730263, 0.41326752794309773, 0.4251383042208998, 0.4375252012064321, 0.4504282188996953, 0.46384735730068893, 0.4777826164094128, 0.4922339962258675, 0.5072014967500524, 0.5226851179819683, 0.5386848599216141, 0.555200722568991, 0.5722327059240979, 0.5897808099869357, 0.6078450347575042, 0.6264253802358026, 0.6455218464218322, 0.6651344333155915, 0.6852631409170822, 0.7059079692263026, 0.7270689182432541, 0.7487459879679357, 0.7709391784003483, 0.7936484895404909, 0.8168739213883645, 0.8406154739439688, 0.864873147207303, 0.8896469411783681, 0.9149368558571633, 0.9407428912436897, 0.9670650473379458, 0.9939033241399331, 1.0212577216496506, 1.0491282398670987, 1.077514878792277, 1.1064176384251865, 1.1358365187658266, 1.1657715198141965, 1.1962226415702975, 1.2271898840341282, 1.25867324720569, 1.2906727310849817, 1.323188335672005, 1.3562200609667578, 1.389767906969242, 1.4238318736794557, 1.4584119610974016, 1.4935081692230772, 1.5291204980564825, 1.5652489475976195, 1.6018935178464857, 1.639054208803084, 1.676731020467411, 1.7149239528394702, 1.7536330059192586, 1.7928581797067786, 1.832599474202028, 1.8728568894050088, 1.9136304253157208, 1.9549200819341617, 1.9967258592603345, 2.0390477572942363, 2.08188577603587, 2.125239915485233, 2.169110175642328, 2.213496556507152, 2.258399058079708, 2.303817680359993, 2.3497524233480096, 2.3962032870437575, 2.443170271447234, 2.490653376558442, 2.53865260237738, 2.5871679489040496, 2.6361994161384485, 2.6857470040805786, 2.735810712730438, 2.7863905420880304, 2.837486492153351, 2.889098562926404, 2.941226754407187, 2.993871066595699, 3.0470314994919434, 3.100708053095917, 3.1549007274076217, 3.2096095224270558, 3.2648344381542227, 3.320575474589118, 3.3768326317317454, 3.433605909582103, 3.49089530814019, 3.548700827406009, 3.607022467379557, 3.6658602280608372, 3.725214109449846, 3.7850841115465874, 3.8454702343510574, 3.9063724778632594, 3.9677908420831907, 4.029725327010854, 4.0921759326462475, 4.155142658989369, 4.218625506040224, 4.28262447379881 ], [ 4.246496024257674, 4.182497056499089, 4.119014209448235, 4.056047483105112, 3.9935968774697184, 3.931662392542056, 3.8702440283221238, 3.8093417848099227, 3.748955662005452, 3.689085659908711, 3.6297317785197016, 3.5708940178384223, 3.512572377864873, 3.454766858599055, 3.3974774600409674, 3.3407041821906107, 3.2844470250479834, 3.228705988613088, 3.173481072885921, 3.118772277866486, 3.0645796035547814, 3.010903049950808, 2.9577426170545644, 2.9050983048660513, 2.8529701133852683, 2.8013580426122164, 2.750262092546895, 2.6996822631893034, 2.649618554539444, 2.600070966597313, 2.551039499362914, 2.502524152836245, 2.4545249270173066, 2.4070418219060983, 2.360074837502621, 2.313623973806875, 2.267689230818858, 2.2222706085385724, 2.177368106966017, 2.1329817261011925, 2.089111465944098, 2.0457573264947344, 2.002919307753101, 1.9605974097191985, 1.9187916323930265, 1.8775019757745848, 1.8367284398638737, 1.7964710246608924, 1.756729730165643, 1.717504556378123, 1.6787955032983346, 1.6406025709262755, 1.6029257592619475, 1.5657650683053506, 1.5291204980564834, 1.492992048515347, 1.4573797196819411, 1.422283511556266, 1.3877034241383202, 1.3536394574281063, 1.3200916114256227, 1.2870598861308693, 1.2545442815438461, 1.222544797664554, 1.1910614344929922, 1.1600941920291614, 1.1296430702730604, 1.0997080692246906, 1.070289188884051, 1.0413864292511414, 1.0129997903259627, 0.9851292721085145, 0.9577748745987971, 0.93093659779681, 0.9046144417025537, 0.8788084063160275, 0.853518491637232, 0.828744697666167, 0.8044870244028326, 0.7807454718472289, 0.7575200399993549, 0.7348107288592123, 0.7126175384267999, 0.6909404687021179, 0.6697795196851666, 0.6491346913759459, 0.6290059837744557, 0.6093933968806959, 0.5902969306946666, 0.5717165852163679, 0.5536523604457997, 0.5361042563829619, 0.5190722730278545, 0.502556410380478, 0.4865566684408318, 0.4710730472089164, 0.45610554668473124, 0.44165416686827674, 0.4277189077595527, 0.41429976935855906, 0.4013967516652961, 0.38900985467976357, 0.3771390784019615, 0.36578442283189005, 0.35494588796954907, 0.34462347381493874, 0.33481718036805885, 0.3255270076289096, 0.3167529555974906, 0.30849502427380227, 0.3007532136578446, 0.2935275237496173, 0.2868179545491205, 0.28062450605635414, 0.2749471782713184, 0.26978597119401315, 0.26514088482443854, 0.26101191916259436, 0.25739907420848085, 0.25430234996209755, 0.25172174642344514, 0.24965726359252294, 0.2481089014693314, 0.2470766600538703, 0.24656053934613986, 0.24656053934613986, 0.2470766600538703, 0.2481089014693314, 0.24965726359252294, 0.2517217464234449, 0.25430234996209755, 0.2573990742084806, 0.26101191916259436, 0.26514088482443854, 0.26978597119401315, 0.2749471782713184, 0.2806245060563539, 0.2868179545491203, 0.2935275237496169, 0.30075321365784435, 0.30849502427380227, 0.3167529555974904, 0.3255270076289094, 0.33481718036805863, 0.3446234738149385, 0.35494588796954885, 0.36578442283188983, 0.37713907840196126, 0.38900985467976334, 0.40139675166529565, 0.41429976935855883, 0.42771890775955246, 0.4416541668682763, 0.456105546684731, 0.47107304720891596, 0.4865566684408318, 0.5025564103804776, 0.5190722730278545, 0.5361042563829614, 0.5536523604457992, 0.5717165852163677, 0.5902969306946662, 0.6093933968806957, 0.629005983774455, 0.6491346913759457, 0.6697795196851661, 0.6909404687021177, 0.7126175384267992, 0.7348107288592118, 0.7575200399993545, 0.780745471847228, 0.8044870244028324, 0.8287446976661665, 0.8535184916372316, 0.8788084063160269, 0.9046144417025532, 0.9309365977968094, 0.9577748745987966, 0.9851292721085139, 1.0129997903259622, 1.0413864292511406, 1.07028918888405, 1.09970806922469, 1.12964307027306, 1.160094192029161, 1.1910614344929917, 1.2225447976645536, 1.2545442815438452, 1.2870598861308684, 1.3200916114256214, 1.3536394574281054, 1.3877034241383193, 1.422283511556265, 1.4573797196819407, 1.492992048515346, 1.529120498056483, 1.5657650683053492, 1.6029257592619475, 1.6406025709262746, 1.6787955032983337, 1.7175045563781222, 1.7567297301656422, 1.7964710246608915, 1.8367284398638724, 1.8775019757745843, 1.9187916323930252, 1.960597409719198, 2.0029193077531, 2.0457573264947335, 2.0891114659440966, 2.1329817261011916, 2.1773681069660156, 2.2222706085385715, 2.2676892308188563, 2.313623973806873, 2.360074837502621, 2.4070418219060974, 2.4545249270173057, 2.5025241528362434, 2.551039499362913, 2.600070966597312, 2.649618554539442, 2.6996822631893016, 2.750262092546894, 2.8013580426122147, 2.8529701133852674, 2.9050983048660504, 2.9577426170545627, 3.010903049950807, 3.0645796035547805, 3.1187722778664853, 3.1734810728859193, 3.228705988613086, 3.2844470250479816, 3.340704182190609, 3.3974774600409665, 3.4547668585990534, 3.5125723778648723, 3.5708940178384205, 3.6297317785197007, 3.6890856599087094, 3.748955662005451, 3.809341784809921, 3.870244028322123, 3.931662392542054, 3.9935968774697175, 4.056047483105111, 4.119014209448233, 4.182497056499088, 4.246496024257674 ], [ 4.210883695424267, 4.146884727665683, 4.083401880614829, 4.020435154271706, 3.957984548636313, 3.8960500637086497, 3.8346316994887175, 3.7737294559765164, 3.7133433331720456, 3.653473331075306, 3.5941194496862954, 3.535281689005016, 3.476960049031468, 3.41915452976565, 3.361865131207562, 3.3050918533572045, 3.248834696214577, 3.1930936597796817, 3.1378687440525157, 3.0831599490330808, 3.028967274721376, 2.9752907211174016, 2.922130288221158, 2.869485976032645, 2.817357784551863, 2.765745713778811, 2.7146497637134894, 2.664069934355898, 2.6140062257060377, 2.5644586377639076, 2.5154271705295077, 2.466911824002839, 2.4189125981839004, 2.371429493072693, 2.3244625086692157, 2.2780116449734686, 2.232076901985452, 2.186658279705167, 2.1417557781326106, 2.097369397267787, 2.053499137110692, 2.010144997661328, 1.9673069789196953, 1.9249850808857927, 1.8831793035596203, 1.841889646941179, 1.8011161110304679, 1.760858695827487, 1.7211174013322372, 1.6818922275447172, 1.6431831744649288, 1.6049902420928701, 1.567313430428542, 1.5301527394719443, 1.4935081692230776, 1.4573797196819411, 1.4217673908485353, 1.3866711827228597, 1.3520910953049148, 1.318027128594701, 1.2844792825922164, 1.251447557297464, 1.2189319527104407, 1.1869324688311482, 1.1554491056595868, 1.1244818631957556, 1.0940307414396546, 1.0640957403912847, 1.034676860050645, 1.005774100417736, 0.9773874614925568, 0.9495169432751087, 0.9221625457653913, 0.8953242689634042, 0.8690021128691479, 0.8431960774826217, 0.8179061628038262, 0.7931323688327612, 0.7688746955694268, 0.745133143013823, 0.7219077111659491, 0.6991984000258065, 0.677005209593394, 0.6553281398687121, 0.6341671908517608, 0.6135223625425401, 0.5933936549410499, 0.5737810680472901, 0.5546846018612608, 0.5361042563829621, 0.5180400316123939, 0.5004919275495561, 0.4834599441944487, 0.46694408154707223, 0.45094433960742597, 0.4354607183755106, 0.42049321785132543, 0.4060418380348709, 0.39210657892614686, 0.37868744052515324, 0.3657844228318903, 0.35339752584635775, 0.34152674956855567, 0.33017209399848424, 0.31933355913614325, 0.3090111449815329, 0.29920485153465304, 0.2899146787955038, 0.2811406267640848, 0.27288269544039645, 0.26514088482443876, 0.2579151949162115, 0.2512056257157147, 0.24501217722294832, 0.2393348494379126, 0.23417364236060734, 0.22952855599103272, 0.22539959032918855, 0.22178674537507503, 0.21869002112869174, 0.21610941759003932, 0.21404493475911712, 0.21249657263592558, 0.21146433122046449, 0.21094821051273405, 0.21094821051273405, 0.21146433122046449, 0.21249657263592558, 0.21404493475911712, 0.2161094175900391, 0.21869002112869174, 0.2217867453750748, 0.22539959032918855, 0.22952855599103272, 0.23417364236060734, 0.2393348494379126, 0.2450121772229481, 0.2512056257157145, 0.25791519491621107, 0.26514088482443854, 0.27288269544039645, 0.2811406267640846, 0.2899146787955036, 0.2992048515346528, 0.3090111449815327, 0.31933355913614303, 0.330172093998484, 0.34152674956855544, 0.35339752584635753, 0.36578442283188983, 0.378687440525153, 0.39210657892614664, 0.4060418380348705, 0.4204932178513252, 0.43546071837551015, 0.45094433960742597, 0.4669440815470718, 0.4834599441944487, 0.5004919275495556, 0.5180400316123934, 0.5361042563829619, 0.5546846018612603, 0.5737810680472899, 0.5933936549410492, 0.6135223625425399, 0.6341671908517603, 0.6553281398687119, 0.6770052095933934, 0.699198400025806, 0.7219077111659487, 0.7451331430138222, 0.7688746955694266, 0.7931323688327607, 0.8179061628038258, 0.843196077482621, 0.8690021128691474, 0.8953242689634036, 0.9221625457653908, 0.949516943275108, 0.9773874614925564, 1.0057741004177347, 1.0346768600506442, 1.0640957403912843, 1.0940307414396537, 1.1244818631957552, 1.155449105659586, 1.1869324688311478, 1.2189319527104399, 1.251447557297463, 1.2844792825922156, 1.3180271285947, 1.352091095304914, 1.3866711827228588, 1.4217673908485349, 1.4573797196819402, 1.4935081692230772, 1.5301527394719434, 1.5673134304285412, 1.6049902420928688, 1.6431831744649275, 1.681892227544716, 1.7211174013322363, 1.7608586958274857, 1.801116111030467, 1.841889646941178, 1.8831793035596194, 1.9249850808857918, 1.9673069789196944, 2.010144997661328, 2.0534991371106908, 2.0973693972677854, 2.1417557781326098, 2.1866582797051652, 2.232076901985451, 2.2780116449734678, 2.3244625086692148, 2.371429493072692, 2.4189125981839004, 2.466911824002838, 2.515427170529507, 2.564458637763906, 2.614006225706037, 2.6640699343558962, 2.7146497637134877, 2.7657457137788084, 2.817357784551861, 2.869485976032644, 2.9221302882211564, 2.9752907211174007, 3.0289672747213743, 3.08315994903308, 3.137868744052514, 3.19309365977968, 3.2488346962145753, 3.3050918533572027, 3.361865131207561, 3.419154529765648, 3.476960049031467, 3.535281689005015, 3.5941194496862945, 3.653473331075304, 3.7133433331720447, 3.7737294559765147, 3.8346316994887166, 3.896050063708648, 3.957984548636311, 4.020435154271705, 4.083401880614828, 4.146884727665682, 4.210883695424267 ], [ 4.175787487298592, 4.111788519540008, 4.048305672489153, 3.9853389461460305, 3.922888340510637, 3.8609538555829745, 3.7995354913630424, 3.7386332478508413, 3.6782471250463704, 3.6183771229496298, 3.55902324156062, 3.500185480879341, 3.4418638409057927, 3.3840583216399747, 3.326768923081886, 3.2699956452315293, 3.213738488088902, 3.1579974516540066, 3.1027725359268405, 3.0480637409074056, 2.9938710665957005, 2.9401945129917264, 2.887034080095483, 2.83438976790697, 2.7822615764261873, 2.7306495056531355, 2.679553555587814, 2.6289737262302224, 2.5789100175803625, 2.529362429638232, 2.4803309624038326, 2.4318156158771638, 2.383816390058225, 2.3363332849470173, 2.28936630054354, 2.2429154368477935, 2.1969806938597767, 2.1515620715794914, 2.1066595700069355, 2.0622731891421116, 2.018402928985017, 1.975048789535653, 1.9322107707940201, 1.8898888727601175, 1.8480830954339451, 1.8067934388155038, 1.7660199029047927, 1.7257624877018114, 1.686021193206562, 1.6467960194190416, 1.6080869663392532, 1.5698940339671945, 1.5322172223028665, 1.4950565313462691, 1.4584119610974025, 1.422283511556266, 1.3866711827228597, 1.3515749745971846, 1.3169948871792392, 1.2829309204690253, 1.2493830744665413, 1.2163513491717883, 1.1838357445847651, 1.151836260705473, 1.1203528975339112, 1.08938565507008, 1.0589345333139795, 1.0289995322656091, 0.9995806519249695, 0.9706778922920605, 0.9422912533668815, 0.9144207351494336, 0.8870663376397159, 0.8602280608377288, 0.8339059047434723, 0.8080998693569463, 0.7828099546781508, 0.758036160707086, 0.7337784874437516, 0.7100369348881475, 0.6868115030402739, 0.6641021919001311, 0.6419090014677187, 0.6202319317430369, 0.5990709827260856, 0.5784261544168647, 0.5582974468153745, 0.5386848599216147, 0.5195883937355854, 0.5010080482572867, 0.4829438234867185, 0.4653957194238807, 0.44836373606877356, 0.43184787342139686, 0.4158481314817508, 0.400364510249835, 0.38539700972565005, 0.37094562990919555, 0.3570103708004715, 0.34359123239947786, 0.3306882147062149, 0.3183013177206824, 0.3064305414428803, 0.29507588587280886, 0.2842373510104679, 0.27391493685585755, 0.26410864340897766, 0.2548184706698282, 0.24604441863840942, 0.23778648731472107, 0.23004467669876338, 0.22281898679053613, 0.21610941759003932, 0.20991596909727295, 0.20423864131223723, 0.19907743423493196, 0.19443234786535735, 0.19030338220351317, 0.18669053724939966, 0.18359381300301636, 0.18101320946436394, 0.17894872663344175, 0.1774003645102502, 0.1763681230947891, 0.17585200238705867, 0.17585200238705867, 0.1763681230947891, 0.1774003645102502, 0.17894872663344175, 0.18101320946436372, 0.18359381300301636, 0.18669053724939944, 0.19030338220351317, 0.19443234786535735, 0.19907743423493196, 0.20423864131223723, 0.20991596909727273, 0.2161094175900391, 0.2228189867905357, 0.23004467669876316, 0.23778648731472107, 0.2460444186384092, 0.2548184706698282, 0.26410864340897744, 0.2739149368558573, 0.28423735101046765, 0.29507588587280864, 0.30643054144288007, 0.31830131772068215, 0.33068821470621446, 0.34359123239947764, 0.35701037080047127, 0.3709456299091951, 0.38539700972564983, 0.40036451024983477, 0.41584813148175037, 0.4318478734213964, 0.4483637360687731, 0.46539571942388, 0.48294382348671805, 0.5010080482572865, 0.519588393735585, 0.5386848599216143, 0.5582974468153739, 0.5784261544168645, 0.5990709827260849, 0.6202319317430365, 0.641909001467718, 0.6641021919001306, 0.6868115030402733, 0.710036934888147, 0.7337784874437512, 0.7580361607070851, 0.7828099546781506, 0.8080998693569457, 0.833905904743472, 0.8602280608377282, 0.8870663376397157, 0.9144207351494327, 0.9422912533668812, 0.9706778922920594, 0.9995806519249688, 1.0289995322656087, 1.0589345333139786, 1.0893856550700796, 1.1203528975339103, 1.1518362607054726, 1.1838357445847643, 1.2163513491717874, 1.2493830744665404, 1.2829309204690245, 1.3169948871792383, 1.3515749745971837, 1.3866711827228597, 1.422283511556265, 1.4584119610974016, 1.4950565313462683, 1.532217222302866, 1.5698940339671932, 1.6080869663392523, 1.6467960194190407, 1.6860211932065612, 1.72576248770181, 1.7660199029047914, 1.806793438815503, 1.8480830954339442, 1.8898888727601166, 1.9322107707940188, 1.9750487895356525, 2.018402928985015, 2.06227318914211, 2.1066595700069346, 2.15156207157949, 2.1969806938597753, 2.242915436847792, 2.2893663005435396, 2.3363332849470164, 2.3838163900582248, 2.4318156158771624, 2.4803309624038317, 2.5293624296382307, 2.578910017580361, 2.6289737262302206, 2.6795535555878125, 2.7306495056531332, 2.782261576426186, 2.834389767906969, 2.8870340800954812, 2.9401945129917255, 2.993871066595699, 3.048063740907404, 3.1027725359268388, 3.157997451654005, 3.2137384880889, 3.2699956452315275, 3.326768923081886, 3.384058321639973, 3.441863840905791, 3.50018548087934, 3.5590232415606193, 3.618377122949628, 3.6782471250463695, 3.7386332478508395, 3.7995354913630415, 3.8609538555829728, 3.922888340510636, 3.9853389461460296, 4.0483056724891515, 4.111788519540006, 4.175787487298592 ], [ 4.141207399880647, 4.077208432122062, 4.013725585071208, 3.9507588587280846, 3.888308253092692, 3.8263737681650287, 3.7649554039450965, 3.7040531604328955, 3.6436670376284255, 3.583797035531685, 3.5244431541426753, 3.465605393461395, 3.407283753487847, 3.349478234222029, 3.292188835663941, 3.2354155578135835, 3.179158400670957, 3.1234173642360616, 3.0681924485088947, 3.01348365348946, 2.959290979177755, 2.905614425573781, 2.8524539926775376, 2.7998096804890245, 2.747681489008242, 2.69606941823519, 2.6449734681698684, 2.594393638812277, 2.544329930162417, 2.4947823422202866, 2.445750874985887, 2.3972355284592184, 2.34923630264028, 2.301753197529072, 2.2547862131255947, 2.208335349429848, 2.1624006064418313, 2.116981984161546, 2.07207948258899, 2.027693101724166, 1.9838228415670711, 1.9404687021177076, 1.8976306833760743, 1.8553087853421717, 1.8135030080159997, 1.772213351397558, 1.731439815486847, 1.691182400283866, 1.6514411057886162, 1.6122159320010967, 1.5735068789213082, 1.5353139465492491, 1.4976371348849211, 1.4604764439283238, 1.4238318736794566, 1.3877034241383202, 1.3520910953049148, 1.3169948871792392, 1.2824147997612938, 1.24835083305108, 1.214802987048596, 1.181771261753843, 1.1492556571668198, 1.1172561732875277, 1.0857728101159658, 1.0548055676521346, 1.024354445896034, 0.9944194448476638, 0.9650005645070241, 0.9360978048741151, 0.9077111659489361, 0.8798406477314882, 0.8524862502217705, 0.8256479734197835, 0.7993258173255269, 0.773519781939001, 0.7482298672602055, 0.7234560732891406, 0.6991984000258062, 0.6754568474702021, 0.6522314156223286, 0.6295221044821857, 0.6073289140497733, 0.5856518443250915, 0.5644908953081402, 0.5438460669989194, 0.5237173593974291, 0.5041047725036694, 0.48500830631764, 0.46642796083934135, 0.4483637360687731, 0.4308156320059353, 0.4137836486508282, 0.3972677860034515, 0.38126804406380543, 0.3657844228318896, 0.35081692230770467, 0.33636554249125017, 0.3224302833825261, 0.3090111449815325, 0.2961081272882695, 0.283721230302737, 0.2718504540249349, 0.2604957984548635, 0.2496572635925225, 0.23933484943791217, 0.22952855599103228, 0.22023838325188283, 0.21146433122046404, 0.2032063998967757, 0.195464589280818, 0.18823889937259075, 0.18152933017209394, 0.17533588167932757, 0.16965855389429185, 0.16449734681698658, 0.15985226044741196, 0.1557232947855678, 0.15211044983145428, 0.14901372558507098, 0.14643312204641856, 0.14436863921549636, 0.14282027709230483, 0.14178803567684373, 0.1412719149691133, 0.1412719149691133, 0.14178803567684373, 0.14282027709230483, 0.14436863921549636, 0.14643312204641834, 0.14901372558507098, 0.15211044983145405, 0.1557232947855678, 0.15985226044741196, 0.16449734681698658, 0.16965855389429185, 0.17533588167932734, 0.18152933017209372, 0.1882388993725903, 0.19546458928081778, 0.2032063998967757, 0.21146433122046382, 0.22023838325188283, 0.22952855599103206, 0.23933484943791195, 0.24965726359252227, 0.26049579845486326, 0.2718504540249347, 0.28372123030273677, 0.2961081272882691, 0.30901114498153226, 0.3224302833825259, 0.3363655424912497, 0.35081692230770445, 0.3657844228318894, 0.381268044063805, 0.39726778600345103, 0.41378364865082773, 0.43081563200593465, 0.44836373606877267, 0.4664279608393411, 0.4850083063176396, 0.5041047725036689, 0.5237173593974285, 0.5438460669989191, 0.5644908953081396, 0.5856518443250911, 0.6073289140497726, 0.6295221044821853, 0.6522314156223279, 0.6754568474702016, 0.6991984000258058, 0.7234560732891397, 0.7482298672602052, 0.7735197819390003, 0.7993258173255267, 0.8256479734197828, 0.8524862502217703, 0.8798406477314873, 0.9077111659489359, 0.936097804874114, 0.9650005645070234, 0.9944194448476633, 1.0243544458960332, 1.0548055676521342, 1.085772810115965, 1.1172561732875272, 1.1492556571668189, 1.181771261753842, 1.2148029870485946, 1.248350833051079, 1.282414799761293, 1.3169948871792383, 1.352091095304914, 1.3877034241383193, 1.4238318736794566, 1.4604764439283224, 1.4976371348849207, 1.5353139465492482, 1.573506878921307, 1.6122159320010954, 1.6514411057886154, 1.6911824002838651, 1.731439815486846, 1.7722133513975575, 1.8135030080159984, 1.8553087853421713, 1.8976306833760734, 1.9404687021177072, 1.9838228415670702, 2.027693101724165, 2.0720794825889888, 2.1169819841615447, 2.16240060644183, 2.2083353494298468, 2.2547862131255942, 2.301753197529071, 2.3492363026402794, 2.397235528459217, 2.4457508749858863, 2.4947823422202853, 2.544329930162416, 2.5943936388122752, 2.644973468169867, 2.696069418235188, 2.7476814890082406, 2.7998096804890236, 2.852453992677536, 2.90561442557378, 2.9592909791777537, 3.013483653489459, 3.068192448508893, 3.12341736423606, 3.1791584006709552, 3.2354155578135817, 3.29218883566394, 3.349478234222027, 3.407283753487846, 3.465605393461394, 3.5244431541426735, 3.583797035531683, 3.6436670376284237, 3.7040531604328937, 3.7649554039450965, 3.826373768165027, 3.8883082530926902, 3.9507588587280846, 4.013725585071207, 4.077208432122061, 4.141207399880647 ], [ 4.1071434331704335, 4.0431444654118485, 3.9796616183609945, 3.916694892017871, 3.854244286382478, 3.792309801454815, 3.7308914372348827, 3.6699891937226816, 3.6096030709182116, 3.549733068821471, 3.4903791874324614, 3.4315414267511812, 3.373219786777633, 3.315414267511815, 3.258124868953727, 3.2013515911033696, 3.145094433960743, 3.089353397525848, 3.034128481798681, 2.979419686779246, 2.9252270124675412, 2.871550458863567, 2.818390025967324, 2.7657457137788106, 2.713617522298028, 2.6620054515249763, 2.6109095014596546, 2.560329672102063, 2.5102659634522033, 2.4607183755100728, 2.4116869082756733, 2.3631715617490046, 2.315172335930066, 2.267689230818858, 2.220722246415381, 2.1742713827196343, 2.1283366397316175, 2.082918017451332, 2.0380155158787763, 1.9936291350139523, 1.9497588748568573, 1.9064047354074938, 1.8635667166658605, 1.8212448186319579, 1.779439041305786, 1.7381493846873441, 1.697375848776633, 1.6571184335736522, 1.6173771390784024, 1.5781519652908829, 1.5394429122110944, 1.5012499798390353, 1.4635731681747073, 1.42641247721811, 1.3897679069692428, 1.3536394574281063, 1.318027128594701, 1.2829309204690253, 1.24835083305108, 1.2142868663408661, 1.180739020338382, 1.1477072950436291, 1.115191690456606, 1.0831922065773139, 1.051708843405752, 1.0207416009419208, 0.9902904791858202, 0.9603554781374499, 0.9309365977968103, 0.9020338381639013, 0.8736471992387222, 0.8457766810212743, 0.8184222835115567, 0.7915840067095696, 0.765261850615313, 0.7394558152287871, 0.7141659005499916, 0.6893921065789268, 0.6651344333155924, 0.6413928807599882, 0.6181674489121147, 0.5954581377719719, 0.5732649473395595, 0.5515878776148777, 0.5304269285979264, 0.5097821002887055, 0.4896533926872153, 0.47004080579345553, 0.4509443396074262, 0.4323639941291275, 0.4142997693585593, 0.3967516652957215, 0.37971968194061434, 0.36320381929323764, 0.3472040773535916, 0.3317204561216758, 0.31675295559749084, 0.30230157578103634, 0.2883663166723123, 0.27494717827131865, 0.2620441605780557, 0.24965726359252316, 0.23778648731472107, 0.22643183174464965, 0.21559329688230866, 0.20527088272769833, 0.19546458928081845, 0.186174416541669, 0.1774003645102502, 0.16914243318656186, 0.16140062257060417, 0.15417493266237692, 0.1474653634618801, 0.14127191496911373, 0.13559458718407802, 0.13043338010677274, 0.12578829373719813, 0.12165932807535396, 0.11804648312124044, 0.11494975887485714, 0.11236915533620473, 0.11030467250528253, 0.10875631038209099, 0.1077240689666299, 0.10720794825889945, 0.10720794825889945, 0.1077240689666299, 0.10875631038209099, 0.11030467250528253, 0.11236915533620451, 0.11494975887485714, 0.11804648312124022, 0.12165932807535396, 0.12578829373719813, 0.13043338010677274, 0.13559458718407802, 0.1412719149691135, 0.14746536346187988, 0.15417493266237647, 0.16140062257060395, 0.16914243318656186, 0.17740036451024999, 0.186174416541669, 0.19546458928081822, 0.2052708827276981, 0.21559329688230844, 0.22643183174464943, 0.23778648731472085, 0.24965726359252294, 0.26204416057805524, 0.2749471782713184, 0.28836631667231205, 0.3023015757810359, 0.3167529555974906, 0.33172045612167556, 0.34720407735359116, 0.3632038192932372, 0.3797196819406139, 0.3967516652957208, 0.41429976935855883, 0.4323639941291273, 0.45094433960742575, 0.4700408057934551, 0.48965339268721464, 0.5097821002887053, 0.5304269285979257, 0.5515878776148773, 0.5732649473395588, 0.5954581377719714, 0.6181674489121141, 0.6413928807599878, 0.665134433315592, 0.6893921065789259, 0.7141659005499914, 0.7394558152287865, 0.7652618506153128, 0.791584006709569, 0.8184222835115564, 0.8457766810212735, 0.873647199238722, 0.9020338381639001, 0.9309365977968096, 0.9603554781374495, 0.9902904791858194, 1.0207416009419203, 1.051708843405751, 1.0831922065773134, 1.115191690456605, 1.1477072950436282, 1.1807390203383807, 1.2142868663408652, 1.248350833051079, 1.2829309204690245, 1.3180271285947, 1.3536394574281054, 1.3897679069692428, 1.4264124772181086, 1.4635731681747068, 1.5012499798390344, 1.539442912211093, 1.5781519652908815, 1.6173771390784015, 1.6571184335736513, 1.6973758487766322, 1.7381493846873437, 1.7794390413057846, 1.8212448186319574, 1.8635667166658596, 1.9064047354074933, 1.9497588748568564, 1.993629135013951, 2.038015515878775, 2.082918017451331, 2.128336639731616, 2.174271382719633, 2.2207222464153804, 2.267689230818857, 2.3151723359300656, 2.3631715617490032, 2.4116869082756724, 2.4607183755100714, 2.510265963452202, 2.5603296721020614, 2.6109095014596533, 2.662005451524974, 2.7136175222980268, 2.7657457137788097, 2.818390025967322, 2.8715504588635663, 2.92522701246754, 2.979419686779245, 3.034128481798679, 3.089353397525846, 3.1450944339607414, 3.201351591103368, 3.2581248689537263, 3.3154142675118132, 3.373219786777632, 3.4315414267511803, 3.4903791874324597, 3.549733068821469, 3.60960307091821, 3.66998919372268, 3.7308914372348827, 3.792309801454813, 3.8542442863824764, 3.916694892017871, 3.9796616183609927, 4.043144465411848, 4.1071434331704335 ], [ 4.073595587167949, 4.009596619409365, 3.94611377235851, 3.883147046015387, 3.8206964403799937, 3.7587619554523313, 3.697343591232399, 3.636441347720198, 3.576055224915727, 3.5161852228189865, 3.456831341429977, 3.3979935807486976, 3.3396719407751494, 3.2818664215093314, 3.2245770229512427, 3.167803745100886, 3.1115465879582587, 3.0558055515233633, 3.0005806357961973, 2.945871840776762, 2.891679166465057, 2.838002612861083, 2.7848421799648397, 2.7321978677763266, 2.680069676295544, 2.628457605522492, 2.5773616554571706, 2.526781826099579, 2.4767181174497193, 2.4271705295075887, 2.3781390622731893, 2.3296237157465205, 2.281624489927582, 2.234141384816374, 2.187174400412897, 2.14072353671715, 2.0947887937291334, 2.049370171448848, 2.004467669876292, 1.9600812890114683, 1.9162110288543737, 1.8728568894050097, 1.8300188706633769, 1.7876969726294742, 1.7458911953033018, 1.7046015386848605, 1.6638280027741494, 1.6235705875711681, 1.5838292930759188, 1.5446041192883984, 1.50589506620861, 1.4677021338365512, 1.4300253221722232, 1.3928646312156259, 1.3562200609667592, 1.3200916114256227, 1.2844792825922164, 1.2493830744665413, 1.214802987048596, 1.180739020338382, 1.147191174335898, 1.114159449041145, 1.0816438444541219, 1.0496443605748298, 1.018160997403268, 0.9871937549394367, 0.9567426331833362, 0.9268076321349659, 0.8973887517943262, 0.8684859921614172, 0.8400993532362382, 0.8122288350187903, 0.7848744375090726, 0.7580361607070856, 0.731714004612829, 0.7059079692263031, 0.6806180545475076, 0.6558442605764427, 0.6315865873131083, 0.6078450347575042, 0.5846196029096307, 0.5619102917694878, 0.5397171013370754, 0.5180400316123936, 0.49687908259544233, 0.47623425428622146, 0.45610554668473124, 0.43649295979097147, 0.41739649360494213, 0.39881614812664345, 0.3807519233560752, 0.3632038192932374, 0.3461718359381303, 0.3296559732907536, 0.31365623135110754, 0.2981726101191917, 0.2832051095950068, 0.2687537297785523, 0.2548184706698282, 0.2413993322688346, 0.22849631457557162, 0.2161094175900391, 0.204238641312237, 0.1928839857421656, 0.1820454508798246, 0.17172303672521427, 0.16191674327833439, 0.15262657053918494, 0.14385251850776615, 0.1355945871840778, 0.1278527765681201, 0.12062708665989286, 0.11391751745939604, 0.10772406896662967, 0.10204674118159396, 0.09688553410428868, 0.09224044773471407, 0.0881114820728699, 0.08449863711875638, 0.08140191287237308, 0.07882130933372067, 0.07675682650279847, 0.07520846437960693, 0.07417622296414583, 0.0736601022564154, 0.0736601022564154, 0.07417622296414583, 0.07520846437960693, 0.07675682650279847, 0.07882130933372045, 0.08140191287237308, 0.08449863711875616, 0.0881114820728699, 0.09224044773471407, 0.09688553410428868, 0.10204674118159396, 0.10772406896662945, 0.11391751745939582, 0.12062708665989241, 0.12785277656811989, 0.1355945871840778, 0.14385251850776593, 0.15262657053918494, 0.16191674327833416, 0.17172303672521405, 0.18204545087982438, 0.19288398574216536, 0.2042386413122368, 0.21610941759003888, 0.22849631457557118, 0.24139933226883437, 0.254818470669828, 0.26875372977855183, 0.28320510959500655, 0.2981726101191915, 0.3136562313511071, 0.32965597329075313, 0.34617183593812983, 0.36320381929323675, 0.3807519233560748, 0.39881614812664323, 0.4173964936049417, 0.436492959790971, 0.4561055466847306, 0.47623425428622124, 0.49687908259544167, 0.5180400316123932, 0.5397171013370747, 0.5619102917694874, 0.58461960290963, 0.6078450347575037, 0.6315865873131079, 0.6558442605764419, 0.6806180545475073, 0.7059079692263024, 0.7317140046128288, 0.7580361607070849, 0.7848744375090724, 0.8122288350187894, 0.840099353236238, 0.8684859921614161, 0.8973887517943255, 0.9268076321349654, 0.9567426331833353, 0.9871937549394363, 1.018160997403267, 1.0496443605748293, 1.081643844454121, 1.1141594490411442, 1.1471911743358971, 1.1807390203383812, 1.214802987048595, 1.2493830744665404, 1.2844792825922164, 1.3200916114256218, 1.3562200609667583, 1.392864631215625, 1.4300253221722228, 1.46770213383655, 1.505895066208609, 1.5446041192883975, 1.583829293075918, 1.6235705875711668, 1.663828002774148, 1.7046015386848596, 1.745891195303301, 1.7876969726294734, 1.8300188706633755, 1.8728568894050093, 1.916211028854372, 1.960081289011467, 2.0044676698762913, 2.049370171448847, 2.094788793729132, 2.140723536717149, 2.1871744004128963, 2.234141384816373, 2.2816244899275815, 2.329623715746519, 2.3781390622731884, 2.4271705295075874, 2.476718117449718, 2.5267818260995774, 2.577361655457169, 2.62845760552249, 2.6800696762955427, 2.7321978677763257, 2.784842179964838, 2.8380026128610822, 2.891679166465056, 2.945871840776761, 3.0005806357961955, 3.0558055515233615, 3.111546587958257, 3.1678037451008842, 3.2245770229512427, 3.2818664215093296, 3.3396719407751476, 3.3979935807486967, 3.456831341429976, 3.5161852228189847, 3.5760552249157262, 3.6364413477201962, 3.697343591232398, 3.7587619554523295, 3.820696440379993, 3.8831470460153863, 3.9461137723585082, 4.009596619409363, 4.073595587167949 ], [ 4.040563861873196, 3.9765648941146114, 3.9130820470637575, 3.8501153207206347, 3.787664715085241, 3.7257302301575788, 3.6643118659376466, 3.6034096224254455, 3.5430234996209737, 3.483153497524234, 3.4237996161352235, 3.364961855453945, 3.306640215480396, 3.248834696214578, 3.19154529765649, 3.1347720198061335, 3.0785148626635053, 3.02277382622861, 2.967548910501444, 2.912840115482009, 2.8586474411703042, 2.80497088756633, 2.751810454670087, 2.6991661424815736, 2.647037951000791, 2.5954258802277392, 2.5443299301624176, 2.493750100804826, 2.4436863921549663, 2.3941388042128358, 2.3451073369784363, 2.2965919904517675, 2.248592764632829, 2.201109659521621, 2.154142675118144, 2.1076918114223973, 2.0617570684343804, 2.016338446154095, 1.9714359445815393, 1.9270495637167153, 1.8831793035596203, 1.8398251641102568, 1.7969871453686235, 1.7546652473347208, 1.7128594700085489, 1.6715698133901071, 1.630796277479396, 1.5905388622764152, 1.5507975677811654, 1.5115723939936458, 1.4728633409138574, 1.4346704085417983, 1.3969935968774703, 1.359832905920873, 1.3231883356720058, 1.2870598861308693, 1.251447557297464, 1.2163513491717883, 1.181771261753843, 1.1477072950436291, 1.114159449041145, 1.081127723746392, 1.048612119159369, 1.0166126352800768, 0.985129272108515, 0.9541620296446838, 0.9237109078885832, 0.8937759068402129, 0.8643570264995732, 0.8354542668666642, 0.8070676279414852, 0.7791971097240373, 0.7518427122143196, 0.7250044354123326, 0.698682279318076, 0.6728762439315501, 0.6475863292527546, 0.6228125352816898, 0.5985548620183554, 0.5748133094627512, 0.5515878776148777, 0.5288785664747349, 0.5066853760423224, 0.4850083063176407, 0.4638473573006894, 0.4432025289914685, 0.4230738213899783, 0.4034612344962185, 0.3843647683101892, 0.3657844228318905, 0.34772019806132226, 0.33017209399848446, 0.3131401106433773, 0.2966242479960006, 0.2806245060563546, 0.26514088482443876, 0.2501733843002538, 0.23572200448379932, 0.22178674537507526, 0.20836760697408163, 0.19546458928081867, 0.18307769229528614, 0.17120691601748406, 0.15985226044741263, 0.14901372558507164, 0.13869131143046132, 0.12888501798358143, 0.11959484524443198, 0.11082079321301319, 0.10256286188932484, 0.09482105127336715, 0.0875953613651399, 0.08088579216464309, 0.07469234367187672, 0.069015015886841, 0.06385380880953573, 0.059208722439961115, 0.05507975677811694, 0.051466911824003425, 0.04837018757762013, 0.04578958403896771, 0.043725101208045514, 0.042176739084853976, 0.04114449766939288, 0.04062837696166244, 0.04062837696166244, 0.04114449766939288, 0.042176739084853976, 0.043725101208045514, 0.04578958403896749, 0.04837018757762013, 0.0514669118240032, 0.05507975677811694, 0.059208722439961115, 0.06385380880953573, 0.069015015886841, 0.0746923436718765, 0.08088579216464287, 0.08759536136513946, 0.09482105127336693, 0.10256286188932484, 0.11082079321301297, 0.11959484524443198, 0.1288850179835812, 0.1386913114304611, 0.14901372558507142, 0.1598522604474124, 0.17120691601748383, 0.18307769229528592, 0.19546458928081822, 0.2083676069740814, 0.22178674537507503, 0.23572200448379887, 0.2501733843002536, 0.26514088482443854, 0.28062450605635414, 0.2966242479960002, 0.3131401106433769, 0.3301720939984838, 0.3477201980613218, 0.3657844228318903, 0.38436476831018873, 0.40346123449621807, 0.4230738213899776, 0.4432025289914683, 0.4638473573006887, 0.48500830631764025, 0.5066853760423218, 0.5288785664747344, 0.551587877614877, 0.5748133094627508, 0.598554862018355, 0.6228125352816889, 0.6475863292527544, 0.6728762439315494, 0.6986822793180758, 0.725004435412332, 0.7518427122143194, 0.7791971097240364, 0.807067627941485, 0.8354542668666631, 0.8643570264995726, 0.8937759068402125, 0.9237109078885823, 0.9541620296446833, 0.9851292721085141, 1.0166126352800764, 1.048612119159368, 1.0811277237463912, 1.1141594490411437, 1.1477072950436282, 1.181771261753842, 1.2163513491717874, 1.251447557297463, 1.2870598861308684, 1.3231883356720058, 1.3598329059208716, 1.3969935968774698, 1.4346704085417974, 1.472863340913856, 1.5115723939936445, 1.5507975677811645, 1.5905388622764143, 1.6307962774793952, 1.6715698133901067, 1.7128594700085475, 1.7546652473347204, 1.7969871453686226, 1.8398251641102563, 1.8831793035596194, 1.927049563716714, 1.971435944581538, 2.016338446154094, 2.061757068434379, 2.107691811422396, 2.1541426751181434, 2.20110965952162, 2.2485927646328285, 2.296591990451766, 2.3451073369784354, 2.3941388042128344, 2.443686392154965, 2.4937501008048244, 2.5443299301624163, 2.595425880227737, 2.6470379510007898, 2.6991661424815727, 2.751810454670085, 2.8049708875663293, 2.858647441170303, 2.912840115482008, 2.967548910501442, 3.022773826228608, 3.0785148626635035, 3.1347720198061317, 3.1915452976564893, 3.248834696214576, 3.306640215480395, 3.3649618554539433, 3.4237996161352235, 3.483153497524232, 3.5430234996209737, 3.6034096224254437, 3.664311865937645, 3.725730230157577, 3.7876647150852403, 3.850115320720633, 3.9130820470637557, 3.9765648941146106, 4.040563861873196 ], [ 4.008048257286173, 3.9440492895275883, 3.8805664424767343, 3.8175997161336106, 3.755149110498218, 3.6932146255705547, 3.6317962613506225, 3.5708940178384214, 3.5105078950339514, 3.450637892937211, 3.3912840115482012, 3.332446250866921, 3.274124610893373, 3.216319091627555, 3.159029693069467, 3.1022564152191094, 3.045999258076483, 2.990258221641587, 2.9350333059144207, 2.8803245108949858, 2.826131836583281, 2.772455282979307, 2.7192948500830636, 2.6666505378945504, 2.614522346413768, 2.562910275640716, 2.5118143255753944, 2.461234496217803, 2.411170787567943, 2.3616231996258126, 2.312591732391413, 2.2640763858647444, 2.216077160045806, 2.168594054934598, 2.1216270705311207, 2.075176206835374, 2.0292414638473573, 1.983822841567072, 1.938920339994516, 1.8945339591296921, 1.850663698972597, 1.8073095595232336, 1.7644715407816003, 1.7221496427476977, 1.6803438654215257, 1.639054208803084, 1.5982806728923729, 1.558023257689392, 1.5182819631941422, 1.4790567894066227, 1.4403477363268342, 1.402154803954775, 1.364477992290447, 1.3273173013338497, 1.2906727310849826, 1.2545442815438461, 1.2189319527104407, 1.1838357445847651, 1.1492556571668198, 1.115191690456606, 1.0816438444541219, 1.048612119159369, 1.0160965145723457, 0.9840970306930537, 0.9526136675214918, 0.9216464250576606, 0.89119530330156, 0.8612603022531897, 0.8318414219125501, 0.8029386622796411, 0.774552023354462, 0.7466815051370141, 0.7193271076272965, 0.6924888308253094, 0.6661666747310528, 0.6403606393445269, 0.6150707246657314, 0.5902969306946666, 0.5660392574313322, 0.542297704875728, 0.5190722730278545, 0.4963629618877117, 0.47416977145529926, 0.4524927017306175, 0.4313317527136662, 0.4106869244044453, 0.3905582168029551, 0.37094562990919533, 0.351849163723166, 0.3332688182448673, 0.3152045934742991, 0.2976564894114613, 0.28062450605635414, 0.26410864340897744, 0.2481089014693314, 0.23262528023741558, 0.21765777971323064, 0.20320639989677614, 0.18927114078805207, 0.17585200238705845, 0.16294898469379548, 0.15056208770826296, 0.13869131143046087, 0.12733665586038945, 0.11649812099804846, 0.10617570684343813, 0.09636941339655825, 0.0870792406574088, 0.07830518862599001, 0.07004725730230166, 0.06230544668634397, 0.05507975677811672, 0.048370187577619905, 0.04217673908485353, 0.03649941129981782, 0.031338204222512545, 0.02669311785293793, 0.022564152191093756, 0.01895130723698024, 0.015854582990596944, 0.013273979451944529, 0.01120949662102233, 0.009661134497830792, 0.008628893082369693, 0.008112772374639254, 0.008112772374639254, 0.008628893082369693, 0.009661134497830792, 0.01120949662102233, 0.013273979451944307, 0.015854582990596944, 0.01895130723698002, 0.022564152191093756, 0.02669311785293793, 0.031338204222512545, 0.03649941129981782, 0.04217673908485331, 0.04837018757761968, 0.05507975677811627, 0.062305446686343746, 0.07004725730230166, 0.07830518862598979, 0.0870792406574088, 0.09636941339655802, 0.10617570684343791, 0.11649812099804824, 0.12733665586038923, 0.13869131143046065, 0.15056208770826274, 0.16294898469379504, 0.17585200238705823, 0.18927114078805185, 0.2032063998967757, 0.21765777971323041, 0.23262528023741535, 0.24810890146933096, 0.264108643408977, 0.2806245060563537, 0.2976564894114606, 0.31520459347429863, 0.3332688182448671, 0.35184916372316555, 0.3709456299091949, 0.39055821680295444, 0.4106869244044451, 0.43133175271366553, 0.45249270173061706, 0.4741697714552986, 0.49636296188771123, 0.5190722730278539, 0.5422977048757276, 0.5660392574313318, 0.5902969306946657, 0.6150707246657312, 0.6403606393445263, 0.6661666747310526, 0.6924888308253088, 0.7193271076272962, 0.7466815051370133, 0.7745520233544618, 0.80293866227964, 0.8318414219125494, 0.8612603022531893, 0.8911953033015592, 0.9216464250576601, 0.9526136675214909, 0.9840970306930532, 1.0160965145723448, 1.048612119159368, 1.0816438444541205, 1.115191690456605, 1.1492556571668189, 1.1838357445847643, 1.2189319527104399, 1.2545442815438452, 1.2906727310849826, 1.3273173013338484, 1.3644779922904466, 1.4021548039547742, 1.4403477363268329, 1.4790567894066213, 1.5182819631941413, 1.558023257689391, 1.598280672892372, 1.6390542088030835, 1.6803438654215244, 1.7221496427476972, 1.7644715407815994, 1.8073095595232331, 1.8506636989725962, 1.8945339591296908, 1.9389203399945147, 1.9838228415670707, 2.029241463847356, 2.0751762068353727, 2.12162707053112, 2.168594054934597, 2.2160771600458053, 2.264076385864743, 2.3125917323914122, 2.3616231996258112, 2.411170787567942, 2.461234496217801, 2.511814325575393, 2.562910275640714, 2.6145223464137666, 2.6666505378945495, 2.719294850083062, 2.772455282979306, 2.8261318365832797, 2.880324510894985, 2.935033305914419, 2.9902582216415854, 3.045999258076481, 3.1022564152191077, 3.159029693069466, 3.216319091627553, 3.274124610893372, 3.33244625086692, 3.3912840115481995, 3.450637892937209, 3.5105078950339497, 3.5708940178384196, 3.6317962613506225, 3.693214625570553, 3.755149110498216, 3.8175997161336106, 3.8805664424767325, 3.9440492895275874, 4.008048257286173 ], [ 3.9760487734068803, 3.912049805648296, 3.8485669585974422, 3.7856002322543185, 3.723149626618926, 3.6612151416912626, 3.5997967774713304, 3.5388945339591293, 3.4785084111546585, 3.4186384090579187, 3.3592845276689083, 3.300446766987629, 3.2421251270140807, 3.1843196077482627, 3.127030209190175, 3.0702569313398174, 3.01399977419719, 2.958258737762295, 2.9030338220351286, 2.8483250270156937, 2.794132352703989, 2.740455799100015, 2.6872953662037715, 2.6346510540152583, 2.582522862534476, 2.530910791761424, 2.4798148416961023, 2.429235012338511, 2.379171303688651, 2.3296237157465205, 2.280592248512121, 2.2320769019854523, 2.1840776761665137, 2.136594571055306, 2.0896275866518286, 2.043176722956082, 1.9972419799680652, 1.95182335768778, 1.906920856115224, 1.8625344752504, 1.818664215093305, 1.7753100756439415, 1.7324720569023082, 1.6901501588684056, 1.6483443815422336, 1.6070547249237919, 1.5662811890130808, 1.5260237738101, 1.4862824793148501, 1.4470573055273301, 1.4083482524475417, 1.370155320075483, 1.332478508411155, 1.2953178174545577, 1.2586732472056905, 1.222544797664554, 1.1869324688311482, 1.151836260705473, 1.1172561732875277, 1.0831922065773139, 1.0496443605748298, 1.0166126352800768, 0.9840970306930537, 0.9520975468137614, 0.9206141836421997, 0.8896469411783685, 0.8591958194222677, 0.8292608183738976, 0.799841938033258, 0.770939178400349, 0.7425525394751697, 0.7146820212577218, 0.6873276237480042, 0.6604893469460174, 0.6341671908517608, 0.6083611554652348, 0.5830712407864391, 0.5582974468153743, 0.5340397735520399, 0.510298220996436, 0.4870727891485622, 0.4643634780084194, 0.44217028757600696, 0.4204932178513252, 0.3993322688343739, 0.378687440525153, 0.3585587329236628, 0.33894614602990303, 0.3198496798438739, 0.30126933436557524, 0.283205109595007, 0.265657005532169, 0.24862502217706184, 0.23210915952968536, 0.2161094175900391, 0.2006257963581235, 0.18565829583393834, 0.17120691601748383, 0.15727165690875977, 0.14385251850776637, 0.1309495008145034, 0.11856260382897088, 0.1066918275511688, 0.09533717198109737, 0.08449863711875638, 0.07417622296414605, 0.06436992951726617, 0.05507975677811672, 0.04630570474669793, 0.03804777342300958, 0.030305962807051667, 0.023080272898824417, 0.016370703698327604, 0.010177255205561453, 0.00449992742052574, 0.0006612796567795343, 0.005306366026354259, 0.009435331688198434, 0.01304817664231206, 0.016144900888695135, 0.018725504427347772, 0.02078998725826986, 0.022338349381461398, 0.023370590796922497, 0.023886711504653046, 0.023886711504653046, 0.023370590796922497, 0.02233834938146151, 0.02078998725826986, 0.018725504427347772, 0.016144900888695246, 0.01304817664231206, 0.009435331688198545, 0.005306366026354259, 0.0006612796567796453, 0.004499927420525518, 0.01017725520556123, 0.016370703698327604, 0.023080272898824195, 0.030305962807051445, 0.03804777342300936, 0.04630570474669771, 0.055079756778116495, 0.06436992951726572, 0.07417622296414583, 0.08449863711875616, 0.09533717198109715, 0.10669182755116835, 0.11856260382897044, 0.13094950081450274, 0.14385251850776593, 0.15727165690875955, 0.1712069160174834, 0.18565829583393834, 0.20062579635812305, 0.21610941759003888, 0.2321091595296847, 0.24862502217706162, 0.26565700553216853, 0.28320510959500655, 0.3012693343655748, 0.31984967984387325, 0.3389461460299028, 0.35855873292366236, 0.3786874405251528, 0.3993322688343732, 0.420493217851325, 0.4421702875760065, 0.46436347800841915, 0.48707278914856156, 0.5102982209964353, 0.5340397735520397, 0.5582974468153736, 0.5830712407864389, 0.608361155465234, 0.6341671908517603, 0.6604893469460165, 0.6873276237480039, 0.7146820212577212, 0.7425525394751695, 0.7709391784003476, 0.7998419380332571, 0.8292608183738972, 0.8591958194222671, 0.8896469411783681, 0.9206141836421988, 0.9520975468137609, 0.9840970306930528, 1.016612635280076, 1.0496443605748285, 1.083192206577313, 1.1172561732875268, 1.1518362607054722, 1.1869324688311478, 1.2225447976645532, 1.25867324720569, 1.2953178174545563, 1.3324785084111546, 1.3701553200754817, 1.4083482524475408, 1.4470573055273293, 1.4862824793148492, 1.5260237738100986, 1.5662811890130799, 1.6070547249237914, 1.6483443815422323, 1.6901501588684051, 1.7324720569023073, 1.775310075643941, 1.8186642150933037, 1.8625344752503987, 1.9069208561152227, 1.9518233576877786, 1.9972419799680639, 2.0431767229560807, 2.089627586651828, 2.136594571055305, 2.1840776761665133, 2.232076901985451, 2.28059224851212, 2.329623715746519, 2.3791713036886497, 2.429235012338509, 2.479814841696101, 2.5309107917614218, 2.5825228625344745, 2.6346510540152575, 2.6872953662037697, 2.740455799100014, 2.7941323527039876, 2.848325027015693, 2.903033822035127, 2.9582587377622933, 3.0139997741971882, 3.0702569313398156, 3.127030209190174, 3.184319607748261, 3.24212512701408, 3.300446766987628, 3.3592845276689074, 3.418638409057917, 3.4785084111546576, 3.5388945339591276, 3.5997967774713295, 3.661215141691261, 3.723149626618924, 3.7856002322543176, 3.8485669585974405, 3.9120498056482953, 3.9760487734068803 ], [ 3.9445654102353185, 3.8805664424767343, 3.8170835954258804, 3.7541168690827575, 3.691666263447364, 3.6297317785197016, 3.5683134142997694, 3.5074111707875684, 3.4470250479830966, 3.387155045886357, 3.3278011644973464, 3.268963403816068, 3.210641763842519, 3.152836244576701, 3.095546846018613, 3.0387735681682564, 2.9825164110256286, 2.9267753745907332, 2.8715504588635667, 2.816841663844132, 2.762648989532427, 2.708972435928453, 2.6558120030322097, 2.6031676908436965, 2.551039499362914, 2.499427428589862, 2.4483314785245405, 2.397751649166949, 2.347687940517089, 2.2981403525749586, 2.249108885340559, 2.2005935388138904, 2.152594312994952, 2.105111207883744, 2.0581442234802667, 2.01169335978452, 1.9657586167965033, 1.920339994516218, 1.8754374929436621, 1.8310511120788382, 1.7871808519217431, 1.7438267124723796, 1.7009886937307463, 1.6586667956968437, 1.6168610183706718, 1.57557136175223, 1.534797825841519, 1.494540410638538, 1.4547991161432883, 1.4155739423557687, 1.3768648892759803, 1.3386719569039212, 1.3009951452395931, 1.2638344542829958, 1.2271898840341287, 1.1910614344929922, 1.1554491056595868, 1.1203528975339112, 1.0857728101159658, 1.051708843405752, 1.018160997403268, 0.985129272108515, 0.9526136675214918, 0.9206141836421997, 0.8891308204706379, 0.8581635780068066, 0.8277124562507061, 0.7977774552023358, 0.7683585748616961, 0.7394558152287871, 0.7110691763036081, 0.6831986580861602, 0.6558442605764425, 0.6290059837744555, 0.6026838276801989, 0.576877792293673, 0.5515878776148775, 0.5268140836438127, 0.5025564103804783, 0.4788148578248741, 0.4555894259770006, 0.43288011483685773, 0.4106869244044453, 0.38900985467976357, 0.36784890566281225, 0.3472040773535914, 0.32707536975210116, 0.3074627828583414, 0.28836631667231205, 0.2697859711940134, 0.25172174642344514, 0.23417364236060734, 0.2171416590055002, 0.2006257963581235, 0.18462605441847746, 0.16914243318656164, 0.1541749326623767, 0.1397235528459222, 0.12578829373719813, 0.11236915533620451, 0.09946613764294154, 0.08707924065740902, 0.07520846437960693, 0.0638538088095355, 0.05301527394719452, 0.04269285979258419, 0.032886566345704304, 0.023596393606554855, 0.014822341575136067, 0.0065644102514477165, 0.0011774003645099729, 0.008403090272737335, 0.015112659473234036, 0.02130610796600041, 0.026983435751036122, 0.032144642828341286, 0.03678972919791601, 0.040918694859760185, 0.04453153981387381, 0.047628264060256886, 0.05020886759890952, 0.05227335042983161, 0.05382171255302315, 0.05485395396848425, 0.0553700746762148, 0.0553700746762148, 0.05485395396848425, 0.05382171255302326, 0.05227335042983161, 0.05020886759890952, 0.047628264060257, 0.04453153981387381, 0.040918694859760296, 0.03678972919791601, 0.032144642828341397, 0.026983435751036122, 0.02130610796600052, 0.015112659473234258, 0.008403090272737557, 0.001177400364510195, 0.0065644102514477165, 0.014822341575135844, 0.023596393606554855, 0.03288656634570408, 0.04269285979258397, 0.0530152739471943, 0.06385380880953528, 0.07520846437960671, 0.0870792406574088, 0.0994661376429411, 0.11236915533620428, 0.1257882937371979, 0.13972355284592175, 0.15417493266237647, 0.16914243318656141, 0.18462605441847701, 0.20062579635812305, 0.21714165900549975, 0.23417364236060667, 0.2517217464234447, 0.26978597119401315, 0.2883663166723116, 0.30746278285834094, 0.3270753697521005, 0.34720407735359116, 0.3678489056628116, 0.3890098546797631, 0.41068692440444465, 0.4328801148368573, 0.4555894259769999, 0.47881485782487365, 0.5025564103804778, 0.5268140836438118, 0.5515878776148773, 0.5768777922936723, 0.6026838276801987, 0.6290059837744548, 0.6558442605764423, 0.6831986580861593, 0.7110691763036079, 0.739455815228786, 0.7683585748616955, 0.7977774552023353, 0.8277124562507052, 0.8581635780068062, 0.889130820470637, 0.9206141836421993, 0.9526136675214909, 0.9851292721085141, 1.0181609974032666, 1.051708843405751, 1.085772810115965, 1.1203528975339103, 1.155449105659586, 1.1910614344929913, 1.2271898840341287, 1.2638344542829945, 1.3009951452395927, 1.3386719569039203, 1.376864889275979, 1.4155739423557674, 1.4547991161432874, 1.4945404106385372, 1.534797825841518, 1.5755713617522296, 1.6168610183706704, 1.6586667956968433, 1.7009886937307455, 1.7438267124723792, 1.7871808519217423, 1.8310511120788369, 1.8754374929436608, 1.9203399945162167, 1.965758616796502, 2.011693359784519, 2.0581442234802663, 2.105111207883743, 2.1525943129949514, 2.200593538813889, 2.2491088853405583, 2.2981403525749573, 2.347687940517088, 2.3977516491669473, 2.448331478524539, 2.49942742858986, 2.5510394993629126, 2.6031676908436956, 2.655812003032208, 2.708972435928452, 2.7626489895324258, 2.816841663844131, 2.871550458863565, 2.9267753745907314, 2.982516411025627, 3.0387735681682546, 3.095546846018612, 3.152836244576699, 3.210641763842518, 3.268963403816066, 3.3278011644973464, 3.387155045886355, 3.4470250479830966, 3.5074111707875666, 3.5683134142997677, 3.6297317785197, 3.691666263447363, 3.7541168690827558, 3.8170835954258786, 3.8805664424767334, 3.9445654102353185 ], [ 3.9135981677714877, 3.8495992000129036, 3.7861163529620496, 3.723149626618926, 3.6606990209835333, 3.59876453605587, 3.537346171835938, 3.4764439283237367, 3.416057805519266, 3.356187803422526, 3.2968339220335157, 3.2379961613522363, 3.179674521378688, 3.12186900211287, 3.0645796035547823, 3.0078063257044247, 2.9515491685617974, 2.895808132126902, 2.8405832163997355, 2.7858744213803006, 2.731681747068596, 2.678005193464622, 2.6248447605683785, 2.5722004483798653, 2.5200722568990828, 2.468460186126031, 2.4173642360607093, 2.366784406703118, 2.316720698053258, 2.2671731101111274, 2.218141642876728, 2.169626296350059, 2.1216270705311207, 2.0741439654199127, 2.0271769810164355, 1.980726117320689, 1.9347913743326721, 1.8893727520523869, 1.844470250479831, 1.800083869615007, 1.7562136094579124, 1.7128594700085484, 1.6700214512669156, 1.627699553233013, 1.5858937759068406, 1.5446041192883992, 1.5038305833776882, 1.4635731681747068, 1.4238318736794575, 1.3846066998919375, 1.345897646812149, 1.30770471444009, 1.270027902775762, 1.2328672118191646, 1.196222641570298, 1.1600941920291614, 1.1244818631957556, 1.08938565507008, 1.0548055676521346, 1.0207416009419208, 0.9871937549394367, 0.9541620296446838, 0.9216464250576606, 0.8896469411783685, 0.8581635780068066, 0.8271963355429757, 0.7967452137868749, 0.7668102127385048, 0.7373913323978651, 0.7084885727649559, 0.6801019338397771, 0.652231415622329, 0.6248770181126115, 0.5980387413106243, 0.5717165852163679, 0.5459105498298418, 0.5206206351510465, 0.49584684117998146, 0.47158916791664707, 0.4478476153610431, 0.4246221835131694, 0.40191287237302653, 0.37971968194061434, 0.35804261221593237, 0.33688166319898105, 0.3162368348897604, 0.29610812728826996, 0.2764955403945102, 0.25739907420848107, 0.23881872873018217, 0.22075450395961416, 0.20320639989677614, 0.186174416541669, 0.1696585538942923, 0.15365881195464626, 0.13817519072273066, 0.12320769019854572, 0.10875631038209099, 0.09482105127336693, 0.08140191287237353, 0.06849889517911056, 0.05611199819357804, 0.04424122191577595, 0.032886566345704527, 0.02204803148336354, 0.011725617328753213, 0.001919323881873325, 0.007370848857276124, 0.016144900888694913, 0.024402832212383263, 0.03214464282834106, 0.039370332736568425, 0.046079901937065126, 0.0522733504298315, 0.05795067821486721, 0.06311188529217238, 0.0677569716617471, 0.07188593732359128, 0.0754987822777049, 0.07859550652408798, 0.08117611006274061, 0.0832405928936627, 0.08478895501685424, 0.08582119643231534, 0.08633731714004589, 0.08633731714004589, 0.08582119643231534, 0.08478895501685435, 0.0832405928936627, 0.08117611006274061, 0.07859550652408809, 0.0754987822777049, 0.07188593732359139, 0.0677569716617471, 0.06311188529217249, 0.05795067821486721, 0.05227335042983161, 0.04607990193706535, 0.03937033273656865, 0.032144642828341286, 0.024402832212383374, 0.016144900888695246, 0.007370848857276235, 0.0019193238818728808, 0.01172561732875299, 0.022048031483363317, 0.032886566345704304, 0.04424122191577551, 0.056111998193577595, 0.0684988951791099, 0.08140191287237308, 0.09482105127336693, 0.10875631038209055, 0.12320769019854527, 0.1381751907227302, 0.15365881195464604, 0.16965855389429185, 0.18617441654166877, 0.2032063998967757, 0.2207545039596135, 0.23881872873018195, 0.2573990742084804, 0.27649554039450996, 0.2961081272882695, 0.31623683488975995, 0.3368816631989806, 0.35804261221593214, 0.3797196819406137, 0.4019128723730263, 0.42462218351316894, 0.44784761536104245, 0.4715891679166466, 0.4958468411799808, 0.5206206351510461, 0.5459105498298413, 0.5717165852163677, 0.5980387413106238, 0.6248770181126111, 0.6522314156223281, 0.6801019338397767, 0.708488572764955, 0.7373913323978645, 0.7668102127385044, 0.796745213786874, 0.8271963355429752, 0.858163578006806, 0.8896469411783681, 0.9216464250576597, 0.9541620296446829, 0.9871937549394358, 1.02074160094192, 1.0548055676521337, 1.0893856550700791, 1.1244818631957552, 1.1600941920291605, 1.1962226415702975, 1.2328672118191637, 1.2700279027757615, 1.307704714440089, 1.3458976468121477, 1.3846066998919362, 1.4238318736794566, 1.463573168174706, 1.5038305833776868, 1.5446041192883984, 1.5858937759068397, 1.627699553233012, 1.6700214512669143, 1.712859470008548, 1.756213609457911, 1.8000838696150057, 1.84447025047983, 1.8893727520523855, 1.9347913743326708, 1.9807261173206876, 2.027176981016435, 2.074143965419912, 2.12162707053112, 2.169626296350058, 2.218141642876727, 2.267173110111126, 2.3167206980532566, 2.366784406703116, 2.417364236060708, 2.4684601861260287, 2.5200722568990814, 2.5722004483798644, 2.6248447605683767, 2.678005193464621, 2.7316817470685946, 2.7858744213802997, 2.8405832163997338, 2.8958081321269002, 2.9515491685617956, 3.007806325704423, 3.0645796035547814, 3.1218690021128683, 3.1796745213786872, 3.2379961613522354, 3.2968339220335148, 3.3561878034225243, 3.416057805519265, 3.476443928323735, 3.537346171835937, 3.598764536055868, 3.6606990209835315, 3.723149626618925, 3.786116352962048, 3.8495992000129027, 3.9135981677714877 ], [ 3.883147046015387, 3.819148078256802, 3.755665231205948, 3.6926985048628254, 3.630247899227432, 3.5683134142997694, 3.5068950500798373, 3.445992806567636, 3.3856066837631653, 3.3257366816664247, 3.266382800277415, 3.207545039596136, 3.1492233996225867, 3.0914178803567687, 3.034128481798681, 2.977355203948324, 2.921098046805697, 2.8653570103708015, 2.810132094643635, 2.7554232996242, 2.7012306253124954, 2.6475540717085213, 2.594393638812278, 2.5417493266237647, 2.4896211351429822, 2.4380090643699304, 2.3869131143046087, 2.3363332849470173, 2.2862695762971574, 2.236721988355027, 2.1876905211206275, 2.1391751745939587, 2.09117594877502, 2.043692843663812, 1.996725859260335, 1.9502749955645884, 1.9043402525765716, 1.8589216302962863, 1.8140191287237304, 1.7696327478589065, 1.7257624877018114, 1.682408348252448, 1.6395703295108146, 1.597248431476912, 1.55544265415074, 1.5141529975322983, 1.4733794616215872, 1.4331220464186063, 1.3933807519233565, 1.3541555781358365, 1.315446525056048, 1.2772535926839894, 1.2395767810196614, 1.202416090063064, 1.165771519814197, 1.1296430702730604, 1.0940307414396546, 1.0589345333139795, 1.024354445896034, 0.9902904791858202, 0.9567426331833362, 0.9237109078885832, 0.89119530330156, 0.8591958194222677, 0.8277124562507061, 0.7967452137868749, 0.7662940920307741, 0.736359090982404, 0.7069402106417644, 0.6780374510088554, 0.6496508120836761, 0.6217802938662282, 0.5944258963565106, 0.5675876195545237, 0.5412654634602672, 0.5154594280737412, 0.4901695133949455, 0.4653957194238807, 0.4411380461605463, 0.41739649360494235, 0.3941710617570686, 0.37146175061692577, 0.34926856018451335, 0.3275914904598316, 0.3064305414428803, 0.2857857131336594, 0.2656570055321692, 0.24604441863840942, 0.2269479524523803, 0.20836760697408163, 0.1903033822035134, 0.17275527814067537, 0.15572329478556823, 0.13920743213819176, 0.1232076901985455, 0.1077240689666299, 0.09275656844244473, 0.07830518862599023, 0.06436992951726617, 0.050950791116272764, 0.0380477734230098, 0.025660876437477276, 0.01379010015967519, 0.0024354445896037635, 0.008403090272737224, 0.01872550442734766, 0.02853179787422755, 0.03782197061337689, 0.046596022644795676, 0.054853953968484026, 0.06259576458444183, 0.06982145449266919, 0.07653102369316589, 0.08272447218593226, 0.08840179997096798, 0.09356300704827314, 0.09820809341784786, 0.10233705907969204, 0.10594990403380566, 0.10904662828018874, 0.11162723181884138, 0.11369171464976346, 0.115240076772955, 0.1162723181884161, 0.11678843889614665, 0.11678843889614665, 0.1162723181884161, 0.11524007677295511, 0.11369171464976346, 0.11162723181884138, 0.10904662828018885, 0.10594990403380566, 0.10233705907969215, 0.09820809341784786, 0.09356300704827325, 0.08840179997096798, 0.08272447218593237, 0.07653102369316611, 0.06982145449266941, 0.06259576458444205, 0.05485395396848414, 0.04659602264479601, 0.037821970613377, 0.02853179787422777, 0.018725504427347772, 0.008403090272737557, 0.0024354445896035415, 0.013790100159674745, 0.02566087643747683, 0.038047773423009135, 0.05095079111627232, 0.06436992951726594, 0.07830518862598979, 0.09275656844244473, 0.10772406896662945, 0.12320769019854527, 0.1392074321381911, 0.155723294785568, 0.17275527814067493, 0.19030338220351295, 0.2083676069740812, 0.22694795245237964, 0.2460444186384092, 0.26565700553216876, 0.2857857131336592, 0.3064305414428796, 0.3275914904598314, 0.3492685601845129, 0.37146175061692555, 0.39417106175706795, 0.4173964936049417, 0.4411380461605461, 0.46539571942388, 0.4901695133949453, 0.5154594280737403, 0.5412654634602667, 0.5675876195545229, 0.5944258963565103, 0.6217802938662276, 0.6496508120836759, 0.678037451008854, 0.7069402106417635, 0.7363590909824036, 0.7662940920307735, 0.7967452137868745, 0.8277124562507052, 0.8591958194222673, 0.8911953033015592, 0.9237109078885823, 0.9567426331833349, 0.9902904791858194, 1.0243544458960332, 1.0589345333139786, 1.0940307414396542, 1.1296430702730595, 1.1657715198141965, 1.2024160900630627, 1.239576781019661, 1.277253592683988, 1.3154465250560472, 1.3541555781358356, 1.3933807519233556, 1.433122046418605, 1.4733794616215863, 1.5141529975322978, 1.5554426541507387, 1.5972484314769115, 1.6395703295108137, 1.6824083482524474, 1.72576248770181, 1.7696327478589051, 1.814019128723729, 1.858921630296285, 1.9043402525765702, 1.950274995564587, 1.9967258592603345, 2.0436928436638113, 2.0911759487750197, 2.1391751745939573, 2.1876905211206266, 2.2367219883550256, 2.286269576297156, 2.3363332849470155, 2.3869131143046074, 2.438009064369928, 2.489621135142981, 2.541749326623764, 2.594393638812276, 2.6475540717085204, 2.701230625312494, 2.755423299624199, 2.8101320946436332, 2.8653570103707997, 2.921098046805695, 2.9773552039483224, 3.03412848179868, 3.091417880356767, 3.149223399622586, 3.207545039596134, 3.2663828002774142, 3.325736681666423, 3.3856066837631644, 3.4459928065676344, 3.5068950500798364, 3.5683134142997677, 3.630247899227431, 3.6926985048628245, 3.7556652312059464, 3.8191480782568012, 3.883147046015387 ], [ 3.853212044967017, 3.7892130772084327, 3.7257302301575788, 3.662763503814455, 3.6003128981790624, 3.538378413251399, 3.476960049031467, 3.416057805519266, 3.355671682714795, 3.2958016806180552, 3.236447799229045, 3.1776100385477655, 3.1192883985742172, 3.0614828793083992, 3.0041934807503115, 2.947420202899954, 2.8911630457573265, 2.835422009322431, 2.7801970935952647, 2.7254882985758297, 2.671295624264125, 2.617619070660151, 2.5644586377639076, 2.5118143255753944, 2.459686134094612, 2.40807406332156, 2.3569781132562384, 2.306398283898647, 2.256334575248787, 2.2067869873066566, 2.157755520072257, 2.1092401735455883, 2.06124094772665, 2.013757842615442, 1.9667908582119646, 1.920339994516218, 1.8744052515282013, 1.828986629247916, 1.78408412767536, 1.7396977468105361, 1.6958274866534415, 1.6524733472040776, 1.6096353284624447, 1.567313430428542, 1.5255076531023697, 1.4842179964839284, 1.4434444605732173, 1.403187045370236, 1.3634457508749867, 1.3242205770874667, 1.2855115240076782, 1.247318591635619, 1.209641779971291, 1.1724810890146937, 1.135836518765827, 1.0997080692246906, 1.0640957403912847, 1.0289995322656091, 0.9944194448476638, 0.9603554781374499, 0.9268076321349659, 0.8937759068402129, 0.8612603022531897, 0.8292608183738976, 0.7977774552023358, 0.7668102127385048, 0.736359090982404, 0.7064240899340339, 0.6770052095933943, 0.648102449960485, 0.6197158110353063, 0.5918452928178581, 0.5644908953081407, 0.5376526185061534, 0.5113304624118971, 0.4855244270253709, 0.46023451234657564, 0.4354607183755106, 0.4112030451121762, 0.38746149255657225, 0.3642360607086985, 0.34152674956855567, 0.3193335591361435, 0.2976564894114615, 0.2764955403945102, 0.25585071208528953, 0.2357220044837991, 0.21610941759003932, 0.1970129514040102, 0.1784326059257113, 0.1603683811551433, 0.14282027709230527, 0.12578829373719813, 0.10927243108982143, 0.09327268915017539, 0.07778906791825979, 0.06282156739407485, 0.04837018757762013, 0.034434928468896064, 0.021015790067902662, 0.008112772374639698, 0.004274124610892827, 0.016144900888695024, 0.02749955645876645, 0.038338091321107326, 0.048660505475717764, 0.05846679892259765, 0.06775697166174699, 0.07653102369316578, 0.08478895501685413, 0.09253076563281193, 0.09975645554103929, 0.10646602474153599, 0.11265947323430237, 0.11833680101933808, 0.12349800809664324, 0.12814309446621797, 0.13227206012806214, 0.13588490508217577, 0.13898162932855884, 0.14156223286721148, 0.14362671569813357, 0.1451750778213251, 0.1462073192367862, 0.14672343994451675, 0.14672343994451675, 0.1462073192367862, 0.14517507782132522, 0.14362671569813357, 0.14156223286721148, 0.13898162932855895, 0.13588490508217577, 0.13227206012806225, 0.12814309446621797, 0.12349800809664335, 0.11833680101933808, 0.11265947323430248, 0.10646602474153621, 0.09975645554103951, 0.09253076563281215, 0.08478895501685424, 0.07653102369316611, 0.0677569716617471, 0.058466798922597873, 0.048660505475717875, 0.03833809132110766, 0.02749955645876656, 0.016144900888695357, 0.004274124610893271, 0.008112772374639032, 0.021015790067902218, 0.034434928468896064, 0.04837018757761968, 0.0628215673940744, 0.07778906791825935, 0.09327268915017517, 0.10927243108982099, 0.1257882937371979, 0.14282027709230483, 0.16036838115514263, 0.17843260592571109, 0.19701295140400954, 0.2161094175900391, 0.23572200448379865, 0.2558507120852891, 0.27649554039450974, 0.2976564894114613, 0.3193335591361428, 0.34152674956855544, 0.3642360607086981, 0.3874614925565716, 0.41120304511217576, 0.4354607183755099, 0.4602345123465752, 0.48552442702537046, 0.5113304624118968, 0.537652618506153, 0.5644908953081402, 0.5918452928178572, 0.6197158110353058, 0.6481024499604842, 0.6770052095933936, 0.7064240899340335, 0.7363590909824032, 0.7668102127385044, 0.7977774552023351, 0.8292608183738972, 0.8612603022531888, 0.893775906840212, 0.926807632134965, 0.960355478137449, 0.9944194448476629, 1.0289995322656083, 1.0640957403912843, 1.0997080692246897, 1.1358365187658266, 1.1724810890146928, 1.2096417799712906, 1.2473185916356182, 1.2855115240076769, 1.3242205770874653, 1.3634457508749858, 1.403187045370235, 1.443444460573216, 1.4842179964839275, 1.5255076531023688, 1.5673134304285412, 1.6096353284624434, 1.6524733472040771, 1.6958274866534402, 1.7396977468105348, 1.7840841276753592, 1.8289866292479147, 1.8744052515282, 1.9203399945162167, 1.9667908582119642, 2.013757842615441, 2.0612409477266493, 2.109240173545587, 2.1577555200722562, 2.2067869873066552, 2.256334575248786, 2.306398283898645, 2.356978113256237, 2.408074063321558, 2.4596861340946106, 2.5118143255753935, 2.564458637763906, 2.61761907066015, 2.6712956242641237, 2.725488298575829, 2.780197093595263, 2.8354220093224294, 2.8911630457573247, 2.947420202899952, 3.0041934807503106, 3.0614828793083975, 3.1192883985742164, 3.1776100385477646, 3.236447799229044, 3.2958016806180535, 3.355671682714794, 3.416057805519264, 3.476960049031466, 3.5383784132513973, 3.6003128981790606, 3.662763503814454, 3.725730230157577, 3.789213077208432, 3.853212044967017 ], [ 3.8237931646263776, 3.7597941968677926, 3.6963113498169387, 3.633344623473816, 3.5708940178384223, 3.50895953291076, 3.4475411686908277, 3.3866389251786266, 3.3262528023741558, 3.266382800277415, 3.2070289188884056, 3.1481911582071263, 3.089869518233577, 3.032063998967759, 2.9747746004096713, 2.918001322559314, 2.861744165416687, 2.8060031289817915, 2.750778213254625, 2.69606941823519, 2.6418767439234854, 2.5882001903195113, 2.535039757423268, 2.4823954452347547, 2.4302672537539722, 2.3786551829809204, 2.3275592329155987, 2.2769794035580073, 2.2269156949081474, 2.177368106966017, 2.1283366397316175, 2.0798212932049487, 2.03182206738601, 1.9843389622748022, 1.937371977871325, 1.8909211141755784, 1.8449863711875616, 1.7995677489072763, 1.7546652473347204, 1.7102788664698965, 1.6664086063128019, 1.623054466863438, 1.580216448121805, 1.5378945500879024, 1.49608877276173, 1.4547991161432887, 1.4140255802325776, 1.3737681650295963, 1.334026870534347, 1.294801696746827, 1.2560926436670385, 1.2178997112949794, 1.1802228996306514, 1.143062208674054, 1.1064176384251874, 1.070289188884051, 1.034676860050645, 0.9995806519249695, 0.9650005645070241, 0.9309365977968103, 0.8973887517943262, 0.8643570264995732, 0.8318414219125501, 0.799841938033258, 0.7683585748616961, 0.7373913323978651, 0.7069402106417644, 0.6770052095933943, 0.6475863292527546, 0.6186835696198454, 0.5902969306946666, 0.5624264124772185, 0.535072014967501, 0.5082337381655138, 0.4819115820712574, 0.45610554668473124, 0.430815632005936, 0.4060418380348709, 0.38178416477153654, 0.3580426122159326, 0.33481718036805885, 0.312107869227916, 0.2899146787955038, 0.26823760907082184, 0.24707666005387052, 0.22643183174464987, 0.20630312414315943, 0.18669053724939966, 0.16759407106337054, 0.14901372558507164, 0.13094950081450363, 0.1134013967516656, 0.09636941339655847, 0.07985355074918177, 0.06385380880953573, 0.04837018757762013, 0.03340268705343519, 0.018951307236980464, 0.005016048128256401, 0.008403090272737002, 0.021306107966000076, 0.03369300495153249, 0.04556378122933469, 0.056918436799406114, 0.06775697166174699, 0.07807938581635743, 0.08788567926323732, 0.09717585200238665, 0.10594990403380544, 0.11420783535749379, 0.12194964597345159, 0.12917533588167895, 0.13588490508217566, 0.14207835357494203, 0.14775568135997774, 0.1529168884372829, 0.15756197480685763, 0.1616909404687018, 0.16530378542281543, 0.1684005096691985, 0.17098111320785114, 0.17304559603877323, 0.17459395816196477, 0.17562619957742587, 0.17614232028515642, 0.17614232028515642, 0.17562619957742587, 0.17459395816196488, 0.17304559603877323, 0.17098111320785114, 0.16840050966919862, 0.16530378542281543, 0.16169094046870192, 0.15756197480685763, 0.15291688843728302, 0.14775568135997774, 0.14207835357494214, 0.13588490508217588, 0.12917533588167918, 0.12194964597345181, 0.1142078353574939, 0.10594990403380578, 0.09717585200238676, 0.08788567926323754, 0.07807938581635754, 0.06775697166174732, 0.056918436799406225, 0.04556378122933502, 0.033693004951532934, 0.02130610796600063, 0.008403090272737446, 0.005016048128256401, 0.01895130723698002, 0.03340268705343474, 0.04837018757761968, 0.0638538088095355, 0.07985355074918132, 0.09636941339655825, 0.11340139675166516, 0.13094950081450296, 0.14901372558507142, 0.16759407106336988, 0.18669053724939944, 0.206303124143159, 0.22643183174464943, 0.24707666005387008, 0.2682376090708216, 0.28991467879550314, 0.3121078692279158, 0.3348171803680584, 0.3580426122159319, 0.3817841647715361, 0.40604183803487026, 0.43081563200593553, 0.4561055466847308, 0.48191158207125717, 0.5082337381655133, 0.5350720149675006, 0.5624264124772176, 0.5902969306946662, 0.6186835696198445, 0.647586329252754, 0.6770052095933938, 0.7069402106417635, 0.7373913323978647, 0.7683585748616955, 0.7998419380332575, 0.8318414219125492, 0.8643570264995724, 0.8973887517943253, 0.9309365977968094, 0.9650005645070232, 0.9995806519249686, 1.0346768600506446, 1.07028918888405, 1.106417638425187, 1.1430622086740532, 1.180222899630651, 1.2178997112949785, 1.2560926436670372, 1.2948016967468257, 1.334026870534346, 1.3737681650295954, 1.4140255802325763, 1.4547991161432878, 1.4960887727617291, 1.5378945500879015, 1.5802164481218037, 1.6230544668634375, 1.6664086063128005, 1.7102788664698951, 1.7546652473347195, 1.799567748907275, 1.8449863711875603, 1.890921114175577, 1.9373719778713245, 1.9843389622748013, 2.0318220673860097, 2.0798212932049474, 2.1283366397316166, 2.1773681069660156, 2.226915694908146, 2.2769794035580055, 2.3275592329155974, 2.378655182980918, 2.430267253753971, 2.482395445234754, 2.535039757423266, 2.5882001903195104, 2.641876743923484, 2.696069418235189, 2.7507782132546232, 2.8060031289817897, 2.861744165416685, 2.9180013225593124, 2.9747746004096705, 3.0320639989677574, 3.0898695182335763, 3.1481911582071245, 3.2070289188884047, 3.2663828002774133, 3.326252802374155, 3.386638925178625, 3.447541168690827, 3.508959532910758, 3.5708940178384214, 3.633344623473815, 3.696311349816937, 3.7597941968677917, 3.8237931646263776 ], [ 3.7948904049934686, 3.7308914372348836, 3.6674085901840296, 3.604441863840906, 3.5419912582055133, 3.48005677327785, 3.418638409057918, 3.3577361655457167, 3.2973500427412468, 3.237480040644506, 3.1781261592554966, 3.1192883985742164, 3.060966758600668, 3.00316123933485, 2.9458718407767623, 2.889098562926405, 2.832841405783778, 2.7771003693488825, 2.721875453621716, 2.667166658602281, 2.6129739842905764, 2.5592974306866023, 2.506136997790359, 2.4534926856018457, 2.4013644941210632, 2.3497524233480114, 2.2986564732826897, 2.2480766439250983, 2.1980129352752384, 2.148465347333108, 2.0994338800987085, 2.0509185335720397, 2.002919307753101, 1.9554362026418932, 1.908469218238416, 1.8620183545426694, 1.8160836115546526, 1.7706649892743673, 1.7257624877018114, 1.6813761068369875, 1.6375058466798924, 1.594151707230529, 1.5513136884888956, 1.508991790454993, 1.467186013128821, 1.4258963565103793, 1.3851228205996682, 1.3448654053966873, 1.3051241109014375, 1.265898937113918, 1.2271898840341295, 1.1889969516620704, 1.1513201399977424, 1.114159449041145, 1.077514878792278, 1.0413864292511414, 1.005774100417736, 0.9706778922920605, 0.9360978048741151, 0.9020338381639013, 0.8684859921614172, 0.8354542668666642, 0.8029386622796411, 0.770939178400349, 0.7394558152287871, 0.7084885727649559, 0.6780374510088554, 0.648102449960485, 0.6186835696198454, 0.5897808099869364, 0.5613941710617574, 0.5335236528443095, 0.5061692553345918, 0.47933097853260476, 0.45300882243834817, 0.42720278705182224, 0.40191287237302675, 0.3771390784019619, 0.35288140513862754, 0.32913985258302336, 0.30591442073514985, 0.283205109595007, 0.2610119191625946, 0.23933484943791283, 0.21817390042096152, 0.19752907211174064, 0.17740036451025043, 0.15778777761649065, 0.13869131143046132, 0.12011096595216264, 0.1020467411815944, 0.0844986371187566, 0.06746665376364946, 0.050950791116272764, 0.034951049176626725, 0.019467427944710902, 0.004499927420525962, 0.00995145239592854, 0.023886711504652602, 0.03730584990564623, 0.05020886759890919, 0.06259576458444172, 0.0744665408622438, 0.08582119643231523, 0.0966597312946561, 0.10698214544926654, 0.11678843889614643, 0.12607861163529577, 0.13485266366671467, 0.1431105949904029, 0.1508524056063607, 0.15807809551458807, 0.16478766471508477, 0.17098111320785114, 0.17665844099288686, 0.18181964807019202, 0.18646473443976674, 0.19059370010161092, 0.19420654505572454, 0.19730326930210762, 0.19988387284076026, 0.20194835567168234, 0.20349671779487388, 0.20452895921033498, 0.20504507991806553, 0.20504507991806553, 0.20452895921033498, 0.203496717794874, 0.20194835567168234, 0.19988387284076026, 0.19730326930210773, 0.19420654505572454, 0.19059370010161103, 0.18646473443976674, 0.18181964807019213, 0.17665844099288686, 0.17098111320785125, 0.164787664715085, 0.1580780955145883, 0.15085240560636093, 0.14311059499040302, 0.1348526636667149, 0.12607861163529588, 0.11678843889614665, 0.10698214544926665, 0.09665973129465644, 0.08582119643231534, 0.07446654086224413, 0.06259576458444194, 0.050208867598909634, 0.03730584990564656, 0.023886711504652824, 0.009951452395928984, 0.00449992742052574, 0.01946742794471068, 0.03495104917662628, 0.05095079111627232, 0.06746665376364902, 0.08449863711875594, 0.10204674118159396, 0.12011096595216242, 0.13869131143046087, 0.1577877776164902, 0.17740036451024976, 0.19752907211174042, 0.21817390042096085, 0.2393348494379124, 0.2610119191625939, 0.28320510959500655, 0.3059144207351492, 0.3291398525830229, 0.3528814051386271, 0.37713907840196104, 0.40191287237302653, 0.4272027870518216, 0.45300882243834795, 0.4793309785326041, 0.5061692553345916, 0.5335236528443086, 0.5613941710617572, 0.5897808099869353, 0.6186835696198447, 0.6481024499604846, 0.6780374510088545, 0.7084885727649555, 0.7394558152287862, 0.7709391784003485, 0.8029386622796402, 0.8354542668666634, 0.8684859921614161, 0.9020338381639004, 0.9360978048741142, 0.9706778922920596, 1.0057741004177352, 1.0413864292511406, 1.077514878792278, 1.1141594490411437, 1.151320139997742, 1.1889969516620695, 1.2271898840341282, 1.2658989371139167, 1.3051241109014367, 1.3448654053966864, 1.3851228205996673, 1.4258963565103788, 1.4671860131288197, 1.5089917904549925, 1.5513136884888947, 1.5941517072305285, 1.6375058466798915, 1.6813761068369861, 1.72576248770181, 1.770664989274366, 1.8160836115546513, 1.862018354542668, 1.9084692182384155, 1.9554362026418923, 2.0029193077531007, 2.0509185335720383, 2.0994338800987076, 2.1484653473331066, 2.198012935275237, 2.2480766439250965, 2.2986564732826884, 2.349752423348009, 2.401364494121062, 2.453492685601845, 2.506136997790357, 2.5592974306866014, 2.612973984290575, 2.66716665860228, 2.7218754536217142, 2.7771003693488807, 2.832841405783776, 2.8890985629264034, 2.9458718407767615, 3.0031612393348484, 3.0609667586006672, 3.1192883985742155, 3.178126159255495, 3.2374800406445043, 3.297350042741245, 3.357736165545715, 3.418638409057918, 3.4800567732778482, 3.5419912582055115, 3.604441863840906, 3.667408590184028, 3.7308914372348827, 3.7948904049934686 ], [ 3.766503766068289, 3.702504798309705, 3.639021951258851, 3.576055224915727, 3.5136046192803345, 3.4516701343526712, 3.390251770132739, 3.329349526620538, 3.268963403816067, 3.2090934017193273, 3.149739520330317, 3.0909017596490376, 3.0325801196754893, 2.9747746004096713, 2.9174852018515836, 2.860711924001226, 2.8044547668585986, 2.7487137304237033, 2.6934888146965372, 2.6387800196771023, 2.5845873453653976, 2.530910791761423, 2.4777503588651797, 2.4251060466766665, 2.3729778551958844, 2.3213657844228326, 2.270269834357511, 2.2196900049999195, 2.169626296350059, 2.120078708407929, 2.0710472411735292, 2.0225318946468605, 1.9745326688279219, 1.9270495637167144, 1.8800825793132372, 1.8336317156174902, 1.7876969726294734, 1.7422783503491885, 1.6973758487766322, 1.6529894679118087, 1.6091192077547136, 1.5657650683053497, 1.5229270495637168, 1.4806051515298142, 1.4387993742036418, 1.3975097175852005, 1.3567361816744894, 1.3164787664715085, 1.2767374719762588, 1.2375122981887388, 1.1988032451089503, 1.1606103127368916, 1.1229335010725636, 1.0857728101159658, 1.0491282398670991, 1.0129997903259627, 0.9773874614925568, 0.9422912533668815, 0.9077111659489361, 0.8736471992387222, 0.8400993532362382, 0.8070676279414852, 0.774552023354462, 0.7425525394751697, 0.7110691763036081, 0.6801019338397771, 0.6496508120836761, 0.6197158110353063, 0.5902969306946666, 0.5613941710617574, 0.5330075321365784, 0.5051370139191302, 0.4777826164094128, 0.45094433960742575, 0.4246221835131694, 0.39881614812664323, 0.37352623344784774, 0.3487524394767827, 0.3244947662134483, 0.3007532136578446, 0.2775277818099706, 0.254818470669828, 0.23262528023741558, 0.2109482105127336, 0.1897872614957823, 0.16914243318656164, 0.14901372558507142, 0.12940113869131165, 0.11030467250528231, 0.09172432702698363, 0.0736601022564154, 0.056111998193577595, 0.039080014838470234, 0.022564152191093756, 0.0065644102514474945, 0.008919210980467995, 0.023886711504653046, 0.03833809132110755, 0.05227335042983161, 0.06569248883082524, 0.0785955065240882, 0.09098240350962072, 0.10285317978742281, 0.11420783535749424, 0.1250463702198351, 0.13536878437444555, 0.14517507782132544, 0.15446525056047478, 0.16323930259189368, 0.17149723391558191, 0.17923904453153972, 0.18646473443976708, 0.19317430364026378, 0.19936775213303015, 0.20504507991806586, 0.21020628699537103, 0.21485137336494575, 0.21898033902678993, 0.22259318398090355, 0.22568990822728663, 0.22827051176593927, 0.23033499459686135, 0.2318833567200529, 0.232915598135514, 0.23343171884324454, 0.23343171884324454, 0.232915598135514, 0.231883356720053, 0.23033499459686135, 0.22827051176593927, 0.22568990822728674, 0.22259318398090355, 0.21898033902679004, 0.21485137336494575, 0.21020628699537114, 0.20504507991806586, 0.19936775213303026, 0.193174303640264, 0.1864647344397673, 0.17923904453153994, 0.17149723391558203, 0.1632393025918939, 0.1544652505604749, 0.14517507782132566, 0.13536878437444566, 0.12504637021983545, 0.11420783535749435, 0.10285317978742314, 0.09098240350962095, 0.07859550652408864, 0.06569248883082557, 0.05227335042983183, 0.03833809132110799, 0.02388671150465327, 0.00891921098046844, 0.0065644102514474945, 0.022564152191093312, 0.039080014838470234, 0.05611199819357715, 0.07366010225641495, 0.09172432702698341, 0.11030467250528186, 0.12940113869131142, 0.14901372558507076, 0.16914243318656141, 0.18978726149578184, 0.21094821051273338, 0.2326252802374149, 0.25481847066982755, 0.2775277818099702, 0.3007532136578437, 0.3244947662134481, 0.34875243947678225, 0.3735262334478473, 0.39881614812664257, 0.42462218351316894, 0.4509443396074251, 0.47778261640941233, 0.5051370139191296, 0.5330075321365779, 0.5613941710617563, 0.5902969306946657, 0.6197158110353058, 0.6496508120836755, 0.6801019338397767, 0.7110691763036074, 0.7425525394751693, 0.7745520233544612, 0.8070676279414843, 0.8400993532362371, 0.8736471992387214, 0.9077111659489352, 0.9422912533668806, 0.9773874614925564, 1.0129997903259618, 1.0491282398670987, 1.085772810115965, 1.1229335010725627, 1.1606103127368903, 1.198803245108949, 1.2375122981887374, 1.2767374719762579, 1.3164787664715072, 1.3567361816744885, 1.3975097175851996, 1.438799374203641, 1.4806051515298133, 1.522927049563716, 1.5657650683053497, 1.6091192077547123, 1.652989467911807, 1.6973758487766313, 1.7422783503491868, 1.7876969726294725, 1.8336317156174893, 1.8800825793132363, 1.9270495637167135, 1.9745326688279219, 2.0225318946468596, 2.0710472411735283, 2.1200787084079273, 2.1696262963500583, 2.2196900049999178, 2.270269834357509, 2.32136578442283, 2.3729778551958827, 2.4251060466766656, 2.477750358865178, 2.530910791761422, 2.584587345365396, 2.6387800196771014, 2.6934888146965354, 2.7487137304237015, 2.804454766858597, 2.860711924001224, 2.9174852018515827, 2.9747746004096696, 3.0325801196754885, 3.0909017596490367, 3.149739520330316, 3.2090934017193256, 3.268963403816066, 3.329349526620536, 3.390251770132738, 3.4516701343526695, 3.5136046192803327, 3.5760552249157262, 3.639021951258849, 3.702504798309704, 3.766503766068289 ], [ 3.7386332478508413, 3.6746342800922562, 3.6111514330414023, 3.5481847066982795, 3.485734101062886, 3.4237996161352235, 3.3623812519152914, 3.3014790084030903, 3.2410928855986194, 3.1812228835018788, 3.121869002112869, 3.06303124143159, 3.004709601458041, 2.946904082192223, 2.8896146836341354, 2.8328414057837783, 2.776584248641151, 2.7208432122062556, 2.665618296479089, 2.610909501459654, 2.5567168271479495, 2.5030402735439754, 2.449879840647732, 2.397235528459219, 2.3451073369784363, 2.2934952662053845, 2.242399316140063, 2.1918194867824714, 2.1417557781326115, 2.092208190190481, 2.0431767229560815, 1.9946613764294128, 1.9466621506104742, 1.8991790454992663, 1.852212061095789, 1.8057611974000425, 1.7598264544120257, 1.7144078321317404, 1.6695053305591845, 1.6251189496943605, 1.5812486895372655, 1.537894550087902, 1.4950565313462687, 1.452734633312366, 1.410928855986194, 1.3696391993677524, 1.3288656634570413, 1.2886082482540604, 1.2488669537588106, 1.2096417799712906, 1.1709327268915022, 1.1327397945194435, 1.0950629828551155, 1.0579022918985181, 1.021257721649651, 0.9851292721085145, 0.9495169432751087, 0.9144207351494336, 0.8798406477314882, 0.8457766810212743, 0.8122288350187903, 0.7791971097240373, 0.7466815051370141, 0.7146820212577218, 0.6831986580861602, 0.652231415622329, 0.6217802938662282, 0.5918452928178581, 0.5624264124772185, 0.5335236528443095, 0.5051370139191302, 0.47726649570168234, 0.44991209819196465, 0.42307382138997784, 0.39675166529572126, 0.37094562990919533, 0.3456557152303996, 0.3208819212593348, 0.2966242479960004, 0.27288269544039645, 0.24965726359252272, 0.22694795245237986, 0.20475476201996745, 0.1830776922952857, 0.16191674327833439, 0.1412719149691135, 0.1211432073676233, 0.10153062047386352, 0.0824341542878344, 0.06385380880953573, 0.04578958403896749, 0.02824147997612947, 0.01120949662102233, 0.005306366026354259, 0.02130610796600041, 0.03678972919791601, 0.05175722972210106, 0.06620860953855567, 0.08014386864727974, 0.09356300704827314, 0.10646602474153621, 0.11885292172706863, 0.13072369800487083, 0.14207835357494225, 0.15291688843728313, 0.16323930259189356, 0.17304559603877345, 0.1823357687779228, 0.19110982080934158, 0.19936775213302993, 0.20710956274898773, 0.2143352526572151, 0.2210448218577118, 0.22723827035047817, 0.23291559813551388, 0.23807680521281904, 0.24272189158239377, 0.24685085724423794, 0.25046370219835157, 0.25356042644473464, 0.2561410299833873, 0.25820551281430937, 0.2597538749375009, 0.260786116352962, 0.26130223706069255, 0.26130223706069255, 0.260786116352962, 0.259753874937501, 0.25820551281430937, 0.2561410299833873, 0.25356042644473475, 0.25046370219835157, 0.24685085724423805, 0.24272189158239377, 0.23807680521281915, 0.23291559813551388, 0.22723827035047828, 0.22104482185771201, 0.2143352526572153, 0.20710956274898795, 0.19936775213303004, 0.1911098208093419, 0.1823357687779229, 0.17304559603877367, 0.16323930259189368, 0.15291688843728346, 0.14207835357494236, 0.13072369800487116, 0.11885292172706907, 0.10646602474153677, 0.09356300704827358, 0.08014386864727985, 0.06620860953855601, 0.05175722972210128, 0.036789729197916454, 0.02130610796600063, 0.005306366026354814, 0.011209496621022108, 0.028241479976129025, 0.045789584038967046, 0.06385380880953528, 0.08243415428783374, 0.1015306204738633, 0.12114320736762285, 0.1412719149691133, 0.16191674327833372, 0.18307769229528548, 0.204754762019967, 0.22694795245237964, 0.24965726359252205, 0.2728826954403958, 0.2966242479960002, 0.3208819212593341, 0.3456557152303994, 0.37094562990919444, 0.3967516652957208, 0.42307382138997696, 0.4499120981919644, 0.47726649570168167, 0.50513701391913, 0.5335236528443081, 0.5624264124772176, 0.5918452928178577, 0.6217802938662276, 0.6522314156223286, 0.6831986580861593, 0.7146820212577214, 0.7466815051370133, 0.7791971097240364, 0.812228835018789, 0.8457766810212735, 0.8798406477314873, 0.9144207351494327, 0.9495169432751083, 0.9851292721085136, 1.0212577216496506, 1.0579022918985168, 1.095062982855115, 1.1327397945194422, 1.1709327268915013, 1.2096417799712897, 1.2488669537588097, 1.288608248254059, 1.3288656634570404, 1.369639199367752, 1.4109288559861928, 1.4527346333123656, 1.4950565313462678, 1.5378945500879015, 1.5812486895372642, 1.6251189496943592, 1.6695053305591832, 1.714407832131739, 1.7598264544120243, 1.8057611974000412, 1.8522120610957886, 1.8991790454992654, 1.9466621506104738, 1.9946613764294114, 2.0431767229560807, 2.0922081901904797, 2.14175577813261, 2.1918194867824696, 2.2423993161400615, 2.2934952662053822, 2.345107336978435, 2.397235528459218, 2.4498798406477302, 2.5030402735439745, 2.556716827147948, 2.6109095014596533, 2.6656182964790873, 2.720843212206254, 2.776584248641149, 2.8328414057837765, 2.8896146836341345, 2.9469040821922214, 3.00470960145804, 3.063031241431588, 3.1218690021128683, 3.181222883501877, 3.2410928855986185, 3.3014790084030885, 3.3623812519152905, 3.4237996161352218, 3.485734101062885, 3.5481847066982786, 3.6111514330414005, 3.6746342800922553, 3.7386332478508413 ], [ 3.711278850341124, 3.6472798825825388, 3.583797035531685, 3.520830309188562, 3.4583797035531685, 3.396445218625506, 3.335026854405574, 3.274124610893373, 3.213738488088902, 3.1538684859921613, 3.0945146046031518, 3.0356768439218724, 2.9773552039483233, 2.9195496846825053, 2.8622602861244175, 2.805487008274061, 2.7492298511314335, 2.693488814696538, 2.638263898969371, 2.5835551039499363, 2.5293624296382315, 2.475685876034258, 2.4225254431380145, 2.3698811309495014, 2.3177529394687184, 2.2661408686956666, 2.215044918630345, 2.1644650892727535, 2.114401380622894, 2.064853792680763, 2.015822325446364, 1.9673069789196953, 1.9193077531007567, 1.8718246479895484, 1.8248576635860712, 1.778406799890325, 1.7324720569023082, 1.6870534346220225, 1.642150933049467, 1.5977645521846426, 1.553894292027548, 1.5105401525781845, 1.4677021338365512, 1.4253802358026486, 1.3835744584764766, 1.342284801858035, 1.3015112659473238, 1.2612538507443425, 1.2215125562490932, 1.1822873824615732, 1.1435783293817847, 1.1053853970097256, 1.0677085853453976, 1.0305478943888007, 0.9939033241399335, 0.9577748745987971, 0.9221625457653913, 0.8870663376397159, 0.8524862502217705, 0.8184222835115567, 0.7848744375090726, 0.7518427122143196, 0.7193271076272965, 0.6873276237480042, 0.6558442605764425, 0.6248770181126115, 0.5944258963565106, 0.5644908953081407, 0.535072014967501, 0.5061692553345918, 0.4777826164094128, 0.44991209819196465, 0.4225577006822472, 0.39571942388026016, 0.3693972677860038, 0.34359123239947764, 0.31830131772068215, 0.2935275237496171, 0.2692698504862827, 0.24552829793067898, 0.22230286608280503, 0.1995935549426624, 0.17740036451024999, 0.155723294785568, 0.1345623457686167, 0.11391751745939604, 0.09378880985790583, 0.07417622296414605, 0.05507975677811672, 0.03649941129981804, 0.018435186529249803, 0.0008870824664120036, 0.016144900888695246, 0.032660763536071835, 0.048660505475717986, 0.06414412670763359, 0.07911162723181864, 0.09356300704827314, 0.1074982661569972, 0.12091740455799083, 0.1338204222512538, 0.14620731923678632, 0.1580780955145884, 0.16943275108465983, 0.1802712859470007, 0.19059370010161114, 0.20039999354849103, 0.20969016628764037, 0.21846421831905927, 0.2267221496427475, 0.2344639602587053, 0.24168965016693267, 0.24839921936742937, 0.25459266786019574, 0.26026999564523146, 0.2654312027225366, 0.27007628909211134, 0.2742052547539555, 0.27781809970806914, 0.2809148239544522, 0.28349542749310486, 0.28555991032402694, 0.2871082724472185, 0.2881405138626796, 0.28865663457041013, 0.28865663457041013, 0.2881405138626796, 0.2871082724472186, 0.28555991032402694, 0.28349542749310486, 0.28091482395445233, 0.27781809970806914, 0.27420525475395563, 0.27007628909211134, 0.26543120272253673, 0.26026999564523146, 0.25459266786019585, 0.2483992193674296, 0.2416896501669329, 0.23446396025870553, 0.22672214964274762, 0.2184642183190595, 0.20969016628764048, 0.20039999354849125, 0.19059370010161125, 0.18027128594700104, 0.16943275108465994, 0.15807809551458873, 0.14620731923678654, 0.13382042225125423, 0.12091740455799116, 0.10749826615699742, 0.09356300704827358, 0.07911162723181886, 0.06414412670763403, 0.04866050547571821, 0.03266076353607228, 0.016144900888695468, 0.0008870824664115595, 0.01843518652924936, 0.03649941129981782, 0.05507975677811627, 0.07417622296414583, 0.09378880985790516, 0.11391751745939582, 0.13456234576861625, 0.1557232947855678, 0.17740036451024932, 0.19959355494266195, 0.22230286608280458, 0.2455282979306781, 0.2692698504862825, 0.29352752374961666, 0.3183013177206817, 0.343591232399477, 0.36939726778600335, 0.3957194238802595, 0.42255770068224674, 0.449912098191964, 0.47778261640941233, 0.5061692553345907, 0.5350720149675001, 0.5644908953081402, 0.5944258963565099, 0.6248770181126111, 0.6558442605764419, 0.6873276237480037, 0.7193271076272956, 0.7518427122143188, 0.7848744375090715, 0.8184222835115558, 0.8524862502217696, 0.887066337639715, 0.9221625457653908, 0.9577748745987962, 0.9939033241399331, 1.0305478943887993, 1.0677085853453976, 1.1053853970097247, 1.1435783293817838, 1.1822873824615723, 1.2215125562490923, 1.2612538507443416, 1.3015112659473225, 1.3422848018580344, 1.3835744584764753, 1.4253802358026482, 1.46770213383655, 1.5105401525781836, 1.5538942920275467, 1.5977645521846418, 1.6421509330494657, 1.6870534346220216, 1.7324720569023064, 1.7784067998903232, 1.8248576635860712, 1.8718246479895475, 1.9193077531007559, 1.9673069789196935, 2.015822325446363, 2.064853792680762, 2.1144013806228923, 2.1644650892727517, 2.215044918630344, 2.266140868695665, 2.3177529394687175, 2.3698811309495005, 2.4225254431380128, 2.475685876034257, 2.5293624296382307, 2.5835551039499354, 2.6382638989693694, 2.6934888146965363, 2.7492298511314317, 2.805487008274059, 2.8622602861244166, 2.9195496846825035, 2.9773552039483224, 3.0356768439218706, 3.094514604603151, 3.1538684859921595, 3.213738488088901, 3.274124610893371, 3.335026854405573, 3.3964452186255043, 3.4583797035531676, 3.520830309188561, 3.583797035531683, 3.647279882582538, 3.711278850341124 ], [ 3.6844405735391366, 3.6204416057805524, 3.5569587587296976, 3.4939920323865747, 3.4315414267511812, 3.369606941823519, 3.3081885776035866, 3.2472863340913856, 3.1869002112869147, 3.127030209190174, 3.0676763278011645, 3.008838567119885, 2.9505169271463365, 2.8927114078805185, 2.8354220093224307, 2.7786487314720736, 2.7223915743294462, 2.666650537894551, 2.6114256221673844, 2.5567168271479495, 2.5025241528362447, 2.4488475992322707, 2.3956871663360273, 2.343042854147514, 2.2909146626667316, 2.2393025918936798, 2.188206641828358, 2.1376268124707667, 2.087563103820907, 2.0380155158787763, 1.9889840486443768, 1.940468702117708, 1.8924694762987695, 1.8449863711875616, 1.7980193867840844, 1.7515685230883378, 1.705633780100321, 1.6602151578200357, 1.6153126562474798, 1.5709262753826558, 1.5270560152255612, 1.4837018757761973, 1.4408638570345644, 1.3985419590006618, 1.3567361816744894, 1.315446525056048, 1.274672989145337, 1.2344155739423557, 1.1946742794471064, 1.155449105659586, 1.1167400525797975, 1.0785471202077388, 1.0408703085434108, 1.0037096175868134, 0.9670650473379465, 0.93093659779681, 0.8953242689634042, 0.8602280608377288, 0.8256479734197835, 0.7915840067095696, 0.7580361607070856, 0.7250044354123326, 0.6924888308253094, 0.6604893469460174, 0.6290059837744555, 0.5980387413106243, 0.5675876195545237, 0.5376526185061534, 0.5082337381655138, 0.47933097853260476, 0.45094433960742575, 0.42307382138997784, 0.39571942388026016, 0.36888114707827313, 0.34255899098401654, 0.3167529555974906, 0.2914630409186951, 0.2666892469476303, 0.2424315736842959, 0.21869002112869174, 0.19546458928081822, 0.17275527814067537, 0.15056208770826296, 0.1288850179835812, 0.1077240689666299, 0.08707924065740902, 0.0669505330559188, 0.04733794616215903, 0.02824147997612969, 0.009661134497831014, 0.008403090272737224, 0.025951194335575023, 0.04298317769068227, 0.05949904033805886, 0.07549878227770501, 0.09098240350962061, 0.10594990403380566, 0.12040128385026017, 0.13433654295898423, 0.14775568135997785, 0.16065869905324082, 0.17304559603877334, 0.18491637231657543, 0.19627102788664685, 0.20710956274898773, 0.21743197690359817, 0.22723827035047806, 0.2365284430896274, 0.2453024951210463, 0.25356042644473453, 0.26130223706069233, 0.2685279269689197, 0.2752374961694164, 0.28143094466218277, 0.2871082724472185, 0.29226947952452365, 0.29691456589409837, 0.30104353155594255, 0.30465637651005617, 0.30775310075643925, 0.3103337042950919, 0.31239818712601397, 0.3139465492492055, 0.3149787906646666, 0.31549491137239716, 0.31549491137239716, 0.3149787906646666, 0.3139465492492056, 0.31239818712601397, 0.3103337042950919, 0.30775310075643936, 0.30465637651005617, 0.30104353155594266, 0.29691456589409837, 0.29226947952452376, 0.2871082724472185, 0.2814309446621829, 0.2752374961694166, 0.2685279269689199, 0.26130223706069255, 0.25356042644473464, 0.24530249512104652, 0.2365284430896275, 0.22723827035047828, 0.21743197690359828, 0.20710956274898806, 0.19627102788664696, 0.18491637231657576, 0.17304559603877356, 0.16065869905324126, 0.14775568135997819, 0.13433654295898445, 0.12040128385026061, 0.10594990403380589, 0.09098240350962106, 0.07549878227770523, 0.059499040338059306, 0.042983177690682495, 0.025951194335575578, 0.008403090272737668, 0.009661134497830792, 0.028241479976129247, 0.047337946162158584, 0.06695053305591814, 0.0870792406574088, 0.10772406896662923, 0.12888501798358076, 0.1505620877082623, 0.17275527814067493, 0.19546458928081756, 0.2186900211286913, 0.24243157368429546, 0.2666892469476294, 0.2914630409186949, 0.31675295559748995, 0.3425589909840163, 0.36888114707827246, 0.39571942388025994, 0.42307382138997696, 0.4509443396074255, 0.47933097853260365, 0.5082337381655131, 0.537652618506153, 0.5675876195545229, 0.5980387413106238, 0.6290059837744546, 0.6604893469460169, 0.6924888308253085, 0.7250044354123317, 0.7580361607070845, 0.7915840067095687, 0.8256479734197826, 0.860228060837728, 0.8953242689634038, 0.9309365977968092, 0.9670650473379461, 1.0037096175868125, 1.0408703085434103, 1.0785471202077375, 1.1167400525797966, 1.155449105659585, 1.1946742794471055, 1.2344155739423543, 1.2746729891453357, 1.3154465250560472, 1.3567361816744885, 1.398541959000661, 1.440863857034563, 1.4837018757761968, 1.5270560152255594, 1.5709262753826545, 1.6153126562474789, 1.6602151578200344, 1.7056337801003196, 1.7515685230883364, 1.798019386784084, 1.8449863711875607, 1.892469476298769, 1.9404687021177067, 1.988984048644376, 2.038015515878775, 2.0875631038209055, 2.137626812470765, 2.188206641828357, 2.2393025918936775, 2.2909146626667303, 2.3430428541475132, 2.3956871663360255, 2.44884759923227, 2.5025241528362434, 2.5567168271479486, 2.6114256221673826, 2.666650537894549, 2.7223915743294445, 2.778648731472072, 2.83542200932243, 2.8927114078805167, 2.9505169271463356, 3.0088385671198843, 3.0676763278011636, 3.1270302091901723, 3.186900211286914, 3.247286334091384, 3.3081885776035858, 3.369606941823517, 3.4315414267511803, 3.493992032386574, 3.556958758729696, 3.6204416057805506, 3.6844405735391366 ], [ 3.6581184174448804, 3.5941194496862954, 3.5306366026354414, 3.4676698762923186, 3.405219270656925, 3.3432847857292627, 3.2818664215093305, 3.2209641779971294, 3.1605780551926586, 3.100708053095918, 3.0413541717069084, 2.9825164110256286, 2.92419477105208, 2.866389251786262, 2.809099853228174, 2.752326575377817, 2.6960694182351896, 2.6403283818002943, 2.585103466073128, 2.530394671053693, 2.476201996741988, 2.422525443138014, 2.3693650102417707, 2.3167206980532575, 2.264592506572475, 2.212980435799423, 2.1618844857341015, 2.11130465637651, 2.0612409477266502, 2.0116933597845197, 1.9626618925501202, 1.9141465460234515, 1.866147320204513, 1.818664215093305, 1.7716972306898278, 1.7252463669940812, 1.6793116240060644, 1.6338930017257791, 1.5889905001532232, 1.5446041192883992, 1.5007338591313046, 1.4573797196819407, 1.4145417009403078, 1.3722198029064052, 1.3304140255802328, 1.2891243689617915, 1.2483508330510804, 1.208093417848099, 1.1683521233528498, 1.1291269495653298, 1.0904178964855413, 1.0522249641134822, 1.0145481524491542, 0.9773874614925568, 0.9407428912436901, 0.9046144417025537, 0.8690021128691479, 0.8339059047434723, 0.7993258173255269, 0.765261850615313, 0.731714004612829, 0.698682279318076, 0.6661666747310528, 0.6341671908517608, 0.6026838276801989, 0.5717165852163679, 0.5412654634602672, 0.5113304624118971, 0.4819115820712574, 0.45300882243834817, 0.4246221835131694, 0.39675166529572126, 0.3693972677860038, 0.34255899098401654, 0.3162368348897602, 0.290430799503234, 0.26514088482443876, 0.2403670908533737, 0.21610941759003932, 0.19236786503443537, 0.16914243318656164, 0.14643312204641878, 0.1242399316140066, 0.10256286188932462, 0.0814019128723733, 0.06075708456315265, 0.040628376961662216, 0.02101579006790244, 0.001919323881873325, 0.016661021596425463, 0.03472524636699359, 0.05227335042983161, 0.06930533378493875, 0.08582119643231534, 0.10182093837196149, 0.11730455960387709, 0.13227206012806214, 0.14672343994451675, 0.16065869905324082, 0.17407783745423422, 0.1869808551474973, 0.1993677521330297, 0.2112385284108319, 0.22259318398090333, 0.2334317188432442, 0.24375413299785464, 0.25356042644473453, 0.26285059918388387, 0.27162465121530266, 0.279882582538991, 0.2876243931549488, 0.29485008306317617, 0.3015596522636729, 0.30775310075643925, 0.31343042854147496, 0.3185916356187801, 0.32323672198835485, 0.327365687650199, 0.33097853260431265, 0.3340752568506957, 0.33665586038934836, 0.33872034322027045, 0.340268705343462, 0.3413009467589231, 0.34181706746665363, 0.34181706746665363, 0.3413009467589231, 0.3402687053434621, 0.33872034322027045, 0.33665586038934836, 0.33407525685069583, 0.33097853260431265, 0.32736568765019913, 0.32323672198835485, 0.31859163561878023, 0.31343042854147496, 0.30775310075643936, 0.3015596522636731, 0.2948500830631764, 0.28762439315494903, 0.2798825825389911, 0.271624651215303, 0.262850599183884, 0.25356042644473475, 0.24375413299785476, 0.23343171884324454, 0.22259318398090344, 0.21123852841083224, 0.19936775213303015, 0.18698085514749785, 0.17407783745423466, 0.16065869905324093, 0.1467234399445171, 0.13227206012806236, 0.11730455960387753, 0.10182093837196171, 0.0858211964323159, 0.06930533378493897, 0.052273350429832055, 0.034725246366994145, 0.016661021596425796, 0.0019193238818726588, 0.021015790067902218, 0.04062837696166177, 0.06075708456315221, 0.08140191287237286, 0.1025628618893244, 0.12423993161400593, 0.14643312204641856, 0.1691424331865612, 0.1923678650344347, 0.21610941759003888, 0.24036709085337304, 0.2651408848244383, 0.2904307995032336, 0.31623683488975995, 0.3425589909840161, 0.36939726778600335, 0.39675166529572037, 0.42462218351316894, 0.4530088224383473, 0.4819115820712567, 0.5113304624118966, 0.5412654634602663, 0.5717165852163675, 0.6026838276801982, 0.6341671908517603, 0.666166674731052, 0.6986822793180751, 0.7317140046128281, 0.7652618506153122, 0.799325817325526, 0.8339059047434714, 0.8690021128691474, 0.9046144417025528, 0.9407428912436897, 0.977387461492556, 1.0145481524491538, 1.0522249641134813, 1.09041789648554, 1.1291269495653284, 1.1683521233528489, 1.2080934178480982, 1.248350833051079, 1.2891243689617906, 1.330414025580232, 1.3722198029064043, 1.4145417009403065, 1.4573797196819402, 1.5007338591313033, 1.544604119288398, 1.5889905001532223, 1.6338930017257778, 1.679311624006063, 1.7252463669940798, 1.7716972306898273, 1.8186642150933041, 1.8661473202045125, 1.9141465460234501, 1.9626618925501194, 2.0116933597845184, 2.061240947726649, 2.1113046563765083, 2.1618844857341, 2.212980435799421, 2.2645925065724737, 2.3167206980532566, 2.369365010241769, 2.422525443138013, 2.476201996741987, 2.530394671053692, 2.585103466073126, 2.6403283818002925, 2.696069418235188, 2.752326575377815, 2.8090998532281732, 2.86638925178626, 2.924194771052079, 2.9825164110256273, 3.0413541717069075, 3.100708053095916, 3.1605780551926577, 3.2209641779971276, 3.2818664215093296, 3.343284785729261, 3.405219270656924, 3.4676698762923177, 3.5306366026354397, 3.5941194496862945, 3.6581184174448804 ], [ 3.6323123820583536, 3.5683134142997694, 3.5048305672489155, 3.4418638409057927, 3.379413235270399, 3.3174787503427368, 3.2560603861228046, 3.1951581426106035, 3.1347720198061317, 3.074902017709392, 3.0155481363203815, 2.9567103756391027, 2.898388735665554, 2.840583216399736, 2.783293817841648, 2.726520539991291, 2.6702633828486637, 2.6145223464137684, 2.559297430686602, 2.504588635667167, 2.4503959613554622, 2.396719407751488, 2.343558974855245, 2.2909146626667316, 2.238786471185949, 2.1871744004128972, 2.1360784503475756, 2.085498620989984, 2.0354349123401243, 1.9858873243979938, 1.9368558571635943, 1.8883405106369255, 1.840341284817987, 1.792858179706779, 1.7458911953033018, 1.6994403316075553, 1.6535055886195384, 1.6080869663392532, 1.5631844647666973, 1.5187980839018733, 1.4749278237447783, 1.4315736842954148, 1.3887356655537815, 1.3464137675198788, 1.3046079901937069, 1.2633183335752651, 1.222544797664554, 1.1822873824615732, 1.1425460879663234, 1.1033209141788038, 1.0646118610990154, 1.0264189287269563, 0.9887421170626283, 0.9515814261060309, 0.914936855857164, 0.8788084063160275, 0.8431960774826217, 0.8080998693569463, 0.773519781939001, 0.7394558152287871, 0.7059079692263031, 0.6728762439315501, 0.6403606393445269, 0.6083611554652348, 0.576877792293673, 0.5459105498298418, 0.5154594280737412, 0.4855244270253709, 0.45610554668473124, 0.42720278705182224, 0.39881614812664323, 0.37094562990919533, 0.34359123239947764, 0.3167529555974906, 0.290430799503234, 0.2646247641167081, 0.2393348494379126, 0.21456105546684778, 0.1903033822035134, 0.16656182964790922, 0.1433363978000357, 0.12062708665989286, 0.09843389622748044, 0.07675682650279869, 0.05559587748584738, 0.0349510491766265, 0.014822341575136289, 0.004790245318623487, 0.023886711504652824, 0.0424670569829515, 0.06053128175351974, 0.07807938581635754, 0.09511136917146479, 0.11162723181884138, 0.12762697375848753, 0.14311059499040313, 0.15807809551458818, 0.17252947533104268, 0.18646473443976674, 0.19988387284076037, 0.21278689053402333, 0.22517378751955586, 0.23704456379735794, 0.24839921936742937, 0.25923775422977025, 0.2695601683843807, 0.27936646183126057, 0.2886566345704099, 0.2974306866018288, 0.30568861792551705, 0.31343042854147485, 0.3206561184497022, 0.3273656876501989, 0.3335591361429653, 0.339236463928001, 0.34439767100530616, 0.3490427573748809, 0.35317172303672506, 0.3567845679908387, 0.35988129223722176, 0.3624618957758744, 0.3645263786067965, 0.366074740729988, 0.3671069821454491, 0.3676231028531797, 0.3676231028531797, 0.3671069821454491, 0.36607474072998814, 0.3645263786067965, 0.3624618957758744, 0.3598812922372219, 0.3567845679908387, 0.35317172303672517, 0.3490427573748809, 0.34439767100530627, 0.339236463928001, 0.3335591361429654, 0.32736568765019913, 0.32065611844970243, 0.31343042854147507, 0.30568861792551716, 0.29743068660182903, 0.28865663457041, 0.2793664618312608, 0.2695601683843808, 0.2592377542297706, 0.24839921936742948, 0.23704456379735828, 0.22517378751955608, 0.21278689053402378, 0.1998838728407607, 0.18646473443976697, 0.17252947533104313, 0.1580780955145884, 0.14311059499040357, 0.12762697375848775, 0.11162723181884182, 0.09511136917146501, 0.0780793858163581, 0.06053128175352018, 0.04246705698295172, 0.02388671150465327, 0.00479024531862382, 0.014822341575135622, 0.03495104917662628, 0.05559587748584671, 0.07675682650279825, 0.09843389622747978, 0.12062708665989241, 0.14333639780003504, 0.16656182964790878, 0.19030338220351295, 0.2145610554668469, 0.2393348494379124, 0.26462476411670743, 0.2904307995032338, 0.31675295559748995, 0.3435912323994774, 0.37094562990919444, 0.398816148126643, 0.42720278705182113, 0.4561055466847306, 0.48552442702537046, 0.5154594280737403, 0.5459105498298413, 0.5768777922936721, 0.6083611554652344, 0.640360639344526, 0.6728762439315492, 0.705907969226302, 0.7394558152287862, 0.7735197819390001, 0.8080998693569454, 0.8431960774826213, 0.8788084063160266, 0.9149368558571636, 0.9515814261060298, 0.9887421170626278, 1.0264189287269554, 1.064611861099014, 1.1033209141788025, 1.1425460879663225, 1.1822873824615723, 1.2225447976645532, 1.2633183335752647, 1.3046079901937055, 1.3464137675198784, 1.3887356655537806, 1.4315736842954143, 1.4749278237447774, 1.518798083901872, 1.563184464766696, 1.6080869663392519, 1.6535055886195371, 1.699440331607554, 1.7458911953033014, 1.7928581797067782, 1.8403412848179865, 1.8883405106369242, 1.9368558571635934, 1.9858873243979924, 2.035434912340123, 2.0854986209899824, 2.1360784503475743, 2.187174400412895, 2.2387864711859478, 2.2909146626667307, 2.343558974855243, 2.3967194077514873, 2.450395961355461, 2.504588635667166, 2.5592974306866, 2.6145223464137666, 2.670263382848662, 2.7265205399912893, 2.7832938178416473, 2.840583216399734, 2.898388735665553, 2.9567103756391013, 3.0155481363203815, 3.07490201770939, 3.1347720198061317, 3.1951581426106017, 3.256060386122803, 3.317478750342735, 3.3794132352703983, 3.441863840905791, 3.5048305672489137, 3.5683134142997686, 3.6323123820583536 ], [ 3.607022467379559, 3.5430234996209737, 3.47954065257012, 3.416573926226997, 3.3541233205916035, 3.292188835663941, 3.230770471444009, 3.169868227931808, 3.109482105127337, 3.0496121030305963, 2.9902582216415867, 2.9314204609603074, 2.8730988209867583, 2.8152933017209403, 2.7580039031628525, 2.701230625312496, 2.6449734681698684, 2.589232431734973, 2.534007516007806, 2.4792987209883712, 2.4251060466766665, 2.371429493072693, 2.3182690601764495, 2.2656247479879363, 2.2134965565071534, 2.1618844857341015, 2.11078853566878, 2.0602087063111885, 2.010144997661329, 1.960597409719198, 1.911565942484799, 1.8630505959581303, 1.8150513701391917, 1.7675682650279834, 1.7206012806245061, 1.67415041692876, 1.6282156739407432, 1.5827970516604575, 1.537894550087902, 1.4935081692230776, 1.449637909065983, 1.4062837696166195, 1.3634457508749862, 1.3211238528410836, 1.2793180755149116, 1.2380284188964699, 1.1972548829857588, 1.1569974677827775, 1.1172561732875281, 1.0780309995000081, 1.0393219464202197, 1.0011290140481606, 0.9634522023838328, 0.9262915114272354, 0.8896469411783685, 0.853518491637232, 0.8179061628038262, 0.7828099546781508, 0.7482298672602055, 0.7141659005499916, 0.6806180545475076, 0.6475863292527546, 0.6150707246657314, 0.5830712407864391, 0.5515878776148775, 0.5206206351510465, 0.4901695133949455, 0.46023451234657564, 0.430815632005936, 0.40191287237302675, 0.37352623344784774, 0.3456557152303996, 0.31830131772068215, 0.2914630409186951, 0.26514088482443876, 0.2393348494379126, 0.21404493475911712, 0.18927114078805207, 0.16501346752471768, 0.14127191496911395, 0.11804648312124, 0.09533717198109737, 0.07314398154868496, 0.05146691182400298, 0.030305962807051667, 0.009661134497831014, 0.0104675731036592, 0.030080159997418976, 0.04917662618344831, 0.06775697166174699, 0.08582119643231523, 0.10336930049515303, 0.12040128385026028, 0.13691714649763687, 0.15291688843728302, 0.16840050966919862, 0.18336801019338367, 0.19781939000983817, 0.21175464911856223, 0.22517378751955586, 0.23807680521281882, 0.25046370219835135, 0.26233447847615343, 0.27368913404622486, 0.28452766890856573, 0.29485008306317617, 0.30465637651005606, 0.3139465492492054, 0.3227206012806243, 0.33097853260431254, 0.33872034322027034, 0.3459460331284977, 0.3526556023289944, 0.3588490508217608, 0.3645263786067965, 0.36968758568410165, 0.3743326720536764, 0.37846163771552055, 0.3820744826696342, 0.38517120691601725, 0.3877518104546699, 0.389816293285592, 0.3913646554087835, 0.3923968968242446, 0.39291301753197516, 0.39291301753197516, 0.3923968968242446, 0.3913646554087836, 0.389816293285592, 0.3877518104546699, 0.38517120691601736, 0.3820744826696342, 0.37846163771552066, 0.3743326720536764, 0.36968758568410176, 0.3645263786067965, 0.3588490508217609, 0.3526556023289946, 0.3459460331284979, 0.33872034322027056, 0.33097853260431265, 0.3227206012806245, 0.3139465492492055, 0.3046563765100563, 0.2948500830631763, 0.28452766890856607, 0.27368913404622497, 0.26233447847615377, 0.25046370219835157, 0.23807680521281926, 0.2251737875195562, 0.21175464911856245, 0.1978193900098386, 0.1833680101933839, 0.16840050966919906, 0.15291688843728324, 0.1369171464976373, 0.1204012838502605, 0.10336930049515358, 0.08582119643231567, 0.06775697166174721, 0.04917662618344876, 0.03008015999741931, 0.010467573103659866, 0.009661134497830792, 0.030305962807051223, 0.05146691182400276, 0.07314398154868429, 0.09533717198109692, 0.11804648312123955, 0.14127191496911307, 0.16501346752471746, 0.18927114078805163, 0.21404493475911668, 0.23933484943791195, 0.2651408848244383, 0.29146304091869446, 0.3183013177206817, 0.34565571523039895, 0.3735262334478473, 0.40191287237302564, 0.4308156320059351, 0.4602345123465752, 0.49016951339494486, 0.5206206351510461, 0.5515878776148768, 0.5830712407864387, 0.6150707246657305, 0.6475863292527537, 0.6806180545475065, 0.7141659005499907, 0.7482298672602046, 0.78280995467815, 0.8179061628038258, 0.8535184916372311, 0.8896469411783681, 0.9262915114272343, 0.9634522023838323, 1.0011290140481597, 1.0393219464202188, 1.0780309995000072, 1.1172561732875272, 1.1569974677827766, 1.1972548829857574, 1.2380284188964694, 1.2793180755149103, 1.3211238528410831, 1.3634457508749849, 1.4062837696166186, 1.4496379090659817, 1.4935081692230767, 1.5378945500879007, 1.5827970516604566, 1.6282156739407414, 1.6741504169287582, 1.7206012806245061, 1.7675682650279825, 1.8150513701391908, 1.8630505959581285, 1.9115659424847982, 1.9605974097191972, 2.0101449976613273, 2.0602087063111867, 2.110788535668779, 2.1618844857340997, 2.2134965565071525, 2.2656247479879355, 2.3182690601764477, 2.371429493072692, 2.4251060466766656, 2.4792987209883703, 2.5340075160078044, 2.5892324317349713, 2.6449734681698667, 2.701230625312494, 2.7580039031628516, 2.8152933017209385, 2.8730988209867574, 2.9314204609603056, 2.990258221641586, 3.0496121030305945, 3.109482105127336, 3.169868227931806, 3.230770471444008, 3.2921888356639393, 3.3541233205916026, 3.416573926226996, 3.479540652570118, 3.543023499620973, 3.607022467379559 ], [ 3.5822486734084933, 3.518249705649909, 3.454766858599055, 3.3918001322559315, 3.329349526620539, 3.2674150416928756, 3.2059966774729434, 3.1450944339607423, 3.0847083111562714, 3.0248383090595317, 2.9654844276705217, 2.9066466669892423, 2.8483250270156937, 2.7905195077498757, 2.733230109191788, 2.6764568313414308, 2.6201996741988034, 2.564458637763908, 2.5092337220367416, 2.4545249270173066, 2.400332252705602, 2.346655699101628, 2.2934952662053845, 2.2408509540168713, 2.1887227625360888, 2.137110691763037, 2.0860147416977153, 2.035434912340124, 1.985371203690264, 1.9358236157481334, 1.886792148513734, 1.8382768019870652, 1.7902775761681267, 1.7427944710569188, 1.6958274866534415, 1.649376622957695, 1.6034418799696781, 1.5580232576893929, 1.513120756116837, 1.468734375252013, 1.424864115094918, 1.3815099756455544, 1.3386719569039212, 1.2963500588700185, 1.2545442815438466, 1.2132546249254048, 1.1724810890146937, 1.1322236738117128, 1.092482379316463, 1.053257205528943, 1.0145481524491546, 0.976355220077096, 0.938678408412768, 0.9015177174561706, 0.8648731472073035, 0.828744697666167, 0.7931323688327612, 0.758036160707086, 0.7234560732891406, 0.6893921065789268, 0.6558442605764427, 0.6228125352816898, 0.5902969306946666, 0.5582974468153743, 0.5268140836438127, 0.49584684117998146, 0.4653957194238807, 0.4354607183755106, 0.4060418380348709, 0.3771390784019619, 0.3487524394767827, 0.3208819212593348, 0.2935275237496171, 0.2666892469476303, 0.2403670908533737, 0.21456105546684778, 0.18927114078805207, 0.16449734681698724, 0.14023967355365285, 0.1164981209980489, 0.09327268915017517, 0.07056337801003232, 0.048370187577619905, 0.026693117852938153, 0.005532168835986839, 0.015112659473233925, 0.03524136707472425, 0.054853953968484026, 0.07395042015451314, 0.09253076563281193, 0.11059499040338006, 0.12814309446621808, 0.14517507782132522, 0.1616909404687018, 0.17769068240834796, 0.19317430364026356, 0.2081418041644486, 0.22259318398090322, 0.23652844308962728, 0.24994758149062068, 0.26285059918388376, 0.2752374961694162, 0.28710827244721837, 0.2984629280172898, 0.3093014628796307, 0.3196238770342411, 0.329430170481121, 0.33872034322027034, 0.3474943952516891, 0.3557523265753775, 0.3634941371913353, 0.37071982709956264, 0.37742939630005934, 0.3836228447928257, 0.3893001725778614, 0.3944613796551666, 0.3991064660247413, 0.4032354316865855, 0.4068482766406991, 0.4099450008870822, 0.4125256044257348, 0.4145900872566569, 0.41613844937984845, 0.41717069079530955, 0.4176868115030401, 0.4176868115030401, 0.41717069079530955, 0.41613844937984856, 0.4145900872566569, 0.4125256044257348, 0.4099450008870823, 0.4068482766406991, 0.4032354316865856, 0.3991064660247413, 0.3944613796551667, 0.3893001725778614, 0.3836228447928258, 0.37742939630005956, 0.37071982709956286, 0.3634941371913355, 0.3557523265753776, 0.34749439525168946, 0.33872034322027045, 0.3294301704811212, 0.3196238770342412, 0.309301462879631, 0.2984629280172899, 0.2871082724472187, 0.2752374961694166, 0.2628505991838843, 0.24994758149062113, 0.2365284430896274, 0.22259318398090355, 0.20814180416444883, 0.193174303640264, 0.17769068240834818, 0.16169094046870236, 0.14517507782132544, 0.12814309446621852, 0.11059499040338061, 0.09253076563281226, 0.07395042015451381, 0.05485395396848425, 0.035241367074724694, 0.015112659473234258, 0.005532168835986173, 0.02669311785293793, 0.04837018757761946, 0.0705633780100321, 0.0932726891501745, 0.11649812099804824, 0.14023967355365263, 0.16449734681698658, 0.18927114078805185, 0.2145610554668469, 0.24036709085337327, 0.2666892469476294, 0.2935275237496169, 0.3208819212593341, 0.34875243947678247, 0.3771390784019606, 0.40604183803487004, 0.43546071837551015, 0.46539571942388, 0.495846841179981, 0.5268140836438118, 0.5582974468153739, 0.5902969306946657, 0.6228125352816889, 0.6558442605764414, 0.6893921065789259, 0.7234560732891397, 0.7580361607070851, 0.7931323688327607, 0.8287446976661661, 0.864873147207303, 0.9015177174561693, 0.9386784084127675, 0.9763552200770946, 1.0145481524491538, 1.0532572055289422, 1.0924823793164622, 1.1322236738117115, 1.1724810890146928, 1.2132546249254044, 1.2545442815438452, 1.296350058870018, 1.3386719569039203, 1.381509975645554, 1.4248641150949166, 1.4687343752520117, 1.5131207561168356, 1.5580232576893915, 1.6034418799696768, 1.6493766229576936, 1.695827486653441, 1.7427944710569179, 1.7902775761681262, 1.838276801987064, 1.8867921485137331, 1.935823615748132, 1.9853712036902627, 2.035434912340122, 2.086014741697714, 2.1371106917630347, 2.1887227625360874, 2.2408509540168704, 2.2934952662053827, 2.346655699101627, 2.4003322527056006, 2.4545249270173057, 2.5092337220367398, 2.5644586377639063, 2.6201996741988016, 2.676456831341429, 2.733230109191787, 2.790519507749874, 2.848325027015693, 2.906646666989241, 2.965484427670521, 3.02483830905953, 3.0847083111562705, 3.1450944339607405, 3.2059966774729425, 3.267415041692874, 3.329349526620537, 3.3918001322559306, 3.4547668585990534, 3.5182497056499082, 3.5822486734084933 ], [ 3.557991000145159, 3.4939920323865747, 3.430509185335721, 3.367542458992597, 3.3050918533572045, 3.243157368429541, 3.181739004209609, 3.120836760697408, 3.060450637892937, 3.0005806357961973, 2.9412267544071873, 2.882388993725908, 2.8240673537523593, 2.7662618344865413, 2.7089724359284535, 2.6521991580780964, 2.595942000935469, 2.5402009645005736, 2.484976048773407, 2.4302672537539722, 2.3760745794422675, 2.3223980258382935, 2.26923759294205, 2.216593280753537, 2.1644650892727544, 2.1128530184997025, 2.061757068434381, 2.0111772390767895, 1.9611135304269296, 1.911565942484799, 1.8625344752503996, 1.8140191287237308, 1.7660199029047923, 1.7185367977935844, 1.6715698133901071, 1.6251189496943605, 1.5791842067063437, 1.5337655844260585, 1.4888630828535026, 1.4444767019886786, 1.4006064418315836, 1.35725230238222, 1.3144142836405868, 1.2720923856066841, 1.2302866082805122, 1.1889969516620704, 1.1482234157513593, 1.1079660005483785, 1.0682247060531287, 1.0289995322656087, 0.9902904791858202, 0.9520975468137616, 0.9144207351494336, 0.8772600441928362, 0.8406154739439691, 0.8044870244028326, 0.7688746955694268, 0.7337784874437516, 0.6991984000258062, 0.6651344333155924, 0.6315865873131083, 0.5985548620183554, 0.5660392574313322, 0.5340397735520399, 0.5025564103804783, 0.47158916791664707, 0.4411380461605463, 0.4112030451121762, 0.38178416477153654, 0.35288140513862754, 0.3244947662134483, 0.2966242479960004, 0.2692698504862827, 0.2424315736842959, 0.21610941759003932, 0.1903033822035134, 0.16501346752471768, 0.14023967355365285, 0.11598200029031847, 0.09224044773471451, 0.06901501588684078, 0.04630570474669793, 0.024112514314285516, 0.0024354445896037635, 0.01872550442734755, 0.039370332736568314, 0.05949904033805864, 0.07911162723181842, 0.09820809341784753, 0.11678843889614632, 0.13485266366671445, 0.15240076772955247, 0.1694327510846596, 0.1859486137320362, 0.20194835567168234, 0.21743197690359795, 0.232399477427783, 0.2468508572442376, 0.26078611635296167, 0.2742052547539551, 0.28710827244721815, 0.29949516943275056, 0.31136594571055276, 0.3227206012806242, 0.33355913614296506, 0.3438815502975755, 0.3536878437444554, 0.3629780164836047, 0.3717520685150235, 0.38000999983871186, 0.38775181045466967, 0.394977500362897, 0.40168706956339373, 0.4078805180561601, 0.4135578458411958, 0.418719052918501, 0.4233641392880757, 0.4274931049499199, 0.4311059499040335, 0.4342026741504166, 0.4367832776890692, 0.4388477605199913, 0.44039612264318284, 0.44142836405864394, 0.4419444847663745, 0.4419444847663745, 0.44142836405864394, 0.44039612264318295, 0.4388477605199913, 0.4367832776890692, 0.4342026741504167, 0.4311059499040335, 0.42749310494992, 0.4233641392880757, 0.4187190529185011, 0.4135578458411958, 0.4078805180561602, 0.40168706956339395, 0.39497750036289725, 0.3877518104546699, 0.380009999838712, 0.37175206851502385, 0.36297801648360484, 0.3536878437444556, 0.3438815502975756, 0.3335591361429654, 0.3227206012806243, 0.3113659457105531, 0.299495169432751, 0.2871082724472187, 0.2742052547539555, 0.2607861163529618, 0.24685085724423794, 0.23239947742778322, 0.2174319769035984, 0.20194835567168257, 0.18594861373203675, 0.16943275108465983, 0.1524007677295529, 0.134852663666715, 0.11678843889614665, 0.0982080934178482, 0.07911162723181864, 0.059499040338059084, 0.03937033273656865, 0.018725504427348105, 0.0024354445896035415, 0.024112514314285072, 0.04630570474669771, 0.06901501588684011, 0.09224044773471385, 0.11598200029031824, 0.1402396735536522, 0.16501346752471746, 0.1903033822035125, 0.21610941759003888, 0.24243157368429502, 0.2692698504862825, 0.29662424799599973, 0.3244947662134481, 0.3528814051386262, 0.38178416477153565, 0.41120304511217576, 0.44113804616054564, 0.4715891679166466, 0.5025564103804774, 0.5340397735520395, 0.5660392574313313, 0.5985548620183545, 0.631586587313107, 0.6651344333155915, 0.6991984000258054, 0.7337784874437507, 0.7688746955694263, 0.8044870244028317, 0.8406154739439686, 0.8772600441928349, 0.9144207351494331, 0.9520975468137602, 0.9902904791858194, 1.0289995322656078, 1.0682247060531278, 1.1079660005483771, 1.1482234157513584, 1.18899695166207, 1.2302866082805108, 1.2720923856066837, 1.3144142836405859, 1.3572523023822196, 1.4006064418315822, 1.4444767019886773, 1.4888630828535012, 1.5337655844260571, 1.5791842067063424, 1.6251189496943592, 1.6715698133901067, 1.7185367977935835, 1.7660199029047918, 1.8140191287237295, 1.8625344752503987, 1.9115659424847977, 1.9611135304269283, 2.0111772390767877, 2.0617570684343796, 2.1128530184997003, 2.164465089272753, 2.216593280753536, 2.2692375929420483, 2.3223980258382926, 2.376074579442266, 2.4302672537539713, 2.4849760487734054, 2.540200964500572, 2.5959420009354672, 2.6521991580780946, 2.7089724359284526, 2.7662618344865395, 2.8240673537523584, 2.8823889937259066, 2.9412267544071864, 3.0005806357961955, 3.060450637892936, 3.120836760697406, 3.181739004209608, 3.2431573684295394, 3.3050918533572027, 3.367542458992596, 3.430509185335719, 3.493992032386574, 3.557991000145159 ], [ 3.5342494475895556, 3.4702504798309706, 3.4067676327801166, 3.343800906436994, 3.2813503008016003, 3.219415815873938, 3.1579974516540057, 3.0970952081418046, 3.0367090853373337, 2.976839083240593, 2.917485201851583, 2.858647441170304, 2.800325801196755, 2.742520281930937, 2.6852308833728493, 2.628457605522492, 2.572200448379865, 2.5164594119449695, 2.461234496217803, 2.406525701198368, 2.3523330268866633, 2.2986564732826893, 2.245496040386446, 2.1928517281979327, 2.14072353671715, 2.0891114659440984, 2.0380155158787767, 1.9874356865211853, 1.9373719778713254, 1.8878243899291949, 1.8387929226947954, 1.7902775761681267, 1.742278350349188, 1.6947952452379802, 1.647828260834503, 1.6013773971387564, 1.5554426541507396, 1.5100240318704543, 1.4651215302978984, 1.4207351494330744, 1.3768648892759798, 1.3335107498266159, 1.290672731084983, 1.2483508330510804, 1.206545055724908, 1.1652553991064667, 1.1244818631957556, 1.0842244479927743, 1.044483153497525, 1.005257979710005, 0.9665489266302165, 0.9283559942581574, 0.8906791825938294, 0.853518491637232, 0.8168739213883653, 0.7807454718472289, 0.745133143013823, 0.7100369348881475, 0.6754568474702021, 0.6413928807599882, 0.6078450347575042, 0.5748133094627512, 0.542297704875728, 0.510298220996436, 0.4788148578248741, 0.4478476153610431, 0.41739649360494235, 0.38746149255657225, 0.3580426122159326, 0.32913985258302336, 0.3007532136578446, 0.27288269544039645, 0.24552829793067898, 0.21869002112869174, 0.19236786503443537, 0.16656182964790922, 0.14127191496911395, 0.1164981209980489, 0.09224044773471451, 0.06849889517911056, 0.04527346333123683, 0.022564152191093978, 0.00037096175868178705, 0.021306107966000187, 0.0424670569829515, 0.06311188529217227, 0.08324059289366259, 0.10285317978742237, 0.12194964597345148, 0.14052999145175027, 0.1585942162223184, 0.17614232028515642, 0.19317430364026356, 0.20969016628764015, 0.2256899082272863, 0.2411735294592019, 0.25614102998338695, 0.27059240979984156, 0.2845276689085656, 0.297946807309559, 0.3108498250028221, 0.3232367219883545, 0.3351074982661567, 0.34646215383622814, 0.357300688698569, 0.36762310285317945, 0.37742939630005934, 0.3867195690392087, 0.39549362107062747, 0.4037515523943158, 0.4114933630102736, 0.418719052918501, 0.4254286221189977, 0.43162207061176405, 0.43729939839679977, 0.44246060547410493, 0.44710569184367965, 0.45123465750552383, 0.45484750245963745, 0.45794422670602053, 0.46052483024467317, 0.46258931307559525, 0.4641376751987868, 0.4651699166142479, 0.46568603732197844, 0.46568603732197844, 0.4651699166142479, 0.4641376751987869, 0.46258931307559525, 0.46052483024467317, 0.45794422670602064, 0.45484750245963745, 0.45123465750552394, 0.44710569184367965, 0.44246060547410504, 0.43729939839679977, 0.43162207061176416, 0.4254286221189979, 0.4187190529185012, 0.41149336301027384, 0.4037515523943159, 0.3954936210706278, 0.3867195690392088, 0.37742939630005956, 0.36762310285317956, 0.35730068869856935, 0.34646215383622825, 0.33510749826615704, 0.32323672198835496, 0.31084982500282266, 0.29794680730955947, 0.28452766890856573, 0.2705924097998419, 0.25614102998338717, 0.24117352945920234, 0.22568990822728652, 0.2096901662876407, 0.19317430364026378, 0.17614232028515686, 0.15859421622231895, 0.1405299914517506, 0.12194964597345215, 0.10285317978742259, 0.08324059289366303, 0.0631118852921726, 0.042467056982952056, 0.02130610796600041, 0.0003709617586811209, 0.022564152191093756, 0.045273463331236385, 0.0684988951791099, 0.09224044773471407, 0.11649812099804824, 0.1412719149691135, 0.16656182964790878, 0.19236786503443515, 0.2186900211286913, 0.24552829793067854, 0.27288269544039556, 0.30075321365784413, 0.3291398525830225, 0.3580426122159319, 0.3874614925565718, 0.41739649360494147, 0.4478476153610427, 0.47881485782487343, 0.5102982209964355, 0.5422977048757271, 0.5748133094627503, 0.6078450347575033, 0.6413928807599873, 0.6754568474702012, 0.7100369348881466, 0.7451331430138226, 0.780745471847228, 0.8168739213883649, 0.8535184916372311, 0.8906791825938289, 0.9283559942581565, 0.9665489266302152, 1.0052579797100036, 1.044483153497524, 1.0842244479927734, 1.1244818631957543, 1.1652553991064658, 1.2065450557249071, 1.2483508330510795, 1.2906727310849817, 1.3335107498266154, 1.3768648892759785, 1.420735149433073, 1.4651215302978975, 1.510024031870453, 1.5554426541507382, 1.601377397138755, 1.6478282608345025, 1.6947952452379793, 1.7422783503491877, 1.7902775761681253, 1.8387929226947946, 1.8878243899291935, 1.937371977871324, 1.9874356865211835, 2.0380155158787754, 2.089111465944096, 2.140723536717149, 2.192851728197932, 2.245496040386444, 2.2986564732826884, 2.352333026886662, 2.406525701198367, 2.461234496217801, 2.5164594119449677, 2.572200448379863, 2.6284576055224904, 2.6852308833728484, 2.7425202819309353, 2.8003258011967542, 2.8586474411703025, 2.917485201851582, 2.9768390832405913, 3.036709085337333, 3.097095208141803, 3.157997451654005, 3.219415815873936, 3.2813503008015994, 3.343800906436993, 3.406767632780115, 3.4702504798309697, 3.5342494475895556 ], [ 3.5110240157416817, 3.4470250479830966, 3.3835422009322427, 3.32057547458912, 3.2581248689537263, 3.196190384026064, 3.1347720198061317, 3.0738697762939307, 3.01348365348946, 2.9536136513927196, 2.8942597700037096, 2.8354220093224303, 2.7771003693488816, 2.7192948500830636, 2.662005451524976, 2.6052321736746187, 2.5489750165319913, 2.493233980097096, 2.4380090643699295, 2.3833002693504945, 2.32910759503879, 2.275431041434816, 2.2222706085385724, 2.169626296350059, 2.1174981048692767, 2.065886034096225, 2.014790084030903, 1.9642102546733118, 1.914146546023452, 1.8645989580813214, 1.815567490846922, 1.7670521443202531, 1.7190529185013146, 1.6715698133901067, 1.6246028289866294, 1.5781519652908829, 1.532217222302866, 1.4867986000225808, 1.4418960984500249, 1.397509717585201, 1.3536394574281059, 1.3102853179787424, 1.267447299237109, 1.2251254012032065, 1.1833196238770345, 1.1420299672585927, 1.1012564313478816, 1.0609990161449008, 1.021257721649651, 0.982032547862131, 0.9433234947823426, 0.9051305624102839, 0.8674537507459559, 0.8302930597893585, 0.7936484895404914, 0.7575200399993549, 0.7219077111659491, 0.6868115030402739, 0.6522314156223286, 0.6181674489121147, 0.5846196029096307, 0.5515878776148777, 0.5190722730278545, 0.4870727891485622, 0.4555894259770006, 0.4246221835131694, 0.3941710617570686, 0.3642360607086985, 0.33481718036805885, 0.30591442073514985, 0.2775277818099706, 0.24965726359252272, 0.22230286608280503, 0.19546458928081822, 0.16914243318656164, 0.1433363978000357, 0.11804648312124, 0.09327268915017517, 0.06901501588684078, 0.04527346333123683, 0.022048031483363095, 0.0006612796567797563, 0.022854470089192058, 0.04453153981387392, 0.06569248883082524, 0.086337317140046, 0.10646602474153632, 0.1260786116352961, 0.14517507782132522, 0.163755423299624, 0.18181964807019213, 0.19936775213303015, 0.2163997354881373, 0.23291559813551388, 0.24891534007516003, 0.26439896130707563, 0.2793664618312607, 0.2938178416477153, 0.30775310075643936, 0.32117223915743276, 0.33407525685069583, 0.34646215383622825, 0.35833293011403045, 0.36968758568410187, 0.38052612054644275, 0.3908485347010532, 0.4006548281479331, 0.4099450008870824, 0.4187190529185012, 0.42697698424218955, 0.43471879485814735, 0.4419444847663747, 0.4486540539668714, 0.4548475024596378, 0.4605248302446735, 0.46568603732197866, 0.4703311236915534, 0.47446008935339756, 0.4780729343075112, 0.48116965855389426, 0.4837502620925469, 0.485814744923469, 0.4873631070466605, 0.4883953484621216, 0.4889114691698522, 0.4889114691698522, 0.4883953484621216, 0.48736310704666064, 0.485814744923469, 0.4837502620925469, 0.4811696585538944, 0.4780729343075112, 0.4744600893533977, 0.4703311236915534, 0.4656860373219788, 0.4605248302446735, 0.4548475024596379, 0.44865405396687164, 0.44194448476637493, 0.4347187948581476, 0.42697698424218966, 0.41871905291850153, 0.4099450008870825, 0.4006548281479333, 0.3908485347010533, 0.3805261205464431, 0.369687585684102, 0.3583329301140308, 0.3464621538362287, 0.3340752568506964, 0.3211722391574332, 0.30775310075643947, 0.2938178416477156, 0.2793664618312609, 0.2643989613070761, 0.24891534007516025, 0.23291559813551443, 0.2163997354881375, 0.1993677521330306, 0.18181964807019269, 0.16375542329962434, 0.14517507782132588, 0.12607861163529632, 0.10646602474153677, 0.08633731714004633, 0.06569248883082579, 0.044531539813874144, 0.022854470089192613, 0.0006612796567799784, 0.02204803148336243, 0.04527346333123616, 0.06901501588684056, 0.0932726891501745, 0.11804648312123978, 0.14333639780003482, 0.1691424331865612, 0.19546458928081734, 0.2223028660828048, 0.24965726359252205, 0.2775277818099704, 0.3059144207351485, 0.33481718036805797, 0.3642360607086981, 0.39417106175706795, 0.42462218351316894, 0.4555894259769997, 0.4870727891485618, 0.5190722730278536, 0.5515878776148768, 0.5846196029096293, 0.6181674489121138, 0.6522314156223277, 0.686811503040273, 0.7219077111659487, 0.757520039999354, 0.7936484895404909, 0.8302930597893572, 0.8674537507459554, 0.9051305624102826, 0.9433234947823417, 0.9820325478621301, 1.0212577216496501, 1.0609990161448994, 1.1012564313478808, 1.1420299672585923, 1.1833196238770332, 1.225125401203206, 1.2674472992371082, 1.310285317978742, 1.3536394574281045, 1.3975097175851996, 1.4418960984500235, 1.4867986000225795, 1.5322172223028647, 1.5781519652908815, 1.624602828986629, 1.6715698133901058, 1.7190529185013141, 1.7670521443202518, 1.815567490846921, 1.86459895808132, 1.9141465460234506, 1.96421025467331, 2.014790084030902, 2.0658860340962226, 2.1174981048692754, 2.1696262963500583, 2.2222706085385706, 2.275431041434815, 2.3291075950387885, 2.3833002693504937, 2.4380090643699277, 2.493233980097094, 2.5489750165319895, 2.605232173674617, 2.662005451524975, 2.719294850083062, 2.7771003693488807, 2.835422009322429, 2.8942597700037087, 2.953613651392718, 3.013483653489459, 3.073869776293929, 3.134772019806131, 3.196190384026062, 3.2581248689537254, 3.320575474589119, 3.383542200932241, 3.4470250479830957, 3.5110240157416817 ], [ 3.488314704601539, 3.4243157368429538, 3.3608328897921, 3.297866163448977, 3.2354155578135835, 3.173481072885921, 3.112062708665989, 3.051160465153788, 2.990774342349317, 2.9309043402525767, 2.8715504588635667, 2.8127126981822874, 2.7543910582087388, 2.6965855389429207, 2.639296140384833, 2.582522862534476, 2.5262657053918485, 2.470524668956953, 2.4152997532297866, 2.3605909582103517, 2.306398283898647, 2.252721730294673, 2.1995612973984295, 2.1469169852099164, 2.094788793729134, 2.043176722956082, 1.9920807728907604, 1.941500943533169, 1.891437234883309, 1.8418896469411785, 1.792858179706779, 1.7443428331801103, 1.6963436073611717, 1.6488605022499638, 1.6018935178464866, 1.55544265415074, 1.5095079111627232, 1.464089288882438, 1.419186787309882, 1.374800406445058, 1.330930146287963, 1.2875760068385995, 1.2447379880969662, 1.2024160900630636, 1.1606103127368916, 1.1193206561184499, 1.0785471202077388, 1.038289705004758, 0.9985484105095084, 0.9593232367219884, 0.9206141836421999, 0.882421251270141, 0.844744439605813, 0.8075837486492157, 0.7709391784003488, 0.7348107288592123, 0.6991984000258065, 0.6641021919001311, 0.6295221044821857, 0.5954581377719719, 0.5619102917694878, 0.5288785664747349, 0.4963629618877117, 0.4643634780084194, 0.43288011483685773, 0.40191287237302653, 0.37146175061692577, 0.34152674956855567, 0.312107869227916, 0.283205109595007, 0.254818470669828, 0.22694795245237986, 0.1995935549426624, 0.17275527814067537, 0.14643312204641878, 0.12062708665989286, 0.09533717198109737, 0.07056337801003232, 0.04630570474669793, 0.022564152191093978, 0.0006612796567797563, 0.023370590796922497, 0.0455637812293348, 0.06724085095401677, 0.08840179997096809, 0.10904662828018874, 0.12917533588167907, 0.14878792277543884, 0.16788438896146807, 0.18646473443976674, 0.20452895921033498, 0.2220770632731729, 0.23910904662828014, 0.2556249092756566, 0.2716246512153029, 0.2871082724472185, 0.3020757729714034, 0.31652715278785803, 0.3304624118965821, 0.3438815502975756, 0.3567845679908386, 0.3691714649763711, 0.3810422412541732, 0.3923968968242446, 0.4032354316865856, 0.4135578458411959, 0.4233641392880758, 0.43265431202722526, 0.44142836405864405, 0.4496862953823324, 0.4574281059982902, 0.46465379590651745, 0.47136336510701426, 0.4775568135997805, 0.48323414138481624, 0.4883953484621215, 0.49304043483169613, 0.4971694004935403, 0.500782245447654, 0.5038789696940371, 0.5064595732326898, 0.5085240560636117, 0.5100724181868033, 0.5111046596022644, 0.5116207803099949, 0.5116207803099949, 0.5111046596022644, 0.5100724181868034, 0.5085240560636118, 0.5064595732326898, 0.5038789696940371, 0.500782245447654, 0.4971694004935404, 0.49304043483169624, 0.4883953484621216, 0.48323414138481635, 0.47755681359978075, 0.4713633651070144, 0.4646537959065178, 0.4574281059982904, 0.4496862953823325, 0.4414283640586443, 0.4326543120272254, 0.42336413928807615, 0.41355784584119615, 0.4032354316865858, 0.39239689682424483, 0.3810422412541735, 0.36917146497637143, 0.35678456799083913, 0.34388155029757594, 0.3304624118965822, 0.3165271527878585, 0.30207577297140364, 0.2871082724472188, 0.2716246512153031, 0.2556249092756572, 0.23910904662828036, 0.22207706327317345, 0.20452895921033543, 0.18646473443976708, 0.16788438896146862, 0.14878792277543917, 0.12917533588167962, 0.10904662828018907, 0.08840179997096853, 0.067240850954017, 0.045563781229335465, 0.02337059079692283, 0.0006612796567802004, 0.022564152191093312, 0.04630570474669771, 0.07056337801003165, 0.09533717198109692, 0.12062708665989219, 0.14643312204641856, 0.1727552781406747, 0.19959355494266195, 0.2269479524523792, 0.25481847066982755, 0.2832051095950059, 0.31210786922791534, 0.3415267495685552, 0.3714617506169251, 0.4019128723730261, 0.43288011483685684, 0.46436347800841893, 0.4963629618877108, 0.528878566474734, 0.5619102917694867, 0.595458137771971, 0.6295221044821848, 0.6641021919001302, 0.699198400025806, 0.7348107288592114, 0.7709391784003483, 0.8075837486492146, 0.8447444396058126, 0.8824212512701399, 0.9206141836421988, 0.9593232367219873, 0.9985484105095075, 1.0382897050047566, 1.078547120207738, 1.1193206561184494, 1.1606103127368903, 1.2024160900630632, 1.2447379880969653, 1.287576006838599, 1.3309301462879617, 1.3748004064450567, 1.4191867873098807, 1.4640892888824366, 1.5095079111627219, 1.5554426541507387, 1.6018935178464861, 1.648860502249963, 1.6963436073611713, 1.744342833180109, 1.7928581797067782, 1.8418896469411772, 1.8914372348833077, 1.9415009435331672, 1.992080772890759, 2.0431767229560798, 2.0947887937291325, 2.1469169852099155, 2.1995612973984278, 2.252721730294672, 2.3063982838986457, 2.360590958210351, 2.415299753229785, 2.4705246689569513, 2.5262657053918467, 2.582522862534474, 2.639296140384832, 2.696585538942919, 2.754391058208738, 2.812712698182286, 2.871550458863566, 2.930904340252575, 2.990774342349316, 3.051160465153786, 3.112062708665988, 3.1734810728859193, 3.2354155578135826, 3.297866163448976, 3.360832889792098, 3.424315736842953, 3.488314704601539 ], [ 3.466121514169126, 3.402122546410542, 3.338639699359688, 3.2756729730165643, 3.2132223673811717, 3.1512878824535084, 3.0898695182335763, 3.028967274721375, 2.9685811519169043, 2.9087111498201645, 2.849357268431154, 2.790519507749875, 2.7321978677763266, 2.6743923485105086, 2.6171029499524208, 2.560329672102063, 2.504072514959436, 2.4483314785245405, 2.3931065627973744, 2.3383977677779395, 2.284205093466235, 2.2305285398622603, 2.177368106966017, 2.1247237947775037, 2.0725956032967217, 2.02098353252367, 1.9698875824583482, 1.9193077531007567, 1.8692440444508964, 1.8196964565087663, 1.7706649892743664, 1.7221496427476977, 1.674150416928759, 1.6266673118175516, 1.5797003274140744, 1.5332494637183274, 1.4873147207303106, 1.4418960984500258, 1.3969935968774694, 1.3526072160126459, 1.3087369558555508, 1.2653828164061869, 1.222544797664554, 1.1802228996306514, 1.138417122304479, 1.0971274656860377, 1.0563539297753266, 1.0160965145723457, 0.976355220077096, 0.937130046289576, 0.8984209932097875, 0.8602280608377286, 0.8225512491734006, 0.7853905582168033, 0.7487459879679363, 0.7126175384267999, 0.677005209593394, 0.6419090014677187, 0.6073289140497733, 0.5732649473395595, 0.5397171013370754, 0.5066853760423224, 0.47416977145529926, 0.44217028757600696, 0.4106869244044453, 0.37971968194061434, 0.34926856018451335, 0.3193335591361435, 0.2899146787955038, 0.2610119191625946, 0.23262528023741558, 0.20475476201996745, 0.17740036451024999, 0.15056208770826296, 0.1242399316140066, 0.09843389622748044, 0.07314398154868496, 0.048370187577619905, 0.024112514314285516, 0.00037096175868178705, 0.022854470089192058, 0.0455637812293348, 0.06775697166174721, 0.08943404138642908, 0.11059499040338039, 0.13123981871260115, 0.15136852631409137, 0.17098111320785114, 0.19007757939388048, 0.20865792487217916, 0.2267221496427474, 0.2442702537055852, 0.26130223706069244, 0.27781809970806903, 0.2938178416477152, 0.3093014628796308, 0.32426896340381584, 0.33872034322027034, 0.3526556023289944, 0.366074740729988, 0.378977758423251, 0.3913646554087835, 0.4032354316865856, 0.414590087256657, 0.4254286221189979, 0.43575103627360834, 0.4455573297204882, 0.45484750245963756, 0.46362155449105646, 0.4718794858147447, 0.4796212964307025, 0.48684698633892987, 0.49355655553942657, 0.49975000403219294, 0.5054273318172287, 0.5105885388945338, 0.5152336252641085, 0.5193625909259527, 0.5229754358800663, 0.5260721601264495, 0.528652763665102, 0.5307172464960241, 0.5322656086192157, 0.5332978500346768, 0.5338139707424072, 0.5338139707424072, 0.5332978500346768, 0.5322656086192157, 0.5307172464960241, 0.5286527636651022, 0.5260721601264495, 0.5229754358800663, 0.5193625909259527, 0.5152336252641085, 0.5105885388945339, 0.5054273318172287, 0.49975000403219305, 0.4935565555394268, 0.4868469863389301, 0.4796212964307027, 0.4718794858147448, 0.4636215544910567, 0.4548475024596377, 0.44555732972048845, 0.43575103627360845, 0.42542862211899823, 0.41459008725665714, 0.40323543168658593, 0.39136465540878373, 0.37897775842325143, 0.36607474072998836, 0.3526556023289946, 0.3387203432202708, 0.32426896340381606, 0.30930146287963123, 0.2938178416477154, 0.2778180997080695, 0.26130223706069267, 0.24427025370558575, 0.22672214964274784, 0.20865792487217938, 0.19007757939388092, 0.17098111320785148, 0.15136852631409203, 0.13123981871260137, 0.11059499040338094, 0.08943404138642941, 0.06775697166174788, 0.04556378122933524, 0.022854470089192613, 0.00037096175868089887, 0.024112514314285294, 0.04837018757761946, 0.07314398154868451, 0.09843389622747978, 0.12423993161400615, 0.1505620877082623, 0.17740036451024954, 0.20475476201996679, 0.23262528023741513, 0.2610119191625935, 0.2899146787955029, 0.31933355913614303, 0.3492685601845127, 0.3797196819406139, 0.41068692440444465, 0.4421702875760065, 0.47416977145529837, 0.5066853760423216, 0.5397171013370743, 0.5732649473395586, 0.6073289140497724, 0.6419090014677178, 0.6770052095933936, 0.712617538426799, 0.7487459879679359, 0.7853905582168021, 0.8225512491734002, 0.8602280608377275, 0.8984209932097864, 0.9371300462895749, 0.9763552200770951, 1.0160965145723444, 1.0563539297753257, 1.0971274656860368, 1.1384171223044781, 1.1802228996306505, 1.2225447976645532, 1.2653828164061869, 1.3087369558555495, 1.352607216012644, 1.3969935968774685, 1.441896098450024, 1.4873147207303097, 1.5332494637183265, 1.5797003274140735, 1.6266673118175508, 1.674150416928759, 1.7221496427476968, 1.7706649892743656, 1.8196964565087645, 1.8692440444508955, 1.919307753100755, 1.9698875824583464, 2.020983532523667, 2.07259560329672, 2.124723794777503, 2.177368106966015, 2.2305285398622594, 2.284205093466233, 2.3383977677779386, 2.3931065627973727, 2.4483314785245387, 2.504072514959434, 2.5603296721020614, 2.61710294995242, 2.674392348510507, 2.7321978677763257, 2.790519507749874, 2.8493572684311532, 2.9087111498201628, 2.9685811519169034, 3.0289672747213734, 3.0898695182335754, 3.1512878824535067, 3.21322236738117, 3.2756729730165635, 3.3386396993596863, 3.402122546410541, 3.466121514169126 ], [ 3.4444444444444446, 3.3804454766858596, 3.3169626296350057, 3.253995903291883, 3.1915452976564893, 3.129610812728827, 3.0681924485088947, 3.0072902049966936, 2.9469040821922228, 2.8870340800954826, 2.8276801987064726, 2.7688424380251933, 2.7105207980516446, 2.6527152787858266, 2.595425880227739, 2.5386526023773817, 2.4823954452347543, 2.426654408799859, 2.3714294930726925, 2.3167206980532575, 2.262528023741553, 2.2088514701375788, 2.1556910372413354, 2.103046725052822, 2.0509185335720397, 1.9993064627989878, 1.9482105127336662, 1.8976306833760748, 1.847566974726215, 1.7980193867840844, 1.748987919549685, 1.7004725730230161, 1.6524733472040776, 1.6049902420928697, 1.5580232576893924, 1.5115723939936458, 1.465637651005629, 1.4202190287253438, 1.3753165271527878, 1.330930146287964, 1.2870598861308689, 1.2437057466815054, 1.200867727939872, 1.1585458299059694, 1.1167400525797975, 1.0754503959613557, 1.0346768600506446, 0.9944194448476638, 0.954678150352414, 0.915452976564894, 0.8767439234851055, 0.8385509911130469, 0.8008741794487189, 0.7637134884921215, 0.7270689182432544, 0.6909404687021179, 0.6553281398687121, 0.6202319317430369, 0.5856518443250915, 0.5515878776148777, 0.5180400316123936, 0.4850083063176407, 0.4524927017306175, 0.4204932178513252, 0.38900985467976357, 0.35804261221593237, 0.3275914904598316, 0.2976564894114615, 0.26823760907082184, 0.23933484943791283, 0.2109482105127336, 0.1830776922952857, 0.155723294785568, 0.1288850179835812, 0.10256286188932462, 0.07675682650279869, 0.05146691182400298, 0.026693117852938153, 0.0024354445896037635, 0.021306107966000187, 0.04453153981387392, 0.06724085095401677, 0.08943404138642908, 0.11111111111111094, 0.13227206012806225, 0.15291688843728302, 0.17304559603877334, 0.19265818293253312, 0.21175464911856223, 0.23033499459686102, 0.24839921936742915, 0.26594732343026717, 0.2829793067853743, 0.2994951694327509, 0.31549491137239705, 0.33097853260431265, 0.3459460331284977, 0.3603974129449523, 0.3743326720536764, 0.3877518104546698, 0.40065482814793285, 0.41304172513346527, 0.42491250141126746, 0.4362671569813389, 0.44710569184367976, 0.4574281059982902, 0.4672343994451701, 0.47652457218431943, 0.4852986242157382, 0.49355655553942657, 0.5012983661553844, 0.5085240560636117, 0.5152336252641084, 0.5214270737568748, 0.5271044015419105, 0.5322656086192157, 0.5369106949887904, 0.5410396606506345, 0.5446525056047482, 0.5477492298511313, 0.5503298333897839, 0.552394316220706, 0.5539426783438975, 0.5549749197593586, 0.5554910404670892, 0.5554910404670892, 0.5549749197593586, 0.5539426783438977, 0.5523943162207061, 0.5503298333897839, 0.5477492298511314, 0.5446525056047482, 0.5410396606506347, 0.5369106949887905, 0.5322656086192159, 0.5271044015419106, 0.5214270737568749, 0.5152336252641087, 0.508524056063612, 0.5012983661553846, 0.4935565555394267, 0.48529862421573855, 0.47652457218431954, 0.4672343994451703, 0.4574281059982903, 0.4471056918436801, 0.436267156981339, 0.4249125014112678, 0.4130417251334657, 0.4006548281479334, 0.3877518104546702, 0.3743326720536765, 0.36039741294495264, 0.3459460331284979, 0.3309785326043131, 0.31549491137239727, 0.29949516943275145, 0.28297930678537453, 0.2659473234302676, 0.2483992193674297, 0.23033499459686135, 0.2117546491185629, 0.19265818293253334, 0.17304559603877379, 0.15291688843728335, 0.1322720601280628, 0.11111111111111116, 0.08943404138642963, 0.067240850954017, 0.04453153981387448, 0.021306107966000853, 0.0024354445896035415, 0.026693117852937487, 0.05146691182400276, 0.0767568265027978, 0.10256286188932418, 0.12888501798358032, 0.1557232947855678, 0.18307769229528503, 0.21094821051273338, 0.2393348494379115, 0.26823760907082095, 0.29765648941146106, 0.32759149045983094, 0.3580426122159319, 0.3890098546797627, 0.42049321785132476, 0.4524927017306166, 0.4850083063176398, 0.5180400316123923, 0.5515878776148768, 0.5856518443250907, 0.620231931743036, 0.6553281398687116, 0.690940468702117, 0.7270689182432539, 0.7637134884921202, 0.8008741794487184, 0.8385509911130455, 0.8767439234851047, 0.9154529765648931, 0.9546781503524131, 0.9944194448476624, 1.0346768600506437, 1.0754503959613553, 1.1167400525797961, 1.158545829905969, 1.2008677279398712, 1.243705746681505, 1.2870598861308675, 1.3309301462879626, 1.3753165271527865, 1.4202190287253424, 1.4656376510056277, 1.5115723939936445, 1.558023257689392, 1.6049902420928688, 1.6524733472040771, 1.7004725730230148, 1.748987919549684, 1.798019386784083, 1.8475669747262136, 1.897630683376073, 1.9482105127336649, 1.9993064627989856, 2.0509185335720383, 2.1030467250528213, 2.1556910372413336, 2.208851470137578, 2.2625280237415515, 2.3167206980532566, 2.3714294930726907, 2.426654408799857, 2.4823954452347525, 2.53865260237738, 2.595425880227738, 2.652715278785825, 2.7105207980516437, 2.768842438025192, 2.8276801987064717, 2.887034080095481, 2.946904082192222, 3.007290204996692, 3.068192448508894, 3.129610812728825, 3.1915452976564884, 3.253995903291882, 3.316962629635004, 3.3804454766858587, 3.4444444444444446 ], [ 3.4232834954274933, 3.3592845276689083, 3.2958016806180543, 3.2328349542749315, 3.170384348639538, 3.1084498637118756, 3.0470314994919434, 2.9861292559797423, 2.9257431331752715, 2.8658731310785313, 2.8065192496895213, 2.747681489008242, 2.6893598490346933, 2.6315543297688753, 2.5742649312107875, 2.5174916533604303, 2.461234496217803, 2.4054934597829076, 2.350268544055741, 2.295559749036306, 2.2413670747246015, 2.1876905211206275, 2.134530088224384, 2.081885776035871, 2.0297575845550884, 1.9781455137820365, 1.9270495637167149, 1.8764697343591235, 1.8264060257092636, 1.776858437767133, 1.7278269705327336, 1.6793116240060648, 1.6313123981871263, 1.5838292930759184, 1.5368623086724411, 1.4904114449766945, 1.4444767019886777, 1.3990580797083925, 1.3541555781358365, 1.3097691972710126, 1.2658989371139175, 1.222544797664554, 1.1797067789229208, 1.1373848808890181, 1.0955791035628462, 1.0542894469444044, 1.0135159110336933, 0.9732584958307124, 0.9335172013354627, 0.8942920275479427, 0.8555829744681542, 0.8173900420960956, 0.7797132304317675, 0.7425525394751702, 0.7059079692263031, 0.6697795196851666, 0.6341671908517608, 0.5990709827260856, 0.5644908953081402, 0.5304269285979264, 0.49687908259544233, 0.4638473573006894, 0.4313317527136662, 0.3993322688343739, 0.36784890566281225, 0.33688166319898105, 0.3064305414428803, 0.2764955403945102, 0.24707666005387052, 0.21817390042096152, 0.1897872614957823, 0.16191674327833439, 0.1345623457686167, 0.1077240689666299, 0.0814019128723733, 0.05559587748584738, 0.030305962807051667, 0.005532168835986839, 0.01872550442734755, 0.0424670569829515, 0.06569248883082524, 0.08840179997096809, 0.11059499040338039, 0.13227206012806225, 0.15343300914501357, 0.17407783745423433, 0.19420654505572466, 0.21381913194948443, 0.23291559813551355, 0.25149594361381233, 0.26956016838438046, 0.2871082724472185, 0.3041402558023256, 0.3206561184497022, 0.33665586038934836, 0.35213948162126396, 0.367106982145449, 0.3815583619619036, 0.3954936210706277, 0.4089127594716211, 0.42181577716488416, 0.4342026741504166, 0.4460734504282188, 0.4574281059982902, 0.4682666408606311, 0.4785890550152415, 0.4883953484621214, 0.49768552120127074, 0.5064595732326895, 0.5147175045563779, 0.5224593151723357, 0.529685005080563, 0.5363945742810597, 0.5425880227738261, 0.5482653505588618, 0.553426557636167, 0.5580716440057417, 0.5622006096675858, 0.5658134546216995, 0.5689101788680826, 0.5714907824067352, 0.5735552652376573, 0.5751036273608489, 0.57613586877631, 0.5766519894840405, 0.5766519894840405, 0.57613586877631, 0.575103627360849, 0.5735552652376574, 0.5714907824067352, 0.5689101788680827, 0.5658134546216995, 0.562200609667586, 0.5580716440057418, 0.5534265576361672, 0.5482653505588619, 0.5425880227738262, 0.53639457428106, 0.5296850050805633, 0.5224593151723359, 0.514717504556378, 0.5064595732326898, 0.49768552120127085, 0.4883953484621216, 0.4785890550152416, 0.4682666408606314, 0.4574281059982903, 0.4460734504282191, 0.434202674150417, 0.4218157771648847, 0.40891275947162153, 0.3954936210706278, 0.38155836196190396, 0.36710698214544923, 0.3521394816212644, 0.3366558603893486, 0.32065611844970277, 0.30414025580232584, 0.2871082724472189, 0.269560168384381, 0.25149594361381267, 0.2329155981355142, 0.21381913194948465, 0.1942065450557251, 0.17407783745423466, 0.15343300914501412, 0.13227206012806247, 0.11059499040338094, 0.08840179997096831, 0.06569248883082579, 0.04246705698295217, 0.018725504427347883, 0.005532168835986173, 0.030305962807051445, 0.05559587748584649, 0.08140191287237286, 0.107724068966629, 0.13456234576861648, 0.16191674327833372, 0.18978726149578207, 0.2181739004209602, 0.24707666005386963, 0.27649554039450974, 0.3064305414428796, 0.3368816631989806, 0.36784890566281137, 0.39933226883437345, 0.4313317527136653, 0.4638473573006885, 0.496879082595441, 0.5304269285979255, 0.5644908953081393, 0.5990709827260847, 0.6341671908517603, 0.6697795196851657, 0.7059079692263026, 0.7425525394751689, 0.7797132304317671, 0.8173900420960942, 0.8555829744681533, 0.8942920275479418, 0.9335172013354618, 0.9732584958307111, 1.0135159110336924, 1.054289446944404, 1.0955791035628448, 1.1373848808890177, 1.1797067789229199, 1.2225447976645536, 1.2658989371139162, 1.3097691972710113, 1.3541555781358352, 1.3990580797083911, 1.4444767019886764, 1.4904114449766932, 1.5368623086724407, 1.5838292930759175, 1.6313123981871258, 1.6793116240060635, 1.7278269705327327, 1.7768584377671317, 1.8264060257092622, 1.8764697343591217, 1.9270495637167135, 1.9781455137820343, 2.029757584555087, 2.08188577603587, 2.1345300882243823, 2.1876905211206266, 2.2413670747246, 2.2955597490363053, 2.3502685440557394, 2.405493459782906, 2.461234496217801, 2.5174916533604286, 2.5742649312107866, 2.6315543297688735, 2.6893598490346924, 2.7476814890082406, 2.8065192496895204, 2.8658731310785295, 2.9257431331752706, 2.9861292559797405, 3.0470314994919425, 3.108449863711874, 3.170384348639537, 3.2328349542749306, 3.2958016806180526, 3.3592845276689074, 3.4232834954274933 ], [ 3.4026386671182722, 3.338639699359688, 3.275156852308834, 3.2121901259657104, 3.149739520330318, 3.0878050354026545, 3.0263866711827223, 2.9654844276705212, 2.9050983048660504, 2.8452283027693106, 2.7858744213803, 2.727036660699021, 2.6687150207254726, 2.6109095014596546, 2.553620102901567, 2.4968468250512093, 2.440589667908582, 2.3848486314736865, 2.3296237157465205, 2.2749149207270856, 2.220722246415381, 2.1670456928114064, 2.113885259915163, 2.06124094772665, 2.0091127562458677, 1.9575006854728159, 1.9064047354074942, 1.8558249060499028, 1.8057611974000425, 1.7562136094579124, 1.7071821422235125, 1.6586667956968437, 1.6106675698779052, 1.5631844647666977, 1.5162174803632205, 1.4697666166674734, 1.4238318736794566, 1.3784132513991718, 1.3335107498266154, 1.289124368961792, 1.245254108804697, 1.201899969355333, 1.1590619506137, 1.1167400525797975, 1.074934275253625, 1.0336446186351838, 0.9928710827244727, 0.9526136675214916, 0.912872373026242, 0.873647199238722, 0.8349381461589336, 0.7967452137868747, 0.7590684021225467, 0.7219077111659493, 0.6852631409170824, 0.6491346913759459, 0.6135223625425401, 0.5784261544168647, 0.5438460669989194, 0.5097821002887055, 0.47623425428622146, 0.4432025289914685, 0.4106869244044453, 0.378687440525153, 0.3472040773535914, 0.3162368348897604, 0.2857857131336594, 0.25585071208528953, 0.22643183174464987, 0.19752907211174064, 0.16914243318656164, 0.1412719149691135, 0.11391751745939604, 0.08707924065740902, 0.06075708456315265, 0.0349510491766265, 0.009661134497831014, 0.015112659473233925, 0.039370332736568314, 0.06311188529217227, 0.086337317140046, 0.10904662828018874, 0.13123981871260115, 0.15291688843728302, 0.17407783745423433, 0.1947226657634551, 0.2148513733649453, 0.23446396025870508, 0.2535604264447344, 0.2721407719230331, 0.29020499669360134, 0.30775310075643914, 0.3247850841115464, 0.341300946758923, 0.3573006886985691, 0.3727843099304847, 0.3877518104546698, 0.4022031902711243, 0.41613844937984834, 0.42955758778084197, 0.44246060547410493, 0.45484750245963745, 0.46671827873743954, 0.47807293430751097, 0.48891146916985184, 0.4992338833244623, 0.5090401767713422, 0.5183303495104915, 0.5271044015419104, 0.5353623328655986, 0.5431041434815564, 0.5503298333897837, 0.5570394025902805, 0.5632328510830469, 0.5689101788680826, 0.5740713859453878, 0.5787164723149625, 0.5828454379768067, 0.5864582829309203, 0.5895550071773035, 0.592135610715956, 0.5942000935468781, 0.5957484556700696, 0.5967806970855307, 0.5972968177932612, 0.5972968177932612, 0.5967806970855307, 0.5957484556700696, 0.5942000935468781, 0.5921356107159561, 0.5895550071773035, 0.5864582829309203, 0.5828454379768067, 0.5787164723149625, 0.5740713859453879, 0.5689101788680826, 0.563232851083047, 0.5570394025902807, 0.550329833389784, 0.5431041434815567, 0.5353623328655988, 0.5271044015419106, 0.5183303495104916, 0.5090401767713424, 0.4992338833244624, 0.4889114691698522, 0.4780729343075111, 0.4667182787374399, 0.4548475024596377, 0.4424606054741054, 0.4295575877808423, 0.41613844937984856, 0.4022031902711247, 0.38775181045467, 0.37278430993048517, 0.35730068869856935, 0.3413009467589234, 0.3247850841115466, 0.3077531007564397, 0.2902049966936018, 0.2721407719230333, 0.25356042644473487, 0.23446396025870542, 0.21485137336494597, 0.19472266576345532, 0.17407783745423488, 0.15291688843728335, 0.13123981871260182, 0.10904662828018918, 0.08633731714004655, 0.06311188529217293, 0.03937033273656865, 0.015112659473234591, 0.00966113449783057, 0.03495104917662584, 0.06075708456315221, 0.08707924065740835, 0.1139175174593956, 0.14127191496911284, 0.1691424331865612, 0.19752907211173953, 0.22643183174464898, 0.2558507120852891, 0.28578571313365875, 0.31623683488975995, 0.3472040773535907, 0.3786874405251526, 0.41068692440444443, 0.4432025289914676, 0.47623425428622035, 0.5097821002887046, 0.5438460669989185, 0.5784261544168638, 0.6135223625425397, 0.649134691375945, 0.685263140917082, 0.7219077111659482, 0.7590684021225462, 0.7967452137868736, 0.8349381461589325, 0.8736471992387209, 0.9128723730262411, 0.9526136675214905, 0.9928710827244716, 1.0336446186351829, 1.0749342752536242, 1.1167400525797966, 1.1590619506136992, 1.201899969355333, 1.2452541088046956, 1.2891243689617902, 1.3335107498266145, 1.37841325139917, 1.4238318736794557, 1.4697666166674725, 1.5162174803632196, 1.5631844647666968, 1.6106675698779052, 1.6586667956968428, 1.7071821422235116, 1.7562136094579106, 1.8057611974000416, 1.855824906049901, 1.9064047354074924, 1.9575006854728132, 2.009112756245866, 2.061240947726649, 2.113885259915161, 2.1670456928114055, 2.220722246415379, 2.2749149207270847, 2.3296237157465187, 2.3848486314736848, 2.44058966790858, 2.4968468250512075, 2.553620102901566, 2.610909501459653, 2.6687150207254717, 2.72703666069902, 2.7858744213802993, 2.845228302769309, 2.9050983048660495, 2.9654844276705195, 3.0263866711827214, 3.0878050354026527, 3.149739520330316, 3.2121901259657095, 3.2751568523088324, 3.338639699359687, 3.4026386671182722 ], [ 3.3825099595167822, 3.318510991758197, 3.2550281447073433, 3.1920614183642204, 3.129610812728827, 3.0676763278011645, 3.0062579635812323, 2.9453557200690312, 2.8849695972645604, 2.82509959516782, 2.76574571377881, 2.706907953097531, 2.648586313123982, 2.590780793858164, 2.5334913953000764, 2.4767181174497193, 2.420460960307092, 2.3647199238721965, 2.30949500814503, 2.254786213125595, 2.2005935388138904, 2.1469169852099164, 2.093756552313673, 2.04111224012516, 1.9889840486443773, 1.9373719778713254, 1.8862760278060038, 1.8356961984484124, 1.7856324897985525, 1.736084901856422, 1.6870534346220225, 1.6385380880953537, 1.5905388622764152, 1.5430557571652073, 1.49608877276173, 1.4496379090659834, 1.4037031660779666, 1.3582845437976814, 1.3133820422251254, 1.2689956613603015, 1.2251254012032065, 1.181771261753843, 1.1389332430122097, 1.096611344978307, 1.054805567652135, 1.0135159110336933, 0.9727423751229825, 0.9324849599200014, 0.8927436654247518, 0.8535184916372318, 0.8148094385574434, 0.7766165061853845, 0.7389396945210565, 0.7017790035644591, 0.6651344333155922, 0.6290059837744557, 0.5933936549410499, 0.5582974468153745, 0.5237173593974291, 0.4896533926872153, 0.45610554668473124, 0.4230738213899783, 0.3905582168029551, 0.3585587329236628, 0.32707536975210116, 0.29610812728826996, 0.2656570055321692, 0.2357220044837991, 0.20630312414315943, 0.17740036451025043, 0.14901372558507142, 0.1211432073676233, 0.09378880985790583, 0.0669505330559188, 0.040628376961662216, 0.014822341575136289, 0.0104675731036592, 0.03524136707472425, 0.05949904033805864, 0.08324059289366259, 0.10646602474153632, 0.12917533588167907, 0.15136852631409137, 0.17304559603877334, 0.19420654505572466, 0.2148513733649453, 0.23498008096643563, 0.2545926678601954, 0.27368913404622464, 0.2922694795245233, 0.31033370429509155, 0.32788180835792946, 0.3449137917130367, 0.3614296543604132, 0.37742939630005945, 0.39291301753197505, 0.40788051805616, 0.4223318978726146, 0.43626715698133867, 0.4496862953823322, 0.46258931307559514, 0.47497621006112767, 0.48684698633892975, 0.4982016419090012, 0.5090401767713422, 0.5193625909259525, 0.5291688843728324, 0.5384590571119818, 0.5472331091434006, 0.555491040467089, 0.5632328510830468, 0.570458540991274, 0.5771681101917707, 0.5833615586845371, 0.5890388864695728, 0.5942000935468781, 0.5988451799164527, 0.6029741455782969, 0.6065869905324106, 0.6096837147787937, 0.6122643183174463, 0.6143288011483683, 0.6158771632715598, 0.6169094046870209, 0.6174255253947515, 0.6174255253947515, 0.6169094046870209, 0.61587716327156, 0.6143288011483684, 0.6122643183174463, 0.6096837147787937, 0.6065869905324106, 0.602974145578297, 0.5988451799164528, 0.5942000935468782, 0.5890388864695729, 0.5833615586845373, 0.5771681101917709, 0.5704585409912744, 0.5632328510830469, 0.5554910404670891, 0.5472331091434008, 0.5384590571119818, 0.5291688843728326, 0.5193625909259527, 0.5090401767713424, 0.4982016419090014, 0.4868469863389301, 0.474976210061128, 0.4625893130755957, 0.4496862953823325, 0.4362671569813388, 0.42233189787261505, 0.4078805180561602, 0.3929130175319754, 0.37742939630005967, 0.36142965436041374, 0.34491379171303693, 0.32788180835793, 0.310333704295092, 0.29226947952452365, 0.2736891340462252, 0.25459266786019574, 0.2349800809664362, 0.21485137336494564, 0.1942065450557251, 0.17304559603877356, 0.15136852631409203, 0.1291753358816794, 0.10646602474153677, 0.08324059289366326, 0.05949904033805886, 0.035241367074724916, 0.010467573103659644, 0.014822341575135622, 0.040628376961661994, 0.06695053305591814, 0.09378880985790539, 0.12114320736762263, 0.14901372558507098, 0.17740036451024932, 0.20630312414315877, 0.23572200448379865, 0.26565700553216853, 0.2961081272882695, 0.3270753697521003, 0.35855873292366236, 0.3905582168029542, 0.4230738213899774, 0.45610554668473013, 0.4896533926872144, 0.5237173593974283, 0.5582974468153736, 0.5933936549410495, 0.6290059837744548, 0.6651344333155917, 0.701779003564458, 0.738939694521056, 0.7766165061853834, 0.8148094385574423, 0.8535184916372307, 0.8927436654247509, 0.9324849599200002, 0.9727423751229813, 1.0135159110336929, 1.0548055676521337, 1.0966113449783066, 1.1389332430122088, 1.1817712617538425, 1.2251254012032051, 1.2689956613603002, 1.3133820422251241, 1.35828454379768, 1.4037031660779653, 1.449637909065982, 1.4960887727617296, 1.5430557571652064, 1.5905388622764147, 1.6385380880953524, 1.6870534346220216, 1.7360849018564206, 1.7856324897985512, 1.8356961984484106, 1.8862760278060025, 1.9373719778713232, 1.988984048644376, 2.041112240125159, 2.093756552313671, 2.1469169852099155, 2.200593538813889, 2.2547862131255942, 2.3094950081450283, 2.3647199238721948, 2.42046096030709, 2.4767181174497175, 2.5334913953000755, 2.5907807938581624, 2.6485863131239813, 2.7069079530975295, 2.7657457137788093, 2.8250995951678184, 2.8849695972645595, 2.9453557200690295, 3.0062579635812314, 3.0676763278011627, 3.129610812728826, 3.1920614183642195, 3.2550281447073415, 3.3185109917581963, 3.3825099595167822 ], [ 3.3628973726230225, 3.2988984048644374, 3.2354155578135835, 3.1724488314704606, 3.109998225835067, 3.0480637409074047, 2.9866453766874725, 2.9257431331752715, 2.8653570103708006, 2.8054870082740604, 2.7461331268850504, 2.687295366203771, 2.6289737262302224, 2.5711682069644044, 2.5138788084063166, 2.4571055305559595, 2.400848373413332, 2.3451073369784368, 2.2898824212512703, 2.2351736262318354, 2.1809809519201306, 2.1273043983161566, 2.074143965419913, 2.0214996532314, 1.9693714617506175, 1.9177593909775656, 1.866663440912244, 1.8160836115546526, 1.7660199029047927, 1.7164723149626622, 1.6674408477282627, 1.618925501201594, 1.5709262753826554, 1.5234431702714475, 1.4764761858679702, 1.4300253221722237, 1.3840905791842069, 1.3386719569039216, 1.2937694553313657, 1.2493830744665417, 1.2055128143094467, 1.1621586748600832, 1.1193206561184499, 1.0769987580845473, 1.0351929807583753, 0.9939033241399338, 0.9531297882292227, 0.9128723730262416, 0.873131078530992, 0.833905904743472, 0.7951968516636836, 0.7570039192916247, 0.7193271076272967, 0.6821664166706993, 0.6455218464218324, 0.6093933968806959, 0.5737810680472901, 0.5386848599216147, 0.5041047725036694, 0.47004080579345553, 0.43649295979097147, 0.4034612344962185, 0.37094562990919533, 0.33894614602990303, 0.3074627828583414, 0.2764955403945102, 0.24604441863840942, 0.21610941759003932, 0.18669053724939966, 0.15778777761649065, 0.12940113869131165, 0.10153062047386352, 0.07417622296414605, 0.04733794616215903, 0.02101579006790244, 0.004790245318623487, 0.030080159997418976, 0.054853953968484026, 0.07911162723181842, 0.10285317978742237, 0.1260786116352961, 0.14878792277543884, 0.17098111320785114, 0.19265818293253312, 0.21381913194948443, 0.23446396025870508, 0.2545926678601954, 0.2742052547539552, 0.2933017209399844, 0.3118820664182831, 0.3299462911888513, 0.34749439525168924, 0.3645263786067965, 0.38104224125417296, 0.3970419831938192, 0.4125256044257348, 0.42749310494991977, 0.4419444847663744, 0.45587974387509844, 0.46929888227609196, 0.4822018999693549, 0.49458879695488744, 0.5064595732326895, 0.517814228802761, 0.5286527636651019, 0.5389751778197123, 0.5487814712665922, 0.5580716440057416, 0.5668456960371604, 0.5751036273608487, 0.5828454379768065, 0.5900711278850338, 0.5967806970855305, 0.6029741455782969, 0.6086514733633326, 0.6138126804406379, 0.6184577668102125, 0.6225867324720566, 0.6261995774261704, 0.6292963016725535, 0.6318769052112061, 0.6339413880421281, 0.6354897501653196, 0.6365219915807807, 0.6370381122885113, 0.6370381122885113, 0.6365219915807807, 0.6354897501653197, 0.6339413880421282, 0.6318769052112061, 0.6292963016725535, 0.6261995774261704, 0.6225867324720568, 0.6184577668102126, 0.613812680440638, 0.6086514733633327, 0.6029741455782971, 0.5967806970855307, 0.5900711278850341, 0.5828454379768067, 0.5751036273608489, 0.5668456960371606, 0.5580716440057416, 0.5487814712665924, 0.5389751778197125, 0.5286527636651022, 0.5178142288027612, 0.5064595732326899, 0.4945887969548878, 0.4822018999693555, 0.4692988822760923, 0.45587974387509855, 0.4419444847663748, 0.42749310494992, 0.41252560442573516, 0.39704198319381945, 0.3810422412541735, 0.3645263786067967, 0.3474943952516898, 0.32994629118885177, 0.3118820664182834, 0.29330172093998497, 0.2742052547539555, 0.25459266786019596, 0.23446396025870542, 0.21381913194948488, 0.19265818293253334, 0.1709811132078518, 0.14878792277543917, 0.12607861163529654, 0.10285317978742303, 0.07911162723181864, 0.05485395396848469, 0.03008015999741942, 0.004790245318624153, 0.021015790067902218, 0.04733794616215836, 0.07417622296414561, 0.10153062047386285, 0.1294011386913112, 0.15778777761648954, 0.186690537249399, 0.21610941759003888, 0.24604441863840876, 0.27649554039450974, 0.3074627828583405, 0.3389461460299026, 0.37094562990919444, 0.4034612344962176, 0.43649295979097036, 0.47004080579345464, 0.5041047725036685, 0.5386848599216139, 0.5737810680472897, 0.609393396880695, 0.645521846421832, 0.6821664166706982, 0.7193271076272962, 0.7570039192916236, 0.7951968516636825, 0.8339059047434709, 0.8731310785309911, 0.9128723730262405, 0.9531297882292216, 0.9939033241399331, 1.035192980758374, 1.0769987580845468, 1.119320656118449, 1.1621586748600827, 1.2055128143094453, 1.2493830744665404, 1.2937694553313643, 1.3386719569039203, 1.3840905791842055, 1.4300253221722223, 1.4764761858679698, 1.5234431702714466, 1.570926275382655, 1.6189255012015926, 1.6674408477282618, 1.7164723149626608, 1.7660199029047914, 1.8160836115546508, 1.8666634409122427, 1.9177593909775634, 1.9693714617506162, 2.021499653231399, 2.0741439654199114, 2.1273043983161557, 2.1809809519201293, 2.2351736262318345, 2.2898824212512685, 2.345107336978435, 2.4008483734133303, 2.4571055305559577, 2.5138788084063157, 2.5711682069644026, 2.6289737262302215, 2.6872953662037697, 2.7461331268850495, 2.8054870082740586, 2.8653570103707997, 2.9257431331752697, 2.9866453766874717, 3.048063740907403, 3.1099982258350662, 3.1724488314704598, 3.2354155578135817, 3.2988984048644365, 3.3628973726230225 ], [ 3.343800906436993, 3.2798019386784087, 3.216319091627555, 3.153352365284431, 3.0909017596490385, 3.028967274721375, 2.9675489105014434, 2.9066466669892423, 2.8462605441847715, 2.7863905420880313, 2.7270366606990213, 2.668198900017742, 2.6098772600441933, 2.5520717407783753, 2.4947823422202875, 2.4380090643699304, 2.381751907227303, 2.3260108707924076, 2.270785955065241, 2.2160771600458062, 2.1618844857341015, 2.1082079321301275, 2.055047499233884, 2.002403187045371, 1.9502749955645884, 1.8986629247915365, 1.847566974726215, 1.7969871453686235, 1.7469234367187636, 1.697375848776633, 1.6483443815422336, 1.5998290350155648, 1.5518298091966263, 1.5043467040854184, 1.4573797196819411, 1.4109288559861946, 1.3649941129981777, 1.3195754907178925, 1.2746729891453366, 1.2302866082805126, 1.1864163481234176, 1.143062208674054, 1.1002241899324208, 1.0579022918985181, 1.0160965145723462, 0.9748068579539044, 0.9340333220431933, 0.8937759068402122, 0.8540346123449627, 0.8148094385574427, 0.7761003854776543, 0.7379074531055954, 0.7002306414412673, 0.66306995048467, 0.6264253802358031, 0.5902969306946666, 0.5546846018612608, 0.5195883937355854, 0.48500830631764, 0.4509443396074262, 0.41739649360494213, 0.3843647683101892, 0.351849163723166, 0.3198496798438739, 0.28836631667231205, 0.25739907420848107, 0.2269479524523803, 0.1970129514040102, 0.16759407106337054, 0.13869131143046132, 0.11030467250528231, 0.0824341542878344, 0.05507975677811672, 0.02824147997612969, 0.001919323881873325, 0.023886711504652824, 0.04917662618344831, 0.07395042015451314, 0.09820809341784753, 0.12194964597345148, 0.14517507782132522, 0.16788438896146807, 0.19007757939388048, 0.21175464911856223, 0.23291559813551355, 0.2535604264447344, 0.27368913404622464, 0.2933017209399844, 0.31239818712601364, 0.3309785326043124, 0.34904275737488055, 0.36659086143771846, 0.3836228447928256, 0.4001387074402023, 0.41613844937984834, 0.43162207061176394, 0.4465895711359491, 0.4610409509524036, 0.47497621006112767, 0.4883953484621212, 0.5012983661553841, 0.5136852631409167, 0.5255560394187188, 0.5369106949887903, 0.5477492298511312, 0.5580716440057416, 0.5678779374526214, 0.5771681101917707, 0.5859421622231896, 0.594200093546878, 0.6019419041628358, 0.609167594071063, 0.6158771632715598, 0.6220706117643261, 0.6277479395493619, 0.632909146626667, 0.6375542329962417, 0.6416831986580859, 0.6452960436121995, 0.6483927678585827, 0.6509733713972352, 0.6530378542281574, 0.654586216351349, 0.65561845776681, 0.6561345784745405, 0.6561345784745405, 0.65561845776681, 0.654586216351349, 0.6530378542281574, 0.6509733713972353, 0.6483927678585828, 0.6452960436121995, 0.641683198658086, 0.6375542329962418, 0.6329091466266672, 0.6277479395493619, 0.6220706117643262, 0.61587716327156, 0.6091675940710632, 0.601941904162836, 0.5942000935468781, 0.5859421622231898, 0.5771681101917709, 0.5678779374526217, 0.5580716440057416, 0.5477492298511315, 0.5369106949887904, 0.5255560394187191, 0.513685263140917, 0.5012983661553847, 0.4883953484621215, 0.4749762100611279, 0.46104095095240405, 0.4465895711359493, 0.4316220706117644, 0.41613844937984856, 0.40013870744020275, 0.3836228447928258, 0.3665908614377189, 0.3490427573748811, 0.33097853260431265, 0.3123981871260142, 0.29330172093998463, 0.2736891340462252, 0.25356042644473464, 0.2329155981355142, 0.21175464911856257, 0.19007757939388104, 0.1678843889614684, 0.14517507782132588, 0.12194964597345215, 0.09820809341784797, 0.07395042015451381, 0.049176626183448535, 0.02388671150465349, 0.0019193238818728808, 0.028241479976129025, 0.055079756778116495, 0.08243415428783352, 0.11030467250528209, 0.1386913114304602, 0.16759407106336965, 0.19701295140400976, 0.22694795245237942, 0.2573990742084806, 0.2883663166723114, 0.31984967984387347, 0.3518491637231651, 0.3843647683101883, 0.417396493604941, 0.4509443396074253, 0.48500830631763914, 0.5195883937355845, 0.5546846018612603, 0.5902969306946657, 0.6264253802358026, 0.6630699504846689, 0.7002306414412669, 0.7379074531055942, 0.7761003854776531, 0.8148094385574416, 0.8540346123449618, 0.8937759068402111, 0.9340333220431922, 0.9748068579539038, 1.0160965145723448, 1.0579022918985177, 1.1002241899324199, 1.1430622086740536, 1.1864163481234162, 1.2302866082805113, 1.2746729891453352, 1.3195754907178912, 1.3649941129981764, 1.4109288559861932, 1.4573797196819407, 1.5043467040854175, 1.5518298091966258, 1.5998290350155635, 1.6483443815422327, 1.6973758487766317, 1.7469234367187623, 1.7969871453686217, 1.8475669747262136, 1.8986629247915343, 1.950274995564587, 2.00240318704537, 2.0550474992338823, 2.1082079321301266, 2.1618844857341, 2.2160771600458053, 2.2707859550652394, 2.326010870792406, 2.3817519072273012, 2.4380090643699286, 2.4947823422202866, 2.5520717407783735, 2.6098772600441924, 2.6681989000177406, 2.7270366606990204, 2.7863905420880295, 2.8462605441847706, 2.9066466669892406, 2.9675489105014425, 3.0289672747213734, 3.0909017596490367, 3.15335236528443, 3.216319091627553, 3.279801938678408, 3.343800906436993 ], [ 3.3252205609586944, 3.2612215932001103, 3.1977387461492555, 3.1347720198061326, 3.072321414170739, 3.0103869292430767, 2.9489685650231445, 2.8880663215109434, 2.8276801987064726, 2.7678101966097324, 2.7084563152207224, 2.649618554539443, 2.5912969145658944, 2.5334913953000764, 2.4762019967419886, 2.4194287188916315, 2.363171561749004, 2.3074305253141087, 2.2522056095869423, 2.1974968145675073, 2.1433041402558026, 2.0896275866518286, 2.036467153755585, 1.983822841567072, 1.9316946500862895, 1.8800825793132376, 1.828986629247916, 1.7784067998903246, 1.7283430912404647, 1.6787955032983342, 1.6297640360639347, 1.581248689537266, 1.5332494637183274, 1.4857663586071195, 1.4387993742036422, 1.3923485105078957, 1.3464137675198788, 1.3009951452395936, 1.2560926436670377, 1.2117062628022137, 1.167836002645119, 1.1244818631957552, 1.0816438444541223, 1.0393219464202197, 0.9975161690940473, 0.9562265124756057, 0.9154529765648947, 0.8751955613619136, 0.835454266866664, 0.796229093079144, 0.7575200399993556, 0.7193271076272967, 0.6816502959629687, 0.6444896050063713, 0.6078450347575044, 0.5717165852163679, 0.5361042563829621, 0.5010080482572867, 0.46642796083934135, 0.4323639941291275, 0.39881614812664345, 0.3657844228318905, 0.3332688182448673, 0.30126933436557524, 0.2697859711940134, 0.23881872873018217, 0.20836760697408163, 0.1784326059257113, 0.14901372558507164, 0.12011096595216264, 0.09172432702698363, 0.06385380880953573, 0.03649941129981804, 0.009661134497831014, 0.016661021596425463, 0.0424670569829515, 0.06775697166174699, 0.09253076563281193, 0.11678843889614632, 0.14052999145175027, 0.163755423299624, 0.18646473443976674, 0.20865792487217916, 0.23033499459686102, 0.25149594361381233, 0.2721407719230331, 0.2922694795245233, 0.3118820664182831, 0.3309785326043124, 0.3495588780826111, 0.36762310285317934, 0.38517120691601714, 0.4022031902711244, 0.418719052918501, 0.43471879485814713, 0.45020241609006273, 0.4651699166142478, 0.4796212964307023, 0.49355655553942634, 0.50697569394042, 0.5198787116336829, 0.5322656086192155, 0.5441363848970175, 0.555491040467089, 0.5663295753294298, 0.5766519894840403, 0.5864582829309202, 0.5957484556700695, 0.6045225077014884, 0.6127804390251766, 0.6205222496411344, 0.6277479395493617, 0.6344575087498585, 0.6406509572426249, 0.6463282850276606, 0.6514894921049658, 0.6561345784745405, 0.6602635441363847, 0.6638763890904983, 0.6669731133368815, 0.669553716875534, 0.6716181997064561, 0.6731665618296476, 0.6741988032451087, 0.6747149239528392, 0.6747149239528392, 0.6741988032451087, 0.6731665618296476, 0.6716181997064561, 0.6695537168755341, 0.6669731133368815, 0.6638763890904983, 0.6602635441363847, 0.6561345784745405, 0.6514894921049659, 0.6463282850276606, 0.640650957242625, 0.6344575087498587, 0.627747939549362, 0.6205222496411347, 0.6127804390251768, 0.6045225077014886, 0.5957484556700696, 0.5864582829309204, 0.5766519894840404, 0.5663295753294302, 0.5554910404670891, 0.5441363848970179, 0.5322656086192157, 0.5198787116336834, 0.5069756939404203, 0.49355655553942657, 0.4796212964307027, 0.465169916614248, 0.4502024160900632, 0.43471879485814735, 0.4187190529185014, 0.4022031902711246, 0.3851712069160177, 0.3676231028531798, 0.3495588780826113, 0.33097853260431287, 0.3118820664182834, 0.292269479524524, 0.2721407719230333, 0.2514959436138129, 0.23033499459686135, 0.20865792487217982, 0.1864647344397672, 0.16375542329962456, 0.14052999145175094, 0.11678843889614665, 0.0925307656328126, 0.06775697166174732, 0.04246705698295217, 0.016661021596425796, 0.009661134497830348, 0.03649941129981782, 0.06385380880953484, 0.09172432702698341, 0.12011096595216153, 0.14901372558507098, 0.17843260592571086, 0.20836760697408074, 0.23881872873018173, 0.2697859711940125, 0.3012693343655748, 0.3332688182448664, 0.3657844228318896, 0.39881614812664234, 0.4323639941291266, 0.46642796083934046, 0.5010080482572858, 0.5361042563829617, 0.571716585216367, 0.607845034757504, 0.6444896050063702, 0.6816502959629682, 0.7193271076272956, 0.7575200399993545, 0.7962290930791429, 0.8354542668666631, 0.8751955613619125, 0.9154529765648936, 0.9562265124756051, 0.9975161690940462, 1.0393219464202188, 1.081643844454121, 1.1244818631957547, 1.1678360026451173, 1.2117062628022124, 1.2560926436670368, 1.3009951452395923, 1.3464137675198775, 1.3923485105078943, 1.4387993742036418, 1.4857663586071186, 1.533249463718327, 1.5812486895372646, 1.6297640360639338, 1.6787955032983328, 1.7283430912404634, 1.7784067998903228, 1.8289866292479147, 1.8800825793132354, 1.9316946500862882, 1.9838228415670711, 2.0364671537555834, 2.0896275866518277, 2.1433041402558013, 2.1974968145675065, 2.2522056095869405, 2.307430525314107, 2.3631715617490023, 2.4194287188916297, 2.4762019967419877, 2.5334913953000746, 2.5912969145658935, 2.6496185545394417, 2.7084563152207215, 2.7678101966097306, 2.8276801987064717, 2.8880663215109417, 2.9489685650231436, 3.010386929243075, 3.0723214141707382, 3.1347720198061317, 3.1977387461492537, 3.2612215932001085, 3.3252205609586944 ], [ 3.307156336188126, 3.243157368429542, 3.179674521378688, 3.1167077950355644, 3.0542571894001718, 2.9923227044725085, 2.9309043402525763, 2.870002096740375, 2.8096159739359043, 2.749745971839164, 2.690392090450154, 2.631554329768875, 2.573232689795326, 2.515427170529508, 2.4581377719714204, 2.4013644941210632, 2.345107336978436, 2.2893663005435405, 2.234141384816374, 2.179432589796939, 2.1252399154852344, 2.0715633618812603, 2.018402928985017, 1.9657586167965038, 1.9136304253157213, 1.8620183545426694, 1.8109224044773478, 1.7603425751197563, 1.7102788664698965, 1.660731278527766, 1.6116998112933665, 1.5631844647666977, 1.5151852389477591, 1.4677021338365512, 1.420735149433074, 1.3742842857373274, 1.3283495427493106, 1.2829309204690253, 1.2380284188964694, 1.1936420380316455, 1.1497717778745509, 1.106417638425187, 1.063579619683554, 1.0212577216496515, 0.979451944323479, 0.9381622877050375, 0.8973887517943264, 0.8571313365913453, 0.8173900420960958, 0.7781648683085758, 0.7394558152287873, 0.7012628828567284, 0.6635860711924004, 0.6264253802358031, 0.5897808099869362, 0.5536523604457997, 0.5180400316123939, 0.4829438234867185, 0.4483637360687731, 0.4142997693585593, 0.3807519233560752, 0.34772019806132226, 0.3152045934742991, 0.283205109595007, 0.25172174642344514, 0.22075450395961416, 0.1903033822035134, 0.1603683811551433, 0.13094950081450363, 0.1020467411815944, 0.0736601022564154, 0.04578958403896749, 0.018435186529249803, 0.008403090272737224, 0.03472524636699359, 0.06053128175351974, 0.08582119643231523, 0.11059499040338006, 0.13485266366671445, 0.1585942162223184, 0.18181964807019213, 0.20452895921033498, 0.2267221496427474, 0.24839921936742915, 0.26956016838438046, 0.29020499669360134, 0.31033370429509155, 0.3299462911888513, 0.34904275737488055, 0.36762310285317934, 0.38568732762374747, 0.4032354316865854, 0.4202674150416925, 0.4367832776890692, 0.45278301962871526, 0.46826664086063086, 0.483234141384816, 0.4976855212012705, 0.5116207803099946, 0.5250399187109881, 0.5379429364042511, 0.5503298333897836, 0.5622006096675857, 0.5735552652376572, 0.5843938000999981, 0.5947162142546085, 0.6045225077014883, 0.6138126804406376, 0.6225867324720565, 0.6308446637957449, 0.6385864744117027, 0.6458121643199299, 0.6525217335204267, 0.658715182013193, 0.6643925097982288, 0.6695537168755339, 0.6741988032451086, 0.6783277689069528, 0.6819406138610664, 0.6850373381074496, 0.6876179416461021, 0.6896824244770243, 0.6912307866002159, 0.692263028015677, 0.6927791487234074, 0.6927791487234074, 0.692263028015677, 0.6912307866002159, 0.6896824244770243, 0.6876179416461022, 0.6850373381074497, 0.6819406138610664, 0.6783277689069529, 0.6741988032451087, 0.6695537168755341, 0.6643925097982288, 0.6587151820131931, 0.6525217335204269, 0.6458121643199302, 0.6385864744117029, 0.630844663795745, 0.6225867324720568, 0.6138126804406379, 0.6045225077014886, 0.5947162142546085, 0.5843938000999984, 0.5735552652376573, 0.562200609667586, 0.5503298333897839, 0.5379429364042516, 0.5250399187109884, 0.5116207803099948, 0.49768552120127096, 0.48323414138481624, 0.4682666408606313, 0.4527830196287155, 0.43678327768906966, 0.42026741504169274, 0.4032354316865858, 0.385687327623748, 0.36762310285317956, 0.3490427573748811, 0.32994629118885155, 0.3103337042950921, 0.29020499669360156, 0.2695601683843811, 0.24839921936742948, 0.22672214964274795, 0.20452895921033531, 0.1818196480701928, 0.15859421622231906, 0.1348526636667149, 0.11059499040338072, 0.08582119643231545, 0.060531281753520405, 0.034725246366994034, 0.00840309027273789, 0.01843518652924958, 0.0457895840389666, 0.07366010225641517, 0.10204674118159329, 0.13094950081450274, 0.16036838115514285, 0.1903033822035125, 0.2207545039596137, 0.25172174642344447, 0.28320510959500655, 0.3152045934742982, 0.3477201980613214, 0.3807519233560741, 0.4142997693585584, 0.4483637360687722, 0.4829438234867176, 0.5180400316123934, 0.5536523604457988, 0.5897808099869357, 0.626425380235802, 0.6635860711924, 0.7012628828567273, 0.7394558152287862, 0.7781648683085747, 0.8173900420960949, 0.8571313365913442, 0.8973887517943253, 0.9381622877050368, 0.9794519443234779, 1.0212577216496506, 1.0635796196835527, 1.1064176384251865, 1.1497717778745495, 1.1936420380316441, 1.2380284188964685, 1.282930920469024, 1.3283495427493093, 1.374284285737326, 1.4207351494330736, 1.4677021338365503, 1.5151852389477587, 1.5631844647666964, 1.6116998112933656, 1.6607312785277646, 1.7102788664698951, 1.7603425751197546, 1.8109224044773464, 1.8620183545426672, 1.91363042531572, 1.9657586167965029, 2.018402928985015, 2.0715633618812594, 2.125239915485233, 2.179432589796938, 2.2341413848163723, 2.2893663005435387, 2.345107336978434, 2.4013644941210615, 2.4581377719714195, 2.5154271705295064, 2.5732326897953253, 2.6315543297688735, 2.6903920904501533, 2.7497459718391624, 2.8096159739359035, 2.8700020967403734, 2.9309043402525754, 2.9923227044725067, 3.05425718940017, 3.1167077950355635, 3.1796745213786863, 3.243157368429541, 3.307156336188126 ], [ 3.289608232125288, 3.225609264366704, 3.16212641731585, 3.0991596909727264, 3.0367090853373337, 2.9747746004096705, 2.9133562361897383, 2.852453992677537, 2.7920678698730663, 2.732197867776326, 2.672843986387316, 2.614006225706037, 2.555684585732488, 2.49787906646667, 2.4405896679085823, 2.383816390058225, 2.327559232915598, 2.2718181964807025, 2.216593280753536, 2.161884485734101, 2.1076918114223964, 2.0540152578184223, 2.000854824922179, 1.9482105127336657, 1.8960823212528832, 1.8444702504798314, 1.7933743004145097, 1.7427944710569183, 1.6927307624070584, 1.643183174464928, 1.5941517072305285, 1.5456363607038597, 1.4976371348849211, 1.4501540297737132, 1.403187045370236, 1.3567361816744894, 1.3108014386864726, 1.2653828164061873, 1.2204803148336314, 1.1760939339688075, 1.1322236738117128, 1.088869534362349, 1.046031515620716, 1.0037096175868134, 0.9619038402606412, 0.9206141836421997, 0.8798406477314886, 0.8395832325285075, 0.799841938033258, 0.760616764245738, 0.7219077111659495, 0.6837147787938906, 0.6460379671295626, 0.6088772761729653, 0.5722327059240984, 0.5361042563829619, 0.5004919275495561, 0.4653957194238807, 0.4308156320059353, 0.3967516652957215, 0.3632038192932374, 0.33017209399848446, 0.2976564894114613, 0.265657005532169, 0.23417364236060734, 0.20320639989677614, 0.17275527814067537, 0.14282027709230527, 0.1134013967516656, 0.0844986371187566, 0.056111998193577595, 0.02824147997612947, 0.0008870824664120036, 0.025951194335575023, 0.05227335042983161, 0.07807938581635754, 0.10336930049515303, 0.12814309446621808, 0.15240076772955247, 0.17614232028515642, 0.19936775213303015, 0.2220770632731729, 0.2442702537055852, 0.26594732343026717, 0.2871082724472185, 0.30775310075643914, 0.32788180835792946, 0.34749439525168924, 0.36659086143771846, 0.38517120691601714, 0.4032354316865854, 0.4207835357494233, 0.43781551910453054, 0.454331381751907, 0.4703311236915533, 0.4858147449234689, 0.5007822454476538, 0.5152336252641084, 0.5291688843728325, 0.542588022773826, 0.555491040467089, 0.5678779374526215, 0.5797487137304236, 0.591103369300495, 0.601941904162836, 0.6122643183174463, 0.6220706117643262, 0.6313607845034757, 0.6401348365348944, 0.6483927678585828, 0.6561345784745406, 0.6633602683827678, 0.6700698375832645, 0.6762632860760309, 0.6819406138610666, 0.6871018209383719, 0.6917469073079465, 0.6958758729697907, 0.6994887179239044, 0.7025854421702875, 0.7051660457089401, 0.7072305285398621, 0.7087788906630537, 0.7098111320785148, 0.7103272527862453, 0.7103272527862453, 0.7098111320785148, 0.7087788906630538, 0.7072305285398622, 0.7051660457089401, 0.7025854421702875, 0.6994887179239044, 0.6958758729697908, 0.6917469073079466, 0.687101820938372, 0.6819406138610667, 0.6762632860760311, 0.6700698375832648, 0.6633602683827682, 0.6561345784745407, 0.6483927678585829, 0.6401348365348947, 0.6313607845034757, 0.6220706117643264, 0.6122643183174465, 0.6019419041628362, 0.5911033693004952, 0.5797487137304239, 0.5678779374526218, 0.5554910404670895, 0.5425880227738263, 0.5291688843728326, 0.5152336252641089, 0.500782245447654, 0.4858147449234692, 0.4703311236915535, 0.45433138175190757, 0.43781551910453076, 0.42078353574942384, 0.4032354316865858, 0.3851712069160175, 0.366590861437719, 0.34749439525168957, 0.32788180835793, 0.30775310075643947, 0.2871082724472189, 0.2659473234302674, 0.24427025370558586, 0.22207706327317323, 0.1993677521330306, 0.17614232028515708, 0.1524007677295527, 0.12814309446621874, 0.10336930049515347, 0.0780793858163582, 0.05227335042983183, 0.02595119433557569, 0.0008870824664115595, 0.028241479976128803, 0.05611199819357715, 0.08449863711875549, 0.11340139675166494, 0.14282027709230483, 0.1727552781406747, 0.2032063998967757, 0.23417364236060645, 0.26565700553216853, 0.2976564894114604, 0.3301720939984836, 0.3632038192932363, 0.3967516652957206, 0.4308156320059344, 0.4653957194238798, 0.5004919275495556, 0.536104256382961, 0.5722327059240979, 0.6088772761729642, 0.6460379671295622, 0.6837147787938895, 0.7219077111659484, 0.7606167642457369, 0.7998419380332571, 0.8395832325285064, 0.8798406477314875, 0.920614183642199, 0.9619038402606401, 1.0037096175868125, 1.0460315156207147, 1.0888695343623485, 1.1322236738117115, 1.1760939339688061, 1.2204803148336305, 1.265382816406186, 1.3108014386864713, 1.356736181674488, 1.4031870453702355, 1.4501540297737123, 1.4976371348849207, 1.5456363607038583, 1.5941517072305276, 1.6431831744649266, 1.692730762407057, 1.7427944710569165, 1.7933743004145084, 1.8444702504798292, 1.896082321252882, 1.9482105127336649, 2.000854824922177, 2.0540152578184214, 2.107691811422395, 2.1618844857341, 2.2165932807535342, 2.2718181964807007, 2.327559232915596, 2.3838163900582234, 2.4405896679085815, 2.4978790664666684, 2.5556845857324872, 2.6140062257060355, 2.6728439863873152, 2.7321978677763243, 2.7920678698730654, 2.8524539926775354, 2.9133562361897374, 2.9747746004096687, 3.036709085337332, 3.0991596909727255, 3.1621264173158483, 3.225609264366703, 3.289608232125288 ], [ 3.2725762487701813, 3.2085772810115962, 3.1450944339607423, 3.0821277076176194, 3.019677101982226, 2.9577426170545635, 2.8963242528346314, 2.8354220093224303, 2.7750358865179594, 2.715165884421219, 2.655812003032209, 2.59697424235093, 2.538652602377381, 2.480847083111563, 2.4235576845534754, 2.3667844067031183, 2.310527249560491, 2.2547862131255956, 2.199561297398429, 2.144852502378994, 2.0906598280672894, 2.0369832744633154, 1.983822841567072, 1.9311785293785588, 1.8790503378977763, 1.8274382671247245, 1.7763423170594028, 1.7257624877018114, 1.6756987790519515, 1.626151191109821, 1.5771197238754215, 1.5286043773487528, 1.4806051515298142, 1.4331220464186063, 1.386155062015129, 1.3397041983193825, 1.2937694553313657, 1.2483508330510804, 1.2034483314785245, 1.1590619506137005, 1.1151916904566055, 1.071837551007242, 1.0289995322656087, 0.9866776342317061, 0.9448718569055341, 0.9035822002870924, 0.8628086643763813, 0.8225512491734004, 0.7828099546781506, 0.7435847808906306, 0.7048757278108422, 0.6666827954387835, 0.6290059837744555, 0.5918452928178581, 0.555200722568991, 0.5190722730278545, 0.4834599441944487, 0.44836373606877356, 0.4137836486508282, 0.37971968194061434, 0.3461718359381303, 0.3131401106433773, 0.28062450605635414, 0.24862502217706184, 0.2171416590055002, 0.186174416541669, 0.15572329478556823, 0.12578829373719813, 0.09636941339655847, 0.06746665376364946, 0.039080014838470234, 0.01120949662102233, 0.016144900888695246, 0.04298317769068227, 0.06930533378493875, 0.09511136917146479, 0.12040128385026028, 0.14517507782132522, 0.1694327510846596, 0.19317430364026356, 0.2163997354881373, 0.23910904662828014, 0.26130223706069244, 0.2829793067853743, 0.3041402558023256, 0.3247850841115464, 0.3449137917130367, 0.3645263786067965, 0.3836228447928256, 0.4022031902711244, 0.4202674150416925, 0.43781551910453054, 0.4548475024596377, 0.47136336510701426, 0.4873631070466604, 0.502846728278576, 0.5178142288027611, 0.5322656086192157, 0.5462008677279397, 0.5596200061289331, 0.5725230238221962, 0.5849099208077286, 0.5967806970855308, 0.6081353526556023, 0.6189738875179431, 0.6292963016725536, 0.6391025951194335, 0.6483927678585828, 0.6571668198900016, 0.6654247512136899, 0.6731665618296477, 0.6803922517378751, 0.6871018209383718, 0.6932952694311382, 0.6989725972161739, 0.704133804293479, 0.7087788906630538, 0.7129078563248978, 0.7165207012790116, 0.7196174255253946, 0.7221980290640473, 0.7242625118949694, 0.7258108740181609, 0.726843115433622, 0.7273592361413526, 0.7273592361413526, 0.726843115433622, 0.725810874018161, 0.7242625118949695, 0.7221980290640473, 0.7196174255253948, 0.7165207012790116, 0.7129078563248981, 0.7087788906630539, 0.7041338042934793, 0.698972597216174, 0.6932952694311383, 0.687101820938372, 0.6803922517378753, 0.673166561829648, 0.66542475121369, 0.6571668198900018, 0.6483927678585829, 0.6391025951194337, 0.6292963016725537, 0.6189738875179435, 0.6081353526556024, 0.5967806970855312, 0.5849099208077291, 0.5725230238221968, 0.5596200061289336, 0.5462008677279399, 0.532265608619216, 0.5178142288027613, 0.5028467282785765, 0.48736310704666064, 0.4713633651070148, 0.4548475024596379, 0.437815519104531, 0.42026741504169307, 0.4022031902711247, 0.38362284479282627, 0.3645263786067967, 0.34491379171303715, 0.3247850841115467, 0.3041402558023262, 0.28297930678537453, 0.261302237060693, 0.23910904662828036, 0.21639973548813785, 0.19317430364026422, 0.16943275108465994, 0.14517507782132588, 0.12040128385026061, 0.09511136917146545, 0.06930533378493908, 0.04298317769068294, 0.01614490088869558, 0.011209496621021664, 0.03908001483847001, 0.06746665376364813, 0.09636941339655758, 0.1257882937371977, 0.15572329478556757, 0.18617441654166855, 0.2171416590054993, 0.2486250221770614, 0.28062450605635325, 0.31314011064337643, 0.34617183593812895, 0.37971968194061345, 0.4137836486508273, 0.44836373606877267, 0.48345994419444827, 0.5190722730278536, 0.5552007225689906, 0.5918452928178568, 0.629005983774455, 0.6666827954387822, 0.7048757278108413, 0.7435847808906297, 0.7828099546781497, 0.8225512491733991, 0.8628086643763804, 0.9035822002870919, 0.9448718569055328, 0.9866776342317056, 1.0289995322656078, 1.0718375510072415, 1.1151916904566042, 1.1590619506136992, 1.2034483314785231, 1.248350833051079, 1.2937694553313643, 1.3397041983193811, 1.3861550620151286, 1.4331220464186054, 1.4806051515298138, 1.5286043773487514, 1.5771197238754207, 1.6261511911098196, 1.6756987790519502, 1.7257624877018096, 1.7763423170594015, 1.8274382671247222, 1.879050337897775, 1.931178529378558, 1.9838228415670702, 2.0369832744633145, 2.090659828067288, 2.1448525023789933, 2.1995612973984273, 2.254786213125594, 2.310527249560489, 2.3667844067031165, 2.4235576845534745, 2.4808470831115614, 2.5386526023773803, 2.5969742423509286, 2.6558120030322083, 2.7151658844212174, 2.7750358865179585, 2.8354220093224285, 2.8963242528346305, 2.9577426170545618, 3.019677101982225, 3.0821277076176186, 3.1450944339607405, 3.2085772810115953, 3.2725762487701813 ], [ 3.2560603861228046, 3.1920614183642204, 3.1285785713133656, 3.0656118449702427, 3.0031612393348492, 2.941226754407187, 2.8798083901872547, 2.8189061466750536, 2.7585200238705827, 2.6986500217738425, 2.6392961403848325, 2.580458379703553, 2.5221367397300045, 2.4643312204641865, 2.4070418219060987, 2.3502685440557416, 2.2940113869131142, 2.238270350478219, 2.1830454347510524, 2.1283366397316175, 2.0741439654199127, 2.0204674118159387, 1.9673069789196953, 1.9146626667311821, 1.8625344752503996, 1.8109224044773478, 1.7598264544120261, 1.7092466250544347, 1.6591829164045748, 1.6096353284624443, 1.5606038612280448, 1.512088514701376, 1.4640892888824375, 1.4166061837712296, 1.3696391993677524, 1.3231883356720058, 1.277253592683989, 1.2318349704037037, 1.1869324688311478, 1.1425460879663238, 1.0986758278092292, 1.0553216883598653, 1.0124836696182324, 0.9701617715843296, 0.9283559942581574, 0.8870663376397159, 0.8462928017290048, 0.8060353865260237, 0.7662940920307741, 0.7270689182432541, 0.6883598651634657, 0.6501669327914068, 0.6124901211270788, 0.5753294301704814, 0.5386848599216145, 0.502556410380478, 0.46694408154707223, 0.43184787342139686, 0.3972677860034515, 0.36320381929323764, 0.3296559732907536, 0.2966242479960006, 0.26410864340897744, 0.23210915952968536, 0.2006257963581235, 0.1696585538942923, 0.13920743213819176, 0.10927243108982143, 0.07985355074918177, 0.050950791116272764, 0.022564152191093756, 0.005306366026354259, 0.032660763536071835, 0.05949904033805886, 0.08582119643231534, 0.11162723181884138, 0.13691714649763687, 0.1616909404687018, 0.1859486137320362, 0.20969016628764015, 0.23291559813551388, 0.2556249092756566, 0.27781809970806903, 0.2994951694327509, 0.3206561184497022, 0.341300946758923, 0.3614296543604132, 0.38104224125417296, 0.4001387074402023, 0.418719052918501, 0.4367832776890692, 0.454331381751907, 0.47136336510701426, 0.48787922775439085, 0.503878969694037, 0.5193625909259526, 0.5343300914501377, 0.5487814712665922, 0.5627167303753162, 0.5761358687763098, 0.5890388864695728, 0.6014257834551053, 0.6132965597329074, 0.6246512153029788, 0.6354897501653197, 0.6458121643199302, 0.65561845776681, 0.6649086305059594, 0.6736826825373783, 0.6819406138610665, 0.6896824244770243, 0.6969081143852516, 0.7036176835857484, 0.7098111320785148, 0.7154884598635505, 0.7206496669408556, 0.7252947533104304, 0.7294237189722745, 0.7330365639263882, 0.7361332881727713, 0.7387138917114239, 0.740778374542346, 0.7423267366655375, 0.7433589780809986, 0.743875098788729, 0.743875098788729, 0.7433589780809986, 0.7423267366655375, 0.740778374542346, 0.738713891711424, 0.7361332881727713, 0.7330365639263882, 0.7294237189722745, 0.7252947533104304, 0.7206496669408557, 0.7154884598635505, 0.7098111320785149, 0.7036176835857486, 0.6969081143852519, 0.6896824244770245, 0.6819406138610666, 0.6736826825373785, 0.6649086305059595, 0.6556184577668103, 0.6458121643199303, 0.63548975016532, 0.624651215302979, 0.6132965597329078, 0.6014257834551056, 0.5890388864695733, 0.5761358687763102, 0.5627167303753164, 0.5487814712665926, 0.5343300914501379, 0.519362590925953, 0.5038789696940372, 0.4878792277543913, 0.4713633651070145, 0.45433138175190757, 0.43678327768906966, 0.4187190529185012, 0.40013870744020275, 0.3810422412541733, 0.36142965436041385, 0.3413009467589232, 0.32065611844970277, 0.29949516943275123, 0.2778180997080697, 0.25562490927565706, 0.23291559813551443, 0.2096901662876408, 0.18594861373203653, 0.16169094046870247, 0.1369171464976372, 0.11162723181884204, 0.08582119643231567, 0.05949904033805953, 0.03266076353607217, 0.005306366026355036, 0.022564152191093534, 0.050950791116271654, 0.0798535507491811, 0.10927243108982099, 0.13920743213819087, 0.16965855389429185, 0.2006257963581226, 0.23210915952968492, 0.26410864340897655, 0.29662424799599973, 0.32965597329075247, 0.36320381929323675, 0.3972677860034506, 0.43184787342139597, 0.4669440815470718, 0.5025564103804772, 0.5386848599216141, 0.5753294301704803, 0.6124901211270783, 0.6501669327914057, 0.6883598651634646, 0.727068918243253, 0.7662940920307733, 0.8060353865260226, 0.8462928017290037, 0.8870663376397152, 0.9283559942581563, 0.9701617715843289, 1.012483669618231, 1.0553216883598648, 1.0986758278092275, 1.1425460879663225, 1.186932468831147, 1.2318349704037024, 1.2772535926839876, 1.3231883356720044, 1.369639199367752, 1.4166061837712287, 1.464089288882437, 1.5120885147013747, 1.560603861228044, 1.609635328462443, 1.6591829164045735, 1.709246625054433, 1.7598264544120248, 1.8109224044773455, 1.8625344752503983, 1.9146626667311812, 1.9673069789196935, 2.020467411815938, 2.0741439654199114, 2.1283366397316166, 2.1830454347510506, 2.238270350478217, 2.2940113869131125, 2.35026854405574, 2.407041821906098, 2.4643312204641847, 2.5221367397300036, 2.580458379703552, 2.6392961403848316, 2.6986500217738407, 2.758520023870582, 2.818906146675052, 2.8798083901872538, 2.941226754407185, 3.0031612393348484, 3.065611844970242, 3.128578571313364, 3.1920614183642186, 3.2560603861228046 ], [ 3.240060644183158, 3.176061676424574, 3.11257882937372, 3.0496121030305963, 2.9871614973952036, 2.925227012467541, 2.8638086482476086, 2.8029064047354075, 2.7425202819309367, 2.6826502798341965, 2.6232963984451865, 2.564458637763907, 2.5061369977903585, 2.4483314785245405, 2.3910420799664527, 2.3342688021160956, 2.278011644973468, 2.222270608538573, 2.1670456928114064, 2.1123368977919714, 2.0581442234802667, 2.0044676698762927, 1.9513072369800493, 1.898662924791536, 1.8465347333107536, 1.7949226625377017, 1.74382671247238, 1.6932468831147887, 1.6431831744649288, 1.5936355865227982, 1.5446041192883988, 1.49608877276173, 1.4480895469427915, 1.4006064418315836, 1.3536394574281063, 1.3071885937323597, 1.261253850744343, 1.2158352284640577, 1.1709327268915017, 1.1265463460266778, 1.0826760858695827, 1.0393219464202192, 0.996483927678586, 0.9541620296446833, 0.9123562523185114, 0.8710665957000696, 0.8302930597893585, 0.7900356445863777, 0.7502943500911279, 0.7110691763036079, 0.6723601232238194, 0.6341671908517608, 0.5964903791874328, 0.5593296882308354, 0.5226851179819683, 0.4865566684408318, 0.45094433960742597, 0.4158481314817508, 0.38126804406380543, 0.3472040773535916, 0.31365623135110754, 0.2806245060563546, 0.2481089014693314, 0.2161094175900391, 0.18462605441847746, 0.15365881195464626, 0.1232076901985455, 0.09327268915017539, 0.06385380880953573, 0.034951049176626725, 0.0065644102514474945, 0.02130610796600041, 0.048660505475717986, 0.07549878227770501, 0.10182093837196149, 0.12762697375848753, 0.15291688843728302, 0.17769068240834796, 0.20194835567168234, 0.2256899082272863, 0.24891534007516003, 0.2716246512153029, 0.2938178416477152, 0.31549491137239705, 0.33665586038934836, 0.3573006886985691, 0.37742939630005945, 0.3970419831938192, 0.41613844937984834, 0.43471879485814713, 0.45278301962871526, 0.4703311236915533, 0.4873631070466604, 0.503878969694037, 0.5198787116336832, 0.5353623328655988, 0.5503298333897838, 0.5647812132062384, 0.5787164723149625, 0.5921356107159559, 0.605038628409219, 0.6174255253947514, 0.6292963016725536, 0.640650957242625, 0.6514894921049659, 0.6618119062595763, 0.6716181997064562, 0.6809083724456055, 0.6896824244770243, 0.6979403558007127, 0.7056821664166705, 0.7129078563248978, 0.7196174255253945, 0.7258108740181609, 0.7314882018031966, 0.7366494088805018, 0.7412944952500765, 0.7454234609119206, 0.7490363058660343, 0.7521330301124174, 0.75471363365107, 0.7567781164819921, 0.7583264786051837, 0.7593587200206448, 0.7598748407283753, 0.7598748407283753, 0.7593587200206448, 0.7583264786051838, 0.7567781164819922, 0.75471363365107, 0.7521330301124175, 0.7490363058660343, 0.7454234609119208, 0.7412944952500766, 0.736649408880502, 0.7314882018031967, 0.725810874018161, 0.7196174255253948, 0.7129078563248981, 0.7056821664166707, 0.6979403558007128, 0.6896824244770245, 0.6809083724456056, 0.6716181997064564, 0.6618119062595764, 0.6514894921049662, 0.6406509572426251, 0.6292963016725539, 0.6174255253947518, 0.6050386284092195, 0.5921356107159563, 0.5787164723149626, 0.5647812132062388, 0.550329833389784, 0.5353623328655992, 0.5198787116336834, 0.5038789696940376, 0.48736310704666064, 0.4703311236915537, 0.4527830196287158, 0.43471879485814746, 0.416138449379849, 0.39704198319381945, 0.3774293963000599, 0.35730068869856946, 0.3366558603893489, 0.31549491137239727, 0.29381784164771574, 0.2716246512153031, 0.24891534007516058, 0.22568990822728696, 0.20194835567168268, 0.17769068240834862, 0.15291688843728335, 0.1276269737584882, 0.10182093837196182, 0.07549878227770568, 0.04866050547571832, 0.021306107966001187, 0.006564410251447272, 0.03495104917662539, 0.06385380880953484, 0.09327268915017495, 0.12320769019854483, 0.1536588119546458, 0.18462605441847657, 0.21610941759003865, 0.2481089014693305, 0.2806245060563537, 0.3136562313511062, 0.3472040773535907, 0.38126804406380455, 0.4158481314817499, 0.4509443396074255, 0.4865566684408309, 0.5226851179819678, 0.5593296882308341, 0.5964903791874323, 0.6341671908517594, 0.6723601232238186, 0.711069176303607, 0.750294350091127, 0.7900356445863763, 0.8302930597893576, 0.8710665957000692, 0.91235625231851, 0.9541620296446829, 0.9964839276785851, 1.0393219464202188, 1.0826760858695814, 1.1265463460266765, 1.1709327268915004, 1.2158352284640563, 1.2612538507443416, 1.3071885937323584, 1.3536394574281059, 1.4006064418315827, 1.448089546942791, 1.4960887727617287, 1.544604119288398, 1.593635586522797, 1.6431831744649275, 1.6932468831147869, 1.7438267124723787, 1.7949226625376995, 1.8465347333107522, 1.8986629247915352, 1.9513072369800475, 2.0044676698762918, 2.0581442234802654, 2.1123368977919705, 2.1670456928114046, 2.222270608538571, 2.2780116449734664, 2.3342688021160938, 2.391042079966452, 2.4483314785245387, 2.5061369977903576, 2.564458637763906, 2.6232963984451856, 2.6826502798341947, 2.7425202819309358, 2.8029064047354058, 2.8638086482476077, 2.925227012467539, 2.9871614973952023, 3.0496121030305954, 3.112578829373718, 3.176061676424573, 3.240060644183158 ], [ 3.2245770229512427, 3.1605780551926586, 3.0970952081418046, 3.034128481798681, 2.971677876163288, 2.909743391235625, 2.848325027015693, 2.7874227835034917, 2.727036660699021, 2.6671666586022806, 2.6078127772132706, 2.5489750165319913, 2.4906533765584427, 2.4328478572926246, 2.375558458734537, 2.3187851808841797, 2.2625280237415524, 2.206786987306657, 2.1515620715794905, 2.0968532765600556, 2.042660602248351, 1.9889840486443768, 1.9358236157481334, 1.8831793035596203, 1.8310511120788378, 1.779439041305786, 1.7283430912404643, 1.6777632618828728, 1.627699553233013, 1.5781519652908824, 1.529120498056483, 1.4806051515298142, 1.4326059257108756, 1.3851228205996677, 1.3381558361961905, 1.291704972500444, 1.245770229512427, 1.2003516072321418, 1.155449105659586, 1.111062724794762, 1.0671924646376674, 1.0238383251883034, 0.9810003064466706, 0.938678408412768, 0.8968726310865955, 0.8555829744681542, 0.8148094385574431, 0.7745520233544618, 0.7348107288592125, 0.6955855550716925, 0.6568765019919041, 0.6186835696198449, 0.5810067579555169, 0.5438460669989196, 0.5072014967500529, 0.4710730472089164, 0.4354607183755106, 0.400364510249835, 0.3657844228318896, 0.3317204561216758, 0.2981726101191917, 0.26514088482443876, 0.23262528023741558, 0.2006257963581235, 0.16914243318656164, 0.13817519072273066, 0.1077240689666299, 0.07778906791825979, 0.04837018757762013, 0.019467427944710902, 0.008919210980467995, 0.03678972919791601, 0.06414412670763359, 0.09098240350962061, 0.11730455960387709, 0.14311059499040313, 0.16840050966919862, 0.19317430364026356, 0.21743197690359795, 0.2411735294592019, 0.26439896130707563, 0.2871082724472185, 0.3093014628796308, 0.33097853260431265, 0.35213948162126396, 0.3727843099304847, 0.39291301753197505, 0.4125256044257348, 0.43162207061176394, 0.45020241609006273, 0.46826664086063086, 0.4858147449234689, 0.502846728278576, 0.5193625909259526, 0.5353623328655988, 0.5508459540975144, 0.5658134546216994, 0.580264834438154, 0.5942000935468781, 0.6076192319478715, 0.6205222496411346, 0.632909146626667, 0.6447799229044692, 0.6561345784745406, 0.6669731133368815, 0.6772955274914919, 0.6871018209383718, 0.6963919936775211, 0.7051660457089399, 0.7134239770326283, 0.7211657876485861, 0.7283914775568134, 0.7351010467573101, 0.7412944952500765, 0.7469718230351122, 0.7521330301124174, 0.7567781164819921, 0.7609070821438363, 0.7645199270979499, 0.767616651344333, 0.7701972548829856, 0.7722617377139077, 0.7738100998370993, 0.7748423412525604, 0.7753584619602909, 0.7753584619602909, 0.7748423412525604, 0.7738100998370994, 0.7722617377139078, 0.7701972548829856, 0.7676166513443331, 0.7645199270979499, 0.7609070821438364, 0.7567781164819921, 0.7521330301124176, 0.7469718230351123, 0.7412944952500766, 0.7351010467573104, 0.7283914775568137, 0.7211657876485863, 0.7134239770326284, 0.7051660457089401, 0.6963919936775212, 0.687101820938372, 0.677295527491492, 0.6669731133368818, 0.6561345784745407, 0.6447799229044695, 0.6329091466266674, 0.6205222496411351, 0.6076192319478719, 0.5942000935468782, 0.5802648344381544, 0.5658134546216996, 0.5508459540975148, 0.535362332865599, 0.5193625909259532, 0.5028467282785762, 0.4858147449234693, 0.4682666408606314, 0.45020241609006306, 0.4316220706117646, 0.41252560442573505, 0.3929130175319755, 0.37278430993048506, 0.3521394816212645, 0.33097853260431287, 0.30930146287963134, 0.2871082724472187, 0.2643989613070762, 0.24117352945920256, 0.21743197690359828, 0.19317430364026422, 0.16840050966919895, 0.1431105949904038, 0.11730455960387742, 0.09098240350962128, 0.06414412670763392, 0.03678972919791679, 0.008919210980468328, 0.019467427944710014, 0.04837018757761946, 0.07778906791825935, 0.107724068966629, 0.1381751907227302, 0.16914243318656097, 0.20062579635812305, 0.2326252802374147, 0.2651408848244379, 0.29817261011919083, 0.3317204561216749, 0.3657844228318887, 0.4003645102498341, 0.43546071837551015, 0.4710730472089155, 0.5072014967500524, 0.5438460669989187, 0.5810067579555165, 0.618683569619844, 0.6568765019919027, 0.6955855550716912, 0.7348107288592116, 0.7745520233544609, 0.8148094385574418, 0.8555829744681533, 0.8968726310865947, 0.9386784084127671, 0.9810003064466692, 1.023838325188303, 1.067192464637666, 1.1110627247947606, 1.155449105659585, 1.2003516072321405, 1.2457702295124258, 1.2917049725004426, 1.33815583619619, 1.3851228205996668, 1.4326059257108752, 1.4806051515298129, 1.529120498056482, 1.578151965290881, 1.6276995532330116, 1.677763261882871, 1.728343091240463, 1.7794390413057837, 1.8310511120788364, 1.8831793035596194, 1.9358236157481317, 1.988984048644376, 2.0426606022483496, 2.0968532765600547, 2.1515620715794888, 2.2067869873066552, 2.2625280237415506, 2.318785180884178, 2.375558458734536, 2.432847857292623, 2.4906533765584418, 2.54897501653199, 2.6078127772132698, 2.667166658602279, 2.72703666069902, 2.78742278350349, 2.848325027015692, 2.909743391235623, 2.9716778761632865, 3.03412848179868, 3.097095208141803, 3.1605780551926577, 3.2245770229512427 ], [ 3.2096095224270575, 3.1456105546684734, 3.0821277076176194, 3.0191609812744957, 2.956710375639103, 2.89477589071144, 2.8333575264915076, 2.7724552829793065, 2.7120691601748357, 2.652199158078096, 2.5928452766890855, 2.534007516007806, 2.475685876034258, 2.41788035676844, 2.360590958210352, 2.3038176803599946, 2.247560523217367, 2.191819486782472, 2.136594571055306, 2.081885776035871, 2.027693101724166, 1.9740165481201917, 1.9208561152239483, 1.868211803035435, 1.816083611554653, 1.7644715407816012, 1.7133755907162795, 1.6627957613586881, 1.6127320527088278, 1.5631844647666977, 1.5141529975322978, 1.465637651005629, 1.4176384251866905, 1.370155320075483, 1.3231883356720058, 1.2767374719762588, 1.230802728988242, 1.1853841067079571, 1.1404816051354008, 1.0960952242705773, 1.0522249641134822, 1.0088708246641183, 0.9660328059224854, 0.9237109078885828, 0.8819051305624106, 0.8406154739439691, 0.799841938033258, 0.7595845228302769, 0.7198432283350273, 0.6806180545475073, 0.6419090014677189, 0.60371606909566, 0.566039257431332, 0.5288785664747346, 0.4922339962258677, 0.45610554668473124, 0.42049321785132543, 0.38539700972565005, 0.35081692230770467, 0.31675295559749084, 0.2832051095950068, 0.2501733843002538, 0.21765777971323064, 0.18565829583393834, 0.1541749326623767, 0.12320769019854572, 0.09275656844244473, 0.06282156739407485, 0.03340268705343519, 0.004499927420525962, 0.023886711504653046, 0.05175722972210106, 0.07911162723181864, 0.10594990403380566, 0.13227206012806214, 0.15807809551458818, 0.18336801019338367, 0.2081418041644486, 0.232399477427783, 0.25614102998338695, 0.2793664618312607, 0.3020757729714034, 0.32426896340381584, 0.3459460331284977, 0.367106982145449, 0.3877518104546698, 0.40788051805616, 0.42749310494991977, 0.4465895711359491, 0.4651699166142478, 0.483234141384816, 0.5007822454476538, 0.5178142288027611, 0.5343300914501377, 0.5503298333897838, 0.5658134546216994, 0.5807809551458845, 0.595232334962339, 0.609167594071063, 0.6225867324720566, 0.6354897501653196, 0.6478766471508521, 0.6597474234286542, 0.6711020789987256, 0.6819406138610665, 0.692263028015677, 0.7020693214625569, 0.7113594942017062, 0.7201335462331251, 0.7283914775568133, 0.7361332881727711, 0.7433589780809984, 0.7500685472814952, 0.7562619957742616, 0.7619393235592973, 0.7671005306366024, 0.7717456170061772, 0.7758745826680213, 0.779487427622135, 0.782584151868518, 0.7851647554071707, 0.7872292382380928, 0.7887776003612843, 0.7898098417767454, 0.790325962484476, 0.790325962484476, 0.7898098417767454, 0.7887776003612844, 0.7872292382380928, 0.7851647554071707, 0.7825841518685182, 0.779487427622135, 0.7758745826680213, 0.7717456170061772, 0.7671005306366026, 0.7619393235592973, 0.7562619957742617, 0.7500685472814954, 0.7433589780809987, 0.7361332881727713, 0.7283914775568134, 0.7201335462331253, 0.7113594942017063, 0.7020693214625571, 0.6922630280156771, 0.6819406138610669, 0.6711020789987258, 0.6597474234286546, 0.6478766471508524, 0.63548975016532, 0.622586732472057, 0.6091675940710632, 0.5952323349623394, 0.5807809551458847, 0.5658134546216999, 0.550329833389784, 0.5343300914501381, 0.5178142288027613, 0.5007822454476544, 0.48323414138481646, 0.465169916614248, 0.44658957113594955, 0.4274931049499201, 0.40788051805616066, 0.38775181045467, 0.36710698214544957, 0.34594603312849803, 0.3242689634038165, 0.30207577297140387, 0.27936646183126124, 0.2561410299833876, 0.23239947742778333, 0.20814180416444927, 0.183368010193384, 0.15807809551458885, 0.13227206012806247, 0.10594990403380633, 0.07911162723181897, 0.05175722972210184, 0.02388671150465338, 0.004499927420524852, 0.0334026870534343, 0.0628215673940744, 0.09275656844244407, 0.12320769019854527, 0.15417493266237603, 0.1856582958339379, 0.21765777971322975, 0.25017338430025293, 0.28320510959500567, 0.31675295559748995, 0.3508169223077038, 0.38539700972564916, 0.420493217851325, 0.45610554668473036, 0.4922339962258673, 0.5288785664747335, 0.5660392574313315, 0.6037160690956589, 0.6419090014677178, 0.6806180545475062, 0.7198432283350265, 0.7595845228302758, 0.7998419380332569, 0.8406154739439684, 0.8819051305624095, 0.9237109078885821, 0.9660328059224843, 1.0088708246641183, 1.0522249641134809, 1.0960952242705755, 1.1404816051353999, 1.1853841067079554, 1.230802728988241, 1.2767374719762579, 1.323188335672005, 1.3701553200754821, 1.4176384251866905, 1.4656376510056282, 1.514152997532297, 1.563184464766696, 1.612732052708827, 1.6627957613586863, 1.7133755907162778, 1.7644715407815985, 1.8160836115546513, 1.8682118030354342, 1.9208561152239465, 1.9740165481201908, 2.0276931017241644, 2.08188577603587, 2.136594571055304, 2.19181948678247, 2.2475605232173654, 2.303817680359993, 2.3605909582103513, 2.417880356768438, 2.475685876034257, 2.5340075160078053, 2.5928452766890846, 2.652199158078094, 2.712069160174835, 2.7724552829793048, 2.8333575264915067, 2.894775890711438, 2.9567103756391013, 3.019160981274495, 3.0821277076176177, 3.1456105546684725, 3.2096095224270575 ], [ 3.1951581426106035, 3.1311591748520184, 3.0676763278011645, 3.0047096014580417, 2.942258995822648, 2.8803245108949853, 2.818906146675053, 2.758003903162852, 2.697617780358381, 2.637747778261641, 2.578393896872631, 2.5195561361913517, 2.461234496217803, 2.403428976951985, 2.346139578393897, 2.28936630054354, 2.2331091434009127, 2.1773681069660173, 2.122143191238851, 2.067434396219416, 2.0132417219077112, 1.9595651683037372, 1.9064047354074938, 1.8537604232189806, 1.801632231738198, 1.7500201609651462, 1.6989242108998246, 1.6483443815422332, 1.5982806728923733, 1.5487330849502428, 1.4997016177158433, 1.4511862711891745, 1.403187045370236, 1.355703940259028, 1.3087369558555508, 1.2622860921598043, 1.2163513491717874, 1.1709327268915022, 1.1260302253189463, 1.0816438444541223, 1.0377735842970277, 0.994419444847664, 0.9515814261060309, 0.9092595280721283, 0.8674537507459561, 0.8261640941275146, 0.7853905582168035, 0.7451331430138224, 0.7053918485185728, 0.6661666747310528, 0.6274576216512644, 0.5892646892792055, 0.5515878776148775, 0.5144271866582801, 0.4777826164094132, 0.44165416686827674, 0.4060418380348709, 0.37094562990919555, 0.33636554249125017, 0.30230157578103634, 0.2687537297785523, 0.23572200448379932, 0.20320639989677614, 0.17120691601748383, 0.1397235528459222, 0.10875631038209099, 0.07830518862599023, 0.04837018757762013, 0.018951307236980464, 0.00995145239592854, 0.03833809132110755, 0.06620860953855567, 0.09356300704827314, 0.12040128385026017, 0.14672343994451675, 0.17252947533104268, 0.19781939000983817, 0.22259318398090322, 0.2468508572442376, 0.27059240979984156, 0.2938178416477153, 0.31652715278785803, 0.33872034322027034, 0.3603974129449523, 0.3815583619619036, 0.4022031902711243, 0.4223318978726146, 0.4419444847663744, 0.4610409509524036, 0.4796212964307023, 0.4976855212012705, 0.5152336252641084, 0.5322656086192157, 0.5487814712665922, 0.5647812132062384, 0.580264834438154, 0.595232334962339, 0.6096837147787936, 0.6236189738875176, 0.6370381122885111, 0.6499411299817741, 0.6623280269673066, 0.6741988032451087, 0.6855534588151802, 0.6963919936775211, 0.7067144078321315, 0.7165207012790114, 0.7258108740181608, 0.7345849260495796, 0.7428428573732679, 0.7505846679892257, 0.757810357897453, 0.7645199270979497, 0.7707133755907161, 0.7763907033757518, 0.781551910453057, 0.7861969968226317, 0.7903259624844758, 0.7939388074385895, 0.7970355316849727, 0.7996161352236253, 0.8016806180545473, 0.8032289801777389, 0.8042612215931999, 0.8047773423009305, 0.8047773423009305, 0.8042612215931999, 0.8032289801777389, 0.8016806180545474, 0.7996161352236253, 0.7970355316849727, 0.7939388074385896, 0.790325962484476, 0.7861969968226318, 0.7815519104530572, 0.7763907033757519, 0.7707133755907163, 0.7645199270979499, 0.7578103578974533, 0.7505846679892259, 0.742842857373268, 0.7345849260495798, 0.7258108740181608, 0.7165207012790116, 0.7067144078321317, 0.6963919936775214, 0.6855534588151804, 0.6741988032451091, 0.662328026967307, 0.6499411299817747, 0.6370381122885115, 0.6236189738875177, 0.609683714778794, 0.5952323349623392, 0.5802648344381544, 0.5647812132062386, 0.5487814712665927, 0.5322656086192159, 0.515233625264109, 0.49768552120127096, 0.4796212964307026, 0.46104095095240416, 0.4419444847663747, 0.42233189787261516, 0.4022031902711246, 0.38155836196190407, 0.36039741294495253, 0.338720343220271, 0.31652715278785837, 0.29381784164771574, 0.2705924097998422, 0.24685085724423783, 0.22259318398090389, 0.1978193900098386, 0.17252947533104335, 0.14672343994451698, 0.12040128385026083, 0.09356300704827358, 0.06620860953855634, 0.03833809132110799, 0.00995145239592965, 0.018951307236979797, 0.04837018757761968, 0.07830518862598956, 0.10875631038209055, 0.1397235528459213, 0.1712069160174834, 0.20320639989677525, 0.23572200448379843, 0.26875372977855116, 0.30230157578103545, 0.3363655424912493, 0.37094562990919466, 0.4060418380348705, 0.44165416686827585, 0.4777826164094128, 0.514427186658279, 0.551587877614877, 0.5892646892792044, 0.6274576216512633, 0.6661666747310517, 0.705391848518572, 0.7451331430138213, 0.7853905582168024, 0.8261640941275139, 0.867453750745955, 0.9092595280721276, 0.9515814261060298, 0.9944194448476635, 1.0377735842970264, 1.081643844454121, 1.1260302253189454, 1.1709327268915009, 1.2163513491717861, 1.262286092159803, 1.3087369558555504, 1.3557039402590272, 1.4031870453702355, 1.4511862711891732, 1.4997016177158424, 1.5487330849502414, 1.598280672892372, 1.6483443815422314, 1.6989242108998233, 1.750020160965144, 1.8016322317381968, 1.8537604232189797, 1.906404735407492, 1.9595651683037363, 2.01324172190771, 2.067434396219415, 2.122143191238849, 2.1773681069660156, 2.233109143400911, 2.2893663005435383, 2.3461395783938963, 2.403428976951983, 2.461234496217802, 2.5195561361913503, 2.57839389687263, 2.637747778261639, 2.6976177803583803, 2.7580039031628503, 2.8189061466750522, 2.8803245108949835, 2.942258995822647, 3.004709601458041, 3.0676763278011627, 3.1311591748520176, 3.1951581426106035 ], [ 3.1812228835018788, 3.1172239157432946, 3.0537410686924407, 2.9907743423493174, 2.9283237367139243, 2.8663892517862615, 2.8049708875663293, 2.744068644054128, 2.6836825212496573, 2.623812519152917, 2.564458637763907, 2.505620877082628, 2.447299237109079, 2.389493717843261, 2.3322043192851734, 2.2754310414348162, 2.219173884292189, 2.1634328478572935, 2.108207932130127, 2.053499137110692, 1.9993064627989874, 1.9456299091950133, 1.89246947629877, 1.8398251641102568, 1.7876969726294742, 1.7360849018564224, 1.6849889517911008, 1.6344091224335093, 1.5843454137836495, 1.534797825841519, 1.4857663586071195, 1.4372510120804507, 1.3892517862615121, 1.3417686811503042, 1.294801696746827, 1.2483508330510804, 1.2024160900630636, 1.1569974677827783, 1.1120949662102224, 1.0677085853453985, 1.0238383251883034, 0.9804841857389399, 0.9376461669973069, 0.8953242689634042, 0.853518491637232, 0.8122288350187905, 0.7714552991080794, 0.7311978839050983, 0.6914565894098488, 0.6522314156223288, 0.6135223625425403, 0.5753294301704814, 0.5376526185061534, 0.5004919275495561, 0.46384735730068916, 0.4277189077595527, 0.39210657892614686, 0.3570103708004715, 0.3224302833825261, 0.2883663166723123, 0.2548184706698282, 0.22178674537507526, 0.18927114078805207, 0.15727165690875977, 0.12578829373719813, 0.09482105127336693, 0.06436992951726617, 0.034434928468896064, 0.005016048128256401, 0.023886711504652602, 0.05227335042983161, 0.08014386864727974, 0.1074982661569972, 0.13433654295898423, 0.16065869905324082, 0.18646473443976674, 0.21175464911856223, 0.23652844308962728, 0.26078611635296167, 0.2845276689085656, 0.30775310075643936, 0.3304624118965821, 0.3526556023289944, 0.3743326720536764, 0.3954936210706277, 0.41613844937984834, 0.43626715698133867, 0.45587974387509844, 0.47497621006112767, 0.49355655553942634, 0.5116207803099946, 0.5291688843728325, 0.5462008677279397, 0.5627167303753162, 0.5787164723149625, 0.5942000935468781, 0.609167594071063, 0.6236189738875176, 0.6375542329962417, 0.6509733713972352, 0.6638763890904982, 0.6762632860760307, 0.6881340623538328, 0.6994887179239042, 0.7103272527862452, 0.7206496669408555, 0.7304559603877354, 0.7397461331268849, 0.7485201851583037, 0.756778116481992, 0.7645199270979498, 0.771745617006177, 0.7784551862066738, 0.7846486346994401, 0.7903259624844758, 0.7954871695617811, 0.8001322559313557, 0.8042612215931999, 0.8078740665473135, 0.8109707907936967, 0.8135513943323494, 0.8156158771632713, 0.817164239286463, 0.818196480701924, 0.8187126014096545, 0.8187126014096545, 0.818196480701924, 0.817164239286463, 0.8156158771632714, 0.8135513943323494, 0.8109707907936967, 0.8078740665473136, 0.8042612215932, 0.8001322559313558, 0.7954871695617812, 0.790325962484476, 0.7846486346994404, 0.778455186206674, 0.7717456170061774, 0.7645199270979499, 0.7567781164819921, 0.7485201851583039, 0.7397461331268849, 0.7304559603877356, 0.7206496669408557, 0.7103272527862454, 0.6994887179239044, 0.6881340623538331, 0.676263286076031, 0.6638763890904987, 0.6509733713972355, 0.6375542329962418, 0.6236189738875181, 0.6091675940710632, 0.5942000935468784, 0.5787164723149627, 0.5627167303753168, 0.54620086772794, 0.529168884372833, 0.511620780309995, 0.4935565555394267, 0.4749762100611282, 0.4558797438750988, 0.4362671569813392, 0.4161384493798487, 0.39549362107062813, 0.3743326720536766, 0.35265560232899507, 0.33046241189658243, 0.3077531007564398, 0.2845276689085663, 0.2607861163529619, 0.23652844308962795, 0.21175464911856268, 0.1864647344397674, 0.16065869905324104, 0.1343365429589849, 0.10749826615699765, 0.0801438686472804, 0.052273350429832055, 0.023886711504653713, 0.0050160481282557345, 0.03443492846889562, 0.0643699295172655, 0.09482105127336649, 0.12578829373719724, 0.15727165690875933, 0.18927114078805118, 0.22178674537507437, 0.2548184706698271, 0.2883663166723114, 0.3224302833825252, 0.3570103708004706, 0.3921065789261464, 0.4277189077595518, 0.4638473573006887, 0.500491927549555, 0.537652618506153, 0.5753294301704803, 0.6135223625425392, 0.6522314156223277, 0.6914565894098479, 0.7311978839050972, 0.7714552991080783, 0.8122288350187898, 0.8535184916372309, 0.8953242689634036, 0.9376461669973057, 0.9804841857389395, 1.023838325188302, 1.0677085853453971, 1.112094966210221, 1.156997467782777, 1.2024160900630623, 1.248350833051079, 1.2948016967468265, 1.3417686811503033, 1.3892517862615117, 1.4372510120804494, 1.4857663586071186, 1.5347978258415176, 1.5843454137836481, 1.6344091224335076, 1.6849889517910994, 1.7360849018564202, 1.787696972629473, 1.8398251641102559, 1.8924694762987682, 1.9456299091950124, 1.999306462798986, 2.053499137110691, 2.1082079321301253, 2.1634328478572917, 2.219173884292187, 2.2754310414348144, 2.3322043192851725, 2.3894937178432594, 2.4472992371090783, 2.5056208770826265, 2.5644586377639063, 2.6238125191529154, 2.6836825212496564, 2.7440686440541264, 2.8049708875663284, 2.8663892517862597, 2.928323736713923, 2.9907743423493165, 3.053741068692439, 3.1172239157432937, 3.1812228835018788 ], [ 3.167803745100886, 3.103804777342301, 3.040321930291447, 2.9773552039483238, 2.9149045983129307, 2.852970113385268, 2.7915517491653357, 2.7306495056531346, 2.6702633828486637, 2.6103933807519235, 2.5510394993629135, 2.492201738681634, 2.4338800987080855, 2.3760745794422675, 2.3187851808841797, 2.2620119030338226, 2.2057547458911952, 2.1500137094563, 2.0947887937291334, 2.0400799987096985, 1.9858873243979938, 1.9322107707940197, 1.8790503378977763, 1.8264060257092631, 1.7742778342284806, 1.7226657634554288, 1.6715698133901071, 1.6209899840325157, 1.5709262753826558, 1.5213786874405253, 1.4723472202061259, 1.423831873679457, 1.3758326478605185, 1.3283495427493106, 1.2813825583458334, 1.2349316946500868, 1.18899695166207, 1.1435783293817847, 1.0986758278092288, 1.0542894469444049, 1.0104191867873102, 0.9670650473379463, 0.9242270285963132, 0.8819051305624106, 0.8400993532362384, 0.7988096966177969, 0.7580361607070858, 0.7177787455041047, 0.6780374510088552, 0.6388122772213352, 0.6001032241415467, 0.5619102917694878, 0.5242334801051598, 0.48707278914856245, 0.45042821889969553, 0.41429976935855906, 0.37868744052515324, 0.34359123239947786, 0.3090111449815325, 0.27494717827131865, 0.2413993322688346, 0.20836760697408163, 0.17585200238705845, 0.14385251850776637, 0.11236915533620451, 0.08140191287237353, 0.050950791116272764, 0.021015790067902662, 0.008403090272737002, 0.03730584990564623, 0.06569248883082524, 0.09356300704827314, 0.12091740455799083, 0.14775568135997785, 0.17407783745423422, 0.19988387284076037, 0.22517378751955586, 0.24994758149062068, 0.2742052547539551, 0.297946807309559, 0.32117223915743276, 0.3438815502975756, 0.366074740729988, 0.3877518104546698, 0.4089127594716211, 0.42955758778084197, 0.4496862953823322, 0.46929888227609196, 0.4883953484621212, 0.50697569394042, 0.5250399187109881, 0.542588022773826, 0.5596200061289331, 0.5761358687763098, 0.5921356107159559, 0.6076192319478715, 0.6225867324720566, 0.6370381122885111, 0.6509733713972352, 0.6643925097982287, 0.6772955274914917, 0.6896824244770242, 0.7015532007548263, 0.7129078563248978, 0.7237463911872387, 0.7340688053418492, 0.7438750987887289, 0.7531652715278783, 0.7619393235592972, 0.7701972548829855, 0.7779390654989433, 0.7851647554071706, 0.7918743246076674, 0.7980677731004336, 0.8037451008854694, 0.8089063079627746, 0.8135513943323492, 0.8176803599941934, 0.821293204948307, 0.8243899291946902, 0.8269705327333428, 0.829035015564265, 0.8305833776874565, 0.8316156191029176, 0.832131739810648, 0.832131739810648, 0.8316156191029176, 0.8305833776874565, 0.829035015564265, 0.8269705327333429, 0.8243899291946903, 0.8212932049483072, 0.8176803599941935, 0.8135513943323494, 0.8089063079627747, 0.8037451008854695, 0.7980677731004339, 0.7918743246076675, 0.7851647554071709, 0.7779390654989435, 0.7701972548829856, 0.7619393235592974, 0.7531652715278785, 0.7438750987887293, 0.7340688053418492, 0.723746391187239, 0.712907856324898, 0.7015532007548266, 0.6896824244770245, 0.6772955274914922, 0.6643925097982291, 0.6509733713972354, 0.6370381122885116, 0.6225867324720569, 0.6076192319478719, 0.5921356107159561, 0.5761358687763103, 0.5596200061289334, 0.5425880227738265, 0.5250399187109887, 0.5069756939404202, 0.48839534846212174, 0.4692988822760922, 0.44968629538233273, 0.4295575877808422, 0.40891275947162176, 0.3877518104546701, 0.3660747407299886, 0.34388155029757594, 0.3211722391574334, 0.2979468073095597, 0.2742052547539555, 0.24994758149062135, 0.22517378751955608, 0.19988387284076103, 0.17407783745423466, 0.14775568135997852, 0.12091740455799105, 0.09356300704827403, 0.06569248883082546, 0.03730584990564734, 0.00840309027273789, 0.021015790067902218, 0.050950791116271876, 0.08140191287237308, 0.11236915533620384, 0.14385251850776593, 0.17585200238705756, 0.20836760697408074, 0.24139933226883348, 0.27494717827131776, 0.3090111449815316, 0.343591232399477, 0.3786874405251528, 0.41429976935855817, 0.4504282188996951, 0.48707278914856134, 0.5242334801051594, 0.5619102917694867, 0.6001032241415456, 0.638812277221334, 0.6780374510088543, 0.7177787455041036, 0.7580361607070847, 0.7988096966177962, 0.8400993532362373, 0.8819051305624099, 0.9242270285963121, 0.9670650473379458, 1.010419186787309, 1.0542894469444035, 1.098675827809228, 1.1435783293817834, 1.1889969516620686, 1.2349316946500855, 1.281382558345833, 1.3283495427493097, 1.375832647860518, 1.4238318736794557, 1.472347220206125, 1.521378687440524, 1.5709262753826545, 1.620989984032514, 1.6715698133901058, 1.7226657634554265, 1.7742778342284793, 1.8264060257092622, 1.8790503378977745, 1.9322107707940188, 1.9858873243979924, 2.0400799987096976, 2.0947887937291316, 2.150013709456298, 2.2057547458911935, 2.262011903033821, 2.318785180884179, 2.3760745794422657, 2.4338800987080846, 2.492201738681633, 2.5510394993629126, 2.6103933807519217, 2.670263382848663, 2.730649505653133, 2.7915517491653348, 2.852970113385266, 2.9149045983129294, 2.977355203948323, 3.0403219302914453, 3.1038047773423, 3.167803745100886 ], [ 3.1549007274076226, 3.0909017596490385, 3.0274189125981845, 2.964452186255061, 2.9020015806196677, 2.840067095692005, 2.7786487314720727, 2.7177464879598716, 2.6573603651554007, 2.5974903630586605, 2.5381364816696506, 2.4792987209883712, 2.4209770810148226, 2.3631715617490046, 2.3058821631909168, 2.2491088853405596, 2.1928517281979323, 2.137110691763037, 2.0818857760358704, 2.0271769810164355, 1.9729843067047308, 1.9193077531007567, 1.8661473202045133, 1.8135030080160002, 1.7613748165352177, 1.7097627457621658, 1.6586667956968442, 1.6080869663392527, 1.5580232576893929, 1.5084756697472623, 1.4594442025128629, 1.410928855986194, 1.3629296301672555, 1.3154465250560476, 1.2684795406525704, 1.2220286769568238, 1.176093933968807, 1.1306753116885218, 1.0857728101159658, 1.0413864292511419, 0.9975161690940471, 0.9541620296446833, 0.9113240109030503, 0.8690021128691476, 0.8271963355429754, 0.7859066789245339, 0.7451331430138228, 0.7048757278108417, 0.6651344333155922, 0.6259092595280722, 0.5872002064482837, 0.5490072740762248, 0.5113304624118968, 0.4741697714552995, 0.43752520120643257, 0.4013967516652961, 0.3657844228318903, 0.3306882147062149, 0.2961081272882695, 0.2620441605780557, 0.22849631457557162, 0.19546458928081867, 0.16294898469379548, 0.1309495008145034, 0.09946613764294154, 0.06849889517911056, 0.0380477734230098, 0.008112772374639698, 0.021306107966000076, 0.05020886759890919, 0.0785955065240882, 0.10646602474153621, 0.1338204222512538, 0.16065869905324082, 0.1869808551474973, 0.21278689053402333, 0.23807680521281882, 0.26285059918388376, 0.28710827244721815, 0.3108498250028221, 0.33407525685069583, 0.3567845679908386, 0.378977758423251, 0.40065482814793285, 0.42181577716488416, 0.44246060547410493, 0.46258931307559514, 0.4822018999693549, 0.5012983661553841, 0.5198787116336829, 0.5379429364042511, 0.555491040467089, 0.5725230238221962, 0.5890388864695728, 0.605038628409219, 0.6205222496411346, 0.6354897501653196, 0.6499411299817741, 0.6638763890904982, 0.6772955274914917, 0.6901985451847548, 0.7025854421702872, 0.7144562184480894, 0.7258108740181608, 0.7366494088805017, 0.7469718230351121, 0.756778116481992, 0.7660682892211413, 0.7748423412525601, 0.7831002725762485, 0.7908420831922063, 0.7980677731004335, 0.8047773423009303, 0.8109707907936967, 0.8166481185787324, 0.8218093256560376, 0.8264544120256123, 0.8305833776874565, 0.83419622264157, 0.8372929468879532, 0.8398735504266058, 0.8419380332575279, 0.8434863953807195, 0.8445186367961806, 0.845034757503911, 0.845034757503911, 0.8445186367961806, 0.8434863953807195, 0.8419380332575279, 0.8398735504266058, 0.8372929468879533, 0.8341962226415701, 0.8305833776874565, 0.8264544120256123, 0.8218093256560377, 0.8166481185787324, 0.8109707907936968, 0.8047773423009306, 0.7980677731004339, 0.7908420831922065, 0.7831002725762486, 0.7748423412525605, 0.7660682892211415, 0.7567781164819922, 0.7469718230351122, 0.736649408880502, 0.7258108740181609, 0.7144562184480896, 0.7025854421702875, 0.6901985451847552, 0.677295527491492, 0.6638763890904984, 0.6499411299817746, 0.6354897501653198, 0.6205222496411349, 0.6050386284092192, 0.5890388864695733, 0.5725230238221964, 0.5554910404670895, 0.5379429364042516, 0.5198787116336832, 0.5012983661553847, 0.48220189996935525, 0.4625893130755957, 0.44246060547410515, 0.4218157771648847, 0.4006548281479331, 0.37897775842325154, 0.3567845679908389, 0.3340752568506964, 0.31084982500282277, 0.2871082724472185, 0.2628505991838844, 0.23807680521281915, 0.212786890534024, 0.18698085514749763, 0.16065869905324148, 0.13382042225125412, 0.10646602474153699, 0.07859550652408853, 0.0502088675989103, 0.021306107966000853, 0.008112772374639254, 0.03804777342300891, 0.06849889517911012, 0.09946613764294088, 0.13094950081450296, 0.1629489846937946, 0.19546458928081778, 0.2284963145755705, 0.2620441605780548, 0.29610812728826863, 0.330688214706214, 0.36578442283188983, 0.4013967516652952, 0.4375252012064321, 0.47416977145529837, 0.5113304624118964, 0.5490072740762237, 0.5872002064482826, 0.6259092595280711, 0.6651344333155913, 0.7048757278108406, 0.7451331430138217, 0.7859066789245333, 0.8271963355429743, 0.869002112869147, 0.9113240109030492, 0.9541620296446829, 0.9975161690940457, 1.0413864292511406, 1.085772810115965, 1.1306753116885204, 1.1760939339688057, 1.2220286769568225, 1.26847954065257, 1.3154465250560468, 1.362929630167255, 1.4109288559861928, 1.459444202512862, 1.508475669747261, 1.5580232576893915, 1.608086966339251, 1.6586667956968428, 1.7097627457621636, 1.7613748165352163, 1.8135030080159993, 1.8661473202045116, 1.9193077531007559, 1.9729843067047295, 2.0271769810164346, 2.0818857760358687, 2.137110691763035, 2.1928517281979305, 2.249108885340558, 2.305882163190916, 2.363171561749003, 2.4209770810148217, 2.47929872098837, 2.5381364816696497, 2.5974903630586588, 2.6573603651554, 2.71774648795987, 2.778648731472072, 2.840067095692003, 2.9020015806196664, 2.96445218625506, 3.0274189125981827, 3.0909017596490376, 3.1549007274076226 ], [ 3.1425138304220903, 3.0785148626635053, 3.0150320156126513, 2.9520652892695285, 2.8896146836341354, 2.8276801987064726, 2.7662618344865404, 2.7053595909743393, 2.6449734681698684, 2.5851034660731282, 2.5257495846841183, 2.466911824002839, 2.4085901840292903, 2.3507846647634723, 2.2934952662053845, 2.2367219883550273, 2.1804648312124, 2.1247237947775046, 2.069498879050338, 2.014790084030903, 1.9605974097191985, 1.9069208561152244, 1.853760423218981, 1.8011161110304679, 1.7489879195496854, 1.6973758487766335, 1.6462798987113119, 1.5957000693537204, 1.5456363607038606, 1.49608877276173, 1.4470573055273306, 1.3985419590006618, 1.3505427331817232, 1.3030596280705153, 1.256092643667038, 1.2096417799712915, 1.1637070369832747, 1.1182884147029895, 1.0733859131304335, 1.0289995322656096, 0.9851292721085145, 0.9417751326591508, 0.8989371139175177, 0.8566152158836151, 0.8148094385574429, 0.7735197819390014, 0.7327462460282903, 0.6924888308253092, 0.6527475363300597, 0.6135223625425397, 0.5748133094627512, 0.5366203770906923, 0.4989435654263643, 0.46178287446976696, 0.42513830422090004, 0.38900985467976357, 0.35339752584635775, 0.3183013177206824, 0.283721230302737, 0.24965726359252316, 0.2161094175900391, 0.18307769229528614, 0.15056208770826296, 0.11856260382897088, 0.08707924065740902, 0.05611199819357804, 0.025660876437477276, 0.004274124610892827, 0.03369300495153249, 0.06259576458444172, 0.09098240350962072, 0.11885292172706863, 0.14620731923678632, 0.17304559603877334, 0.1993677521330297, 0.22517378751955586, 0.25046370219835135, 0.2752374961694162, 0.29949516943275056, 0.3232367219883545, 0.34646215383622825, 0.3691714649763711, 0.3913646554087835, 0.41304172513346527, 0.4342026741504166, 0.45484750245963745, 0.47497621006112767, 0.49458879695488744, 0.5136852631409167, 0.5322656086192155, 0.5503298333897836, 0.5678779374526215, 0.5849099208077286, 0.6014257834551053, 0.6174255253947514, 0.632909146626667, 0.6478766471508521, 0.6623280269673066, 0.6762632860760307, 0.6896824244770242, 0.7025854421702872, 0.7149723391558197, 0.7268431154336218, 0.7381977710036933, 0.7490363058660342, 0.7593587200206446, 0.7691650134675244, 0.7784551862066738, 0.7872292382380927, 0.795487169561781, 0.8032289801777388, 0.8104546700859661, 0.8171642392864629, 0.8233576877792291, 0.8290350155642648, 0.8341962226415701, 0.8388413090111447, 0.8429702746729889, 0.8465831196271025, 0.8496798438734857, 0.8522604474121382, 0.8543249302430604, 0.855873292366252, 0.8569055337817131, 0.8574216544894435, 0.8574216544894435, 0.8569055337817131, 0.855873292366252, 0.8543249302430604, 0.8522604474121384, 0.8496798438734858, 0.8465831196271026, 0.842970274672989, 0.8388413090111448, 0.8341962226415702, 0.829035015564265, 0.8233576877792294, 0.817164239286463, 0.8104546700859664, 0.803228980177739, 0.7954871695617811, 0.7872292382380929, 0.778455186206674, 0.7691650134675247, 0.7593587200206446, 0.7490363058660345, 0.7381977710036934, 0.7268431154336221, 0.71497233915582, 0.7025854421702877, 0.6896824244770245, 0.6762632860760309, 0.6623280269673071, 0.6478766471508524, 0.6329091466266674, 0.6174255253947516, 0.6014257834551058, 0.5849099208077289, 0.5678779374526219, 0.5503298333897841, 0.5322656086192157, 0.5136852631409172, 0.49458879695488767, 0.4749762100611282, 0.4548475024596377, 0.43420267415041724, 0.4130417251334656, 0.39136465540878407, 0.36917146497637143, 0.3464621538362289, 0.3232367219883552, 0.299495169432751, 0.27523749616941684, 0.25046370219835157, 0.22517378751955652, 0.19936775213303015, 0.173045596038774, 0.14620731923678654, 0.11885292172706952, 0.09098240350962095, 0.06259576458444283, 0.03369300495153338, 0.004274124610893271, 0.025660876437476388, 0.056111998193577595, 0.08707924065740835, 0.11856260382897044, 0.15056208770826207, 0.18307769229528525, 0.216109417590038, 0.24965726359252227, 0.2837212303027361, 0.3183013177206815, 0.3533975258463573, 0.3890098546797627, 0.4251383042208996, 0.46178287446976585, 0.49894356542636387, 0.5366203770906912, 0.5748133094627501, 0.6135223625425386, 0.6527475363300588, 0.6924888308253081, 0.7327462460282892, 0.7735197819390007, 0.8148094385574418, 0.8566152158836144, 0.8989371139175166, 0.9417751326591504, 0.9851292721085132, 1.0289995322656083, 1.0733859131304322, 1.1182884147029881, 1.1637070369832734, 1.2096417799712902, 1.2560926436670377, 1.3030596280705145, 1.3505427331817228, 1.3985419590006605, 1.4470573055273297, 1.4960887727617287, 1.5456363607038592, 1.5957000693537187, 1.6462798987113105, 1.6973758487766313, 1.748987919549684, 1.801116111030467, 1.8537604232189793, 1.9069208561152236, 1.9605974097191972, 2.0147900840309023, 2.0694988790503364, 2.124723794777503, 2.180464831212398, 2.2367219883550256, 2.2934952662053836, 2.3507846647634705, 2.4085901840292894, 2.4669118240028376, 2.5257495846841174, 2.5851034660731265, 2.6449734681698676, 2.7053595909743375, 2.7662618344865395, 2.827680198706471, 2.889614683634134, 2.9520652892695276, 3.0150320156126496, 3.0785148626635044, 3.1425138304220903 ], [ 3.1306430541442882, 3.066644086385703, 3.0031612393348492, 2.9401945129917264, 2.8777439073563333, 2.8158094224286705, 2.7543910582087383, 2.6934888146965372, 2.6331026918920664, 2.573232689795326, 2.513878808406316, 2.455041047725037, 2.396719407751488, 2.33891388848567, 2.2816244899275824, 2.2248512120772252, 2.168594054934598, 2.1128530184997025, 2.057628102772536, 2.002919307753101, 1.9487266334413964, 1.8950500798374224, 1.841889646941179, 1.7892453347526658, 1.7371171432718833, 1.6855050724988314, 1.6344091224335098, 1.5838292930759184, 1.5337655844260585, 1.484217996483928, 1.4351865292495285, 1.3866711827228597, 1.3386719569039212, 1.2911888517927133, 1.244221867389236, 1.1977710036934894, 1.1518362607054726, 1.1064176384251874, 1.0615151368526314, 1.0171287559878075, 0.9732584958307124, 0.9299043563813487, 0.8870663376397157, 0.844744439605813, 0.8029386622796408, 0.7616490056611993, 0.7208754697504882, 0.6806180545475071, 0.6408767600522576, 0.6016515862647376, 0.5629425331849491, 0.5247496008128902, 0.4870727891485622, 0.44991209819196487, 0.41326752794309796, 0.3771390784019615, 0.34152674956855567, 0.3064305414428803, 0.2718504540249349, 0.23778648731472107, 0.204238641312237, 0.17120691601748406, 0.13869131143046087, 0.1066918275511688, 0.07520846437960693, 0.04424122191577595, 0.01379010015967519, 0.016144900888695024, 0.04556378122933469, 0.0744665408622438, 0.10285317978742281, 0.13072369800487083, 0.1580780955145884, 0.18491637231657543, 0.2112385284108319, 0.23704456379735794, 0.26233447847615343, 0.28710827244721837, 0.31136594571055276, 0.3351074982661567, 0.35833293011403045, 0.3810422412541732, 0.4032354316865856, 0.42491250141126746, 0.4460734504282188, 0.46671827873743954, 0.48684698633892975, 0.5064595732326895, 0.5255560394187188, 0.5441363848970175, 0.5622006096675857, 0.5797487137304236, 0.5967806970855308, 0.6132965597329074, 0.6292963016725536, 0.6447799229044692, 0.6597474234286542, 0.6741988032451087, 0.6881340623538328, 0.7015532007548263, 0.7144562184480894, 0.7268431154336218, 0.738713891711424, 0.7500685472814954, 0.7609070821438363, 0.7712294962984467, 0.7810357897453266, 0.790325962484476, 0.7991000145158947, 0.8073579458395831, 0.8150997564555409, 0.8223254463637681, 0.829035015564265, 0.8352284640570313, 0.840905791842067, 0.8460669989193722, 0.8507120852889469, 0.8548410509507911, 0.8584538959049046, 0.8615506201512878, 0.8641312236899404, 0.8661957065208625, 0.8677440686440541, 0.8687763100595152, 0.8692924307672456, 0.8692924307672456, 0.8687763100595152, 0.8677440686440541, 0.8661957065208625, 0.8641312236899404, 0.8615506201512879, 0.8584538959049047, 0.8548410509507911, 0.8507120852889469, 0.8460669989193723, 0.840905791842067, 0.8352284640570314, 0.8290350155642652, 0.8223254463637685, 0.8150997564555411, 0.8073579458395832, 0.7991000145158951, 0.7903259624844761, 0.7810357897453268, 0.7712294962984468, 0.7609070821438366, 0.7500685472814955, 0.7387138917114242, 0.7268431154336221, 0.7144562184480898, 0.7015532007548266, 0.688134062353833, 0.6741988032451092, 0.6597474234286544, 0.6447799229044695, 0.6292963016725538, 0.6132965597329079, 0.596780697085531, 0.5797487137304241, 0.5622006096675862, 0.5441363848970178, 0.5255560394187193, 0.5064595732326899, 0.4868469863389303, 0.46671827873743976, 0.44607345042821933, 0.4249125014112677, 0.40323543168658615, 0.3810422412541735, 0.358332930114031, 0.3351074982661574, 0.3113659457105531, 0.28710827244721904, 0.26233447847615377, 0.2370445637973586, 0.21123852841083224, 0.1849163723165761, 0.15807809551458873, 0.1307236980048716, 0.10285317978742314, 0.07446654086224491, 0.045563781229335465, 0.016144900888695468, 0.013790100159674301, 0.04424122191577551, 0.07520846437960627, 0.10669182755116835, 0.13869131143045998, 0.17120691601748317, 0.2042386413122359, 0.23778648731472019, 0.271850454024934, 0.3064305414428794, 0.3415267495685552, 0.3771390784019606, 0.4132675279430975, 0.44991209819196376, 0.4870727891485618, 0.5247496008128891, 0.562942533184948, 0.6016515862647365, 0.6408767600522567, 0.680618054547506, 0.7208754697504871, 0.7616490056611986, 0.8029386622796397, 0.8447444396058124, 0.8870663376397145, 0.9299043563813483, 0.9732584958307111, 1.0171287559878062, 1.06151513685263, 1.106417638425186, 1.1518362607054713, 1.197771003693488, 1.2442218673892356, 1.2911888517927124, 1.3386719569039207, 1.3866711827228584, 1.4351865292495276, 1.4842179964839266, 1.5337655844260571, 1.5838292930759166, 1.6344091224335084, 1.6855050724988292, 1.737117143271882, 1.789245334752665, 1.8418896469411772, 1.8950500798374215, 1.948726633441395, 2.0029193077531002, 2.0576281027725343, 2.1128530184997008, 2.168594054934596, 2.2248512120772235, 2.2816244899275815, 2.3389138884856684, 2.3967194077514873, 2.4550410477250355, 2.5138788084063153, 2.5732326897953244, 2.6331026918920655, 2.6934888146965354, 2.7543910582087374, 2.8158094224286687, 2.877743907356332, 2.9401945129917255, 3.0031612393348475, 3.0666440863857023, 3.1306430541442882 ], [ 3.1192883985742164, 3.055289430815632, 2.9918065837647783, 2.928839857421655, 2.866389251786262, 2.804454766858599, 2.743036402638667, 2.682134159126466, 2.621748036321995, 2.5618780342252547, 2.5025241528362447, 2.4436863921549654, 2.3853647521814167, 2.3275592329155987, 2.270269834357511, 2.213496556507154, 2.1572393993645265, 2.101498362929631, 2.0462734472024646, 1.9915646521830297, 1.937371977871325, 1.883695424267351, 1.8305349913711075, 1.7778906791825944, 1.7257624877018118, 1.67415041692876, 1.6230544668634383, 1.572474637505847, 1.522410928855987, 1.4728633409138565, 1.423831873679457, 1.3753165271527883, 1.3273173013338497, 1.2798341962226418, 1.2328672118191646, 1.186416348123418, 1.1404816051354012, 1.095062982855116, 1.05016048128256, 1.005774100417736, 0.961903840260641, 0.9185497008112773, 0.8757116820696442, 0.8333897840357416, 0.7915840067095694, 0.7502943500911279, 0.7095208141804168, 0.6692633989774357, 0.6295221044821862, 0.5902969306946662, 0.5515878776148777, 0.5133949452428188, 0.4757181335784908, 0.43855744262189345, 0.40191287237302653, 0.36578442283189005, 0.33017209399848424, 0.29507588587280886, 0.2604957984548635, 0.22643183174464965, 0.1928839857421656, 0.15985226044741263, 0.12733665586038945, 0.09533717198109737, 0.0638538088095355, 0.032886566345704527, 0.0024354445896037635, 0.02749955645876645, 0.056918436799406114, 0.08582119643231523, 0.11420783535749424, 0.14207835357494225, 0.16943275108465983, 0.19627102788664685, 0.22259318398090333, 0.24839921936742937, 0.27368913404622486, 0.2984629280172898, 0.3227206012806242, 0.34646215383622814, 0.36968758568410187, 0.3923968968242446, 0.414590087256657, 0.4362671569813389, 0.4574281059982902, 0.47807293430751097, 0.4982016419090012, 0.517814228802761, 0.5369106949887903, 0.555491040467089, 0.5735552652376572, 0.591103369300495, 0.6081353526556023, 0.6246512153029788, 0.640650957242625, 0.6561345784745406, 0.6711020789987256, 0.6855534588151802, 0.6994887179239042, 0.7129078563248978, 0.7258108740181608, 0.7381977710036933, 0.7500685472814954, 0.7614232028515668, 0.7722617377139077, 0.7825841518685182, 0.792390445315398, 0.8016806180545474, 0.8104546700859663, 0.8187126014096545, 0.8264544120256123, 0.8336801019338396, 0.8403896711343364, 0.8465831196271028, 0.8522604474121385, 0.8574216544894436, 0.8620667408590184, 0.8661957065208625, 0.8698085514749762, 0.8729052757213592, 0.8754858792600119, 0.877550362090934, 0.8790987242141255, 0.8801309656295866, 0.880647086337317, 0.8806470863373171, 0.8801309656295866, 0.8790987242141256, 0.877550362090934, 0.8754858792600119, 0.8729052757213593, 0.8698085514749762, 0.8661957065208625, 0.8620667408590184, 0.8574216544894437, 0.8522604474121385, 0.8465831196271029, 0.8403896711343366, 0.8336801019338399, 0.8264544120256125, 0.8187126014096546, 0.8104546700859665, 0.8016806180545475, 0.7923904453153983, 0.7825841518685183, 0.772261737713908, 0.761423202851567, 0.7500685472814956, 0.7381977710036935, 0.7258108740181612, 0.7129078563248981, 0.6994887179239044, 0.6855534588151806, 0.6711020789987259, 0.6561345784745409, 0.6406509572426252, 0.6246512153029793, 0.6081353526556025, 0.5911033693004956, 0.5735552652376577, 0.5554910404670892, 0.5369106949887907, 0.5178142288027613, 0.49820164190900174, 0.4780729343075112, 0.45742810599829076, 0.4362671569813391, 0.4145900872566576, 0.39239689682424495, 0.3696875856841024, 0.3464621538362288, 0.3227206012806245, 0.29846292801729046, 0.2736891340462252, 0.24839921936743004, 0.22259318398090366, 0.19627102788664752, 0.16943275108466016, 0.14207835357494303, 0.11420783535749457, 0.08582119643231634, 0.05691843679940689, 0.027499556458766894, 0.0024354445896028754, 0.03288656634570408, 0.06385380880953484, 0.09533717198109692, 0.12733665586038856, 0.15985226044741174, 0.19288398574216448, 0.22643183174464876, 0.2604957984548626, 0.295075885872808, 0.3301720939984838, 0.36578442283188917, 0.4019128723730261, 0.43855744262189233, 0.47571813357849035, 0.5133949452428177, 0.5515878776148766, 0.590296930694665, 0.6295221044821853, 0.6692633989774346, 0.7095208141804157, 0.7502943500911272, 0.7915840067095683, 0.8333897840357409, 0.8757116820696431, 0.9185497008112768, 0.9619038402606397, 1.0057741004177347, 1.0501604812825587, 1.0950629828551146, 1.1404816051353999, 1.1864163481234167, 1.2328672118191641, 1.279834196222641, 1.3273173013338493, 1.375316527152787, 1.4238318736794562, 1.4728633409138552, 1.5224109288559857, 1.5724746375058452, 1.623054466863437, 1.6741504169287578, 1.7257624877018105, 1.7778906791825935, 1.8305349913711058, 1.88369542426735, 1.9373719778713236, 1.9915646521830288, 2.046273447202463, 2.1014983629296293, 2.1572393993645247, 2.213496556507152, 2.27026983435751, 2.327559232915597, 2.385364752181416, 2.443686392154964, 2.502524152836244, 2.561878034225253, 2.621748036321994, 2.682134159126464, 2.743036402638666, 2.8044547668585973, 2.8663892517862606, 2.928839857421654, 2.9918065837647765, 3.0552894308156313, 3.1192883985742164 ], [ 3.1084498637118756, 3.0444508959532914, 2.980968048902437, 2.9180013225593138, 2.8555507169239207, 2.793616231996258, 2.7321978677763257, 2.6712956242641246, 2.6109095014596537, 2.5510394993629135, 2.4916856179739035, 2.432847857292624, 2.3745262173190755, 2.3167206980532575, 2.2594312994951697, 2.2026580216448126, 2.1464008645021853, 2.09065982806729, 2.0354349123401234, 1.9807261173206885, 1.9265334430089838, 1.8728568894050097, 1.8196964565087663, 1.7670521443202531, 1.7149239528394706, 1.6633118820664188, 1.6122159320010971, 1.5616361026435057, 1.5115723939936458, 1.4620248060515153, 1.4129933388171159, 1.364477992290447, 1.3164787664715085, 1.2689956613603006, 1.2220286769568234, 1.1755778132610768, 1.12964307027306, 1.0842244479927747, 1.0393219464202188, 0.9949355655553949, 0.9510653053983, 0.9077111659489363, 0.8648731472073032, 0.8225512491734006, 0.7807454718472284, 0.7394558152287869, 0.6986822793180758, 0.6584248641150947, 0.6186835696198452, 0.5794583958323252, 0.5407493427525367, 0.5025564103804778, 0.4648795987161498, 0.42771890775955246, 0.39107433751068554, 0.35494588796954907, 0.31933355913614325, 0.2842373510104679, 0.2496572635925225, 0.21559329688230866, 0.1820454508798246, 0.14901372558507164, 0.11649812099804846, 0.08449863711875638, 0.05301527394719452, 0.02204803148336354, 0.008403090272737224, 0.038338091321107326, 0.06775697166174699, 0.0966597312946561, 0.1250463702198351, 0.15291688843728313, 0.1802712859470007, 0.20710956274898773, 0.2334317188432442, 0.25923775422977025, 0.28452766890856573, 0.3093014628796307, 0.33355913614296506, 0.357300688698569, 0.38052612054644275, 0.4032354316865856, 0.4254286221189979, 0.44710569184367976, 0.4682666408606311, 0.48891146916985184, 0.5090401767713422, 0.5286527636651019, 0.5477492298511312, 0.5663295753294298, 0.5843938000999981, 0.601941904162836, 0.6189738875179431, 0.6354897501653197, 0.6514894921049659, 0.6669731133368815, 0.6819406138610665, 0.6963919936775211, 0.7103272527862452, 0.7237463911872387, 0.7366494088805017, 0.7490363058660342, 0.7609070821438363, 0.7722617377139077, 0.7831002725762486, 0.793422686730859, 0.8032289801777389, 0.8125191529168883, 0.8212932049483072, 0.8295511362719954, 0.8372929468879533, 0.8445186367961806, 0.8512282059966774, 0.8574216544894436, 0.8630989822744793, 0.8682601893517845, 0.8729052757213592, 0.8770342413832034, 0.880647086337317, 0.8837438105837001, 0.8863244141223527, 0.8883888969532748, 0.8899372590764665, 0.8909695004919275, 0.891485621199658, 0.891485621199658, 0.8909695004919275, 0.8899372590764665, 0.8883888969532749, 0.8863244141223527, 0.8837438105837002, 0.880647086337317, 0.8770342413832035, 0.8729052757213593, 0.8682601893517847, 0.8630989822744795, 0.8574216544894437, 0.8512282059966775, 0.8445186367961808, 0.8372929468879535, 0.8295511362719956, 0.8212932049483074, 0.8125191529168885, 0.8032289801777392, 0.7934226867308591, 0.7831002725762489, 0.7722617377139078, 0.7609070821438366, 0.7490363058660345, 0.7366494088805022, 0.723746391187239, 0.7103272527862453, 0.6963919936775216, 0.6819406138610667, 0.6669731133368819, 0.6514894921049661, 0.6354897501653203, 0.6189738875179434, 0.6019419041628364, 0.5843938000999985, 0.5663295753294302, 0.5477492298511317, 0.5286527636651022, 0.5090401767713427, 0.4889114691698522, 0.46826664086063163, 0.4471056918436801, 0.42542862211899857, 0.40323543168658593, 0.3805261205464433, 0.3573006886985697, 0.3335591361429654, 0.30930146287963134, 0.28452766890856607, 0.2592377542297709, 0.23343171884324454, 0.2071095627489884, 0.18027128594700104, 0.1529168884372839, 0.12504637021983545, 0.09665973129465721, 0.06775697166174777, 0.03833809132110777, 0.008403090272738, 0.022048031483363095, 0.05301527394719385, 0.08449863711875594, 0.11649812099804757, 0.14901372558507076, 0.1820454508798235, 0.21559329688230777, 0.2496572635925216, 0.284237351010467, 0.3193335591361428, 0.3549458879695482, 0.3910743375106851, 0.42771890775955135, 0.46487959871614937, 0.5025564103804767, 0.5407493427525356, 0.5794583958323241, 0.6186835696198443, 0.6584248641150936, 0.6986822793180747, 0.7394558152287862, 0.7807454718472273, 0.8225512491734, 0.8648731472073021, 0.9077111659489359, 0.9510653053982987, 0.9949355655553935, 1.039321946420218, 1.0842244479927734, 1.1296430702730587, 1.1755778132610755, 1.222028676956823, 1.2689956613602997, 1.316478766471508, 1.3644779922904458, 1.412993338817115, 1.462024806051514, 1.5115723939936445, 1.561636102643504, 1.6122159320010958, 1.6633118820664166, 1.7149239528394693, 1.7670521443202523, 1.8196964565087645, 1.8728568894050088, 1.9265334430089824, 1.9807261173206876, 2.0354349123401216, 2.090659828067288, 2.1464008645021835, 2.202658021644811, 2.259431299495169, 2.3167206980532558, 2.3745262173190747, 2.432847857292623, 2.4916856179739026, 2.5510394993629117, 2.610909501459653, 2.671295624264123, 2.732197867776325, 2.793616231996256, 2.8555507169239194, 2.918001322559313, 2.9809680489024353, 3.0444508959532905, 3.1084498637118756 ], [ 3.098127449557265, 3.034128481798681, 2.970645634747827, 2.9076789084047037, 2.8452283027693106, 2.7832938178416478, 2.7218754536217156, 2.6609732101095145, 2.6005870873050436, 2.5407170852083034, 2.4813632038192934, 2.422525443138014, 2.3642038031644654, 2.3063982838986474, 2.2491088853405596, 2.1923356074902025, 2.136078450347575, 2.08033741391268, 2.0251124981855133, 1.9704037031660784, 1.9162110288543737, 1.8625344752503996, 1.8093740423541562, 1.756729730165643, 1.7046015386848605, 1.6529894679118087, 1.601893517846487, 1.5513136884888956, 1.5012499798390357, 1.4517023918969052, 1.4026709246625058, 1.354155578135837, 1.3061563523168984, 1.2586732472056905, 1.2117062628022133, 1.1652553991064667, 1.1193206561184499, 1.0739020338381646, 1.0289995322656087, 0.9846131514007845, 0.9407428912436897, 0.897388751794326, 0.8545507330526929, 0.8122288350187903, 0.7704230576926181, 0.7291334010741766, 0.6883598651634655, 0.6481024499604844, 0.6083611554652348, 0.5691359816777148, 0.5304269285979264, 0.4922339962258675, 0.4545571845615395, 0.41739649360494213, 0.3807519233560752, 0.34462347381493874, 0.3090111449815329, 0.27391493685585755, 0.23933484943791217, 0.20527088272769833, 0.17172303672521427, 0.13869131143046132, 0.10617570684343813, 0.07417622296414605, 0.04269285979258419, 0.011725617328753213, 0.01872550442734766, 0.048660505475717764, 0.07807938581635743, 0.10698214544926654, 0.13536878437444555, 0.16323930259189356, 0.19059370010161114, 0.21743197690359817, 0.24375413299785464, 0.2695601683843807, 0.29485008306317617, 0.3196238770342411, 0.3438815502975755, 0.36762310285317945, 0.3908485347010532, 0.4135578458411959, 0.43575103627360834, 0.4574281059982902, 0.4785890550152415, 0.4992338833244623, 0.5193625909259525, 0.5389751778197123, 0.5580716440057416, 0.5766519894840403, 0.5947162142546085, 0.6122643183174463, 0.6292963016725536, 0.6458121643199302, 0.6618119062595763, 0.6772955274914919, 0.692263028015677, 0.7067144078321315, 0.7206496669408555, 0.7340688053418492, 0.7469718230351121, 0.7593587200206446, 0.7712294962984467, 0.7825841518685182, 0.793422686730859, 0.8037451008854695, 0.8135513943323494, 0.8228415670714987, 0.8316156191029176, 0.8398735504266058, 0.8476153610425636, 0.8548410509507909, 0.8615506201512877, 0.8677440686440541, 0.8734213964290898, 0.8785826035063949, 0.8832276898759697, 0.8873566555378138, 0.8909695004919275, 0.8940662247383105, 0.8966468282769632, 0.8987113111078853, 0.9002596732310768, 0.9012919146465379, 0.9018080353542683, 0.9018080353542685, 0.9012919146465379, 0.9002596732310769, 0.8987113111078853, 0.8966468282769632, 0.8940662247383107, 0.8909695004919275, 0.8873566555378138, 0.8832276898759697, 0.878582603506395, 0.8734213964290898, 0.8677440686440542, 0.8615506201512879, 0.8548410509507912, 0.8476153610425639, 0.8398735504266059, 0.8316156191029178, 0.8228415670714988, 0.8135513943323496, 0.8037451008854696, 0.7934226867308594, 0.7825841518685183, 0.771229496298447, 0.7593587200206449, 0.7469718230351126, 0.7340688053418494, 0.7206496669408557, 0.7067144078321319, 0.6922630280156772, 0.6772955274914922, 0.6618119062595765, 0.6458121643199306, 0.6292963016725538, 0.6122643183174469, 0.594716214254609, 0.5766519894840405, 0.558071644005742, 0.5389751778197126, 0.5193625909259532, 0.4992338833244625, 0.47858905501524207, 0.4574281059982904, 0.4357510362736089, 0.41355784584119626, 0.39084853470105374, 0.3676231028531801, 0.34388155029757583, 0.3196238770342418, 0.2948500830631765, 0.26956016838438135, 0.24375413299785498, 0.21743197690359883, 0.19059370010161147, 0.16323930259189434, 0.13536878437444588, 0.10698214544926765, 0.0780793858163582, 0.04866050547571821, 0.01872550442734844, 0.011725617328752769, 0.042692859792583526, 0.07417622296414561, 0.10617570684343725, 0.13869131143046043, 0.17172303672521316, 0.20527088272769745, 0.23933484943791128, 0.27391493685585666, 0.3090111449815325, 0.34462347381493785, 0.3807519233560748, 0.417396493604941, 0.45455718456153904, 0.4922339962258664, 0.5304269285979253, 0.5691359816777137, 0.608361155465234, 0.6481024499604833, 0.6883598651634644, 0.7291334010741759, 0.770423057692617, 0.8122288350187896, 0.8545507330526918, 0.8973887517943255, 0.9407428912436884, 0.9846131514007832, 1.0289995322656074, 1.0739020338381633, 1.1193206561184486, 1.1652553991064654, 1.2117062628022128, 1.2586732472056896, 1.306156352316898, 1.3541555781358356, 1.4026709246625049, 1.4517023918969039, 1.5012499798390344, 1.5513136884888938, 1.6018935178464857, 1.6529894679118065, 1.7046015386848592, 1.7567297301656422, 1.8093740423541544, 1.8625344752503987, 1.9162110288543723, 1.9704037031660775, 2.0251124981855115, 2.080337413912678, 2.1360784503475734, 2.1923356074902007, 2.2491088853405587, 2.3063982838986457, 2.3642038031644645, 2.4225254431380128, 2.4813632038192925, 2.5407170852083016, 2.6005870873050427, 2.6609732101095127, 2.7218754536217147, 2.783293817841646, 2.8452283027693093, 2.9076789084047028, 2.970645634747825, 3.03412848179868, 3.098127449557265 ], [ 3.0883211561103856, 3.0243221883518006, 2.960839341300947, 2.897872614957824, 2.8354220093224307, 2.773487524394768, 2.7120691601748357, 2.6511669166626346, 2.5907807938581637, 2.5309107917614235, 2.4715569103724135, 2.412719149691134, 2.3543975097175855, 2.2965919904517675, 2.2393025918936798, 2.1825293140433226, 2.1262721569006953, 2.0705311204658, 2.0153062047386334, 1.9605974097191985, 1.9064047354074938, 1.8527281818035197, 1.7995677489072763, 1.7469234367187632, 1.6947952452379806, 1.6431831744649288, 1.5920872243996071, 1.5415073950420157, 1.4914436863921559, 1.4418960984500253, 1.3928646312156259, 1.344349284688957, 1.2963500588700185, 1.2488669537588106, 1.2018999693553334, 1.1554491056595868, 1.10951436267157, 1.0640957403912847, 1.0191932388187288, 0.9748068579539046, 0.9309365977968098, 0.8875824583474461, 0.844744439605813, 0.8024225415719104, 0.7606167642457382, 0.7193271076272967, 0.6785535717165856, 0.6382961565136045, 0.598554862018355, 0.559329688230835, 0.5206206351510465, 0.4824277027789876, 0.4447508911146596, 0.40759020015806224, 0.37094562990919533, 0.33481718036805885, 0.29920485153465304, 0.26410864340897766, 0.22952855599103228, 0.19546458928081845, 0.16191674327833439, 0.12888501798358143, 0.09636941339655825, 0.06436992951726617, 0.032886566345704304, 0.001919323881873325, 0.02853179787422755, 0.05846679892259765, 0.08788567926323732, 0.11678843889614643, 0.14517507782132544, 0.17304559603877345, 0.20039999354849103, 0.22723827035047806, 0.25356042644473453, 0.27936646183126057, 0.30465637651005606, 0.329430170481121, 0.3536878437444554, 0.37742939630005934, 0.4006548281479331, 0.4233641392880758, 0.4455573297204882, 0.4672343994451701, 0.4883953484621214, 0.5090401767713422, 0.5291688843728324, 0.5487814712665922, 0.5678779374526214, 0.5864582829309202, 0.6045225077014883, 0.6220706117643262, 0.6391025951194335, 0.65561845776681, 0.6716181997064562, 0.6871018209383718, 0.7020693214625569, 0.7165207012790114, 0.7304559603877354, 0.7438750987887289, 0.756778116481992, 0.7691650134675244, 0.7810357897453266, 0.792390445315398, 0.8032289801777389, 0.8135513943323494, 0.8233576877792292, 0.8326478605183786, 0.8414219125497974, 0.8496798438734857, 0.8574216544894435, 0.8646473443976708, 0.8713569135981676, 0.877550362090934, 0.8832276898759697, 0.8883888969532748, 0.8930339833228496, 0.8971629489846936, 0.9007757939388072, 0.9038725181851904, 0.9064531217238431, 0.9085176045547652, 0.9100659666779567, 0.9110982080934178, 0.9116143288011482, 0.9116143288011482, 0.9110982080934178, 0.9100659666779567, 0.9085176045547652, 0.9064531217238431, 0.9038725181851905, 0.9007757939388074, 0.8971629489846937, 0.8930339833228496, 0.8883888969532749, 0.8832276898759697, 0.8775503620909341, 0.8713569135981678, 0.8646473443976711, 0.8574216544894437, 0.8496798438734858, 0.8414219125497977, 0.8326478605183787, 0.8233576877792295, 0.8135513943323495, 0.8032289801777392, 0.7923904453153982, 0.7810357897453268, 0.7691650134675247, 0.7567781164819924, 0.7438750987887293, 0.7304559603877356, 0.7165207012790118, 0.7020693214625571, 0.6871018209383721, 0.6716181997064564, 0.6556184577668105, 0.6391025951194337, 0.6220706117643268, 0.6045225077014889, 0.5864582829309204, 0.5678779374526219, 0.5487814712665925, 0.5291688843728329, 0.5090401767713424, 0.48839534846212196, 0.4672343994451703, 0.4455573297204888, 0.42336413928807615, 0.40065482814793363, 0.37742939630006, 0.3536878437444557, 0.32943017048112166, 0.3046563765100564, 0.27936646183126124, 0.25356042644473487, 0.22723827035047872, 0.20039999354849136, 0.17304559603877423, 0.14517507782132577, 0.11678843889614754, 0.08788567926323809, 0.058466798922598096, 0.028531797874228326, 0.0019193238818728808, 0.03288656634570364, 0.06436992951726572, 0.09636941339655736, 0.12888501798358054, 0.16191674327833327, 0.19546458928081756, 0.2295285559910314, 0.2641086434089768, 0.2992048515346526, 0.33481718036805797, 0.3709456299091949, 0.40759020015806113, 0.44475089111465915, 0.4824277027789865, 0.5206206351510454, 0.5593296882308338, 0.5985548620183541, 0.6382961565136034, 0.6785535717165845, 0.719327107627296, 0.7606167642457371, 0.8024225415719097, 0.8447444396058119, 0.8875824583474456, 0.9309365977968085, 0.9748068579539033, 1.0191932388187275, 1.0640957403912834, 1.1095143626715687, 1.1554491056595855, 1.201899969355333, 1.2488669537588097, 1.296350058870018, 1.3443492846889558, 1.392864631215625, 1.441896098450024, 1.4914436863921545, 1.541507395042014, 1.5920872243996058, 1.6431831744649266, 1.6947952452379793, 1.7469234367187623, 1.7995677489072746, 1.8527281818035188, 1.9064047354074924, 1.9605974097191976, 2.0153062047386316, 2.070531120465798, 2.1262721569006935, 2.182529314043321, 2.239302591893679, 2.2965919904517658, 2.3543975097175847, 2.412719149691133, 2.4715569103724127, 2.5309107917614218, 2.590780793858163, 2.651166916662633, 2.712069160174835, 2.773487524394766, 2.8354220093224294, 2.897872614957823, 2.9608393413009453, 3.0243221883517997, 3.0883211561103856 ], [ 3.0790309833712364, 3.0150320156126513, 2.9515491685617974, 2.888582442218674, 2.826131836583281, 2.764197351655618, 2.702778987435686, 2.641876743923485, 2.581490621119014, 2.521620619022274, 2.462266737633264, 2.4034289769519845, 2.345107336978436, 2.287301817712618, 2.23001241915453, 2.173239141304173, 2.1169819841615456, 2.0612409477266502, 2.0060160319994838, 1.9513072369800488, 1.897114562668344, 1.84343800906437, 1.7902775761681267, 1.7376332639796135, 1.685505072498831, 1.6338930017257791, 1.5827970516604575, 1.532217222302866, 1.4821535136530062, 1.4326059257108756, 1.3835744584764762, 1.3350591119498074, 1.2870598861308689, 1.239576781019661, 1.1926097966161837, 1.1461589329204371, 1.1002241899324203, 1.054805567652135, 1.0099030660795791, 0.9655166852147552, 0.9216464250576606, 0.8782922856082966, 0.8354542668666638, 0.7931323688327612, 0.7513265915065888, 0.7100369348881475, 0.6692633989774364, 0.629005983774455, 0.5892646892792057, 0.5500395154916857, 0.5113304624118973, 0.47313753003983816, 0.43546071837551015, 0.3983000274189128, 0.3616554571700461, 0.3255270076289096, 0.2899146787955038, 0.2548184706698282, 0.22023838325188283, 0.186174416541669, 0.15262657053918494, 0.11959484524443198, 0.0870792406574088, 0.05507975677811672, 0.023596393606554855, 0.007370848857276124, 0.03782197061337689, 0.06775697166174699, 0.09717585200238665, 0.12607861163529577, 0.15446525056047478, 0.1823357687779228, 0.20969016628764037, 0.2365284430896274, 0.26285059918388387, 0.2886566345704099, 0.3139465492492054, 0.33872034322027034, 0.3629780164836047, 0.3867195690392087, 0.4099450008870824, 0.43265431202722526, 0.45484750245963756, 0.47652457218431943, 0.49768552120127074, 0.5183303495104915, 0.5384590571119818, 0.5580716440057416, 0.5771681101917707, 0.5957484556700695, 0.6138126804406376, 0.6313607845034757, 0.6483927678585828, 0.6649086305059594, 0.6809083724456055, 0.6963919936775211, 0.7113594942017062, 0.7258108740181608, 0.7397461331268849, 0.7531652715278783, 0.7660682892211413, 0.7784551862066738, 0.790325962484476, 0.8016806180545474, 0.8125191529168883, 0.8228415670714987, 0.8326478605183786, 0.8419380332575279, 0.8507120852889467, 0.8589700166126351, 0.8667118272285929, 0.8739375171368202, 0.8806470863373169, 0.8868405348300833, 0.892517862615119, 0.8976790696924242, 0.9023241560619989, 0.9064531217238431, 0.9100659666779567, 0.9131626909243398, 0.9157432944629924, 0.9178077772939145, 0.919356139417106, 0.9203883808325671, 0.9209045015402977, 0.9209045015402977, 0.9203883808325671, 0.9193561394171061, 0.9178077772939145, 0.9157432944629924, 0.9131626909243399, 0.9100659666779567, 0.9064531217238432, 0.9023241560619989, 0.8976790696924243, 0.8925178626151191, 0.8868405348300834, 0.8806470863373171, 0.8739375171368204, 0.8667118272285931, 0.8589700166126352, 0.8507120852889469, 0.841938033257528, 0.8326478605183788, 0.8228415670714988, 0.8125191529168886, 0.8016806180545475, 0.7903259624844763, 0.7784551862066742, 0.7660682892211419, 0.7531652715278787, 0.739746133126885, 0.7258108740181611, 0.7113594942017064, 0.6963919936775216, 0.6809083724456058, 0.6649086305059599, 0.648392767858583, 0.6313607845034761, 0.6138126804406382, 0.5957484556700698, 0.5771681101917714, 0.5580716440057418, 0.5384590571119823, 0.5183303495104918, 0.4976855212012713, 0.47652457218431965, 0.4548475024596381, 0.4326543120272255, 0.40994500088708297, 0.38671956903920934, 0.36297801648360506, 0.338720343220271, 0.31394654924920573, 0.2886566345704106, 0.2628505991838842, 0.23652844308962806, 0.2096901662876407, 0.18233576877792357, 0.1544652505604751, 0.12607861163529688, 0.09717585200238743, 0.06775697166174743, 0.037821970613377665, 0.0073708488572765685, 0.02359639360655419, 0.05507975677811627, 0.08707924065740791, 0.11959484524443109, 0.15262657053918405, 0.1861744165416681, 0.22023838325188194, 0.2548184706698273, 0.28991467879550337, 0.32552700762890874, 0.36165545717004566, 0.3983000274189119, 0.4354607183755097, 0.4731375300398373, 0.511330462411896, 0.5500395154916844, 0.5892646892792048, 0.6290059837744542, 0.669263398977435, 0.7100369348881466, 0.7513265915065879, 0.7931323688327603, 0.8354542668666625, 0.8782922856082962, 0.9216464250576593, 0.9655166852147539, 1.0099030660795782, 1.0548055676521337, 1.100224189932419, 1.1461589329204358, 1.1926097966161833, 1.23957678101966, 1.2870598861308684, 1.335059111949806, 1.3835744584764753, 1.4326059257108743, 1.4821535136530049, 1.5322172223028643, 1.5827970516604561, 1.633893001725777, 1.6855050724988296, 1.7376332639796126, 1.7902775761681249, 1.8434380090643692, 1.8971145626683428, 1.951307236980048, 2.006016031999482, 2.0612409477266485, 2.116981984161544, 2.173239141304171, 2.230012419154529, 2.287301817712616, 2.345107336978435, 2.403428976951983, 2.462266737633263, 2.521620619022272, 2.581490621119013, 2.641876743923483, 2.702778987435685, 2.7641973516556164, 2.8261318365832797, 2.888582442218673, 2.9515491685617956, 3.0150320156126504, 3.0790309833712364 ], [ 3.0702569313398174, 3.0062579635812323, 2.942775116530379, 2.8798083901872555, 2.8173577845518625, 2.7554232996241996, 2.6940049354042674, 2.6331026918920664, 2.5727165690875955, 2.5128465669908553, 2.4534926856018453, 2.394654924920566, 2.3363332849470173, 2.2785277656811993, 2.2212383671231115, 2.1644650892727544, 2.108207932130127, 2.0524668956952317, 1.9972419799680652, 1.9425331849486303, 1.8883405106369255, 1.8346639570329515, 1.781503524136708, 1.728859211948195, 1.6767310204674124, 1.6251189496943605, 1.574022999629039, 1.5234431702714475, 1.4733794616215876, 1.423831873679457, 1.3748004064450576, 1.3262850599183889, 1.2782858340994503, 1.2308027289882424, 1.1838357445847651, 1.1373848808890186, 1.0914501379010018, 1.0460315156207165, 1.0011290140481606, 0.9567426331833364, 0.9128723730262416, 0.8695182335768779, 0.8266802148352448, 0.7843583168013422, 0.74255253947517, 0.7012628828567284, 0.6604893469460174, 0.6202319317430363, 0.5804906372477867, 0.5412654634602667, 0.5025564103804783, 0.4643634780084194, 0.42668666634409136, 0.389525975387494, 0.3528814051386271, 0.3167529555974906, 0.2811406267640848, 0.24604441863840942, 0.21146433122046404, 0.1774003645102502, 0.14385251850776615, 0.11082079321301319, 0.07830518862599001, 0.04630570474669793, 0.014822341575136067, 0.016144900888694913, 0.046596022644795676, 0.07653102369316578, 0.10594990403380544, 0.13485266366671467, 0.16323930259189368, 0.19110982080934158, 0.21846421831905927, 0.2453024951210463, 0.27162465121530266, 0.2974306866018288, 0.3227206012806243, 0.3474943952516891, 0.3717520685150235, 0.39549362107062747, 0.4187190529185012, 0.44142836405864405, 0.46362155449105646, 0.4852986242157382, 0.5064595732326895, 0.5271044015419104, 0.5472331091434006, 0.5668456960371604, 0.5859421622231896, 0.6045225077014884, 0.6225867324720565, 0.6401348365348944, 0.6571668198900016, 0.6736826825373783, 0.6896824244770243, 0.7051660457089399, 0.7201335462331251, 0.7345849260495796, 0.7485201851583037, 0.7619393235592972, 0.7748423412525601, 0.7872292382380927, 0.7991000145158947, 0.8104546700859663, 0.8212932049483072, 0.8316156191029176, 0.8414219125497974, 0.8507120852889467, 0.8594861373203656, 0.867744068644054, 0.8754858792600118, 0.882711569168239, 0.8894211383687358, 0.8956145868615021, 0.9012919146465378, 0.9064531217238431, 0.9110982080934177, 0.9152271737552619, 0.9188400187093755, 0.9219367429557587, 0.9245173464944112, 0.9265818293253334, 0.9281301914485249, 0.9291624328639859, 0.9296785535717165, 0.9296785535717165, 0.929162432863986, 0.9281301914485249, 0.9265818293253334, 0.9245173464944113, 0.9219367429557588, 0.9188400187093756, 0.915227173755262, 0.9110982080934178, 0.9064531217238432, 0.9012919146465379, 0.8956145868615023, 0.8894211383687359, 0.8827115691682393, 0.875485879260012, 0.8677440686440541, 0.8594861373203658, 0.8507120852889469, 0.8414219125497977, 0.8316156191029176, 0.8212932049483075, 0.8104546700859664, 0.7991000145158951, 0.787229238238093, 0.7748423412525607, 0.7619393235592975, 0.7485201851583039, 0.73458492604958, 0.7201335462331253, 0.7051660457089404, 0.6896824244770245, 0.6736826825373787, 0.6571668198900018, 0.6401348365348949, 0.6225867324720571, 0.6045225077014886, 0.5859421622231902, 0.5668456960371606, 0.5472331091434012, 0.5271044015419106, 0.5064595732326902, 0.48529862421573855, 0.463621554491057, 0.4414283640586444, 0.41871905291850187, 0.39549362107062813, 0.37175206851502396, 0.3474943952516898, 0.3227206012806245, 0.2974306866018295, 0.2716246512153031, 0.24530249512104696, 0.2184642183190595, 0.19110982080934247, 0.1632393025918939, 0.13485266366671578, 0.10594990403380633, 0.07653102369316622, 0.046596022644796564, 0.016144900888695357, 0.0148223415751354, 0.046305704746697485, 0.07830518862598912, 0.1108207932130123, 0.14385251850776504, 0.17740036451024932, 0.21146433122046315, 0.24604441863840854, 0.28114062676408436, 0.3167529555974897, 0.35288140513862665, 0.3895259753874929, 0.4266866663440909, 0.46436347800841826, 0.5025564103804772, 0.5412654634602656, 0.5804906372477858, 0.6202319317430351, 0.6604893469460162, 0.7012628828567278, 0.7425525394751689, 0.7843583168013415, 0.8266802148352437, 0.8695182335768774, 0.9128723730262402, 0.9567426331833351, 1.0011290140481592, 1.0460315156207152, 1.0914501379010004, 1.1373848808890172, 1.1838357445847647, 1.2308027289882415, 1.2782858340994498, 1.3262850599183875, 1.3748004064450567, 1.4238318736794557, 1.4733794616215863, 1.5234431702714457, 1.5740229996290376, 1.6251189496943583, 1.676731020467411, 1.728859211948194, 1.7815035241367063, 1.8346639570329506, 1.8883405106369242, 1.9425331849486294, 1.9972419799680634, 2.05246689569523, 2.1082079321301253, 2.1644650892727526, 2.2212383671231106, 2.2785277656811975, 2.3363332849470164, 2.3946549249205646, 2.4534926856018444, 2.5128465669908535, 2.5727165690875946, 2.6331026918920646, 2.6940049354042666, 2.755423299624198, 2.817357784551861, 2.8798083901872547, 2.942775116530377, 3.0062579635812314, 3.0702569313398174 ], [ 3.0619990000161286, 2.9980000322575444, 2.9345171852066905, 2.871550458863567, 2.809099853228174, 2.7471653683005113, 2.685747004080579, 2.624844760568378, 2.564458637763907, 2.504588635667167, 2.445234754278157, 2.3863969935968776, 2.328075353623329, 2.270269834357511, 2.212980435799423, 2.156207157949066, 2.0999500008064387, 2.0442089643715433, 1.9889840486443768, 1.934275253624942, 1.8800825793132372, 1.8264060257092631, 1.7732455928130197, 1.7206012806245066, 1.668473089143724, 1.6168610183706722, 1.5657650683053506, 1.5151852389477591, 1.4651215302978993, 1.4155739423557687, 1.3665424751213693, 1.3180271285947005, 1.270027902775762, 1.222544797664554, 1.1755778132610768, 1.1291269495653302, 1.0831922065773134, 1.0377735842970282, 0.992871082724472, 0.9484847018596481, 0.9046144417025532, 0.8612603022531895, 0.8184222835115564, 0.7761003854776538, 0.7342946081514816, 0.6930049515330401, 0.652231415622329, 0.6119740004193479, 0.5722327059240984, 0.5330075321365784, 0.4942984790567899, 0.456105546684731, 0.418428735020403, 0.38126804406380566, 0.34462347381493874, 0.30849502427380227, 0.27288269544039645, 0.23778648731472107, 0.2032063998967757, 0.16914243318656186, 0.1355945871840778, 0.10256286188932484, 0.07004725730230166, 0.03804777342300958, 0.0065644102514477165, 0.024402832212383263, 0.054853953968484026, 0.08478895501685413, 0.11420783535749379, 0.1431105949904029, 0.17149723391558191, 0.19936775213302993, 0.2267221496427475, 0.25356042644473453, 0.279882582538991, 0.30568861792551705, 0.33097853260431254, 0.3557523265753775, 0.38000999983871186, 0.4037515523943158, 0.42697698424218955, 0.4496862953823324, 0.4718794858147447, 0.49355655553942657, 0.5147175045563779, 0.5353623328655986, 0.555491040467089, 0.5751036273608487, 0.594200093546878, 0.6127804390251766, 0.6308446637957449, 0.6483927678585828, 0.6654247512136899, 0.6819406138610665, 0.6979403558007127, 0.7134239770326283, 0.7283914775568133, 0.7428428573732679, 0.756778116481992, 0.7701972548829855, 0.7831002725762485, 0.795487169561781, 0.8073579458395831, 0.8187126014096545, 0.8295511362719954, 0.8398735504266058, 0.8496798438734857, 0.8589700166126351, 0.867744068644054, 0.8760019999677422, 0.8837438105837001, 0.8909695004919274, 0.8976790696924241, 0.9038725181851904, 0.9095498459702261, 0.9147110530475313, 0.919356139417106, 0.9234851050789502, 0.9270979500330638, 0.9301946742794469, 0.9327752778180995, 0.9348397606490216, 0.9363881227722133, 0.9374203641876743, 0.9379364848954048, 0.9379364848954048, 0.9374203641876743, 0.9363881227722133, 0.9348397606490217, 0.9327752778180995, 0.930194674279447, 0.9270979500330638, 0.9234851050789503, 0.9193561394171061, 0.9147110530475315, 0.9095498459702263, 0.9038725181851905, 0.8976790696924243, 0.8909695004919276, 0.8837438105837002, 0.8760019999677424, 0.8677440686440542, 0.8589700166126353, 0.849679843873486, 0.8398735504266059, 0.8295511362719957, 0.8187126014096546, 0.8073579458395834, 0.7954871695617813, 0.783100272576249, 0.7701972548829858, 0.7567781164819921, 0.7428428573732684, 0.7283914775568135, 0.7134239770326287, 0.6979403558007129, 0.6819406138610671, 0.6654247512136902, 0.6483927678585832, 0.6308446637957453, 0.612780439025177, 0.5942000935468785, 0.575103627360849, 0.5554910404670895, 0.535362332865599, 0.5147175045563784, 0.4935565555394269, 0.47187948581474537, 0.44968629538233273, 0.4269769842421901, 0.4037515523943165, 0.3800099998387122, 0.35575232657537814, 0.33097853260431287, 0.3056886179255177, 0.27988258253899134, 0.2535604264447352, 0.22672214964274784, 0.1993677521330307, 0.17149723391558225, 0.14311059499040402, 0.11420783535749457, 0.08478895501685457, 0.0548539539684848, 0.024402832212383707, 0.00656441025144705, 0.038047773423009135, 0.07004725730230077, 0.10256286188932395, 0.1355945871840767, 0.16914243318656097, 0.2032063998967748, 0.23778648731472019, 0.272882695440396, 0.3084950242738014, 0.3446234738149383, 0.38126804406380455, 0.41842873502040256, 0.4561055466847299, 0.4942984790567888, 0.5330075321365773, 0.5722327059240975, 0.6119740004193468, 0.6522314156223279, 0.6930049515330394, 0.7342946081514805, 0.7761003854776531, 0.8184222835115553, 0.8612603022531891, 0.9046144417025519, 0.9484847018596467, 0.9928710827244709, 1.0377735842970268, 1.083192206577312, 1.1291269495653289, 1.1755778132610764, 1.2225447976645532, 1.2700279027757615, 1.3180271285946992, 1.3665424751213684, 1.4155739423557674, 1.465121530297898, 1.5151852389477574, 1.5657650683053492, 1.61686101837067, 1.6684730891437227, 1.7206012806245057, 1.773245592813018, 1.8264060257092622, 1.8800825793132359, 1.934275253624941, 1.988984048644375, 2.0442089643715415, 2.099950000806437, 2.1562071579490643, 2.2129804357994223, 2.270269834357509, 2.328075353623328, 2.3863969935968763, 2.445234754278156, 2.504588635667165, 2.5644586377639063, 2.6248447605683762, 2.685747004080578, 2.7471653683005095, 2.809099853228173, 2.8715504588635663, 2.9345171852066887, 2.9980000322575435, 3.0619990000161286 ], [ 3.054257189400171, 2.9902582216415863, 2.9267753745907323, 2.863808648247609, 2.801358042612216, 2.739423557684553, 2.678005193464621, 2.61710294995242, 2.556716827147949, 2.496846825051209, 2.437492943662199, 2.3786551829809195, 2.320333543007371, 2.262528023741553, 2.205238625183465, 2.148465347333108, 2.0922081901904805, 2.036467153755585, 1.9812422380284187, 1.9265334430089838, 1.872340768697279, 1.818664215093305, 1.7655037821970616, 1.7128594700085484, 1.660731278527766, 1.609119207754714, 1.5580232576893924, 1.507443428331801, 1.4573797196819411, 1.4078321317398106, 1.3588006645054111, 1.3102853179787424, 1.2622860921598038, 1.214802987048596, 1.1678360026451187, 1.121385138949372, 1.0754503959613553, 1.03003177368107, 0.9851292721085143, 0.9407428912436904, 0.8968726310865955, 0.8535184916372318, 0.8106804728955987, 0.7683585748616961, 0.7265527975355239, 0.6852631409170824, 0.6444896050063713, 0.6042321898033902, 0.5644908953081407, 0.5252657215206207, 0.48655666844083223, 0.44836373606877333, 0.4106869244044453, 0.37352623344784797, 0.33688166319898105, 0.3007532136578446, 0.26514088482443876, 0.23004467669876338, 0.195464589280818, 0.16140062257060417, 0.1278527765681201, 0.09482105127336715, 0.06230544668634397, 0.030305962807051667, 0.0011774003645099729, 0.03214464282834106, 0.06259576458444183, 0.09253076563281193, 0.12194964597345159, 0.1508524056063607, 0.17923904453153972, 0.20710956274898773, 0.2344639602587053, 0.26130223706069233, 0.2876243931549488, 0.31343042854147485, 0.33872034322027034, 0.3634941371913353, 0.38775181045466967, 0.4114933630102736, 0.43471879485814735, 0.4574281059982902, 0.4796212964307025, 0.5012983661553844, 0.5224593151723357, 0.5431041434815564, 0.5632328510830468, 0.5828454379768065, 0.6019419041628358, 0.6205222496411344, 0.6385864744117027, 0.6561345784745406, 0.6731665618296477, 0.6896824244770243, 0.7056821664166705, 0.7211657876485861, 0.7361332881727711, 0.7505846679892257, 0.7645199270979498, 0.7779390654989433, 0.7908420831922063, 0.8032289801777388, 0.8150997564555409, 0.8264544120256123, 0.8372929468879533, 0.8476153610425636, 0.8574216544894435, 0.8667118272285929, 0.8754858792600118, 0.8837438105837001, 0.8914856211996578, 0.8987113111078852, 0.9054208803083819, 0.9116143288011482, 0.917291656586184, 0.9224528636634891, 0.9270979500330638, 0.931226915694908, 0.9348397606490216, 0.9379364848954048, 0.9405170884340573, 0.9425815712649794, 0.944129933388171, 0.9451621748036321, 0.9456782955113626, 0.9456782955113626, 0.9451621748036321, 0.9441299333881711, 0.9425815712649795, 0.9405170884340575, 0.9379364848954048, 0.9348397606490217, 0.9312269156949081, 0.9270979500330638, 0.9224528636634893, 0.9172916565861841, 0.9116143288011485, 0.9054208803083821, 0.8987113111078855, 0.891485621199658, 0.8837438105837001, 0.875485879260012, 0.866711827228593, 0.8574216544894437, 0.8476153610425639, 0.8372929468879535, 0.8264544120256125, 0.8150997564555412, 0.8032289801777391, 0.7908420831922068, 0.7779390654989436, 0.7645199270979499, 0.7505846679892261, 0.7361332881727713, 0.7211657876485865, 0.7056821664166707, 0.6896824244770249, 0.673166561829648, 0.656134578474541, 0.6385864744117031, 0.6205222496411348, 0.6019419041628363, 0.5828454379768068, 0.5632328510830473, 0.5431041434815568, 0.5224593151723362, 0.5012983661553847, 0.47962129643070317, 0.45742810599829054, 0.4347187948581479, 0.4114933630102743, 0.38775181045467, 0.36349413719133594, 0.33872034322027067, 0.3134304285414755, 0.28762439315494914, 0.261302237060693, 0.23446396025870564, 0.2071095627489885, 0.17923904453154005, 0.15085240560636182, 0.12194964597345237, 0.09253076563281237, 0.0625957645844426, 0.03214464282834151, 0.00117740036451075, 0.030305962807051223, 0.06230544668634308, 0.09482105127336626, 0.127852776568119, 0.16140062257060328, 0.1954645892808171, 0.2300446766987625, 0.2651408848244383, 0.3007532136578437, 0.3368816631989806, 0.37352623344784686, 0.4106869244044449, 0.4483637360687722, 0.4865566684408311, 0.5252657215206196, 0.5644908953081398, 0.6042321898033891, 0.6444896050063702, 0.6852631409170817, 0.7265527975355228, 0.7683585748616955, 0.8106804728955976, 0.8535184916372314, 0.8968726310865942, 0.940742891243689, 0.9851292721085132, 1.0300317736810687, 1.075450395961354, 1.1213851389493708, 1.1678360026451182, 1.214802987048595, 1.2622860921598034, 1.310285317978741, 1.3588006645054103, 1.4078321317398093, 1.4573797196819398, 1.5074434283317992, 1.558023257689391, 1.6091192077547118, 1.6607312785277646, 1.7128594700085475, 1.7655037821970598, 1.8186642150933041, 1.8723407686972777, 1.9265334430089829, 1.981242238028417, 2.0364671537555834, 2.0922081901904788, 2.148465347333106, 2.205238625183464, 2.262528023741551, 2.32033354300737, 2.378655182980918, 2.437492943662198, 2.496846825051207, 2.556716827147948, 2.617102949952418, 2.67800519346462, 2.7394235576845514, 2.8013580426122147, 2.863808648247608, 2.9267753745907306, 2.9902582216415854, 3.054257189400171 ], [ 3.0470314994919434, 2.9830325317333592, 2.9195496846825053, 2.856582958339382, 2.794132352703989, 2.732197867776326, 2.670779503556394, 2.609877260044193, 2.549491137239722, 2.489621135142982, 2.430267253753972, 2.3714294930726925, 2.313107853099144, 2.255302333833326, 2.198012935275238, 2.141239657424881, 2.0849825002822535, 2.029241463847358, 1.9740165481201917, 1.9193077531007567, 1.865115078789052, 1.811438525185078, 1.7582780922888346, 1.7056337801003214, 1.653505588619539, 1.601893517846487, 1.5507975677811654, 1.500217738423574, 1.450154029773714, 1.4006064418315836, 1.3515749745971841, 1.3030596280705153, 1.2550604022515768, 1.2075772971403689, 1.1606103127368916, 1.114159449041145, 1.0682247060531282, 1.022806083772843, 0.9779035822002871, 0.9335172013354631, 0.8896469411783683, 0.8462928017290046, 0.8034547829873715, 0.7611328849534689, 0.7193271076272967, 0.6780374510088552, 0.6372639150981441, 0.597006499895163, 0.5572652053999134, 0.5180400316123934, 0.479330978532605, 0.4411380461605461, 0.40346123449621807, 0.3663005435396207, 0.3296559732907538, 0.2935275237496173, 0.2579151949162115, 0.22281898679053613, 0.18823889937259075, 0.15417493266237692, 0.12062708665989286, 0.0875953613651399, 0.05507975677811672, 0.023080272898824417, 0.008403090272737335, 0.039370332736568425, 0.06982145449266919, 0.09975645554103929, 0.12917533588167895, 0.15807809551458807, 0.18646473443976708, 0.2143352526572151, 0.24168965016693267, 0.2685279269689197, 0.29485008306317617, 0.3206561184497022, 0.3459460331284977, 0.37071982709956264, 0.394977500362897, 0.418719052918501, 0.4419444847663747, 0.46465379590651745, 0.48684698633892987, 0.5085240560636117, 0.529685005080563, 0.5503298333897837, 0.570458540991274, 0.5900711278850338, 0.609167594071063, 0.6277479395493617, 0.6458121643199299, 0.6633602683827678, 0.6803922517378751, 0.6969081143852516, 0.7129078563248978, 0.7283914775568134, 0.7433589780809984, 0.757810357897453, 0.771745617006177, 0.7851647554071706, 0.7980677731004335, 0.8104546700859661, 0.8223254463637681, 0.8336801019338396, 0.8445186367961806, 0.8548410509507909, 0.8646473443976708, 0.8739375171368202, 0.882711569168239, 0.8909695004919274, 0.8987113111078852, 0.9059370010161124, 0.9126465702166092, 0.9188400187093755, 0.9245173464944112, 0.9296785535717165, 0.9343236399412911, 0.9384526056031353, 0.9420654505572489, 0.9451621748036321, 0.9477427783422847, 0.9498072611732068, 0.9513556232963983, 0.9523878647118593, 0.9529039854195899, 0.9529039854195899, 0.9523878647118594, 0.9513556232963983, 0.9498072611732068, 0.9477427783422847, 0.9451621748036321, 0.942065450557249, 0.9384526056031354, 0.9343236399412912, 0.9296785535717166, 0.9245173464944113, 0.9188400187093757, 0.9126465702166093, 0.9059370010161127, 0.8987113111078854, 0.8909695004919275, 0.8827115691682392, 0.8739375171368203, 0.8646473443976711, 0.8548410509507911, 0.8445186367961808, 0.8336801019338398, 0.8223254463637685, 0.8104546700859664, 0.7980677731004341, 0.7851647554071709, 0.7717456170061772, 0.7578103578974534, 0.7433589780809986, 0.7283914775568139, 0.7129078563248981, 0.6969081143852521, 0.6803922517378753, 0.6633602683827684, 0.6458121643199304, 0.627747939549362, 0.6091675940710636, 0.5900711278850341, 0.5704585409912746, 0.550329833389784, 0.5296850050805635, 0.508524056063612, 0.4868469863389304, 0.4646537959065178, 0.44194448476637527, 0.41871905291850164, 0.39497750036289736, 0.3707198270995633, 0.34594603312849803, 0.3206561184497029, 0.2948500830631765, 0.26852792696892036, 0.241689650166933, 0.21433525265721587, 0.1864647344397674, 0.15807809551458918, 0.12917533588167973, 0.09975645554103973, 0.06982145449266997, 0.03937033273656887, 0.008403090272738112, 0.023080272898823972, 0.05507975677811583, 0.08759536136513901, 0.12062708665989175, 0.15417493266237603, 0.18823889937258986, 0.22281898679053525, 0.25791519491621107, 0.29352752374961644, 0.32965597329075336, 0.3663005435396196, 0.4034612344962176, 0.44113804616054497, 0.47933097853260387, 0.5180400316123923, 0.5572652053999125, 0.5970064998951619, 0.637263915098143, 0.6780374510088545, 0.7193271076272956, 0.7611328849534682, 0.8034547829873704, 0.8462928017290041, 0.889646941178367, 0.9335172013354618, 0.977903582200286, 1.0228060837728417, 1.068224706053127, 1.1141594490411437, 1.1606103127368912, 1.207577297140368, 1.2550604022515763, 1.303059628070514, 1.3515749745971832, 1.4006064418315822, 1.4501540297737128, 1.5002177384235722, 1.550797567781164, 1.6018935178464848, 1.6535055886195376, 1.7056337801003205, 1.7582780922888328, 1.811438525185077, 1.8651150787890507, 1.9193077531007559, 1.97401654812019, 2.0292414638473564, 2.0849825002822517, 2.141239657424879, 2.198012935275237, 2.255302333833324, 2.313107853099143, 2.371429493072691, 2.430267253753971, 2.48962113514298, 2.549491137239721, 2.609877260044191, 2.670779503556393, 2.7321978677763243, 2.7941323527039876, 2.856582958339381, 2.9195496846825035, 2.9830325317333584, 3.0470314994919434 ], [ 3.040321930291447, 2.9763229625328624, 2.9128401154820085, 2.849873389138885, 2.787422783503492, 2.7254882985758293, 2.664069934355897, 2.603167690843696, 2.542781568039225, 2.482911565942485, 2.423557684553475, 2.3647199238721957, 2.306398283898647, 2.248592764632829, 2.191303366074741, 2.134530088224384, 2.0782729310817567, 2.0225318946468613, 1.9673069789196949, 1.91259818390026, 1.8584055095885552, 1.8047289559845812, 1.7515685230883378, 1.6989242108998246, 1.646796019419042, 1.5951839486459902, 1.5440879985806686, 1.4935081692230772, 1.4434444605732173, 1.3938968726310867, 1.3448654053966873, 1.2963500588700185, 1.24835083305108, 1.200867727939872, 1.1539007435363948, 1.1074498798406482, 1.0615151368526314, 1.0160965145723462, 0.9711940129997902, 0.9268076321349663, 0.8829373719778715, 0.8395832325285078, 0.7967452137868747, 0.7544233157529721, 0.7126175384267999, 0.6713278818083583, 0.6305543458976473, 0.5902969306946662, 0.5505556361994166, 0.5113304624118966, 0.47262140933210817, 0.43442847696004927, 0.39675166529572126, 0.3595909743391239, 0.322946404090257, 0.2868179545491205, 0.2512056257157147, 0.21610941759003932, 0.18152933017209394, 0.1474653634618801, 0.11391751745939604, 0.08088579216464309, 0.048370187577619905, 0.016370703698327604, 0.015112659473234036, 0.046079901937065126, 0.07653102369316589, 0.10646602474153599, 0.13588490508217566, 0.16478766471508477, 0.19317430364026378, 0.2210448218577118, 0.24839921936742937, 0.2752374961694164, 0.3015596522636729, 0.3273656876501989, 0.3526556023289944, 0.37742939630005934, 0.40168706956339373, 0.4254286221189977, 0.4486540539668714, 0.47136336510701426, 0.49355655553942657, 0.5152336252641084, 0.5363945742810597, 0.5570394025902805, 0.5771681101917707, 0.5967806970855305, 0.6158771632715598, 0.6344575087498585, 0.6525217335204267, 0.6700698375832645, 0.6871018209383718, 0.7036176835857484, 0.7196174255253945, 0.7351010467573101, 0.7500685472814952, 0.7645199270979497, 0.7784551862066738, 0.7918743246076674, 0.8047773423009303, 0.8171642392864629, 0.829035015564265, 0.8403896711343364, 0.8512282059966774, 0.8615506201512877, 0.8713569135981676, 0.8806470863373169, 0.8894211383687358, 0.8976790696924241, 0.9054208803083819, 0.9126465702166092, 0.9193561394171059, 0.9255495879098723, 0.931226915694908, 0.9363881227722132, 0.9410332091417879, 0.9451621748036321, 0.9487750197577457, 0.9518717440041288, 0.9544523475427814, 0.9565168303737035, 0.958065192496895, 0.9590974339123561, 0.9596135546200867, 0.9596135546200867, 0.9590974339123561, 0.9580651924968951, 0.9565168303737036, 0.9544523475427814, 0.9518717440041289, 0.9487750197577457, 0.9451621748036322, 0.9410332091417879, 0.9363881227722133, 0.9312269156949081, 0.9255495879098724, 0.9193561394171061, 0.9126465702166094, 0.9054208803083821, 0.8976790696924242, 0.889421138368736, 0.880647086337317, 0.8713569135981678, 0.8615506201512878, 0.8512282059966776, 0.8403896711343366, 0.8290350155642653, 0.8171642392864631, 0.8047773423009308, 0.7918743246076677, 0.778455186206674, 0.7645199270979501, 0.7500685472814954, 0.7351010467573106, 0.7196174255253948, 0.7036176835857488, 0.687101820938372, 0.6700698375832651, 0.6525217335204272, 0.6344575087498587, 0.6158771632715603, 0.5967806970855308, 0.5771681101917714, 0.5570394025902807, 0.5363945742810603, 0.5152336252641088, 0.49355655553942723, 0.4713633651070146, 0.44865405396687197, 0.42542862211899835, 0.40168706956339406, 0.37742939630006, 0.35265560232899473, 0.3273656876501996, 0.3015596522636732, 0.27523749616941706, 0.2483992193674297, 0.22104482185771257, 0.1931743036402641, 0.16478766471508588, 0.13588490508217643, 0.10646602474153644, 0.07653102369316667, 0.04607990193706557, 0.015112659473234813, 0.01637070369832716, 0.04837018757761902, 0.0808857921646422, 0.11391751745939493, 0.14746536346187922, 0.18152933017209305, 0.21610941759003843, 0.25120562571571425, 0.2868179545491196, 0.32294640409025654, 0.3595909743391228, 0.3967516652957208, 0.43442847696004816, 0.47262140933210706, 0.5113304624118955, 0.5505556361994157, 0.590296930694665, 0.6305543458976461, 0.6713278818083577, 0.7126175384267988, 0.7544233157529714, 0.7967452137868736, 0.8395832325285073, 0.8829373719778701, 0.926807632134965, 0.9711940129997891, 1.0160965145723448, 1.06151513685263, 1.107449879840647, 1.1539007435363944, 1.2008677279398712, 1.2483508330510795, 1.2963500588700172, 1.3448654053966864, 1.3938968726310854, 1.443444460573216, 1.4935081692230754, 1.5440879985806673, 1.595183948645988, 1.6467960194190407, 1.6989242108998237, 1.751568523088336, 1.8047289559845803, 1.8584055095885539, 1.912598183900259, 1.967306978919693, 2.0225318946468596, 2.078272931081755, 2.1345300882243823, 2.1913033660747403, 2.248592764632827, 2.306398283898646, 2.3647199238721943, 2.423557684553474, 2.482911565942483, 2.5427815680392243, 2.6031676908436943, 2.6640699343558962, 2.7254882985758275, 2.787422783503491, 2.8498733891388843, 2.9128401154820067, 2.9763229625328615, 3.040321930291447 ], [ 3.034128481798681, 2.9701295140400963, 2.9066466669892423, 2.843679940646119, 2.781229335010726, 2.719294850083063, 2.657876485863131, 2.59697424235093, 2.536588119546459, 2.476718117449719, 2.417364236060709, 2.3585264753794295, 2.300204835405881, 2.242399316140063, 2.185109917581975, 2.128336639731618, 2.0720794825889906, 2.016338446154095, 1.9611135304269287, 1.9064047354074938, 1.852212061095789, 1.798535507491815, 1.7453750745955716, 1.6927307624070584, 1.640602570926276, 1.588990500153224, 1.5378945500879024, 1.487314720730311, 1.4372510120804511, 1.3877034241383206, 1.3386719569039212, 1.2901566103772524, 1.2421573845583138, 1.194674279447106, 1.1477072950436287, 1.101256431347882, 1.0553216883598653, 1.00990306607958, 0.9650005645070239, 0.9206141836421999, 0.8767439234851051, 0.8333897840357414, 0.7905517652941083, 0.7482298672602057, 0.7064240899340335, 0.665134433315592, 0.6243608974048809, 0.5841034822018998, 0.5443621877066502, 0.5051370139191302, 0.4664279608393418, 0.4282350284672829, 0.3905582168029549, 0.35339752584635753, 0.3167529555974906, 0.28062450605635414, 0.24501217722294832, 0.20991596909727295, 0.17533588167932757, 0.14127191496911373, 0.10772406896662967, 0.07469234367187672, 0.04217673908485353, 0.010177255205561453, 0.02130610796600041, 0.0522733504298315, 0.08272447218593226, 0.11265947323430237, 0.14207835357494203, 0.17098111320785114, 0.19936775213303015, 0.22723827035047817, 0.25459266786019574, 0.28143094466218277, 0.30775310075643925, 0.3335591361429653, 0.3588490508217608, 0.3836228447928257, 0.4078805180561601, 0.43162207061176405, 0.4548475024596378, 0.4775568135997805, 0.49975000403219294, 0.5214270737568748, 0.5425880227738261, 0.5632328510830469, 0.5833615586845371, 0.6029741455782969, 0.6220706117643261, 0.6406509572426249, 0.658715182013193, 0.6762632860760309, 0.6932952694311382, 0.7098111320785148, 0.7258108740181609, 0.7412944952500765, 0.7562619957742616, 0.7707133755907161, 0.7846486346994401, 0.7980677731004336, 0.8109707907936967, 0.8233576877792291, 0.8352284640570313, 0.8465831196271028, 0.8574216544894436, 0.8677440686440541, 0.877550362090934, 0.8868405348300833, 0.8956145868615021, 0.9038725181851904, 0.9116143288011482, 0.9188400187093755, 0.9255495879098723, 0.9317430364026387, 0.9374203641876744, 0.9425815712649795, 0.9472266576345543, 0.9513556232963983, 0.9549684682505121, 0.9580651924968951, 0.9606457960355478, 0.9627102788664699, 0.9642586409896614, 0.9652908824051225, 0.965807003112853, 0.965807003112853, 0.9652908824051225, 0.9642586409896614, 0.9627102788664699, 0.9606457960355478, 0.9580651924968953, 0.9549684682505121, 0.9513556232963984, 0.9472266576345543, 0.9425815712649797, 0.9374203641876744, 0.9317430364026388, 0.9255495879098725, 0.9188400187093758, 0.9116143288011485, 0.9038725181851905, 0.8956145868615023, 0.8868405348300834, 0.8775503620909342, 0.8677440686440542, 0.857421654489444, 0.8465831196271029, 0.8352284640570315, 0.8233576877792295, 0.8109707907936972, 0.798067773100434, 0.7846486346994404, 0.7707133755907165, 0.7562619957742618, 0.7412944952500768, 0.7258108740181611, 0.7098111320785152, 0.6932952694311384, 0.6762632860760315, 0.6587151820131936, 0.6406509572426251, 0.6220706117643267, 0.6029741455782972, 0.5833615586845377, 0.5632328510830471, 0.5425880227738267, 0.521427073756875, 0.4997500040321935, 0.47755681359978086, 0.45484750245963834, 0.4316220706117647, 0.40788051805616043, 0.3836228447928264, 0.3588490508217611, 0.33355913614296595, 0.3077531007564396, 0.28143094466218344, 0.2545926678601961, 0.22723827035047894, 0.19936775213303048, 0.17098111320785225, 0.1420783535749428, 0.11265947323430281, 0.08272447218593304, 0.052273350429831944, 0.021306107966001187, 0.010177255205561009, 0.042176739084852644, 0.07469234367187583, 0.10772406896662856, 0.14127191496911284, 0.17533588167932668, 0.20991596909727206, 0.24501217722294788, 0.28062450605635325, 0.31675295559749017, 0.3533975258463564, 0.39055821680295444, 0.4282350284672818, 0.4664279608393407, 0.5051370139191291, 0.5443621877066493, 0.5841034822018987, 0.6243608974048798, 0.6651344333155913, 0.7064240899340324, 0.748229867260205, 0.7905517652941072, 0.8333897840357409, 0.8767439234851038, 0.9206141836421986, 0.9650005645070228, 1.0099030660795787, 1.055321688359864, 1.1012564313478808, 1.1477072950436282, 1.194674279447105, 1.2421573845583134, 1.290156610377251, 1.3386719569039203, 1.3877034241383193, 1.4372510120804498, 1.4873147207303092, 1.537894550087901, 1.5889905001532219, 1.6406025709262746, 1.6927307624070576, 1.7453750745955698, 1.7985355074918141, 1.8522120610957877, 1.906404735407493, 1.961113530426927, 2.0163384461540934, 2.0720794825889888, 2.128336639731616, 2.185109917581974, 2.242399316140061, 2.30020483540588, 2.358526475379428, 2.417364236060708, 2.476718117449717, 2.536588119546458, 2.596974242350928, 2.65787648586313, 2.7192948500830614, 2.7812293350107247, 2.843679940646118, 2.9066466669892406, 2.9701295140400954, 3.034128481798681 ], [ 3.028451154013645, 2.9644521862550604, 2.9009693392042064, 2.838002612861083, 2.77555200722569, 2.713617522298027, 2.652199158078095, 2.591296914565894, 2.530910791761423, 2.471040789664683, 2.411686908275673, 2.3528491475943936, 2.294527507620845, 2.236721988355027, 2.179432589796939, 2.122659311946582, 2.0664021548039546, 2.0106611183690593, 1.9554362026418928, 1.9007274076224578, 1.8465347333107531, 1.792858179706779, 1.7396977468105357, 1.6870534346220225, 1.63492524314124, 1.5833131723681881, 1.5322172223028665, 1.481637392945275, 1.4315736842954152, 1.3820260963532847, 1.3329946291188852, 1.2844792825922164, 1.2364800567732779, 1.18899695166207, 1.1420299672585927, 1.0955791035628462, 1.0496443605748293, 1.004225738294544, 0.9593232367219882, 0.9149368558571642, 0.8710665957000694, 0.8277124562507057, 0.7848744375090726, 0.74255253947517, 0.7007467621489978, 0.6594571055305563, 0.6186835696198452, 0.5784261544168641, 0.5386848599216145, 0.4994596861340945, 0.4607506330543061, 0.4225577006822472, 0.38488088901791917, 0.3477201980613218, 0.3110756278124549, 0.2749471782713184, 0.2393348494379126, 0.20423864131223723, 0.16965855389429185, 0.13559458718407802, 0.10204674118159396, 0.069015015886841, 0.03649941129981782, 0.00449992742052574, 0.026983435751036122, 0.05795067821486721, 0.08840179997096798, 0.11833680101933808, 0.14775568135997774, 0.17665844099288686, 0.20504507991806586, 0.23291559813551388, 0.26026999564523146, 0.2871082724472185, 0.31343042854147496, 0.339236463928001, 0.3645263786067965, 0.3893001725778614, 0.4135578458411958, 0.43729939839679977, 0.4605248302446735, 0.48323414138481624, 0.5054273318172287, 0.5271044015419105, 0.5482653505588618, 0.5689101788680826, 0.5890388864695728, 0.6086514733633326, 0.6277479395493619, 0.6463282850276606, 0.6643925097982288, 0.6819406138610666, 0.6989725972161739, 0.7154884598635505, 0.7314882018031966, 0.7469718230351122, 0.7619393235592973, 0.7763907033757518, 0.7903259624844758, 0.8037451008854694, 0.8166481185787324, 0.8290350155642648, 0.840905791842067, 0.8522604474121385, 0.8630989822744793, 0.8734213964290898, 0.8832276898759697, 0.892517862615119, 0.9012919146465378, 0.9095498459702261, 0.917291656586184, 0.9245173464944112, 0.931226915694908, 0.9374203641876744, 0.9430976919727101, 0.9482588990500153, 0.95290398541959, 0.9570329510814342, 0.9606457960355478, 0.9637425202819309, 0.9663231238205835, 0.9683876066515056, 0.9699359687746971, 0.9709682101901582, 0.9714843308978887, 0.9714843308978888, 0.9709682101901582, 0.9699359687746972, 0.9683876066515056, 0.9663231238205835, 0.963742520281931, 0.9606457960355478, 0.9570329510814342, 0.95290398541959, 0.9482588990500154, 0.9430976919727101, 0.9374203641876745, 0.9312269156949082, 0.9245173464944115, 0.9172916565861842, 0.9095498459702263, 0.9012919146465381, 0.8925178626151191, 0.8832276898759699, 0.8734213964290899, 0.8630989822744797, 0.8522604474121386, 0.8409057918420673, 0.8290350155642652, 0.8166481185787329, 0.8037451008854697, 0.7903259624844761, 0.7763907033757522, 0.7619393235592975, 0.7469718230351126, 0.7314882018031968, 0.7154884598635509, 0.6989725972161741, 0.6819406138610672, 0.6643925097982293, 0.6463282850276608, 0.6277479395493624, 0.6086514733633329, 0.5890388864695735, 0.5689101788680828, 0.5482653505588624, 0.5271044015419108, 0.5054273318172293, 0.4832341413848166, 0.46052483024467405, 0.43729939839680043, 0.41355784584119615, 0.3893001725778621, 0.3645263786067968, 0.33923646392800166, 0.3134304285414753, 0.28710827244721915, 0.2602699956452318, 0.23291559813551466, 0.2050450799180662, 0.17665844099288797, 0.14775568135997852, 0.11833680101933852, 0.08840179997096875, 0.05795067821486766, 0.0269834357510369, 0.004499927420525296, 0.03649941129981693, 0.06901501588684011, 0.10204674118159285, 0.13559458718407713, 0.16965855389429096, 0.20423864131223635, 0.23933484943791217, 0.27494717827131754, 0.31107562781245446, 0.3477201980613207, 0.3848808890179187, 0.4225577006822461, 0.46075063305430497, 0.4994596861340934, 0.5386848599216136, 0.578426154416863, 0.618683569619844, 0.6594571055305556, 0.7007467621489967, 0.7425525394751693, 0.7848744375090715, 0.8277124562507052, 0.8710665957000681, 0.9149368558571629, 0.959323236721987, 1.0042257382945428, 1.049644360574828, 1.0955791035628448, 1.1420299672585923, 1.188996951662069, 1.2364800567732774, 1.284479282592215, 1.3329946291188843, 1.3820260963532833, 1.4315736842954139, 1.4816373929452733, 1.5322172223028652, 1.583313172368186, 1.6349252431412387, 1.6870534346220216, 1.739697746810534, 1.7928581797067782, 1.8465347333107518, 1.900727407622457, 1.955436202641891, 2.0106611183690575, 2.066402154803953, 2.12265931194658, 2.179432589796938, 2.236721988355025, 2.294527507620844, 2.3528491475943922, 2.411686908275672, 2.471040789664681, 2.530910791761422, 2.591296914565892, 2.652199158078094, 2.7136175222980254, 2.7755520072256887, 2.8380026128610822, 2.9009693392042046, 2.9644521862550595, 3.028451154013645 ], [ 3.02328994693634, 2.959290979177755, 2.895808132126901, 2.832841405783778, 2.770390800148385, 2.708456315220722, 2.6470379510007898, 2.5861357074885887, 2.525749584684118, 2.4658795825873776, 2.4065257011983676, 2.3476879405170883, 2.2893663005435396, 2.2315607812777216, 2.174271382719634, 2.1174981048692767, 2.0612409477266493, 2.005499911291754, 1.9502749955645875, 1.8955662005451526, 1.8413735262334479, 1.7876969726294738, 1.7345365397332304, 1.6818922275447172, 1.6297640360639347, 1.5781519652908829, 1.5270560152255612, 1.4764761858679698, 1.42641247721811, 1.3768648892759794, 1.32783342204158, 1.2793180755149112, 1.2313188496959726, 1.1838357445847647, 1.1368687601812875, 1.0904178964855409, 1.044483153497524, 0.9990645312172388, 0.9541620296446829, 0.909775648779859, 0.8659053886227641, 0.8225512491734004, 0.7797132304317673, 0.7373913323978647, 0.6955855550716925, 0.654295898453251, 0.6135223625425399, 0.5732649473395588, 0.5335236528443092, 0.49429847905678925, 0.4555894259770008, 0.4173964936049419, 0.3797196819406139, 0.34255899098401654, 0.30591442073514963, 0.26978597119401315, 0.23417364236060734, 0.19907743423493196, 0.16449734681698658, 0.13043338010677274, 0.09688553410428868, 0.06385380880953573, 0.031338204222512545, 0.0006612796567795343, 0.032144642828341286, 0.06311188529217238, 0.09356300704827314, 0.12349800809664324, 0.1529168884372829, 0.18181964807019202, 0.21020628699537103, 0.23807680521281904, 0.2654312027225366, 0.29226947952452365, 0.3185916356187801, 0.34439767100530616, 0.36968758568410165, 0.3944613796551666, 0.418719052918501, 0.44246060547410493, 0.46568603732197866, 0.4883953484621215, 0.5105885388945338, 0.5322656086192157, 0.553426557636167, 0.5740713859453878, 0.5942000935468781, 0.6138126804406379, 0.632909146626667, 0.6514894921049658, 0.6695537168755339, 0.6871018209383719, 0.704133804293479, 0.7206496669408556, 0.7366494088805018, 0.7521330301124174, 0.7671005306366024, 0.781551910453057, 0.7954871695617811, 0.8089063079627746, 0.8218093256560376, 0.8341962226415701, 0.8460669989193722, 0.8574216544894436, 0.8682601893517845, 0.8785826035063949, 0.8883888969532748, 0.8976790696924242, 0.9064531217238431, 0.9147110530475313, 0.9224528636634891, 0.9296785535717165, 0.9363881227722132, 0.9425815712649795, 0.9482588990500153, 0.9534201061273204, 0.9580651924968951, 0.9621941581587393, 0.965807003112853, 0.968903727359236, 0.9714843308978887, 0.9735488137288107, 0.9750971758520023, 0.9761294172674634, 0.9766455379751939, 0.9766455379751939, 0.9761294172674634, 0.9750971758520024, 0.9735488137288109, 0.9714843308978887, 0.9689037273592361, 0.965807003112853, 0.9621941581587394, 0.9580651924968953, 0.9534201061273206, 0.9482588990500154, 0.9425815712649797, 0.9363881227722134, 0.9296785535717167, 0.9224528636634893, 0.9147110530475314, 0.9064531217238433, 0.8976790696924243, 0.888388896953275, 0.878582603506395, 0.8682601893517848, 0.8574216544894437, 0.8460669989193725, 0.8341962226415705, 0.8218093256560381, 0.808906307962775, 0.7954871695617812, 0.7815519104530575, 0.7671005306366027, 0.7521330301124178, 0.736649408880502, 0.7206496669408562, 0.7041338042934793, 0.6871018209383724, 0.6695537168755344, 0.6514894921049661, 0.6329091466266676, 0.6138126804406381, 0.5942000935468785, 0.5740713859453881, 0.5534265576361675, 0.5322656086192159, 0.5105885388945344, 0.48839534846212185, 0.4656860373219792, 0.4424606054741056, 0.4187190529185013, 0.39446137965516725, 0.369687585684102, 0.3443976710053068, 0.31859163561878046, 0.2922694795245243, 0.26543120272253695, 0.23807680521281982, 0.21020628699537136, 0.18181964807019313, 0.15291688843728368, 0.12349800809664369, 0.09356300704827392, 0.06311188529217282, 0.03214464282834206, 0.0006612796567799784, 0.031338204222511656, 0.06385380880953484, 0.09688553410428757, 0.13043338010677186, 0.1644973468169857, 0.19907743423493107, 0.2341736423606069, 0.26978597119401226, 0.3059144207351492, 0.34255899098401543, 0.37971968194061345, 0.4173964936049408, 0.4555894259769997, 0.49429847905678814, 0.5335236528443084, 0.5732649473395577, 0.6135223625425388, 0.6542958984532503, 0.6955855550716914, 0.737391332397864, 0.7797132304317662, 0.8225512491734, 0.8659053886227628, 0.9097756487798576, 0.9541620296446818, 0.9990645312172375, 1.0444831534975227, 1.0904178964855396, 1.136868760181287, 1.1838357445847638, 1.2313188496959722, 1.2793180755149098, 1.327833422041579, 1.376864889275978, 1.4264124772181086, 1.476476185867968, 1.52705601522556, 1.5781519652908806, 1.6297640360639334, 1.6818922275447163, 1.7345365397332286, 1.787696972629473, 1.8413735262334465, 1.8955662005451517, 1.9502749955645857, 2.005499911291752, 2.0612409477266476, 2.117498104869275, 2.174271382719633, 2.23156078127772, 2.2893663005435387, 2.347687940517087, 2.4065257011983667, 2.465879582587376, 2.525749584684117, 2.586135707488587, 2.647037951000789, 2.70845631522072, 2.7703908001483835, 2.832841405783777, 2.8958081321268994, 2.959290979177754, 3.02328994693634 ], [ 3.0186448605667655, 2.9546458928081805, 2.8911630457573265, 2.8281963194142032, 2.76574571377881, 2.7038112288511473, 2.642392864631215, 2.581490621119014, 2.521104498314543, 2.461234496217803, 2.401880614828793, 2.3430428541475137, 2.284721214173965, 2.226915694908147, 2.169626296350059, 2.112853018499702, 2.0565958613570747, 2.0008548249221794, 1.9456299091950129, 1.890921114175578, 1.8367284398638732, 1.7830518862598992, 1.7298914533636558, 1.6772471411751426, 1.62511894969436, 1.5735068789213082, 1.5224109288559866, 1.4718310994983952, 1.4217673908485353, 1.3722198029064048, 1.3231883356720053, 1.2746729891453366, 1.226673763326398, 1.17919065821519, 1.1322236738117128, 1.0857728101159663, 1.0398380671279495, 0.9944194448476642, 0.9495169432751083, 0.9051305624102843, 0.8612603022531895, 0.8179061628038258, 0.7750681440621927, 0.7327462460282901, 0.6909404687021179, 0.6496508120836764, 0.6088772761729653, 0.5686198609699842, 0.5288785664747346, 0.48965339268721464, 0.4509443396074262, 0.4127514072353673, 0.3750745955710393, 0.33791390461444193, 0.301269334365575, 0.26514088482443854, 0.22952855599103272, 0.19443234786535735, 0.15985226044741196, 0.12578829373719813, 0.09224044773471407, 0.059208722439961115, 0.02669311785293793, 0.005306366026354259, 0.03678972919791601, 0.0677569716617471, 0.09820809341784786, 0.12814309446621797, 0.15756197480685763, 0.18646473443976674, 0.21485137336494575, 0.24272189158239377, 0.27007628909211134, 0.29691456589409837, 0.32323672198835485, 0.3490427573748809, 0.3743326720536764, 0.3991064660247413, 0.4233641392880757, 0.44710569184367965, 0.4703311236915534, 0.49304043483169613, 0.5152336252641085, 0.5369106949887904, 0.5580716440057417, 0.5787164723149625, 0.5988451799164527, 0.6184577668102125, 0.6375542329962417, 0.6561345784745405, 0.6741988032451086, 0.6917469073079465, 0.7087788906630538, 0.7252947533104304, 0.7412944952500765, 0.7567781164819921, 0.7717456170061772, 0.7861969968226317, 0.8001322559313557, 0.8135513943323492, 0.8264544120256123, 0.8388413090111447, 0.8507120852889469, 0.8620667408590184, 0.8729052757213592, 0.8832276898759697, 0.8930339833228496, 0.9023241560619989, 0.9110982080934177, 0.919356139417106, 0.9270979500330638, 0.9343236399412911, 0.9410332091417879, 0.9472266576345543, 0.95290398541959, 0.9580651924968951, 0.9627102788664699, 0.9668392445283139, 0.9704520894824277, 0.9735488137288107, 0.9761294172674634, 0.9781939000983855, 0.979742262221577, 0.9807745036370381, 0.9812906243447685, 0.9812906243447685, 0.9807745036370381, 0.979742262221577, 0.9781939000983855, 0.9761294172674634, 0.9735488137288109, 0.9704520894824277, 0.966839244528314, 0.9627102788664699, 0.9580651924968953, 0.95290398541959, 0.9472266576345544, 0.9410332091417881, 0.9343236399412914, 0.927097950033064, 0.9193561394171061, 0.9110982080934179, 0.902324156061999, 0.8930339833228498, 0.8832276898759698, 0.8729052757213596, 0.8620667408590185, 0.8507120852889472, 0.8388413090111451, 0.8264544120256128, 0.8135513943323496, 0.800132255931356, 0.7861969968226321, 0.7717456170061774, 0.7567781164819924, 0.7412944952500767, 0.7252947533104308, 0.708778890663054, 0.6917469073079471, 0.6741988032451092, 0.6561345784745407, 0.6375542329962423, 0.6184577668102128, 0.5988451799164533, 0.5787164723149627, 0.5580716440057423, 0.5369106949887906, 0.5152336252641091, 0.49304043483169646, 0.47033112369155394, 0.4471056918436803, 0.42336413928807604, 0.399106466024742, 0.3743326720536767, 0.34904275737488155, 0.3232367219883552, 0.29691456589409904, 0.2700762890921117, 0.24272189158239454, 0.21485137336494609, 0.18646473443976785, 0.1575619748068584, 0.1281430944662184, 0.09820809341784864, 0.06775697166174754, 0.03678972919791679, 0.005306366026354703, 0.026693117852937043, 0.059208722439960226, 0.09224044773471296, 0.12578829373719724, 0.15985226044741108, 0.19443234786535646, 0.22952855599103228, 0.26514088482443765, 0.30126933436557457, 0.3379139046144408, 0.37507459557103884, 0.4127514072353662, 0.4509443396074251, 0.48965339268721353, 0.5288785664747337, 0.5686198609699831, 0.6088772761729642, 0.6496508120836757, 0.6909404687021168, 0.7327462460282894, 0.7750681440621916, 0.8179061628038253, 0.8612603022531882, 0.905130562410283, 0.9495169432751072, 0.9944194448476629, 1.0398380671279481, 1.085772810115965, 1.1322236738117124, 1.1791906582151892, 1.2266737633263975, 1.2746729891453352, 1.3231883356720044, 1.3722198029064034, 1.421767390848534, 1.4718310994983934, 1.5224109288559853, 1.573506878921306, 1.6251189496943588, 1.6772471411751417, 1.729891453363654, 1.7830518862598983, 1.836728439863872, 1.890921114175577, 1.945629909195011, 2.0008548249221776, 2.056595861357073, 2.1128530184997003, 2.1696262963500583, 2.2269156949081452, 2.284721214173964, 2.3430428541475123, 2.401880614828792, 2.461234496217801, 2.5211044983145423, 2.5814906211190123, 2.6423928646312143, 2.7038112288511456, 2.765745713778809, 2.8281963194142024, 2.8911630457573247, 2.9546458928081796, 3.0186448605667655 ], [ 3.014515894904921, 2.9505169271463365, 2.8870340800954826, 2.8240673537523593, 2.7616167481169662, 2.6996822631893034, 2.638263898969371, 2.57736165545717, 2.5169755326526992, 2.457105530555959, 2.397751649166949, 2.3389138884856697, 2.280592248512121, 2.222786729246303, 2.1654973306882153, 2.108724052837858, 2.0524668956952308, 1.9967258592603354, 1.941500943533169, 1.886792148513734, 1.8325994742020293, 1.7789229205980552, 1.7257624877018118, 1.6731181755132987, 1.6209899840325162, 1.5693779132594643, 1.5182819631941427, 1.4677021338365512, 1.4176384251866914, 1.3680908372445608, 1.3190593700101614, 1.2705440234834926, 1.222544797664554, 1.1750616925533461, 1.128094708149869, 1.0816438444541223, 1.0357091014661055, 0.99029047918582, 0.9453879776132641, 0.9010015967484402, 0.8571313365913453, 0.8137771971419816, 0.7709391784003485, 0.7286172803664459, 0.6868115030402737, 0.6455218464218322, 0.6047483105111211, 0.56449089530814, 0.5247496008128905, 0.48552442702537046, 0.446815373945582, 0.4086224415735231, 0.3709456299091951, 0.33378493895259775, 0.29714036870373084, 0.26101191916259436, 0.22539959032918855, 0.19030338220351317, 0.1557232947855678, 0.12165932807535396, 0.0881114820728699, 0.05507975677811694, 0.022564152191093756, 0.009435331688198434, 0.040918694859760185, 0.07188593732359128, 0.10233705907969204, 0.13227206012806214, 0.1616909404687018, 0.19059370010161092, 0.21898033902678993, 0.24685085724423794, 0.2742052547539555, 0.30104353155594255, 0.327365687650199, 0.35317172303672506, 0.37846163771552055, 0.4032354316865855, 0.4274931049499199, 0.45123465750552383, 0.47446008935339756, 0.4971694004935403, 0.5193625909259527, 0.5410396606506345, 0.5622006096675858, 0.5828454379768067, 0.6029741455782969, 0.6225867324720566, 0.6416831986580859, 0.6602635441363847, 0.6783277689069528, 0.6958758729697907, 0.7129078563248978, 0.7294237189722745, 0.7454234609119206, 0.7609070821438363, 0.7758745826680213, 0.7903259624844758, 0.8042612215931999, 0.8176803599941934, 0.8305833776874565, 0.8429702746729889, 0.8548410509507911, 0.8661957065208625, 0.8770342413832034, 0.8873566555378138, 0.8971629489846936, 0.9064531217238431, 0.9152271737552619, 0.9234851050789502, 0.931226915694908, 0.9384526056031353, 0.9451621748036321, 0.9513556232963983, 0.9570329510814342, 0.9621941581587393, 0.9668392445283139, 0.9709682101901581, 0.9745810551442717, 0.9776777793906549, 0.9802583829293076, 0.9823228657602296, 0.9838712278834212, 0.9849034692988823, 0.9854195900066127, 0.9854195900066127, 0.9849034692988823, 0.9838712278834212, 0.9823228657602296, 0.9802583829293076, 0.977677779390655, 0.9745810551442718, 0.9709682101901582, 0.966839244528314, 0.9621941581587394, 0.9570329510814342, 0.9513556232963986, 0.9451621748036322, 0.9384526056031356, 0.9312269156949082, 0.9234851050789503, 0.9152271737552621, 0.9064531217238432, 0.897162948984694, 0.887356655537814, 0.8770342413832037, 0.8661957065208626, 0.8548410509507913, 0.8429702746729892, 0.8305833776874569, 0.8176803599941938, 0.8042612215932001, 0.7903259624844763, 0.7758745826680216, 0.7609070821438366, 0.7454234609119208, 0.729423718972275, 0.7129078563248981, 0.6958758729697911, 0.6783277689069533, 0.6602635441363849, 0.6416831986580864, 0.6225867324720569, 0.6029741455782974, 0.5828454379768069, 0.5622006096675864, 0.5410396606506348, 0.5193625909259533, 0.49716940049354064, 0.4744600893533981, 0.4512346575055245, 0.4274931049499202, 0.40323543168658615, 0.3784616377155209, 0.3531717230367257, 0.32736568765019936, 0.3010435315559432, 0.27420525475395585, 0.24685085724423872, 0.21898033902679026, 0.19059370010161203, 0.16169094046870258, 0.13227206012806259, 0.10233705907969282, 0.07188593732359172, 0.04091869485976096, 0.009435331688198878, 0.022564152191092868, 0.05507975677811605, 0.08811148207286879, 0.12165932807535307, 0.1557232947855669, 0.19030338220351228, 0.2253995903291881, 0.2610119191625935, 0.2971403687037304, 0.33378493895259664, 0.37094562990919466, 0.408622441573522, 0.4468153739455809, 0.48552442702536935, 0.5247496008128896, 0.5644908953081389, 0.60474831051112, 0.6455218464218315, 0.6868115030402726, 0.7286172803664452, 0.7709391784003474, 0.8137771971419812, 0.857131336591344, 0.9010015967484388, 0.945387977613263, 0.9902904791858187, 1.0357091014661042, 1.081643844454121, 1.1280947081498685, 1.1750616925533452, 1.2225447976645536, 1.2705440234834913, 1.3190593700101605, 1.3680908372445595, 1.41763842518669, 1.4677021338365495, 1.5182819631941413, 1.569377913259462, 1.6209899840325148, 1.6731181755132978, 1.72576248770181, 1.7789229205980543, 1.832599474202028, 1.8867921485137331, 1.9415009435331672, 1.9967258592603336, 2.052466895695229, 2.1087240528378564, 2.1654973306882144, 2.2227867292463013, 2.28059224851212, 2.3389138884856684, 2.397751649166948, 2.4571055305559573, 2.5169755326526984, 2.5773616554571683, 2.6382638989693703, 2.6996822631893016, 2.761616748116965, 2.8240673537523584, 2.887034080095481, 2.9505169271463356, 3.014515894904921 ], [ 3.010903049950807, 2.9469040821922228, 2.883421235141369, 2.8204545087982456, 2.7580039031628525, 2.6960694182351896, 2.6346510540152575, 2.5737488105030564, 2.5133626876985855, 2.4534926856018453, 2.3941388042128353, 2.335301043531556, 2.2769794035580073, 2.2191738842921893, 2.1618844857341015, 2.1051112078837444, 2.048854050741117, 1.9931130143062217, 1.9378880985790552, 1.8831793035596203, 1.8289866292479156, 1.7753100756439415, 1.722149642747698, 1.669505330559185, 1.6173771390784024, 1.5657650683053506, 1.514669118240029, 1.4640892888824375, 1.4140255802325776, 1.364477992290447, 1.3154465250560476, 1.2669311785293789, 1.2189319527104403, 1.1714488475992324, 1.1244818631957552, 1.0780309995000086, 1.0320962565119918, 0.9866776342317065, 0.9417751326591506, 0.8973887517943266, 0.8535184916372318, 0.8101643521878681, 0.767326333446235, 0.7250044354123324, 0.6831986580861602, 0.6419090014677187, 0.6011354655570076, 0.5608780503540265, 0.521136755858777, 0.48191158207125695, 0.4432025289914685, 0.4050095966194096, 0.3673327849550816, 0.33017209399848424, 0.2935275237496173, 0.25739907420848085, 0.22178674537507503, 0.18669053724939966, 0.15211044983145428, 0.11804648312124044, 0.08449863711875638, 0.051466911824003425, 0.01895130723698024, 0.01304817664231206, 0.04453153981387381, 0.0754987822777049, 0.10594990403380566, 0.13588490508217577, 0.16530378542281543, 0.19420654505572454, 0.22259318398090355, 0.25046370219835157, 0.27781809970806914, 0.30465637651005617, 0.33097853260431265, 0.3567845679908387, 0.3820744826696342, 0.4068482766406991, 0.4311059499040335, 0.45484750245963745, 0.4780729343075112, 0.500782245447654, 0.5229754358800663, 0.5446525056047482, 0.5658134546216995, 0.5864582829309203, 0.6065869905324106, 0.6261995774261704, 0.6452960436121995, 0.6638763890904983, 0.6819406138610664, 0.6994887179239044, 0.7165207012790116, 0.7330365639263882, 0.7490363058660343, 0.7645199270979499, 0.779487427622135, 0.7939388074385895, 0.8078740665473135, 0.821293204948307, 0.83419622264157, 0.8465831196271025, 0.8584538959049046, 0.8698085514749762, 0.880647086337317, 0.8909695004919275, 0.9007757939388072, 0.9100659666779567, 0.9188400187093755, 0.9270979500330638, 0.9348397606490216, 0.9420654505572489, 0.9487750197577457, 0.9549684682505121, 0.9606457960355478, 0.965807003112853, 0.9704520894824277, 0.9745810551442717, 0.9781939000983855, 0.9812906243447685, 0.9838712278834212, 0.9859357107143433, 0.9874840728375348, 0.9885163142529959, 0.9890324349607263, 0.9890324349607265, 0.9885163142529959, 0.9874840728375349, 0.9859357107143433, 0.9838712278834212, 0.9812906243447687, 0.9781939000983855, 0.9745810551442718, 0.9704520894824277, 0.9658070031128531, 0.9606457960355478, 0.9549684682505122, 0.9487750197577459, 0.9420654505572492, 0.9348397606490219, 0.9270979500330639, 0.9188400187093757, 0.9100659666779568, 0.9007757939388076, 0.8909695004919276, 0.8806470863373174, 0.8698085514749763, 0.8584538959049051, 0.8465831196271029, 0.8341962226415706, 0.8212932049483075, 0.8078740665473138, 0.7939388074385899, 0.7794874276221352, 0.7645199270979504, 0.7490363058660345, 0.7330365639263887, 0.7165207012790118, 0.6994887179239049, 0.681940613861067, 0.6638763890904986, 0.6452960436122002, 0.6261995774261706, 0.606586990532411, 0.5864582829309206, 0.5658134546217001, 0.5446525056047484, 0.5229754358800669, 0.5007822454476543, 0.47807293430751174, 0.4548475024596381, 0.43110594990403384, 0.4068482766406998, 0.3820744826696345, 0.35678456799083935, 0.330978532604313, 0.30465637651005684, 0.2778180997080695, 0.25046370219835234, 0.22259318398090389, 0.19420654505572565, 0.1653037854228162, 0.1358849050821762, 0.10594990403380644, 0.07549878227770535, 0.04453153981387459, 0.013048176642312503, 0.018951307236979353, 0.05146691182400254, 0.08449863711875527, 0.11804648312123955, 0.1521104498314534, 0.18669053724939877, 0.2217867453750746, 0.25739907420847996, 0.2935275237496169, 0.33017209399848313, 0.36733278495508115, 0.4050095966194085, 0.4432025289914674, 0.48191158207125584, 0.5211367558587761, 0.5608780503540254, 0.6011354655570065, 0.641909001467718, 0.6831986580861591, 0.7250044354123317, 0.7673263334462339, 0.8101643521878676, 0.8535184916372305, 0.8973887517943253, 0.9417751326591495, 0.9866776342317052, 1.0320962565119904, 1.0780309995000072, 1.1244818631957547, 1.1714488475992315, 1.2189319527104399, 1.2669311785293775, 1.3154465250560468, 1.3644779922904458, 1.4140255802325763, 1.4640892888824357, 1.5146691182400276, 1.5657650683053483, 1.617377139078401, 1.669505330559184, 1.7221496427476963, 1.7753100756439406, 1.8289866292479142, 1.8831793035596194, 1.9378880985790534, 1.99311301430622, 2.0488540507411153, 2.1051112078837426, 2.1618844857341006, 2.2191738842921875, 2.2769794035580064, 2.3353010435315547, 2.3941388042128344, 2.4534926856018435, 2.5133626876985846, 2.5737488105030546, 2.6346510540152566, 2.696069418235188, 2.758003903162851, 2.8204545087982447, 2.883421235141367, 2.946904082192222, 3.010903049950807 ], [ 3.007806325704424, 2.9438073579458397, 2.8803245108949858, 2.8173577845518625, 2.7549071789164694, 2.6929726939888066, 2.6315543297688744, 2.5706520862566733, 2.5102659634522024, 2.4503959613554622, 2.3910420799664522, 2.332204319285173, 2.2738826793116242, 2.2160771600458062, 2.1587877614877184, 2.1020144836373613, 2.045757326494734, 1.9900162900598386, 1.9347913743326721, 1.8800825793132372, 1.8258899050015325, 1.7722133513975584, 1.719052918501315, 1.6664086063128019, 1.6142804148320193, 1.5626683440589675, 1.5115723939936458, 1.4609925646360544, 1.4109288559861946, 1.361381268044064, 1.3123498008096646, 1.2638344542829958, 1.2158352284640572, 1.1683521233528493, 1.121385138949372, 1.0749342752536255, 1.0289995322656087, 0.9835809099853232, 0.9386784084127673, 0.8942920275479433, 0.8504217673908485, 0.8070676279414848, 0.7642296091998517, 0.7219077111659491, 0.6801019338397769, 0.6388122772213354, 0.5980387413106243, 0.5577813261076432, 0.5180400316123936, 0.47881485782487365, 0.4401058047450852, 0.4019128723730263, 0.3642360607086983, 0.32707536975210094, 0.290430799503234, 0.25430234996209755, 0.21869002112869174, 0.18359381300301636, 0.14901372558507098, 0.11494975887485714, 0.08140191287237308, 0.04837018757762013, 0.015854582990596944, 0.016144900888695135, 0.047628264060256886, 0.07859550652408798, 0.10904662828018874, 0.13898162932855884, 0.1684005096691985, 0.19730326930210762, 0.22568990822728663, 0.25356042644473464, 0.2809148239544522, 0.30775310075643925, 0.3340752568506957, 0.35988129223722176, 0.38517120691601725, 0.4099450008870822, 0.4342026741504166, 0.45794422670602053, 0.48116965855389426, 0.5038789696940371, 0.5260721601264495, 0.5477492298511313, 0.5689101788680826, 0.5895550071773035, 0.6096837147787937, 0.6292963016725535, 0.6483927678585827, 0.6669731133368815, 0.6850373381074496, 0.7025854421702875, 0.7196174255253946, 0.7361332881727713, 0.7521330301124174, 0.767616651344333, 0.782584151868518, 0.7970355316849727, 0.8109707907936967, 0.8243899291946902, 0.8372929468879532, 0.8496798438734857, 0.8615506201512878, 0.8729052757213592, 0.8837438105837001, 0.8940662247383105, 0.9038725181851904, 0.9131626909243398, 0.9219367429557587, 0.9301946742794469, 0.9379364848954048, 0.9451621748036321, 0.9518717440041288, 0.9580651924968951, 0.9637425202819309, 0.968903727359236, 0.9735488137288107, 0.9776777793906549, 0.9812906243447685, 0.9843873485911517, 0.9869679521298043, 0.9890324349607263, 0.990580797083918, 0.991613038499379, 0.9921291592071095, 0.9921291592071095, 0.991613038499379, 0.990580797083918, 0.9890324349607265, 0.9869679521298044, 0.9843873485911517, 0.9812906243447685, 0.977677779390655, 0.9735488137288109, 0.9689037273592362, 0.963742520281931, 0.9580651924968953, 0.951871744004129, 0.9451621748036323, 0.9379364848954049, 0.9301946742794471, 0.9219367429557589, 0.9131626909243399, 0.9038725181851907, 0.8940662247383107, 0.8837438105837004, 0.8729052757213593, 0.8615506201512881, 0.849679843873486, 0.8372929468879537, 0.8243899291946906, 0.8109707907936968, 0.7970355316849731, 0.7825841518685183, 0.7676166513443334, 0.7521330301124176, 0.7361332881727718, 0.7196174255253949, 0.702585442170288, 0.6850373381074502, 0.6669731133368817, 0.6483927678585832, 0.6292963016725537, 0.6096837147787942, 0.5895550071773037, 0.5689101788680833, 0.5477492298511316, 0.5260721601264501, 0.5038789696940374, 0.4811696585538948, 0.4579442267060212, 0.4342026741504169, 0.40994500088708286, 0.3851712069160176, 0.3598812922372224, 0.33407525685069606, 0.3077531007564399, 0.28091482395445255, 0.2535604264447354, 0.22568990822728696, 0.19730326930210873, 0.16840050966919928, 0.1389816293285593, 0.10904662828018952, 0.07859550652408842, 0.04762826406025766, 0.01614490088869558, 0.015854582990596056, 0.04837018757761924, 0.08140191287237197, 0.11494975887485626, 0.1490137255850701, 0.18359381300301547, 0.2186900211286913, 0.25430234996209666, 0.2904307995032336, 0.32707536975209983, 0.36423606070869785, 0.4019128723730252, 0.4401058047450841, 0.47881485782487254, 0.5180400316123928, 0.5577813261076421, 0.5980387413106232, 0.6388122772213347, 0.6801019338397758, 0.7219077111659484, 0.7642296091998506, 0.8070676279414843, 0.8504217673908472, 0.894292027547942, 0.9386784084127662, 0.9835809099853219, 1.0289995322656074, 1.0749342752536242, 1.1213851389493716, 1.1683521233528484, 1.2158352284640568, 1.2638344542829945, 1.3123498008096637, 1.3613812680440627, 1.4109288559861932, 1.4609925646360526, 1.5115723939936445, 1.5626683440589653, 1.614280414832018, 1.666408606312801, 1.7190529185013133, 1.7722133513975575, 1.8258899050015311, 1.8800825793132363, 1.9347913743326703, 1.9900162900598368, 2.045757326494732, 2.1020144836373595, 2.1587877614877176, 2.2160771600458045, 2.2738826793116234, 2.3322043192851716, 2.3910420799664514, 2.4503959613554605, 2.5102659634522015, 2.5706520862566715, 2.6315543297688735, 2.692972693988805, 2.754907178916468, 2.8173577845518616, 2.880324510894984, 2.943807357945839, 3.007806325704424 ], [ 3.005225722165772, 2.941226754407187, 2.877743907356333, 2.8147771810132096, 2.7523265753778166, 2.6903920904501537, 2.6289737262302215, 2.5680714827180204, 2.5076853599135496, 2.4478153578168094, 2.3884614764277994, 2.32962371574652, 2.2713020757729714, 2.2134965565071534, 2.1562071579490656, 2.0994338800987085, 2.043176722956081, 1.9874356865211857, 1.9322107707940193, 1.8775019757745843, 1.8233093014628796, 1.7696327478589056, 1.7164723149626622, 1.663828002774149, 1.6116998112933665, 1.5600877405203146, 1.508991790454993, 1.4584119610974016, 1.4083482524475417, 1.3588006645054111, 1.3097691972710117, 1.261253850744343, 1.2132546249254044, 1.1657715198141965, 1.1188045354107192, 1.0723536717149726, 1.0264189287269558, 0.9810003064466708, 0.9360978048741149, 0.8917114240092909, 0.8478411638521961, 0.8044870244028324, 0.7616490056611993, 0.7193271076272967, 0.6775213303011245, 0.636231673682683, 0.5954581377719719, 0.5552007225689908, 0.5154594280737412, 0.47623425428622124, 0.4375252012064328, 0.3993322688343739, 0.3616554571700459, 0.3244947662134485, 0.2878501959645816, 0.25172174642344514, 0.21610941759003932, 0.18101320946436394, 0.14643312204641856, 0.11236915533620473, 0.07882130933372067, 0.04578958403896771, 0.013273979451944529, 0.018725504427347772, 0.05020886759890952, 0.08117611006274061, 0.11162723181884138, 0.14156223286721148, 0.17098111320785114, 0.19988387284076026, 0.22827051176593927, 0.2561410299833873, 0.28349542749310486, 0.3103337042950919, 0.33665586038934836, 0.3624618957758744, 0.3877518104546699, 0.4125256044257348, 0.4367832776890692, 0.46052483024467317, 0.4837502620925469, 0.5064595732326898, 0.528652763665102, 0.5503298333897839, 0.5714907824067352, 0.592135610715956, 0.6122643183174463, 0.6318769052112061, 0.6509733713972352, 0.669553716875534, 0.6876179416461021, 0.7051660457089401, 0.7221980290640473, 0.7387138917114239, 0.75471363365107, 0.7701972548829856, 0.7851647554071707, 0.7996161352236253, 0.8135513943323494, 0.8269705327333428, 0.8398735504266058, 0.8522604474121382, 0.8641312236899404, 0.8754858792600119, 0.8863244141223527, 0.8966468282769632, 0.9064531217238431, 0.9157432944629924, 0.9245173464944112, 0.9327752778180995, 0.9405170884340573, 0.9477427783422847, 0.9544523475427814, 0.9606457960355478, 0.9663231238205835, 0.9714843308978887, 0.9761294172674634, 0.9802583829293076, 0.9838712278834212, 0.9869679521298043, 0.9895485556684569, 0.991613038499379, 0.9931614006225705, 0.9941936420380316, 0.9947097627457622, 0.9947097627457622, 0.9941936420380316, 0.9931614006225706, 0.991613038499379, 0.9895485556684569, 0.9869679521298044, 0.9838712278834212, 0.9802583829293077, 0.9761294172674634, 0.9714843308978888, 0.9663231238205835, 0.9606457960355479, 0.9544523475427816, 0.9477427783422849, 0.9405170884340576, 0.9327752778180997, 0.9245173464944115, 0.9157432944629925, 0.9064531217238433, 0.8966468282769633, 0.8863244141223531, 0.875485879260012, 0.8641312236899408, 0.8522604474121387, 0.8398735504266064, 0.8269705327333432, 0.8135513943323495, 0.7996161352236256, 0.7851647554071709, 0.7701972548829861, 0.7547136336510702, 0.7387138917114244, 0.7221980290640475, 0.7051660457089406, 0.6876179416461027, 0.6695537168755343, 0.6509733713972359, 0.6318769052112063, 0.6122643183174468, 0.5921356107159563, 0.5714907824067358, 0.5503298333897841, 0.5286527636651026, 0.50645957323269, 0.48375026209254746, 0.46052483024467383, 0.43678327768906955, 0.4125256044257355, 0.3877518104546702, 0.36246189577587506, 0.3366558603893487, 0.31033370429509255, 0.2834954274931052, 0.25614102998338806, 0.2282705117659396, 0.19988387284076137, 0.17098111320785192, 0.14156223286721192, 0.11162723181884215, 0.08117611006274106, 0.0502088675989103, 0.018725504427348216, 0.01327397945194364, 0.045789584038966824, 0.07882130933371956, 0.11236915533620384, 0.14643312204641767, 0.18101320946436306, 0.21610941759003888, 0.25172174642344425, 0.28785019596458117, 0.3244947662134474, 0.36165545717004544, 0.3993322688343728, 0.4375252012064317, 0.4762342542862201, 0.5154594280737403, 0.5552007225689897, 0.5954581377719708, 0.6362316736826823, 0.6775213303011234, 0.719327107627296, 0.7616490056611982, 0.8044870244028319, 0.8478411638521948, 0.8917114240092896, 0.9360978048741138, 0.9810003064466695, 1.0264189287269545, 1.0723536717149713, 1.1188045354107188, 1.1657715198141956, 1.213254624925404, 1.2612538507443416, 1.3097691972710108, 1.3588006645054098, 1.4083482524475404, 1.4584119610973998, 1.5089917904549917, 1.5600877405203124, 1.6116998112933651, 1.663828002774148, 1.7164723149626604, 1.7696327478589047, 1.8233093014628783, 1.8775019757745834, 1.9322107707940175, 1.987435686521184, 2.0431767229560793, 2.0994338800987067, 2.1562071579490647, 2.2134965565071516, 2.2713020757729705, 2.3296237157465187, 2.3884614764277985, 2.4478153578168076, 2.5076853599135487, 2.5680714827180187, 2.6289737262302206, 2.690392090450152, 2.752326575377815, 2.8147771810132087, 2.877743907356331, 2.941226754407186, 3.005225722165772 ], [ 3.0031612393348492, 2.939162271576265, 2.875679424525411, 2.812712698182288, 2.750262092546895, 2.688327607619232, 2.6269092433992998, 2.5660069998870987, 2.505620877082628, 2.4457508749858876, 2.3863969935968776, 2.3275592329155983, 2.2692375929420496, 2.2114320736762316, 2.154142675118144, 2.0973693972677867, 2.0411122401251593, 1.985371203690264, 1.9301462879630975, 1.8754374929436626, 1.8212448186319579, 1.7675682650279838, 1.7144078321317404, 1.6617635199432272, 1.6096353284624447, 1.5580232576893929, 1.5069273076240712, 1.4563474782664798, 1.40628376961662, 1.3567361816744894, 1.30770471444009, 1.2591893679134212, 1.2111901420944826, 1.1637070369832747, 1.1167400525797975, 1.070289188884051, 1.024354445896034, 0.9789358236157486, 0.9340333220431927, 0.8896469411783687, 0.8457766810212739, 0.8024225415719102, 0.7595845228302771, 0.7172626247963745, 0.6754568474702023, 0.6341671908517608, 0.5933936549410497, 0.5531362397380686, 0.513394945242819, 0.47416977145529904, 0.4354607183755106, 0.3972677860034517, 0.3595909743391237, 0.32243028338252633, 0.2857857131336594, 0.24965726359252294, 0.21404493475911712, 0.17894872663344175, 0.14436863921549636, 0.11030467250528253, 0.07675682650279847, 0.043725101208045514, 0.01120949662102233, 0.02078998725826986, 0.05227335042983161, 0.0832405928936627, 0.11369171464976346, 0.14362671569813357, 0.17304559603877323, 0.20194835567168234, 0.23033499459686135, 0.25820551281430937, 0.28555991032402694, 0.31239818712601397, 0.33872034322027045, 0.3645263786067965, 0.389816293285592, 0.4145900872566569, 0.4388477605199913, 0.46258931307559525, 0.485814744923469, 0.5085240560636117, 0.5307172464960241, 0.552394316220706, 0.5735552652376573, 0.5942000935468781, 0.6143288011483683, 0.6339413880421281, 0.6530378542281574, 0.6716181997064561, 0.6896824244770243, 0.7072305285398621, 0.7242625118949694, 0.740778374542346, 0.7567781164819921, 0.7722617377139077, 0.7872292382380928, 0.8016806180545473, 0.8156158771632713, 0.829035015564265, 0.8419380332575279, 0.8543249302430604, 0.8661957065208625, 0.877550362090934, 0.8883888969532748, 0.8987113111078853, 0.9085176045547652, 0.9178077772939145, 0.9265818293253334, 0.9348397606490216, 0.9425815712649794, 0.9498072611732068, 0.9565168303737035, 0.9627102788664699, 0.9683876066515056, 0.9735488137288107, 0.9781939000983855, 0.9823228657602296, 0.9859357107143433, 0.9890324349607263, 0.991613038499379, 0.9936775213303011, 0.9952258834534926, 0.9962581248689537, 0.9967742455766843, 0.9967742455766843, 0.9962581248689537, 0.9952258834534927, 0.9936775213303011, 0.991613038499379, 0.9890324349607265, 0.9859357107143433, 0.9823228657602298, 0.9781939000983855, 0.9735488137288109, 0.9683876066515056, 0.96271027886647, 0.9565168303737037, 0.949807261173207, 0.9425815712649797, 0.9348397606490217, 0.9265818293253336, 0.9178077772939146, 0.9085176045547654, 0.8987113111078854, 0.8883888969532752, 0.8775503620909341, 0.8661957065208629, 0.8543249302430607, 0.8419380332575284, 0.8290350155642653, 0.8156158771632716, 0.8016806180545477, 0.787229238238093, 0.7722617377139082, 0.7567781164819923, 0.7407783745423464, 0.7242625118949696, 0.7072305285398627, 0.6896824244770248, 0.6716181997064563, 0.6530378542281579, 0.6339413880421284, 0.614328801148369, 0.5942000935468783, 0.5735552652376579, 0.5523943162207063, 0.5307172464960248, 0.5085240560636122, 0.48581474492346954, 0.4625893130755959, 0.43884776051999164, 0.4145900872566576, 0.3898162932855923, 0.36452637860679715, 0.3387203432202708, 0.31239818712601464, 0.2855599103240273, 0.25820551281431015, 0.2303349945968617, 0.20194835567168345, 0.173045596038774, 0.143626715698134, 0.11369171464976424, 0.08324059289366315, 0.05227335042983239, 0.020789987258270304, 0.011209496621021442, 0.043725101208044626, 0.07675682650279736, 0.11030467250528164, 0.14436863921549548, 0.17894872663344086, 0.21404493475911668, 0.24965726359252205, 0.28578571313365897, 0.3224302833825252, 0.35959097433912324, 0.3972677860034506, 0.4354607183755095, 0.47416977145529793, 0.5133949452428181, 0.5531362397380675, 0.5933936549410486, 0.6341671908517601, 0.6754568474702012, 0.7172626247963738, 0.759584522830276, 0.8024225415719097, 0.8457766810212726, 0.8896469411783674, 0.9340333220431916, 0.9789358236157473, 1.0243544458960328, 1.0702891888840496, 1.116740052579797, 1.1637070369832738, 1.2111901420944822, 1.2591893679134198, 1.307704714440089, 1.356736181674488, 1.4062837696166186, 1.456347478266478, 1.50692730762407, 1.5580232576893907, 1.6096353284624434, 1.6617635199432264, 1.7144078321317386, 1.767568265027983, 1.8212448186319565, 1.8754374929436617, 1.9301462879630957, 1.9853712036902622, 2.0411122401251576, 2.097369397267785, 2.154142675118143, 2.21143207367623, 2.2692375929420487, 2.327559232915597, 2.3863969935968767, 2.445750874985886, 2.505620877082627, 2.566006999887097, 2.626909243399299, 2.68832760761923, 2.7502620925468935, 2.812712698182287, 2.8756794245254094, 2.939162271576264, 3.0031612393348492 ], [ 3.0016128772116577, 2.937613909453073, 2.874131062402219, 2.811164336059096, 2.748713730423703, 2.68677924549604, 2.625360881276108, 2.5644586377639067, 2.504072514959436, 2.4442025128626956, 2.3848486314736856, 2.3260108707924063, 2.2676892308188576, 2.2098837115530396, 2.152594312994952, 2.0958210351445947, 2.0395638780019674, 1.983822841567072, 1.9285979258399055, 1.8738891308204706, 1.8196964565087659, 1.7660199029047918, 1.7128594700085484, 1.6602151578200353, 1.6080869663392527, 1.5564748955662009, 1.5053789455008793, 1.4547991161432878, 1.404735407493428, 1.3551878195512974, 1.306156352316898, 1.2576410057902292, 1.2096417799712906, 1.1621586748600827, 1.1151916904566055, 1.068740826760859, 1.022806083772842, 0.9773874614925571, 0.9324849599200011, 0.8880985790551772, 0.8442283188980824, 0.8008741794487186, 0.7580361607070856, 0.7157142626731829, 0.6739084853470108, 0.6326188287285692, 0.5918452928178581, 0.551587877614877, 0.5118465831196275, 0.4726214093321075, 0.43391235625231905, 0.39571942388026016, 0.35804261221593214, 0.3208819212593348, 0.2842373510104679, 0.2481089014693314, 0.21249657263592558, 0.1774003645102502, 0.14282027709230483, 0.10875631038209099, 0.07520846437960693, 0.042176739084853976, 0.009661134497830792, 0.022338349381461398, 0.05382171255302315, 0.08478895501685424, 0.115240076772955, 0.1451750778213251, 0.17459395816196477, 0.20349671779487388, 0.2318833567200529, 0.2597538749375009, 0.2871082724472185, 0.3139465492492055, 0.340268705343462, 0.366074740729988, 0.3913646554087835, 0.41613844937984845, 0.44039612264318284, 0.4641376751987868, 0.4873631070466605, 0.5100724181868033, 0.5322656086192157, 0.5539426783438975, 0.5751036273608489, 0.5957484556700696, 0.6158771632715598, 0.6354897501653196, 0.654586216351349, 0.6731665618296476, 0.6912307866002159, 0.7087788906630537, 0.7258108740181609, 0.7423267366655375, 0.7583264786051837, 0.7738100998370993, 0.7887776003612843, 0.8032289801777389, 0.817164239286463, 0.8305833776874565, 0.8434863953807195, 0.855873292366252, 0.8677440686440541, 0.8790987242141255, 0.8899372590764665, 0.9002596732310768, 0.9100659666779567, 0.919356139417106, 0.9281301914485249, 0.9363881227722133, 0.944129933388171, 0.9513556232963983, 0.958065192496895, 0.9642586409896614, 0.9699359687746971, 0.9750971758520023, 0.979742262221577, 0.9838712278834212, 0.9874840728375348, 0.990580797083918, 0.9931614006225705, 0.9952258834534926, 0.9967742455766841, 0.9978064869921452, 0.9983226076998758, 0.9983226076998758, 0.9978064869921452, 0.9967742455766843, 0.9952258834534927, 0.9931614006225706, 0.990580797083918, 0.9874840728375348, 0.9838712278834213, 0.9797422622215771, 0.9750971758520025, 0.9699359687746972, 0.9642586409896615, 0.9580651924968953, 0.9513556232963986, 0.9441299333881712, 0.9363881227722133, 0.9281301914485252, 0.9193561394171061, 0.9100659666779569, 0.9002596732310769, 0.8899372590764667, 0.8790987242141257, 0.8677440686440544, 0.8558732923662523, 0.84348639538072, 0.8305833776874568, 0.8171642392864631, 0.8032289801777392, 0.7887776003612845, 0.7738100998370997, 0.7583264786051839, 0.742326736665538, 0.7258108740181611, 0.7087788906630542, 0.6912307866002163, 0.6731665618296478, 0.6545862163513494, 0.6354897501653199, 0.6158771632715605, 0.5957484556700698, 0.5751036273608494, 0.5539426783438979, 0.5322656086192163, 0.5100724181868037, 0.4873631070466611, 0.46413767519878746, 0.4403961226431832, 0.4161384493798491, 0.39136465540878385, 0.3660747407299887, 0.3402687053434623, 0.3139465492492062, 0.2871082724472188, 0.2597538749375017, 0.23188335672005322, 0.203496717794875, 0.17459395816196555, 0.14517507782132555, 0.11524007677295578, 0.08478895501685468, 0.053821712553023926, 0.02233834938146184, 0.009661134497829904, 0.04217673908485309, 0.07520846437960582, 0.1087563103820901, 0.14282027709230394, 0.17740036451024932, 0.21249657263592514, 0.2481089014693305, 0.28423735101046743, 0.3208819212593337, 0.3580426122159317, 0.39571942388025905, 0.43391235625231794, 0.4726214093321064, 0.5118465831196266, 0.5515878776148759, 0.591845292817857, 0.6326188287285686, 0.6739084853470096, 0.7157142626731823, 0.7580361607070845, 0.8008741794487182, 0.844228318898081, 0.8880985790551759, 0.93248495992, 0.9773874614925557, 1.0228060837728408, 1.0687408267608576, 1.115191690456605, 1.1621586748600818, 1.2096417799712902, 1.2576410057902279, 1.306156352316897, 1.355187819551296, 1.4047354074934266, 1.454799116143286, 1.505378945500878, 1.5564748955661987, 1.6080869663392514, 1.6602151578200344, 1.7128594700085467, 1.766019902904791, 1.8196964565087645, 1.8738891308204697, 1.9285979258399037, 1.9838228415670702, 2.0395638780019656, 2.095821035144593, 2.152594312994951, 2.209883711553038, 2.2676892308188568, 2.326010870792405, 2.3848486314736848, 2.444202512862694, 2.504072514959435, 2.564458637763905, 2.625360881276107, 2.686779245496038, 2.7487137304237015, 2.811164336059095, 2.8741310624022174, 2.937613909453072, 3.0016128772116577 ], [ 3.0005806357961973, 2.9365816680376122, 2.8730988209867583, 2.810132094643635, 2.747681489008242, 2.685747004080579, 2.624328639860647, 2.563426396348446, 2.503040273543975, 2.4431702714472348, 2.3838163900582248, 2.3249786293769454, 2.2666569894033968, 2.2088514701375788, 2.151562071579491, 2.094788793729134, 2.0385316365865065, 1.9827906001516111, 1.9275656844244446, 1.8728568894050097, 1.818664215093305, 1.764987661489331, 1.7118272285930876, 1.6591829164045744, 1.6070547249237919, 1.55544265415074, 1.5043467040854184, 1.453766874727827, 1.403703166077967, 1.3541555781358365, 1.305124110901437, 1.2566087643747683, 1.2086095385558298, 1.1611264334446219, 1.1141594490411446, 1.067708585345398, 1.0217738423573812, 0.976355220077096, 0.93145271850454, 0.8870663376397161, 0.8431960774826213, 0.7998419380332575, 0.7570039192916245, 0.7146820212577218, 0.6728762439315497, 0.6315865873131081, 0.590813051402397, 0.5505556361994159, 0.5108143417041664, 0.4715891679166464, 0.43288011483685795, 0.39468718246479906, 0.35701037080047104, 0.3198496798438737, 0.2832051095950068, 0.2470766600538703, 0.21146433122046449, 0.1763681230947891, 0.14178803567684373, 0.1077240689666299, 0.07417622296414583, 0.04114449766939288, 0.008628893082369693, 0.023370590796922497, 0.05485395396848425, 0.08582119643231534, 0.1162723181884161, 0.1462073192367862, 0.17562619957742587, 0.20452895921033498, 0.232915598135514, 0.260786116352962, 0.2881405138626796, 0.3149787906646666, 0.3413009467589231, 0.3671069821454491, 0.3923968968242446, 0.41717069079530955, 0.44142836405864394, 0.4651699166142479, 0.4883953484621216, 0.5111046596022644, 0.5332978500346768, 0.5549749197593586, 0.57613586877631, 0.5967806970855307, 0.6169094046870209, 0.6365219915807807, 0.65561845776681, 0.6741988032451087, 0.692263028015677, 0.7098111320785148, 0.726843115433622, 0.7433589780809986, 0.7593587200206448, 0.7748423412525604, 0.7898098417767454, 0.8042612215931999, 0.818196480701924, 0.8316156191029176, 0.8445186367961806, 0.8569055337817131, 0.8687763100595152, 0.8801309656295866, 0.8909695004919275, 0.9012919146465379, 0.9110982080934178, 0.9203883808325671, 0.9291624328639859, 0.9374203641876743, 0.9451621748036321, 0.9523878647118593, 0.9590974339123561, 0.9652908824051225, 0.9709682101901582, 0.9761294172674634, 0.9807745036370381, 0.9849034692988823, 0.9885163142529959, 0.991613038499379, 0.9941936420380316, 0.9962581248689537, 0.9978064869921452, 0.9988387284076063, 0.9993548491153369, 0.9993548491153369, 0.9988387284076063, 0.9978064869921454, 0.9962581248689537, 0.9941936420380316, 0.9916130384993791, 0.9885163142529959, 0.9849034692988823, 0.9807745036370381, 0.9761294172674635, 0.9709682101901582, 0.9652908824051226, 0.9590974339123564, 0.9523878647118597, 0.9451621748036323, 0.9374203641876744, 0.9291624328639863, 0.9203883808325672, 0.911098208093418, 0.901291914646538, 0.8909695004919278, 0.8801309656295867, 0.8687763100595155, 0.8569055337817133, 0.844518636796181, 0.8316156191029179, 0.8181964807019242, 0.8042612215932003, 0.7898098417767456, 0.7748423412525608, 0.759358720020645, 0.743358978080999, 0.7268431154336222, 0.7098111320785153, 0.6922630280156774, 0.674198803245109, 0.6556184577668105, 0.636521991580781, 0.6169094046870216, 0.5967806970855309, 0.5761358687763105, 0.554974919759359, 0.5332978500346774, 0.5111046596022648, 0.4883953484621222, 0.46516991661424856, 0.4414283640586443, 0.4171706907953102, 0.39239689682424495, 0.3671069821454498, 0.3413009467589234, 0.3149787906646673, 0.2881405138626799, 0.2607861163529628, 0.23291559813551432, 0.2045289592103361, 0.17562619957742664, 0.14620731923678665, 0.11627231818841688, 0.08582119643231578, 0.054853953968485025, 0.02337059079692294, 0.008628893082368805, 0.04114449766939199, 0.07417622296414472, 0.107724068966629, 0.14178803567684284, 0.17636812309478822, 0.21146433122046404, 0.2470766600538694, 0.28320510959500633, 0.3198496798438726, 0.3570103708004706, 0.39468718246479795, 0.43288011483685684, 0.4715891679166453, 0.5108143417041655, 0.5505556361994148, 0.5908130514023959, 0.6315865873131075, 0.6728762439315485, 0.7146820212577212, 0.7570039192916234, 0.7998419380332571, 0.8431960774826199, 0.8870663376397148, 0.9314527185045389, 0.9763552200770946, 1.02177384235738, 1.0677085853453967, 1.1141594490411442, 1.161126433444621, 1.2086095385558293, 1.256608764374767, 1.3051241109014362, 1.3541555781358352, 1.4037031660779657, 1.4537668747278252, 1.504346704085417, 1.5554426541507378, 1.6070547249237905, 1.6591829164045735, 1.7118272285930858, 1.76498766148933, 1.8186642150933037, 1.8728568894050088, 1.9275656844244429, 1.9827906001516094, 2.0385316365865047, 2.094788793729132, 2.15156207157949, 2.208851470137577, 2.266656989403396, 2.324978629376944, 2.383816390058224, 2.443170271447233, 2.503040273543974, 2.563426396348444, 2.624328639860646, 2.6857470040805773, 2.7476814890082406, 2.810132094643634, 2.8730988209867565, 2.9365816680376113, 3.0005806357961973 ], [ 3.000064515088466, 2.9360655473298816, 2.8725827002790276, 2.8096159739359043, 2.7471653683005113, 2.6852308833728484, 2.6238125191529162, 2.562910275640715, 2.5025241528362443, 2.442654150739504, 2.383300269350494, 2.3244625086692148, 2.266140868695666, 2.208335349429848, 2.1510459508717603, 2.094272673021403, 2.038015515878776, 1.9822744794438805, 1.927049563716714, 1.872340768697279, 1.8181480943855743, 1.7644715407816003, 1.711311107885357, 1.6586667956968437, 1.6065386042160612, 1.5549265334430094, 1.5038305833776877, 1.4532507540200963, 1.4031870453702364, 1.3536394574281059, 1.3046079901937064, 1.2560926436670377, 1.208093417848099, 1.1606103127368912, 1.113643328333414, 1.0671924646376674, 1.0212577216496506, 0.9758390993693655, 0.9309365977968096, 0.8865502169319857, 0.8426799567748908, 0.7993258173255271, 0.756487798583894, 0.7141659005499914, 0.6723601232238192, 0.6310704666053777, 0.5902969306946666, 0.5500395154916855, 0.510298220996436, 0.47107304720891596, 0.4323639941291275, 0.3941710617570686, 0.3564942500927406, 0.31933355913614325, 0.28268898888727634, 0.24656053934613986, 0.21094821051273405, 0.17585200238705867, 0.1412719149691133, 0.10720794825889945, 0.0736601022564154, 0.04062837696166244, 0.008112772374639254, 0.023886711504653046, 0.0553700746762148, 0.08633731714004589, 0.11678843889614665, 0.14672343994451675, 0.17614232028515642, 0.20504507991806553, 0.23343171884324454, 0.26130223706069255, 0.28865663457041013, 0.31549491137239716, 0.34181706746665363, 0.3676231028531797, 0.39291301753197516, 0.4176868115030401, 0.4419444847663745, 0.46568603732197844, 0.4889114691698522, 0.5116207803099949, 0.5338139707424072, 0.5554910404670892, 0.5766519894840405, 0.5972968177932612, 0.6174255253947515, 0.6370381122885113, 0.6561345784745405, 0.6747149239528392, 0.6927791487234074, 0.7103272527862453, 0.7273592361413526, 0.743875098788729, 0.7598748407283753, 0.7753584619602909, 0.790325962484476, 0.8047773423009305, 0.8187126014096545, 0.832131739810648, 0.845034757503911, 0.8574216544894435, 0.8692924307672456, 0.880647086337317, 0.891485621199658, 0.9018080353542683, 0.9116143288011482, 0.9209045015402977, 0.9296785535717165, 0.9379364848954048, 0.9456782955113626, 0.9529039854195899, 0.9596135546200867, 0.965807003112853, 0.9714843308978887, 0.9766455379751939, 0.9812906243447685, 0.9854195900066127, 0.9890324349607263, 0.9921291592071095, 0.9947097627457622, 0.9967742455766843, 0.9983226076998758, 0.9993548491153369, 0.9998709698230673, 0.9998709698230673, 0.9993548491153369, 0.9983226076998758, 0.9967742455766843, 0.9947097627457622, 0.9921291592071096, 0.9890324349607265, 0.9854195900066128, 0.9812906243447687, 0.976645537975194, 0.9714843308978888, 0.9658070031128532, 0.9596135546200868, 0.9529039854195902, 0.9456782955113628, 0.9379364848954049, 0.9296785535717167, 0.9209045015402978, 0.9116143288011486, 0.9018080353542686, 0.8914856211996582, 0.8806470863373173, 0.869292430767246, 0.8574216544894439, 0.8450347575039115, 0.8321317398106485, 0.8187126014096547, 0.8047773423009309, 0.7903259624844762, 0.7753584619602913, 0.7598748407283755, 0.7438750987887296, 0.7273592361413528, 0.7103272527862459, 0.6927791487234078, 0.6747149239528395, 0.656134578474541, 0.6370381122885116, 0.617425525394752, 0.5972968177932615, 0.576651989484041, 0.5554910404670894, 0.5338139707424079, 0.5116207803099952, 0.48891146916985273, 0.4656860373219791, 0.4419444847663748, 0.41768681150304077, 0.3929130175319755, 0.36762310285318034, 0.34181706746665397, 0.3154949113723978, 0.28865663457041046, 0.26130223706069333, 0.23343171884324487, 0.20504507991806664, 0.1761423202851572, 0.1467234399445172, 0.11678843889614743, 0.08633731714004633, 0.055370074676215575, 0.02388671150465349, 0.008112772374638366, 0.04062837696166155, 0.07366010225641428, 0.10720794825889857, 0.1412719149691124, 0.17585200238705778, 0.2109482105127336, 0.24656053934613897, 0.2826889888872759, 0.31933355913614214, 0.35649425009274016, 0.3941710617570675, 0.4323639941291264, 0.47107304720891485, 0.5102982209964351, 0.5500395154916844, 0.5902969306946655, 0.631070466605377, 0.6723601232238181, 0.7141659005499907, 0.7564877985838929, 0.7993258173255267, 0.8426799567748895, 0.8865502169319843, 0.9309365977968085, 0.9758390993693642, 1.0212577216496492, 1.067192464637666, 1.1136433283334135, 1.1606103127368903, 1.2080934178480986, 1.2560926436670363, 1.3046079901937055, 1.3536394574281045, 1.403187045370235, 1.4532507540200945, 1.5038305833776864, 1.5549265334430071, 1.6065386042160599, 1.6586667956968428, 1.7113111078853551, 1.7644715407815994, 1.818148094385573, 1.8723407686972782, 1.9270495637167122, 1.9822744794438787, 2.038015515878774, 2.0942726730214014, 2.1510459508717594, 2.2083353494298463, 2.2661408686956652, 2.3244625086692134, 2.383300269350493, 2.4426541507395023, 2.5025241528362434, 2.5629102756407134, 2.6238125191529154, 2.6852308833728467, 2.74716536830051, 2.8096159739359035, 2.872582700279026, 2.9360655473298807, 3.000064515088466 ], [ 3.000064515088466, 2.9360655473298816, 2.8725827002790276, 2.8096159739359043, 2.7471653683005113, 2.6852308833728484, 2.6238125191529162, 2.562910275640715, 2.5025241528362443, 2.442654150739504, 2.383300269350494, 2.3244625086692148, 2.266140868695666, 2.208335349429848, 2.1510459508717603, 2.094272673021403, 2.038015515878776, 1.9822744794438805, 1.927049563716714, 1.872340768697279, 1.8181480943855743, 1.7644715407816003, 1.711311107885357, 1.6586667956968437, 1.6065386042160612, 1.5549265334430094, 1.5038305833776877, 1.4532507540200963, 1.4031870453702364, 1.3536394574281059, 1.3046079901937064, 1.2560926436670377, 1.208093417848099, 1.1606103127368912, 1.113643328333414, 1.0671924646376674, 1.0212577216496506, 0.9758390993693655, 0.9309365977968096, 0.8865502169319857, 0.8426799567748908, 0.7993258173255271, 0.756487798583894, 0.7141659005499914, 0.6723601232238192, 0.6310704666053777, 0.5902969306946666, 0.5500395154916855, 0.510298220996436, 0.47107304720891596, 0.4323639941291275, 0.3941710617570686, 0.3564942500927406, 0.31933355913614325, 0.28268898888727634, 0.24656053934613986, 0.21094821051273405, 0.17585200238705867, 0.1412719149691133, 0.10720794825889945, 0.0736601022564154, 0.04062837696166244, 0.008112772374639254, 0.023886711504653046, 0.0553700746762148, 0.08633731714004589, 0.11678843889614665, 0.14672343994451675, 0.17614232028515642, 0.20504507991806553, 0.23343171884324454, 0.26130223706069255, 0.28865663457041013, 0.31549491137239716, 0.34181706746665363, 0.3676231028531797, 0.39291301753197516, 0.4176868115030401, 0.4419444847663745, 0.46568603732197844, 0.4889114691698522, 0.5116207803099949, 0.5338139707424072, 0.5554910404670892, 0.5766519894840405, 0.5972968177932612, 0.6174255253947515, 0.6370381122885113, 0.6561345784745405, 0.6747149239528392, 0.6927791487234074, 0.7103272527862453, 0.7273592361413526, 0.743875098788729, 0.7598748407283753, 0.7753584619602909, 0.790325962484476, 0.8047773423009305, 0.8187126014096545, 0.832131739810648, 0.845034757503911, 0.8574216544894435, 0.8692924307672456, 0.8806470863373171, 0.891485621199658, 0.9018080353542685, 0.9116143288011482, 0.9209045015402977, 0.9296785535717165, 0.9379364848954048, 0.9456782955113626, 0.9529039854195899, 0.9596135546200867, 0.965807003112853, 0.9714843308978888, 0.9766455379751939, 0.9812906243447685, 0.9854195900066127, 0.9890324349607265, 0.9921291592071095, 0.9947097627457622, 0.9967742455766843, 0.9983226076998758, 0.9993548491153369, 0.9998709698230673, 0.9998709698230673, 0.9993548491153369, 0.9983226076998758, 0.9967742455766843, 0.9947097627457622, 0.9921291592071096, 0.9890324349607265, 0.9854195900066128, 0.9812906243447687, 0.976645537975194, 0.9714843308978888, 0.9658070031128532, 0.9596135546200868, 0.9529039854195902, 0.9456782955113628, 0.9379364848954049, 0.9296785535717167, 0.9209045015402978, 0.9116143288011486, 0.9018080353542686, 0.8914856211996584, 0.8806470863373173, 0.869292430767246, 0.8574216544894439, 0.8450347575039115, 0.8321317398106485, 0.8187126014096547, 0.8047773423009309, 0.7903259624844762, 0.7753584619602913, 0.7598748407283755, 0.7438750987887296, 0.7273592361413528, 0.7103272527862459, 0.6927791487234078, 0.6747149239528395, 0.656134578474541, 0.6370381122885116, 0.617425525394752, 0.5972968177932615, 0.576651989484041, 0.5554910404670894, 0.5338139707424079, 0.5116207803099952, 0.48891146916985273, 0.4656860373219791, 0.4419444847663748, 0.41768681150304077, 0.3929130175319755, 0.36762310285318034, 0.34181706746665397, 0.3154949113723978, 0.28865663457041046, 0.26130223706069333, 0.23343171884324487, 0.20504507991806664, 0.1761423202851572, 0.1467234399445172, 0.11678843889614743, 0.08633731714004633, 0.055370074676215575, 0.02388671150465349, 0.008112772374638366, 0.04062837696166155, 0.07366010225641428, 0.10720794825889857, 0.1412719149691124, 0.17585200238705778, 0.2109482105127336, 0.24656053934613897, 0.2826889888872759, 0.31933355913614214, 0.35649425009274016, 0.3941710617570675, 0.4323639941291264, 0.47107304720891485, 0.5102982209964351, 0.5500395154916844, 0.5902969306946655, 0.631070466605377, 0.6723601232238181, 0.7141659005499907, 0.7564877985838929, 0.7993258173255267, 0.8426799567748895, 0.8865502169319843, 0.9309365977968085, 0.9758390993693642, 1.0212577216496492, 1.067192464637666, 1.1136433283334135, 1.1606103127368903, 1.2080934178480986, 1.2560926436670363, 1.3046079901937055, 1.3536394574281045, 1.403187045370235, 1.4532507540200945, 1.5038305833776864, 1.5549265334430071, 1.6065386042160599, 1.6586667956968428, 1.7113111078853551, 1.7644715407815994, 1.818148094385573, 1.8723407686972782, 1.9270495637167122, 1.9822744794438787, 2.038015515878774, 2.0942726730214014, 2.1510459508717594, 2.2083353494298463, 2.2661408686956652, 2.3244625086692134, 2.383300269350493, 2.4426541507395023, 2.5025241528362434, 2.5629102756407134, 2.6238125191529154, 2.6852308833728467, 2.74716536830051, 2.8096159739359035, 2.872582700279026, 2.9360655473298807, 3.000064515088466 ], [ 3.0005806357961973, 2.9365816680376122, 2.8730988209867583, 2.810132094643635, 2.747681489008242, 2.685747004080579, 2.624328639860647, 2.563426396348446, 2.503040273543975, 2.4431702714472348, 2.3838163900582248, 2.3249786293769454, 2.2666569894033968, 2.2088514701375788, 2.151562071579491, 2.094788793729134, 2.0385316365865065, 1.9827906001516111, 1.9275656844244446, 1.8728568894050097, 1.818664215093305, 1.764987661489331, 1.7118272285930876, 1.6591829164045744, 1.6070547249237919, 1.55544265415074, 1.5043467040854184, 1.453766874727827, 1.403703166077967, 1.3541555781358365, 1.305124110901437, 1.2566087643747683, 1.2086095385558298, 1.1611264334446219, 1.1141594490411446, 1.067708585345398, 1.0217738423573812, 0.976355220077096, 0.93145271850454, 0.8870663376397161, 0.8431960774826213, 0.7998419380332575, 0.7570039192916245, 0.7146820212577218, 0.6728762439315497, 0.6315865873131081, 0.590813051402397, 0.5505556361994159, 0.5108143417041664, 0.4715891679166464, 0.43288011483685795, 0.39468718246479906, 0.35701037080047104, 0.3198496798438737, 0.2832051095950068, 0.2470766600538703, 0.21146433122046449, 0.1763681230947891, 0.14178803567684373, 0.1077240689666299, 0.07417622296414583, 0.04114449766939288, 0.008628893082369693, 0.023370590796922497, 0.05485395396848425, 0.08582119643231534, 0.1162723181884161, 0.1462073192367862, 0.17562619957742587, 0.20452895921033498, 0.232915598135514, 0.260786116352962, 0.2881405138626796, 0.3149787906646666, 0.3413009467589231, 0.3671069821454491, 0.3923968968242446, 0.41717069079530955, 0.44142836405864394, 0.4651699166142479, 0.4883953484621216, 0.5111046596022644, 0.5332978500346768, 0.5549749197593586, 0.57613586877631, 0.5967806970855307, 0.6169094046870209, 0.6365219915807807, 0.65561845776681, 0.6741988032451087, 0.692263028015677, 0.7098111320785148, 0.726843115433622, 0.7433589780809986, 0.7593587200206448, 0.7748423412525604, 0.7898098417767454, 0.8042612215931999, 0.818196480701924, 0.8316156191029176, 0.8445186367961806, 0.8569055337817131, 0.8687763100595152, 0.8801309656295866, 0.8909695004919275, 0.9012919146465379, 0.9110982080934178, 0.9203883808325671, 0.929162432863986, 0.9374203641876743, 0.9451621748036321, 0.9523878647118594, 0.9590974339123561, 0.9652908824051225, 0.9709682101901582, 0.9761294172674634, 0.9807745036370381, 0.9849034692988823, 0.9885163142529959, 0.991613038499379, 0.9941936420380316, 0.9962581248689537, 0.9978064869921452, 0.9988387284076063, 0.9993548491153369, 0.9993548491153369, 0.9988387284076063, 0.9978064869921454, 0.9962581248689537, 0.9941936420380316, 0.9916130384993791, 0.9885163142529959, 0.9849034692988824, 0.9807745036370381, 0.9761294172674635, 0.9709682101901582, 0.9652908824051226, 0.9590974339123564, 0.9523878647118597, 0.9451621748036323, 0.9374203641876744, 0.9291624328639863, 0.9203883808325672, 0.911098208093418, 0.901291914646538, 0.8909695004919278, 0.8801309656295867, 0.8687763100595155, 0.8569055337817133, 0.844518636796181, 0.8316156191029179, 0.8181964807019242, 0.8042612215932003, 0.7898098417767456, 0.7748423412525608, 0.759358720020645, 0.743358978080999, 0.7268431154336222, 0.7098111320785153, 0.6922630280156774, 0.674198803245109, 0.6556184577668105, 0.636521991580781, 0.6169094046870216, 0.5967806970855309, 0.5761358687763105, 0.554974919759359, 0.5332978500346774, 0.5111046596022648, 0.4883953484621222, 0.46516991661424856, 0.4414283640586443, 0.4171706907953102, 0.39239689682424495, 0.3671069821454498, 0.3413009467589234, 0.3149787906646673, 0.2881405138626799, 0.2607861163529628, 0.23291559813551432, 0.2045289592103361, 0.17562619957742664, 0.14620731923678665, 0.11627231818841688, 0.08582119643231578, 0.054853953968485025, 0.02337059079692294, 0.008628893082368805, 0.04114449766939199, 0.07417622296414472, 0.107724068966629, 0.14178803567684284, 0.17636812309478822, 0.21146433122046404, 0.2470766600538694, 0.28320510959500633, 0.3198496798438726, 0.3570103708004706, 0.39468718246479795, 0.43288011483685684, 0.4715891679166453, 0.5108143417041655, 0.5505556361994148, 0.5908130514023959, 0.6315865873131075, 0.6728762439315485, 0.7146820212577212, 0.7570039192916234, 0.7998419380332571, 0.8431960774826199, 0.8870663376397148, 0.9314527185045389, 0.9763552200770946, 1.02177384235738, 1.0677085853453967, 1.1141594490411442, 1.161126433444621, 1.2086095385558293, 1.256608764374767, 1.3051241109014362, 1.3541555781358352, 1.4037031660779657, 1.4537668747278252, 1.504346704085417, 1.5554426541507378, 1.6070547249237905, 1.6591829164045735, 1.7118272285930858, 1.76498766148933, 1.8186642150933037, 1.8728568894050088, 1.9275656844244429, 1.9827906001516094, 2.0385316365865047, 2.094788793729132, 2.15156207157949, 2.208851470137577, 2.266656989403396, 2.324978629376944, 2.383816390058224, 2.443170271447233, 2.503040273543974, 2.563426396348444, 2.624328639860646, 2.6857470040805773, 2.7476814890082406, 2.810132094643634, 2.8730988209867565, 2.9365816680376113, 3.0005806357961973 ], [ 3.0016128772116577, 2.937613909453073, 2.874131062402219, 2.811164336059096, 2.748713730423703, 2.68677924549604, 2.625360881276108, 2.5644586377639067, 2.504072514959436, 2.4442025128626956, 2.3848486314736856, 2.3260108707924063, 2.2676892308188576, 2.2098837115530396, 2.152594312994952, 2.0958210351445947, 2.0395638780019674, 1.983822841567072, 1.9285979258399055, 1.8738891308204706, 1.8196964565087659, 1.7660199029047918, 1.7128594700085484, 1.6602151578200353, 1.6080869663392527, 1.5564748955662009, 1.5053789455008793, 1.4547991161432878, 1.404735407493428, 1.3551878195512974, 1.306156352316898, 1.2576410057902292, 1.2096417799712906, 1.1621586748600827, 1.1151916904566055, 1.068740826760859, 1.022806083772842, 0.9773874614925571, 0.9324849599200011, 0.8880985790551772, 0.8442283188980824, 0.8008741794487186, 0.7580361607070856, 0.7157142626731829, 0.6739084853470108, 0.6326188287285692, 0.5918452928178581, 0.551587877614877, 0.5118465831196275, 0.4726214093321075, 0.43391235625231905, 0.39571942388026016, 0.35804261221593214, 0.3208819212593348, 0.2842373510104679, 0.2481089014693314, 0.21249657263592558, 0.1774003645102502, 0.14282027709230483, 0.10875631038209099, 0.07520846437960693, 0.042176739084853976, 0.009661134497830792, 0.02233834938146151, 0.05382171255302326, 0.08478895501685435, 0.11524007677295511, 0.14517507782132522, 0.17459395816196488, 0.203496717794874, 0.231883356720053, 0.259753874937501, 0.2871082724472186, 0.3139465492492056, 0.3402687053434621, 0.36607474072998814, 0.3913646554087836, 0.41613844937984856, 0.44039612264318295, 0.4641376751987869, 0.48736310704666064, 0.5100724181868034, 0.5322656086192157, 0.5539426783438977, 0.575103627360849, 0.5957484556700696, 0.61587716327156, 0.6354897501653197, 0.654586216351349, 0.6731665618296476, 0.6912307866002159, 0.7087788906630538, 0.725810874018161, 0.7423267366655375, 0.7583264786051838, 0.7738100998370994, 0.7887776003612844, 0.8032289801777389, 0.817164239286463, 0.8305833776874565, 0.8434863953807195, 0.855873292366252, 0.8677440686440541, 0.8790987242141256, 0.8899372590764665, 0.9002596732310769, 0.9100659666779567, 0.9193561394171061, 0.9281301914485249, 0.9363881227722133, 0.9441299333881711, 0.9513556232963983, 0.9580651924968951, 0.9642586409896614, 0.9699359687746972, 0.9750971758520024, 0.979742262221577, 0.9838712278834212, 0.9874840728375349, 0.990580797083918, 0.9931614006225706, 0.9952258834534927, 0.9967742455766843, 0.9978064869921454, 0.9983226076998758, 0.9983226076998758, 0.9978064869921454, 0.9967742455766843, 0.9952258834534927, 0.9931614006225706, 0.9905807970839181, 0.9874840728375349, 0.9838712278834213, 0.9797422622215771, 0.9750971758520025, 0.9699359687746972, 0.9642586409896616, 0.9580651924968953, 0.9513556232963987, 0.9441299333881713, 0.9363881227722134, 0.9281301914485252, 0.9193561394171063, 0.910065966677957, 0.900259673231077, 0.8899372590764668, 0.8790987242141257, 0.8677440686440545, 0.8558732923662523, 0.84348639538072, 0.8305833776874569, 0.8171642392864632, 0.8032289801777394, 0.7887776003612846, 0.7738100998370998, 0.758326478605184, 0.7423267366655381, 0.7258108740181612, 0.7087788906630543, 0.6912307866002163, 0.673166561829648, 0.6545862163513495, 0.63548975016532, 0.6158771632715605, 0.59574845567007, 0.5751036273608494, 0.5539426783438979, 0.5322656086192163, 0.5100724181868037, 0.4873631070466612, 0.46413767519878757, 0.4403961226431833, 0.41613844937984923, 0.39136465540878396, 0.3660747407299888, 0.34026870534346243, 0.3139465492492063, 0.2871082724472189, 0.2597538749375018, 0.23188335672005334, 0.2034967177948751, 0.17459395816196566, 0.14517507782132566, 0.11524007677295589, 0.0847889550168548, 0.05382171255302404, 0.022338349381461953, 0.009661134497829904, 0.04217673908485309, 0.07520846437960582, 0.1087563103820901, 0.14282027709230394, 0.17740036451024932, 0.21249657263592514, 0.2481089014693305, 0.28423735101046743, 0.3208819212593337, 0.3580426122159317, 0.39571942388025905, 0.43391235625231794, 0.4726214093321064, 0.5118465831196266, 0.5515878776148759, 0.591845292817857, 0.6326188287285686, 0.6739084853470096, 0.7157142626731823, 0.7580361607070845, 0.8008741794487182, 0.844228318898081, 0.8880985790551759, 0.93248495992, 0.9773874614925557, 1.0228060837728408, 1.0687408267608576, 1.115191690456605, 1.1621586748600818, 1.2096417799712902, 1.2576410057902279, 1.306156352316897, 1.355187819551296, 1.4047354074934266, 1.454799116143286, 1.505378945500878, 1.5564748955661987, 1.6080869663392514, 1.6602151578200344, 1.7128594700085467, 1.766019902904791, 1.8196964565087645, 1.8738891308204697, 1.9285979258399037, 1.9838228415670702, 2.0395638780019656, 2.095821035144593, 2.152594312994951, 2.209883711553038, 2.2676892308188568, 2.326010870792405, 2.3848486314736848, 2.444202512862694, 2.504072514959435, 2.564458637763905, 2.625360881276107, 2.686779245496038, 2.7487137304237015, 2.811164336059095, 2.8741310624022174, 2.937613909453072, 3.0016128772116577 ], [ 3.0031612393348492, 2.9391622715762646, 2.8756794245254107, 2.8127126981822874, 2.7502620925468944, 2.6883276076192315, 2.6269092433992993, 2.5660069998870982, 2.5056208770826274, 2.445750874985887, 2.386396993596877, 2.327559232915598, 2.269237592942049, 2.211432073676231, 2.1541426751181434, 2.0973693972677863, 2.041112240125159, 1.9853712036902635, 1.930146287963097, 1.8754374929436621, 1.8212448186319574, 1.7675682650279834, 1.71440783213174, 1.6617635199432268, 1.6096353284624443, 1.5580232576893924, 1.5069273076240708, 1.4563474782664794, 1.4062837696166195, 1.356736181674489, 1.3077047144400895, 1.2591893679134207, 1.2111901420944822, 1.1637070369832743, 1.116740052579797, 1.0702891888840504, 1.0243544458960336, 0.9789358236157486, 0.9340333220431927, 0.8896469411783687, 0.8457766810212739, 0.8024225415719102, 0.7595845228302771, 0.7172626247963745, 0.6754568474702023, 0.6341671908517608, 0.5933936549410497, 0.5531362397380686, 0.513394945242819, 0.47416977145529904, 0.4354607183755106, 0.3972677860034517, 0.3595909743391237, 0.32243028338252633, 0.2857857131336594, 0.24965726359252294, 0.21404493475911712, 0.17894872663344175, 0.14436863921549636, 0.11030467250528253, 0.07675682650279847, 0.043725101208045514, 0.01120949662102233, 0.02078998725826986, 0.05227335042983161, 0.0832405928936627, 0.11369171464976346, 0.14362671569813357, 0.17304559603877323, 0.20194835567168234, 0.23033499459686135, 0.25820551281430937, 0.28555991032402694, 0.31239818712601397, 0.33872034322027045, 0.3645263786067965, 0.389816293285592, 0.4145900872566569, 0.4388477605199913, 0.46258931307559525, 0.485814744923469, 0.5085240560636118, 0.5307172464960241, 0.5523943162207061, 0.5735552652376574, 0.5942000935468781, 0.6143288011483684, 0.6339413880421282, 0.6530378542281574, 0.6716181997064561, 0.6896824244770243, 0.7072305285398622, 0.7242625118949695, 0.740778374542346, 0.7567781164819922, 0.7722617377139078, 0.7872292382380928, 0.8016806180545474, 0.8156158771632714, 0.829035015564265, 0.8419380332575279, 0.8543249302430604, 0.8661957065208625, 0.877550362090934, 0.8883888969532749, 0.8987113111078853, 0.9085176045547652, 0.9178077772939145, 0.9265818293253334, 0.9348397606490217, 0.9425815712649795, 0.9498072611732068, 0.9565168303737036, 0.9627102788664699, 0.9683876066515056, 0.9735488137288109, 0.9781939000983855, 0.9823228657602296, 0.9859357107143433, 0.9890324349607265, 0.991613038499379, 0.9936775213303011, 0.9952258834534927, 0.9962581248689537, 0.9967742455766843, 0.9967742455766843, 0.9962581248689537, 0.9952258834534927, 0.9936775213303012, 0.9916130384993791, 0.9890324349607265, 0.9859357107143434, 0.9823228657602298, 0.9781939000983856, 0.973548813728811, 0.9683876066515057, 0.9627102788664701, 0.9565168303737037, 0.9498072611732071, 0.9425815712649798, 0.9348397606490219, 0.9265818293253336, 0.9178077772939146, 0.9085176045547654, 0.8987113111078855, 0.8883888969532752, 0.8775503620909342, 0.8661957065208629, 0.8543249302430608, 0.8419380332575285, 0.8290350155642653, 0.8156158771632716, 0.8016806180545478, 0.787229238238093, 0.7722617377139082, 0.7567781164819924, 0.7407783745423465, 0.7242625118949697, 0.7072305285398628, 0.6896824244770248, 0.6716181997064564, 0.653037854228158, 0.6339413880421285, 0.614328801148369, 0.5942000935468784, 0.5735552652376579, 0.5523943162207063, 0.5307172464960248, 0.5085240560636122, 0.48581474492346954, 0.4625893130755959, 0.43884776051999164, 0.4145900872566576, 0.3898162932855923, 0.36452637860679715, 0.3387203432202708, 0.31239818712601464, 0.2855599103240273, 0.25820551281431015, 0.2303349945968617, 0.20194835567168345, 0.173045596038774, 0.143626715698134, 0.11369171464976424, 0.08324059289366315, 0.05227335042983239, 0.020789987258270304, 0.011209496621021442, 0.043725101208044626, 0.07675682650279736, 0.11030467250528164, 0.14436863921549548, 0.17894872663344086, 0.21404493475911668, 0.24965726359252205, 0.28578571313365897, 0.3224302833825252, 0.35959097433912324, 0.3972677860034506, 0.4354607183755095, 0.47416977145529793, 0.5133949452428181, 0.5531362397380675, 0.5933936549410486, 0.6341671908517601, 0.6754568474702012, 0.7172626247963738, 0.759584522830276, 0.8024225415719097, 0.8457766810212726, 0.8896469411783674, 0.9340333220431916, 0.9789358236157473, 1.0243544458960323, 1.0702891888840491, 1.1167400525797966, 1.1637070369832734, 1.2111901420944817, 1.2591893679134194, 1.3077047144400886, 1.3567361816744876, 1.4062837696166182, 1.4563474782664776, 1.5069273076240695, 1.5580232576893902, 1.609635328462443, 1.661763519943226, 1.7144078321317382, 1.7675682650279825, 1.821244818631956, 1.8754374929436612, 1.9301462879630953, 1.9853712036902618, 2.041112240125157, 2.0973693972677845, 2.1541426751181425, 2.2114320736762294, 2.2692375929420483, 2.3275592329155965, 2.3863969935968763, 2.4457508749858854, 2.5056208770826265, 2.5660069998870965, 2.6269092433992984, 2.6883276076192297, 2.750262092546893, 2.8127126981822865, 2.875679424525409, 2.9391622715762638, 3.0031612393348492 ], [ 3.005225722165772, 2.941226754407187, 2.877743907356333, 2.8147771810132096, 2.7523265753778166, 2.6903920904501537, 2.6289737262302215, 2.5680714827180204, 2.5076853599135496, 2.4478153578168094, 2.3884614764277994, 2.32962371574652, 2.2713020757729714, 2.2134965565071534, 2.1562071579490656, 2.0994338800987085, 2.043176722956081, 1.9874356865211857, 1.9322107707940193, 1.8775019757745843, 1.8233093014628796, 1.7696327478589056, 1.7164723149626622, 1.663828002774149, 1.6116998112933665, 1.5600877405203146, 1.508991790454993, 1.4584119610974016, 1.4083482524475417, 1.3588006645054111, 1.3097691972710117, 1.261253850744343, 1.2132546249254044, 1.1657715198141965, 1.1188045354107192, 1.0723536717149726, 1.0264189287269558, 0.9810003064466706, 0.9360978048741146, 0.8917114240092907, 0.8478411638521959, 0.8044870244028322, 0.7616490056611991, 0.7193271076272965, 0.6775213303011243, 0.6362316736826827, 0.5954581377719717, 0.5552007225689906, 0.515459428073741, 0.476234254286221, 0.43752520120643257, 0.39933226883437367, 0.36165545717004566, 0.3244947662134483, 0.2878501959645814, 0.2517217464234449, 0.2161094175900391, 0.18101320946436372, 0.14643312204641834, 0.11236915533620451, 0.07882130933372045, 0.04578958403896749, 0.013273979451944307, 0.018725504427347772, 0.05020886759890952, 0.08117611006274061, 0.11162723181884138, 0.14156223286721148, 0.17098111320785114, 0.19988387284076026, 0.22827051176593927, 0.2561410299833873, 0.28349542749310486, 0.3103337042950919, 0.33665586038934836, 0.3624618957758744, 0.3877518104546699, 0.4125256044257348, 0.4367832776890692, 0.46052483024467317, 0.4837502620925469, 0.5064595732326898, 0.5286527636651022, 0.5503298333897839, 0.5714907824067352, 0.5921356107159561, 0.6122643183174463, 0.6318769052112061, 0.6509733713972353, 0.6695537168755341, 0.6876179416461022, 0.7051660457089401, 0.7221980290640473, 0.738713891711424, 0.75471363365107, 0.7701972548829856, 0.7851647554071707, 0.7996161352236253, 0.8135513943323494, 0.8269705327333429, 0.8398735504266058, 0.8522604474121384, 0.8641312236899404, 0.8754858792600119, 0.8863244141223527, 0.8966468282769632, 0.9064531217238431, 0.9157432944629924, 0.9245173464944113, 0.9327752778180995, 0.9405170884340575, 0.9477427783422847, 0.9544523475427814, 0.9606457960355478, 0.9663231238205835, 0.9714843308978887, 0.9761294172674634, 0.9802583829293076, 0.9838712278834212, 0.9869679521298044, 0.9895485556684569, 0.991613038499379, 0.9931614006225706, 0.9941936420380316, 0.9947097627457622, 0.9947097627457622, 0.9941936420380316, 0.9931614006225706, 0.9916130384993791, 0.989548555668457, 0.9869679521298044, 0.9838712278834212, 0.9802583829293077, 0.9761294172674635, 0.9714843308978889, 0.9663231238205836, 0.9606457960355479, 0.9544523475427816, 0.9477427783422849, 0.9405170884340576, 0.9327752778180998, 0.9245173464944115, 0.9157432944629925, 0.9064531217238433, 0.8966468282769633, 0.8863244141223531, 0.875485879260012, 0.8641312236899408, 0.8522604474121387, 0.8398735504266064, 0.8269705327333432, 0.8135513943323495, 0.7996161352236257, 0.7851647554071709, 0.7701972548829861, 0.7547136336510702, 0.7387138917114244, 0.7221980290640475, 0.7051660457089406, 0.6876179416461028, 0.6695537168755343, 0.6509733713972359, 0.6318769052112063, 0.6122643183174469, 0.5921356107159563, 0.5714907824067359, 0.5503298333897843, 0.5286527636651027, 0.5064595732326901, 0.48375026209254746, 0.46052483024467383, 0.43678327768906955, 0.4125256044257355, 0.3877518104546702, 0.36246189577587506, 0.3366558603893487, 0.31033370429509255, 0.2834954274931052, 0.25614102998338806, 0.2282705117659396, 0.19988387284076137, 0.17098111320785192, 0.14156223286721192, 0.11162723181884215, 0.08117611006274106, 0.0502088675989103, 0.018725504427348216, 0.013273979451943418, 0.0457895840389666, 0.07882130933371934, 0.11236915533620362, 0.14643312204641745, 0.18101320946436283, 0.21610941759003865, 0.251721746423444, 0.28785019596458095, 0.3244947662134472, 0.3616554571700452, 0.39933226883437256, 0.43752520120643146, 0.4762342542862199, 0.5154594280737401, 0.5552007225689894, 0.5954581377719705, 0.6362316736826821, 0.6775213303011232, 0.7193271076272958, 0.761649005661198, 0.8044870244028317, 0.8478411638521945, 0.8917114240092894, 0.9360978048741135, 0.9810003064466692, 1.0264189287269545, 1.0723536717149713, 1.1188045354107188, 1.1657715198141956, 1.213254624925404, 1.2612538507443416, 1.3097691972710108, 1.3588006645054098, 1.4083482524475404, 1.4584119610973998, 1.5089917904549917, 1.5600877405203124, 1.6116998112933651, 1.663828002774148, 1.7164723149626604, 1.7696327478589047, 1.8233093014628783, 1.8775019757745834, 1.9322107707940175, 1.987435686521184, 2.0431767229560793, 2.0994338800987067, 2.1562071579490647, 2.2134965565071516, 2.2713020757729705, 2.3296237157465187, 2.3884614764277985, 2.4478153578168076, 2.5076853599135487, 2.5680714827180187, 2.6289737262302206, 2.690392090450152, 2.752326575377815, 2.8147771810132087, 2.877743907356331, 2.941226754407186, 3.005225722165772 ], [ 3.007806325704424, 2.9438073579458397, 2.8803245108949858, 2.8173577845518625, 2.7549071789164694, 2.6929726939888066, 2.6315543297688744, 2.5706520862566733, 2.5102659634522024, 2.4503959613554622, 2.3910420799664522, 2.332204319285173, 2.2738826793116242, 2.2160771600458062, 2.1587877614877184, 2.1020144836373613, 2.045757326494734, 1.9900162900598386, 1.9347913743326721, 1.8800825793132372, 1.8258899050015325, 1.7722133513975584, 1.719052918501315, 1.6664086063128019, 1.6142804148320193, 1.5626683440589675, 1.5115723939936458, 1.4609925646360544, 1.4109288559861946, 1.361381268044064, 1.3123498008096646, 1.2638344542829958, 1.2158352284640572, 1.1683521233528493, 1.121385138949372, 1.0749342752536255, 1.0289995322656087, 0.9835809099853232, 0.9386784084127673, 0.8942920275479433, 0.8504217673908485, 0.8070676279414848, 0.7642296091998517, 0.7219077111659491, 0.6801019338397769, 0.6388122772213354, 0.5980387413106243, 0.5577813261076432, 0.5180400316123936, 0.47881485782487365, 0.4401058047450852, 0.4019128723730263, 0.3642360607086983, 0.32707536975210094, 0.290430799503234, 0.25430234996209755, 0.21869002112869174, 0.18359381300301636, 0.14901372558507098, 0.11494975887485714, 0.08140191287237308, 0.04837018757762013, 0.015854582990596944, 0.016144900888695246, 0.047628264060257, 0.07859550652408809, 0.10904662828018885, 0.13898162932855895, 0.16840050966919862, 0.19730326930210773, 0.22568990822728674, 0.25356042644473475, 0.28091482395445233, 0.30775310075643936, 0.33407525685069583, 0.3598812922372219, 0.38517120691601736, 0.4099450008870823, 0.4342026741504167, 0.45794422670602064, 0.4811696585538944, 0.5038789696940371, 0.5260721601264495, 0.5477492298511314, 0.5689101788680827, 0.5895550071773035, 0.6096837147787937, 0.6292963016725535, 0.6483927678585828, 0.6669731133368815, 0.6850373381074497, 0.7025854421702875, 0.7196174255253948, 0.7361332881727713, 0.7521330301124175, 0.7676166513443331, 0.7825841518685182, 0.7970355316849727, 0.8109707907936967, 0.8243899291946903, 0.8372929468879533, 0.8496798438734858, 0.8615506201512879, 0.8729052757213593, 0.8837438105837002, 0.8940662247383107, 0.9038725181851905, 0.9131626909243399, 0.9219367429557588, 0.930194674279447, 0.9379364848954048, 0.9451621748036321, 0.9518717440041289, 0.9580651924968953, 0.963742520281931, 0.9689037273592361, 0.9735488137288109, 0.977677779390655, 0.9812906243447687, 0.9843873485911517, 0.9869679521298044, 0.9890324349607265, 0.990580797083918, 0.9916130384993791, 0.9921291592071096, 0.9921291592071096, 0.9916130384993791, 0.9905807970839181, 0.9890324349607265, 0.9869679521298044, 0.9843873485911518, 0.9812906243447687, 0.9776777793906551, 0.9735488137288109, 0.9689037273592362, 0.963742520281931, 0.9580651924968954, 0.9518717440041291, 0.9451621748036324, 0.937936484895405, 0.9301946742794471, 0.921936742955759, 0.91316269092434, 0.9038725181851908, 0.8940662247383108, 0.8837438105837006, 0.8729052757213595, 0.8615506201512882, 0.849679843873486, 0.8372929468879537, 0.8243899291946907, 0.8109707907936969, 0.7970355316849731, 0.7825841518685184, 0.7676166513443335, 0.7521330301124177, 0.7361332881727718, 0.719617425525395, 0.7025854421702881, 0.6850373381074502, 0.6669731133368817, 0.6483927678585832, 0.6292963016725538, 0.6096837147787944, 0.5895550071773037, 0.5689101788680833, 0.5477492298511317, 0.5260721601264502, 0.5038789696940376, 0.48116965855389493, 0.4579442267060213, 0.434202674150417, 0.40994500088708297, 0.3851712069160177, 0.35988129223722254, 0.33407525685069617, 0.30775310075644, 0.28091482395445266, 0.25356042644473553, 0.22568990822728707, 0.19730326930210884, 0.1684005096691994, 0.1389816293285594, 0.10904662828018963, 0.07859550652408853, 0.047628264060257774, 0.01614490088869569, 0.015854582990596056, 0.04837018757761924, 0.08140191287237197, 0.11494975887485626, 0.1490137255850701, 0.18359381300301547, 0.2186900211286913, 0.25430234996209666, 0.2904307995032336, 0.32707536975209983, 0.36423606070869785, 0.4019128723730252, 0.4401058047450841, 0.47881485782487254, 0.5180400316123928, 0.5577813261076421, 0.5980387413106232, 0.6388122772213347, 0.6801019338397758, 0.7219077111659484, 0.7642296091998506, 0.8070676279414843, 0.8504217673908472, 0.894292027547942, 0.9386784084127662, 0.9835809099853219, 1.0289995322656074, 1.0749342752536242, 1.1213851389493716, 1.1683521233528484, 1.2158352284640568, 1.2638344542829945, 1.3123498008096637, 1.3613812680440627, 1.4109288559861932, 1.4609925646360526, 1.5115723939936445, 1.5626683440589653, 1.614280414832018, 1.666408606312801, 1.7190529185013133, 1.7722133513975575, 1.8258899050015311, 1.8800825793132363, 1.9347913743326703, 1.9900162900598368, 2.045757326494732, 2.1020144836373595, 2.1587877614877176, 2.2160771600458045, 2.2738826793116234, 2.3322043192851716, 2.3910420799664514, 2.4503959613554605, 2.5102659634522015, 2.5706520862566715, 2.6315543297688735, 2.692972693988805, 2.754907178916468, 2.8173577845518616, 2.880324510894984, 2.943807357945839, 3.007806325704424 ], [ 3.010903049950807, 2.9469040821922228, 2.883421235141369, 2.8204545087982456, 2.7580039031628525, 2.6960694182351896, 2.6346510540152575, 2.5737488105030564, 2.5133626876985855, 2.4534926856018453, 2.3941388042128353, 2.335301043531556, 2.2769794035580073, 2.2191738842921893, 2.1618844857341015, 2.1051112078837444, 2.048854050741117, 1.9931130143062217, 1.9378880985790552, 1.8831793035596203, 1.8289866292479156, 1.7753100756439415, 1.722149642747698, 1.669505330559185, 1.6173771390784024, 1.5657650683053506, 1.514669118240029, 1.4640892888824375, 1.4140255802325776, 1.364477992290447, 1.3154465250560476, 1.2669311785293789, 1.2189319527104403, 1.1714488475992324, 1.1244818631957552, 1.0780309995000086, 1.0320962565119918, 0.9866776342317063, 0.9417751326591504, 0.8973887517943264, 0.8535184916372316, 0.8101643521878679, 0.7673263334462348, 0.7250044354123322, 0.68319865808616, 0.6419090014677185, 0.6011354655570074, 0.5608780503540263, 0.5211367558587767, 0.4819115820712567, 0.4432025289914683, 0.4050095966194094, 0.36733278495508137, 0.330172093998484, 0.2935275237496171, 0.2573990742084806, 0.2217867453750748, 0.18669053724939944, 0.15211044983145405, 0.11804648312124022, 0.08449863711875616, 0.0514669118240032, 0.01895130723698002, 0.01304817664231206, 0.04453153981387381, 0.0754987822777049, 0.10594990403380566, 0.13588490508217577, 0.16530378542281543, 0.19420654505572454, 0.22259318398090355, 0.25046370219835157, 0.27781809970806914, 0.30465637651005617, 0.33097853260431265, 0.3567845679908387, 0.3820744826696342, 0.4068482766406991, 0.4311059499040335, 0.45484750245963745, 0.4780729343075112, 0.500782245447654, 0.5229754358800663, 0.5446525056047482, 0.5658134546216995, 0.5864582829309203, 0.6065869905324106, 0.6261995774261704, 0.6452960436121995, 0.6638763890904983, 0.6819406138610664, 0.6994887179239044, 0.7165207012790116, 0.7330365639263882, 0.7490363058660343, 0.7645199270979499, 0.779487427622135, 0.7939388074385896, 0.8078740665473136, 0.8212932049483072, 0.8341962226415701, 0.8465831196271026, 0.8584538959049047, 0.8698085514749762, 0.880647086337317, 0.8909695004919275, 0.9007757939388074, 0.9100659666779567, 0.9188400187093756, 0.9270979500330638, 0.9348397606490217, 0.942065450557249, 0.9487750197577457, 0.9549684682505121, 0.9606457960355478, 0.965807003112853, 0.9704520894824277, 0.9745810551442718, 0.9781939000983855, 0.9812906243447685, 0.9838712278834212, 0.9859357107143433, 0.9874840728375348, 0.9885163142529959, 0.9890324349607265, 0.9890324349607265, 0.9885163142529959, 0.9874840728375349, 0.9859357107143434, 0.9838712278834212, 0.9812906243447687, 0.9781939000983855, 0.974581055144272, 0.9704520894824278, 0.9658070031128532, 0.9606457960355479, 0.9549684682505122, 0.9487750197577459, 0.9420654505572492, 0.9348397606490219, 0.927097950033064, 0.9188400187093758, 0.9100659666779568, 0.9007757939388076, 0.8909695004919276, 0.8806470863373174, 0.8698085514749763, 0.8584538959049051, 0.846583119627103, 0.8341962226415707, 0.8212932049483075, 0.8078740665473138, 0.79393880743859, 0.7794874276221352, 0.7645199270979504, 0.7490363058660345, 0.7330365639263887, 0.7165207012790118, 0.6994887179239049, 0.681940613861067, 0.6638763890904986, 0.6452960436122002, 0.6261995774261706, 0.606586990532411, 0.5864582829309206, 0.5658134546217001, 0.5446525056047484, 0.5229754358800669, 0.5007822454476543, 0.47807293430751174, 0.4548475024596381, 0.43110594990403384, 0.4068482766406998, 0.3820744826696345, 0.35678456799083935, 0.330978532604313, 0.30465637651005684, 0.2778180997080695, 0.25046370219835234, 0.22259318398090389, 0.19420654505572565, 0.1653037854228162, 0.1358849050821762, 0.10594990403380644, 0.07549878227770535, 0.04453153981387459, 0.013048176642312503, 0.01895130723697913, 0.051466911824002315, 0.08449863711875505, 0.11804648312123933, 0.15211044983145317, 0.18669053724939855, 0.22178674537507437, 0.25739907420847974, 0.29352752374961666, 0.3301720939984829, 0.3673327849550809, 0.4050095966194083, 0.44320252899146717, 0.4819115820712556, 0.5211367558587758, 0.5608780503540252, 0.6011354655570063, 0.6419090014677178, 0.6831986580861589, 0.7250044354123315, 0.7673263334462337, 0.8101643521878674, 0.8535184916372303, 0.8973887517943251, 0.9417751326591493, 0.986677634231705, 1.0320962565119904, 1.0780309995000072, 1.1244818631957547, 1.1714488475992315, 1.2189319527104399, 1.2669311785293775, 1.3154465250560468, 1.3644779922904458, 1.4140255802325763, 1.4640892888824357, 1.5146691182400276, 1.5657650683053483, 1.617377139078401, 1.669505330559184, 1.7221496427476963, 1.7753100756439406, 1.8289866292479142, 1.8831793035596194, 1.9378880985790534, 1.99311301430622, 2.0488540507411153, 2.1051112078837426, 2.1618844857341006, 2.2191738842921875, 2.2769794035580064, 2.3353010435315547, 2.3941388042128344, 2.4534926856018435, 2.5133626876985846, 2.5737488105030546, 2.6346510540152566, 2.696069418235188, 2.758003903162851, 2.8204545087982447, 2.883421235141367, 2.946904082192222, 3.010903049950807 ], [ 3.014515894904921, 2.950516927146336, 2.887034080095482, 2.824067353752359, 2.761616748116966, 2.699682263189303, 2.6382638989693707, 2.5773616554571697, 2.516975532652699, 2.4571055305559586, 2.3977516491669486, 2.3389138884856693, 2.2805922485121206, 2.2227867292463026, 2.165497330688215, 2.1087240528378577, 2.0524668956952303, 1.996725859260335, 1.9415009435331685, 1.8867921485137336, 1.8325994742020288, 1.7789229205980548, 1.7257624877018114, 1.6731181755132982, 1.6209899840325157, 1.5693779132594639, 1.5182819631941422, 1.4677021338365508, 1.417638425186691, 1.3680908372445604, 1.319059370010161, 1.2705440234834922, 1.2225447976645536, 1.1750616925533457, 1.1280947081498685, 1.0816438444541219, 1.035709101466105, 0.99029047918582, 0.9453879776132641, 0.9010015967484402, 0.8571313365913453, 0.8137771971419816, 0.7709391784003485, 0.7286172803664459, 0.6868115030402737, 0.6455218464218322, 0.6047483105111211, 0.56449089530814, 0.5247496008128905, 0.48552442702537046, 0.446815373945582, 0.4086224415735231, 0.3709456299091951, 0.33378493895259775, 0.29714036870373084, 0.26101191916259436, 0.22539959032918855, 0.19030338220351317, 0.1557232947855678, 0.12165932807535396, 0.0881114820728699, 0.05507975677811694, 0.022564152191093756, 0.009435331688198545, 0.040918694859760296, 0.07188593732359139, 0.10233705907969215, 0.13227206012806225, 0.16169094046870192, 0.19059370010161103, 0.21898033902679004, 0.24685085724423805, 0.27420525475395563, 0.30104353155594266, 0.32736568765019913, 0.35317172303672517, 0.37846163771552066, 0.4032354316865856, 0.42749310494992, 0.45123465750552394, 0.4744600893533977, 0.4971694004935404, 0.5193625909259527, 0.5410396606506347, 0.562200609667586, 0.5828454379768067, 0.602974145578297, 0.6225867324720568, 0.641683198658086, 0.6602635441363847, 0.6783277689069529, 0.6958758729697908, 0.7129078563248981, 0.7294237189722745, 0.7454234609119208, 0.7609070821438364, 0.7758745826680213, 0.790325962484476, 0.8042612215932, 0.8176803599941935, 0.8305833776874565, 0.842970274672989, 0.8548410509507911, 0.8661957065208625, 0.8770342413832035, 0.8873566555378138, 0.8971629489846937, 0.9064531217238432, 0.915227173755262, 0.9234851050789503, 0.9312269156949081, 0.9384526056031354, 0.9451621748036322, 0.9513556232963984, 0.9570329510814342, 0.9621941581587394, 0.966839244528314, 0.9709682101901582, 0.9745810551442718, 0.977677779390655, 0.9802583829293077, 0.9823228657602298, 0.9838712278834213, 0.9849034692988823, 0.9854195900066128, 0.9854195900066128, 0.9849034692988824, 0.9838712278834213, 0.9823228657602298, 0.9802583829293077, 0.9776777793906551, 0.974581055144272, 0.9709682101901583, 0.9668392445283142, 0.9621941581587395, 0.9570329510814343, 0.9513556232963987, 0.9451621748036323, 0.9384526056031357, 0.9312269156949083, 0.9234851050789504, 0.9152271737552622, 0.9064531217238433, 0.8971629489846941, 0.8873566555378141, 0.8770342413832037, 0.8661957065208628, 0.8548410509507914, 0.8429702746729894, 0.830583377687457, 0.8176803599941939, 0.8042612215932001, 0.7903259624844764, 0.7758745826680216, 0.7609070821438367, 0.745423460911921, 0.7294237189722751, 0.7129078563248983, 0.6958758729697914, 0.6783277689069533, 0.660263544136385, 0.6416831986580865, 0.6225867324720571, 0.6029741455782975, 0.582845437976807, 0.5622006096675864, 0.5410396606506349, 0.5193625909259534, 0.49716940049354075, 0.47446008935339823, 0.4512346575055246, 0.4274931049499203, 0.40323543168658627, 0.378461637715521, 0.35317172303672584, 0.32736568765019947, 0.3010435315559433, 0.27420525475395596, 0.24685085724423883, 0.21898033902679037, 0.19059370010161214, 0.1616909404687027, 0.1322720601280627, 0.10233705907969293, 0.07188593732359183, 0.04091869485976107, 0.009435331688198989, 0.022564152191092868, 0.05507975677811605, 0.08811148207286879, 0.12165932807535307, 0.1557232947855669, 0.19030338220351228, 0.2253995903291881, 0.2610119191625935, 0.2971403687037304, 0.33378493895259664, 0.37094562990919466, 0.408622441573522, 0.4468153739455809, 0.48552442702536935, 0.5247496008128896, 0.5644908953081389, 0.60474831051112, 0.6455218464218315, 0.6868115030402726, 0.7286172803664452, 0.7709391784003474, 0.8137771971419812, 0.857131336591344, 0.9010015967484388, 0.945387977613263, 0.9902904791858187, 1.0357091014661037, 1.0816438444541205, 1.128094708149868, 1.1750616925533448, 1.2225447976645532, 1.2705440234834908, 1.31905937001016, 1.368090837244559, 1.4176384251866896, 1.467702133836549, 1.5182819631941409, 1.5693779132594616, 1.6209899840325144, 1.6731181755132973, 1.7257624877018096, 1.778922920598054, 1.8325994742020275, 1.8867921485137327, 1.9415009435331667, 1.9967258592603332, 2.0524668956952286, 2.108724052837856, 2.165497330688214, 2.222786729246301, 2.2805922485121197, 2.338913888485668, 2.3977516491669477, 2.457105530555957, 2.516975532652698, 2.577361655457168, 2.63826389896937, 2.699682263189301, 2.7616167481169644, 2.824067353752358, 2.8870340800954803, 2.950516927146335, 3.014515894904921 ], [ 3.0186448605667646, 2.9546458928081805, 2.8911630457573265, 2.8281963194142032, 2.76574571377881, 2.7038112288511473, 2.642392864631215, 2.581490621119014, 2.521104498314543, 2.461234496217803, 2.401880614828793, 2.3430428541475137, 2.284721214173965, 2.226915694908147, 2.169626296350059, 2.112853018499702, 2.0565958613570747, 2.0008548249221794, 1.9456299091950129, 1.890921114175578, 1.8367284398638732, 1.7830518862598992, 1.7298914533636558, 1.6772471411751426, 1.62511894969436, 1.5735068789213082, 1.5224109288559866, 1.4718310994983952, 1.4217673908485353, 1.3722198029064048, 1.3231883356720053, 1.2746729891453366, 1.226673763326398, 1.17919065821519, 1.1322236738117128, 1.0857728101159663, 1.0398380671279495, 0.9944194448476642, 0.9495169432751083, 0.9051305624102843, 0.8612603022531895, 0.8179061628038258, 0.7750681440621927, 0.7327462460282901, 0.6909404687021179, 0.6496508120836764, 0.6088772761729653, 0.5686198609699842, 0.5288785664747346, 0.48965339268721464, 0.4509443396074262, 0.4127514072353673, 0.3750745955710393, 0.33791390461444193, 0.301269334365575, 0.26514088482443854, 0.22952855599103272, 0.19443234786535735, 0.15985226044741196, 0.12578829373719813, 0.09224044773471407, 0.059208722439961115, 0.02669311785293793, 0.005306366026354259, 0.03678972919791601, 0.0677569716617471, 0.09820809341784786, 0.12814309446621797, 0.15756197480685763, 0.18646473443976674, 0.21485137336494575, 0.24272189158239377, 0.27007628909211134, 0.29691456589409837, 0.32323672198835485, 0.3490427573748809, 0.3743326720536764, 0.3991064660247413, 0.4233641392880757, 0.44710569184367965, 0.4703311236915534, 0.49304043483169624, 0.5152336252641085, 0.5369106949887905, 0.5580716440057418, 0.5787164723149625, 0.5988451799164528, 0.6184577668102126, 0.6375542329962418, 0.6561345784745405, 0.6741988032451087, 0.6917469073079466, 0.7087788906630539, 0.7252947533104304, 0.7412944952500766, 0.7567781164819921, 0.7717456170061772, 0.7861969968226318, 0.8001322559313558, 0.8135513943323494, 0.8264544120256123, 0.8388413090111448, 0.8507120852889469, 0.8620667408590184, 0.8729052757213593, 0.8832276898759697, 0.8930339833228496, 0.9023241560619989, 0.9110982080934178, 0.9193561394171061, 0.9270979500330638, 0.9343236399412912, 0.9410332091417879, 0.9472266576345543, 0.95290398541959, 0.9580651924968953, 0.9627102788664699, 0.966839244528314, 0.9704520894824277, 0.9735488137288109, 0.9761294172674634, 0.9781939000983855, 0.9797422622215771, 0.9807745036370381, 0.9812906243447687, 0.9812906243447687, 0.9807745036370381, 0.9797422622215771, 0.9781939000983856, 0.9761294172674635, 0.9735488137288109, 0.9704520894824278, 0.9668392445283142, 0.96271027886647, 0.9580651924968954, 0.9529039854195901, 0.9472266576345545, 0.9410332091417881, 0.9343236399412915, 0.927097950033064, 0.9193561394171061, 0.911098208093418, 0.902324156061999, 0.8930339833228498, 0.8832276898759699, 0.8729052757213596, 0.8620667408590186, 0.8507120852889473, 0.8388413090111452, 0.8264544120256129, 0.8135513943323497, 0.800132255931356, 0.7861969968226321, 0.7717456170061774, 0.7567781164819926, 0.7412944952500768, 0.7252947533104309, 0.7087788906630541, 0.6917469073079472, 0.6741988032451092, 0.6561345784745408, 0.6375542329962424, 0.6184577668102129, 0.5988451799164534, 0.5787164723149628, 0.5580716440057423, 0.5369106949887907, 0.5152336252641092, 0.4930404348316966, 0.47033112369155394, 0.4471056918436803, 0.42336413928807604, 0.399106466024742, 0.3743326720536767, 0.34904275737488155, 0.3232367219883552, 0.29691456589409904, 0.2700762890921117, 0.24272189158239454, 0.21485137336494609, 0.18646473443976785, 0.1575619748068584, 0.1281430944662184, 0.09820809341784864, 0.06775697166174754, 0.03678972919791679, 0.005306366026354703, 0.026693117852937043, 0.059208722439960226, 0.09224044773471296, 0.12578829373719724, 0.15985226044741108, 0.19443234786535646, 0.22952855599103228, 0.26514088482443765, 0.30126933436557457, 0.3379139046144408, 0.37507459557103884, 0.4127514072353662, 0.4509443396074251, 0.48965339268721353, 0.5288785664747337, 0.5686198609699831, 0.6088772761729642, 0.6496508120836757, 0.6909404687021168, 0.7327462460282894, 0.7750681440621916, 0.8179061628038253, 0.8612603022531882, 0.905130562410283, 0.9495169432751072, 0.9944194448476629, 1.0398380671279481, 1.085772810115965, 1.1322236738117124, 1.1791906582151892, 1.2266737633263975, 1.2746729891453352, 1.3231883356720044, 1.3722198029064034, 1.421767390848534, 1.4718310994983934, 1.5224109288559853, 1.573506878921306, 1.6251189496943588, 1.6772471411751417, 1.729891453363654, 1.7830518862598983, 1.836728439863872, 1.890921114175577, 1.945629909195011, 2.0008548249221776, 2.056595861357073, 2.1128530184997003, 2.1696262963500583, 2.2269156949081452, 2.284721214173964, 2.3430428541475123, 2.401880614828792, 2.461234496217801, 2.5211044983145423, 2.5814906211190123, 2.6423928646312143, 2.7038112288511456, 2.765745713778809, 2.8281963194142024, 2.8911630457573247, 2.9546458928081796, 3.0186448605667646 ], [ 3.0232899469363392, 2.959290979177755, 2.895808132126901, 2.832841405783778, 2.770390800148385, 2.708456315220722, 2.6470379510007898, 2.5861357074885887, 2.525749584684118, 2.4658795825873776, 2.4065257011983676, 2.3476879405170883, 2.2893663005435396, 2.2315607812777216, 2.174271382719634, 2.1174981048692767, 2.0612409477266493, 2.005499911291754, 1.9502749955645875, 1.8955662005451526, 1.8413735262334479, 1.7876969726294738, 1.7345365397332304, 1.6818922275447172, 1.6297640360639347, 1.5781519652908829, 1.5270560152255612, 1.4764761858679698, 1.42641247721811, 1.3768648892759794, 1.32783342204158, 1.2793180755149112, 1.2313188496959726, 1.1838357445847647, 1.1368687601812875, 1.0904178964855409, 1.044483153497524, 0.9990645312172388, 0.9541620296446829, 0.909775648779859, 0.8659053886227641, 0.8225512491734004, 0.7797132304317673, 0.7373913323978647, 0.6955855550716925, 0.654295898453251, 0.6135223625425399, 0.5732649473395588, 0.5335236528443092, 0.49429847905678925, 0.4555894259770008, 0.4173964936049419, 0.3797196819406139, 0.34255899098401654, 0.30591442073514963, 0.26978597119401315, 0.23417364236060734, 0.19907743423493196, 0.16449734681698658, 0.13043338010677274, 0.09688553410428868, 0.06385380880953573, 0.031338204222512545, 0.0006612796567796453, 0.032144642828341397, 0.06311188529217249, 0.09356300704827325, 0.12349800809664335, 0.15291688843728302, 0.18181964807019213, 0.21020628699537114, 0.23807680521281915, 0.26543120272253673, 0.29226947952452376, 0.31859163561878023, 0.34439767100530627, 0.36968758568410176, 0.3944613796551667, 0.4187190529185011, 0.44246060547410504, 0.4656860373219788, 0.4883953484621216, 0.5105885388945339, 0.5322656086192159, 0.5534265576361672, 0.5740713859453879, 0.5942000935468782, 0.613812680440638, 0.6329091466266672, 0.6514894921049659, 0.6695537168755341, 0.687101820938372, 0.7041338042934793, 0.7206496669408557, 0.736649408880502, 0.7521330301124176, 0.7671005306366026, 0.7815519104530572, 0.7954871695617812, 0.8089063079627747, 0.8218093256560377, 0.8341962226415702, 0.8460669989193723, 0.8574216544894437, 0.8682601893517847, 0.878582603506395, 0.8883888969532749, 0.8976790696924243, 0.9064531217238432, 0.9147110530475315, 0.9224528636634893, 0.9296785535717166, 0.9363881227722133, 0.9425815712649797, 0.9482588990500154, 0.9534201061273206, 0.9580651924968953, 0.9621941581587394, 0.9658070031128531, 0.9689037273592362, 0.9714843308978888, 0.9735488137288109, 0.9750971758520025, 0.9761294172674635, 0.976645537975194, 0.976645537975194, 0.9761294172674635, 0.9750971758520025, 0.973548813728811, 0.9714843308978889, 0.9689037273592362, 0.9658070031128532, 0.9621941581587395, 0.9580651924968954, 0.9534201061273208, 0.9482588990500155, 0.9425815712649799, 0.9363881227722135, 0.9296785535717169, 0.9224528636634894, 0.9147110530475316, 0.9064531217238434, 0.8976790696924244, 0.8883888969532752, 0.8785826035063953, 0.868260189351785, 0.857421654489444, 0.8460669989193726, 0.8341962226415706, 0.8218093256560383, 0.8089063079627751, 0.7954871695617813, 0.7815519104530575, 0.7671005306366028, 0.7521330301124179, 0.7366494088805022, 0.7206496669408563, 0.7041338042934795, 0.6871018209383726, 0.6695537168755346, 0.6514894921049662, 0.6329091466266678, 0.6138126804406383, 0.5942000935468787, 0.5740713859453882, 0.5534265576361677, 0.5322656086192161, 0.5105885388945346, 0.48839534846212196, 0.46568603732197933, 0.4424606054741057, 0.4187190529185014, 0.39446137965516737, 0.3696875856841021, 0.34439767100530694, 0.31859163561878057, 0.2922694795245244, 0.26543120272253706, 0.23807680521281993, 0.21020628699537147, 0.18181964807019324, 0.1529168884372838, 0.1234980080966438, 0.09356300704827403, 0.06311188529217293, 0.032144642828342174, 0.0006612796567800894, 0.031338204222511656, 0.06385380880953484, 0.09688553410428757, 0.13043338010677186, 0.1644973468169857, 0.19907743423493107, 0.2341736423606069, 0.26978597119401226, 0.3059144207351492, 0.34255899098401543, 0.37971968194061345, 0.4173964936049408, 0.4555894259769997, 0.49429847905678814, 0.5335236528443084, 0.5732649473395577, 0.6135223625425388, 0.6542958984532503, 0.6955855550716914, 0.737391332397864, 0.7797132304317662, 0.8225512491734, 0.8659053886227628, 0.9097756487798576, 0.9541620296446818, 0.9990645312172375, 1.0444831534975227, 1.0904178964855396, 1.136868760181287, 1.1838357445847638, 1.2313188496959722, 1.2793180755149098, 1.327833422041579, 1.376864889275978, 1.4264124772181086, 1.476476185867968, 1.52705601522556, 1.5781519652908806, 1.6297640360639334, 1.6818922275447163, 1.7345365397332286, 1.787696972629473, 1.8413735262334465, 1.8955662005451517, 1.9502749955645857, 2.005499911291752, 2.0612409477266476, 2.117498104869275, 2.174271382719633, 2.23156078127772, 2.2893663005435387, 2.347687940517087, 2.4065257011983667, 2.465879582587376, 2.525749584684117, 2.586135707488587, 2.647037951000789, 2.70845631522072, 2.7703908001483835, 2.832841405783777, 2.8958081321268994, 2.959290979177754, 3.0232899469363392 ], [ 3.028451154013645, 2.9644521862550604, 2.9009693392042064, 2.838002612861083, 2.77555200722569, 2.713617522298027, 2.652199158078095, 2.591296914565894, 2.530910791761423, 2.471040789664683, 2.411686908275673, 2.3528491475943936, 2.294527507620845, 2.236721988355027, 2.179432589796939, 2.122659311946582, 2.0664021548039546, 2.0106611183690593, 1.9554362026418928, 1.9007274076224578, 1.8465347333107531, 1.792858179706779, 1.7396977468105357, 1.6870534346220225, 1.63492524314124, 1.5833131723681881, 1.5322172223028665, 1.481637392945275, 1.4315736842954152, 1.3820260963532847, 1.3329946291188852, 1.2844792825922164, 1.2364800567732779, 1.18899695166207, 1.1420299672585927, 1.0955791035628462, 1.0496443605748293, 1.004225738294544, 0.9593232367219882, 0.9149368558571642, 0.8710665957000694, 0.8277124562507057, 0.7848744375090726, 0.74255253947517, 0.7007467621489978, 0.6594571055305563, 0.6186835696198452, 0.5784261544168641, 0.5386848599216145, 0.4994596861340945, 0.4607506330543061, 0.4225577006822472, 0.38488088901791917, 0.3477201980613218, 0.3110756278124549, 0.2749471782713184, 0.2393348494379126, 0.20423864131223723, 0.16965855389429185, 0.13559458718407802, 0.10204674118159396, 0.069015015886841, 0.03649941129981782, 0.004499927420525518, 0.026983435751036122, 0.05795067821486721, 0.08840179997096798, 0.11833680101933808, 0.14775568135997774, 0.17665844099288686, 0.20504507991806586, 0.23291559813551388, 0.26026999564523146, 0.2871082724472185, 0.31343042854147496, 0.339236463928001, 0.3645263786067965, 0.3893001725778614, 0.4135578458411958, 0.43729939839679977, 0.4605248302446735, 0.48323414138481635, 0.5054273318172287, 0.5271044015419106, 0.5482653505588619, 0.5689101788680826, 0.5890388864695729, 0.6086514733633327, 0.6277479395493619, 0.6463282850276606, 0.6643925097982288, 0.6819406138610667, 0.698972597216174, 0.7154884598635505, 0.7314882018031967, 0.7469718230351123, 0.7619393235592973, 0.7763907033757519, 0.790325962484476, 0.8037451008854695, 0.8166481185787324, 0.829035015564265, 0.840905791842067, 0.8522604474121385, 0.8630989822744795, 0.8734213964290898, 0.8832276898759697, 0.8925178626151191, 0.9012919146465379, 0.9095498459702263, 0.9172916565861841, 0.9245173464944113, 0.9312269156949081, 0.9374203641876744, 0.9430976919727101, 0.9482588990500154, 0.95290398541959, 0.9570329510814342, 0.9606457960355478, 0.963742520281931, 0.9663231238205835, 0.9683876066515056, 0.9699359687746972, 0.9709682101901582, 0.9714843308978888, 0.9714843308978888, 0.9709682101901582, 0.9699359687746972, 0.9683876066515057, 0.9663231238205836, 0.963742520281931, 0.9606457960355479, 0.9570329510814343, 0.9529039854195901, 0.9482588990500155, 0.9430976919727102, 0.9374203641876746, 0.9312269156949082, 0.9245173464944116, 0.9172916565861843, 0.9095498459702264, 0.9012919146465381, 0.8925178626151192, 0.88322768987597, 0.87342139642909, 0.8630989822744797, 0.8522604474121387, 0.8409057918420674, 0.8290350155642653, 0.816648118578733, 0.8037451008854698, 0.7903259624844761, 0.7763907033757523, 0.7619393235592975, 0.7469718230351127, 0.731488201803197, 0.715488459863551, 0.6989725972161742, 0.6819406138610673, 0.6643925097982293, 0.6463282850276609, 0.6277479395493625, 0.608651473363333, 0.5890388864695735, 0.5689101788680829, 0.5482653505588624, 0.5271044015419108, 0.5054273318172293, 0.4832341413848167, 0.46052483024467405, 0.43729939839680043, 0.41355784584119615, 0.3893001725778621, 0.3645263786067968, 0.33923646392800166, 0.3134304285414753, 0.28710827244721915, 0.2602699956452318, 0.23291559813551466, 0.2050450799180662, 0.17665844099288797, 0.14775568135997852, 0.11833680101933852, 0.08840179997096875, 0.05795067821486766, 0.0269834357510369, 0.004499927420525074, 0.03649941129981693, 0.06901501588684011, 0.10204674118159285, 0.13559458718407713, 0.16965855389429096, 0.20423864131223635, 0.23933484943791217, 0.27494717827131754, 0.31107562781245446, 0.3477201980613207, 0.3848808890179187, 0.4225577006822461, 0.46075063305430497, 0.4994596861340934, 0.5386848599216136, 0.578426154416863, 0.618683569619844, 0.6594571055305556, 0.7007467621489967, 0.7425525394751693, 0.7848744375090715, 0.8277124562507052, 0.8710665957000681, 0.9149368558571629, 0.959323236721987, 1.0042257382945428, 1.049644360574828, 1.0955791035628448, 1.1420299672585923, 1.188996951662069, 1.2364800567732774, 1.284479282592215, 1.3329946291188843, 1.3820260963532833, 1.4315736842954139, 1.4816373929452733, 1.5322172223028652, 1.583313172368186, 1.6349252431412387, 1.6870534346220216, 1.739697746810534, 1.7928581797067782, 1.8465347333107518, 1.900727407622457, 1.955436202641891, 2.0106611183690575, 2.066402154803953, 2.12265931194658, 2.179432589796938, 2.236721988355025, 2.294527507620844, 2.3528491475943922, 2.411686908275672, 2.471040789664681, 2.530910791761422, 2.591296914565892, 2.652199158078094, 2.7136175222980254, 2.7755520072256887, 2.8380026128610822, 2.9009693392042046, 2.9644521862550595, 3.028451154013645 ], [ 3.034128481798681, 2.970129514040096, 2.906646666989242, 2.8436799406461186, 2.7812293350107256, 2.7192948500830627, 2.6578764858631305, 2.5969742423509294, 2.5365881195464586, 2.4767181174497184, 2.4173642360607084, 2.358526475379429, 2.3002048354058804, 2.2423993161400624, 2.1851099175819746, 2.1283366397316175, 2.07207948258899, 2.0163384461540947, 1.9611135304269283, 1.9064047354074933, 1.8522120610957886, 1.7985355074918146, 1.7453750745955712, 1.692730762407058, 1.6406025709262755, 1.5889905001532236, 1.537894550087902, 1.4873147207303106, 1.4372510120804507, 1.3877034241383202, 1.3386719569039207, 1.290156610377252, 1.2421573845583134, 1.1946742794471055, 1.1477072950436282, 1.1012564313478816, 1.0553216883598648, 1.0099030660795796, 0.9650005645070237, 0.9206141836421997, 0.8767439234851049, 0.8333897840357412, 0.7905517652941081, 0.7482298672602055, 0.7064240899340333, 0.6651344333155917, 0.6243608974048807, 0.5841034822018996, 0.54436218770665, 0.50513701391913, 0.46642796083934157, 0.4282350284672827, 0.39055821680295466, 0.3533975258463573, 0.3167529555974904, 0.2806245060563539, 0.2450121772229481, 0.20991596909727273, 0.17533588167932734, 0.1412719149691135, 0.10772406896662945, 0.0746923436718765, 0.04217673908485331, 0.01017725520556123, 0.02130610796600052, 0.05227335042983161, 0.08272447218593237, 0.11265947323430248, 0.14207835357494214, 0.17098111320785125, 0.19936775213303026, 0.22723827035047828, 0.25459266786019585, 0.2814309446621829, 0.30775310075643936, 0.3335591361429654, 0.3588490508217609, 0.3836228447928258, 0.4078805180561602, 0.43162207061176416, 0.4548475024596379, 0.47755681359978075, 0.49975000403219305, 0.5214270737568749, 0.5425880227738262, 0.563232851083047, 0.5833615586845373, 0.6029741455782971, 0.6220706117643262, 0.640650957242625, 0.6587151820131931, 0.6762632860760311, 0.6932952694311383, 0.7098111320785149, 0.725810874018161, 0.7412944952500766, 0.7562619957742617, 0.7707133755907163, 0.7846486346994404, 0.7980677731004339, 0.8109707907936968, 0.8233576877792294, 0.8352284640570314, 0.8465831196271029, 0.8574216544894437, 0.8677440686440542, 0.8775503620909341, 0.8868405348300834, 0.8956145868615023, 0.9038725181851905, 0.9116143288011485, 0.9188400187093757, 0.9255495879098724, 0.9317430364026388, 0.9374203641876745, 0.9425815712649797, 0.9472266576345544, 0.9513556232963986, 0.9549684682505122, 0.9580651924968953, 0.9606457960355479, 0.96271027886647, 0.9642586409896615, 0.9652908824051226, 0.9658070031128532, 0.9658070031128532, 0.9652908824051226, 0.9642586409896616, 0.9627102788664701, 0.9606457960355479, 0.9580651924968954, 0.9549684682505122, 0.9513556232963987, 0.9472266576345545, 0.9425815712649799, 0.9374203641876746, 0.9317430364026389, 0.9255495879098726, 0.9188400187093759, 0.9116143288011486, 0.9038725181851908, 0.8956145868615025, 0.8868405348300835, 0.8775503620909343, 0.8677440686440543, 0.8574216544894441, 0.846583119627103, 0.8352284640570318, 0.8233576877792297, 0.8109707907936974, 0.7980677731004342, 0.7846486346994405, 0.7707133755907167, 0.7562619957742619, 0.7412944952500771, 0.7258108740181612, 0.7098111320785154, 0.6932952694311385, 0.6762632860760316, 0.6587151820131937, 0.6406509572426253, 0.6220706117643269, 0.6029741455782973, 0.5833615586845378, 0.5632328510830473, 0.5425880227738268, 0.5214270737568751, 0.4997500040321937, 0.4775568135997811, 0.45484750245963845, 0.43162207061176483, 0.40788051805616055, 0.3836228447928265, 0.3588490508217612, 0.33355913614296606, 0.3077531007564397, 0.28143094466218355, 0.2545926678601962, 0.22723827035047905, 0.1993677521330306, 0.17098111320785236, 0.14207835357494292, 0.11265947323430292, 0.08272447218593315, 0.052273350429832055, 0.021306107966001298, 0.010177255205560787, 0.04217673908485242, 0.0746923436718756, 0.10772406896662834, 0.14127191496911262, 0.17533588167932646, 0.20991596909727184, 0.24501217722294766, 0.28062450605635303, 0.31675295559748995, 0.3533975258463562, 0.3905582168029542, 0.42823502846728156, 0.46642796083934046, 0.5051370139191289, 0.5443621877066491, 0.5841034822018984, 0.6243608974048795, 0.6651344333155911, 0.7064240899340322, 0.7482298672602048, 0.790551765294107, 0.8333897840357407, 0.8767439234851035, 0.9206141836421984, 0.9650005645070225, 1.0099030660795782, 1.0553216883598635, 1.1012564313478803, 1.1477072950436278, 1.1946742794471046, 1.242157384558313, 1.2901566103772506, 1.3386719569039198, 1.3877034241383188, 1.4372510120804494, 1.4873147207303088, 1.5378945500879007, 1.5889905001532214, 1.6406025709262742, 1.692730762407057, 1.7453750745955694, 1.7985355074918137, 1.8522120610957873, 1.9064047354074924, 1.9611135304269265, 2.016338446154093, 2.0720794825889883, 2.1283366397316157, 2.1851099175819737, 2.2423993161400606, 2.3002048354058795, 2.3585264753794277, 2.4173642360607075, 2.4767181174497166, 2.5365881195464577, 2.5969742423509277, 2.6578764858631296, 2.719294850083061, 2.7812293350107242, 2.8436799406461177, 2.90664666698924, 2.970129514040095, 3.034128481798681 ], [ 3.040321930291447, 2.9763229625328624, 2.9128401154820085, 2.849873389138885, 2.787422783503492, 2.7254882985758293, 2.664069934355897, 2.603167690843696, 2.542781568039225, 2.482911565942485, 2.423557684553475, 2.3647199238721957, 2.306398283898647, 2.248592764632829, 2.191303366074741, 2.134530088224384, 2.0782729310817567, 2.0225318946468613, 1.9673069789196949, 1.91259818390026, 1.8584055095885552, 1.8047289559845812, 1.7515685230883378, 1.6989242108998246, 1.646796019419042, 1.5951839486459902, 1.5440879985806686, 1.4935081692230772, 1.4434444605732173, 1.3938968726310867, 1.3448654053966873, 1.2963500588700185, 1.24835083305108, 1.200867727939872, 1.1539007435363948, 1.1074498798406482, 1.0615151368526314, 1.0160965145723462, 0.97119401299979, 0.9268076321349661, 0.8829373719778713, 0.8395832325285075, 0.7967452137868745, 0.7544233157529718, 0.7126175384267996, 0.6713278818083581, 0.630554345897647, 0.5902969306946659, 0.5505556361994164, 0.5113304624118964, 0.47262140933210794, 0.43442847696004905, 0.39675166529572103, 0.3595909743391237, 0.32294640409025677, 0.2868179545491203, 0.2512056257157145, 0.2161094175900391, 0.18152933017209372, 0.14746536346187988, 0.11391751745939582, 0.08088579216464287, 0.04837018757761968, 0.016370703698327604, 0.015112659473234258, 0.04607990193706535, 0.07653102369316611, 0.10646602474153621, 0.13588490508217588, 0.164787664715085, 0.193174303640264, 0.22104482185771201, 0.2483992193674296, 0.2752374961694166, 0.3015596522636731, 0.32736568765019913, 0.3526556023289946, 0.37742939630005956, 0.40168706956339395, 0.4254286221189979, 0.44865405396687164, 0.4713633651070144, 0.4935565555394268, 0.5152336252641087, 0.53639457428106, 0.5570394025902807, 0.5771681101917709, 0.5967806970855307, 0.61587716327156, 0.6344575087498587, 0.6525217335204269, 0.6700698375832648, 0.687101820938372, 0.7036176835857486, 0.7196174255253948, 0.7351010467573104, 0.7500685472814954, 0.7645199270979499, 0.778455186206674, 0.7918743246076675, 0.8047773423009306, 0.817164239286463, 0.8290350155642652, 0.8403896711343366, 0.8512282059966775, 0.8615506201512879, 0.8713569135981678, 0.8806470863373171, 0.8894211383687359, 0.8976790696924243, 0.9054208803083821, 0.9126465702166093, 0.9193561394171061, 0.9255495879098725, 0.9312269156949082, 0.9363881227722134, 0.9410332091417881, 0.9451621748036322, 0.9487750197577459, 0.951871744004129, 0.9544523475427816, 0.9565168303737037, 0.9580651924968953, 0.9590974339123564, 0.9596135546200868, 0.9596135546200868, 0.9590974339123564, 0.9580651924968953, 0.9565168303737037, 0.9544523475427816, 0.9518717440041291, 0.9487750197577459, 0.9451621748036323, 0.9410332091417881, 0.9363881227722135, 0.9312269156949082, 0.9255495879098726, 0.9193561394171064, 0.9126465702166097, 0.9054208803083823, 0.8976790696924244, 0.8894211383687362, 0.8806470863373173, 0.871356913598168, 0.861550620151288, 0.8512282059966778, 0.8403896711343367, 0.8290350155642654, 0.8171642392864633, 0.804777342300931, 0.7918743246076678, 0.7784551862066742, 0.7645199270979504, 0.7500685472814956, 0.7351010467573107, 0.719617425525395, 0.703617683585749, 0.6871018209383722, 0.6700698375832653, 0.6525217335204274, 0.634457508749859, 0.6158771632715605, 0.596780697085531, 0.5771681101917715, 0.557039402590281, 0.5363945742810605, 0.5152336252641089, 0.49355655553942734, 0.4713633651070147, 0.4486540539668722, 0.42542862211899857, 0.4016870695633943, 0.3774293963000602, 0.35265560232899495, 0.3273656876501998, 0.30155965226367343, 0.2752374961694173, 0.24839921936742992, 0.2210448218577128, 0.19317430364026433, 0.1647876647150861, 0.13588490508217665, 0.10646602474153666, 0.07653102369316689, 0.04607990193706579, 0.015112659473235035, 0.01637070369832716, 0.048370187577618795, 0.08088579216464198, 0.11391751745939471, 0.147465363461879, 0.18152933017209283, 0.2161094175900382, 0.25120562571571403, 0.2868179545491194, 0.3229464040902563, 0.35959097433912257, 0.3967516652957206, 0.43442847696004794, 0.47262140933210683, 0.5113304624118953, 0.5505556361994155, 0.5902969306946648, 0.6305543458976459, 0.6713278818083575, 0.7126175384267985, 0.7544233157529712, 0.7967452137868734, 0.8395832325285071, 0.8829373719778699, 0.9268076321349648, 0.9711940129997889, 1.0160965145723448, 1.06151513685263, 1.107449879840647, 1.1539007435363944, 1.2008677279398712, 1.2483508330510795, 1.2963500588700172, 1.3448654053966864, 1.3938968726310854, 1.443444460573216, 1.4935081692230754, 1.5440879985806673, 1.595183948645988, 1.6467960194190407, 1.6989242108998237, 1.751568523088336, 1.8047289559845803, 1.8584055095885539, 1.912598183900259, 1.967306978919693, 2.0225318946468596, 2.078272931081755, 2.1345300882243823, 2.1913033660747403, 2.248592764632827, 2.306398283898646, 2.3647199238721943, 2.423557684553474, 2.482911565942483, 2.5427815680392243, 2.6031676908436943, 2.6640699343558962, 2.7254882985758275, 2.787422783503491, 2.8498733891388843, 2.9128401154820067, 2.9763229625328615, 3.040321930291447 ], [ 3.0470314994919434, 2.983032531733359, 2.919549684682505, 2.8565829583393816, 2.7941323527039885, 2.7321978677763257, 2.6707795035563935, 2.6098772600441924, 2.5494911372397215, 2.4896211351429813, 2.4302672537539713, 2.371429493072692, 2.3131078530991434, 2.2553023338333253, 2.1980129352752376, 2.1412396574248804, 2.084982500282253, 2.0292414638473577, 1.9740165481201912, 1.9193077531007563, 1.8651150787890516, 1.8114385251850775, 1.7582780922888341, 1.705633780100321, 1.6535055886195384, 1.6018935178464866, 1.550797567781165, 1.5002177384235735, 1.4501540297737137, 1.4006064418315831, 1.3515749745971837, 1.303059628070515, 1.2550604022515763, 1.2075772971403684, 1.1606103127368912, 1.1141594490411446, 1.0682247060531278, 1.0228060837728425, 0.9779035822002866, 0.9335172013354627, 0.8896469411783678, 0.8462928017290041, 0.803454782987371, 0.7611328849534684, 0.7193271076272962, 0.6780374510088547, 0.6372639150981436, 0.5970064998951625, 0.557265205399913, 0.518040031612393, 0.47933097853260453, 0.44113804616054564, 0.4034612344962176, 0.36630054353962027, 0.32965597329075336, 0.2935275237496169, 0.25791519491621107, 0.2228189867905357, 0.1882388993725903, 0.15417493266237647, 0.12062708665989241, 0.08759536136513946, 0.05507975677811627, 0.023080272898824195, 0.008403090272737557, 0.03937033273656865, 0.06982145449266941, 0.09975645554103951, 0.12917533588167918, 0.1580780955145883, 0.1864647344397673, 0.2143352526572153, 0.2416896501669329, 0.2685279269689199, 0.2948500830631764, 0.32065611844970243, 0.3459460331284979, 0.37071982709956286, 0.39497750036289725, 0.4187190529185012, 0.44194448476637493, 0.4646537959065178, 0.4868469863389301, 0.508524056063612, 0.5296850050805633, 0.550329833389784, 0.5704585409912744, 0.5900711278850341, 0.6091675940710632, 0.627747939549362, 0.6458121643199302, 0.6633602683827682, 0.6803922517378753, 0.6969081143852519, 0.7129078563248981, 0.7283914775568137, 0.7433589780809987, 0.7578103578974533, 0.7717456170061774, 0.7851647554071709, 0.7980677731004339, 0.8104546700859664, 0.8223254463637685, 0.8336801019338399, 0.8445186367961808, 0.8548410509507912, 0.8646473443976711, 0.8739375171368204, 0.8827115691682393, 0.8909695004919276, 0.8987113111078855, 0.9059370010161127, 0.9126465702166094, 0.9188400187093758, 0.9245173464944115, 0.9296785535717167, 0.9343236399412914, 0.9384526056031356, 0.9420654505572492, 0.9451621748036323, 0.9477427783422849, 0.949807261173207, 0.9513556232963986, 0.9523878647118597, 0.9529039854195902, 0.9529039854195902, 0.9523878647118597, 0.9513556232963987, 0.9498072611732071, 0.9477427783422849, 0.9451621748036324, 0.9420654505572492, 0.9384526056031357, 0.9343236399412915, 0.9296785535717169, 0.9245173464944116, 0.9188400187093759, 0.9126465702166097, 0.905937001016113, 0.8987113111078856, 0.8909695004919278, 0.8827115691682396, 0.8739375171368206, 0.8646473443976713, 0.8548410509507913, 0.8445186367961811, 0.83368010193384, 0.8223254463637688, 0.8104546700859667, 0.7980677731004344, 0.7851647554071712, 0.7717456170061775, 0.7578103578974538, 0.7433589780809989, 0.7283914775568141, 0.7129078563248983, 0.6969081143852525, 0.6803922517378755, 0.6633602683827686, 0.6458121643199307, 0.6277479395493624, 0.6091675940710639, 0.5900711278850344, 0.5704585409912748, 0.5503298333897844, 0.5296850050805638, 0.5085240560636122, 0.48684698633893075, 0.4646537959065181, 0.4419444847663755, 0.41871905291850187, 0.3949775003628976, 0.3707198270995635, 0.34594603312849825, 0.3206561184497031, 0.2948500830631767, 0.2685279269689206, 0.24168965016693322, 0.2143352526572161, 0.18646473443976763, 0.1580780955145894, 0.12917533588167995, 0.09975645554103996, 0.06982145449267019, 0.03937033273656909, 0.008403090272738334, 0.02308027289882375, 0.055079756778115385, 0.08759536136513857, 0.1206270866598913, 0.15417493266237559, 0.18823889937258942, 0.2228189867905348, 0.2579151949162106, 0.293527523749616, 0.3296559732907529, 0.36630054353961916, 0.4034612344962172, 0.44113804616054453, 0.4793309785326034, 0.5180400316123919, 0.5572652053999121, 0.5970064998951614, 0.6372639150981425, 0.678037451008854, 0.7193271076272951, 0.7611328849534678, 0.8034547829873699, 0.8462928017290037, 0.8896469411783665, 0.9335172013354613, 0.9779035822002855, 1.0228060837728412, 1.0682247060531265, 1.1141594490411433, 1.1606103127368907, 1.2075772971403675, 1.255060402251576, 1.3030596280705136, 1.3515749745971828, 1.4006064418315818, 1.4501540297737123, 1.5002177384235718, 1.5507975677811636, 1.6018935178464844, 1.6535055886195371, 1.70563378010032, 1.7582780922888324, 1.8114385251850766, 1.8651150787890503, 1.9193077531007554, 1.9740165481201895, 2.029241463847356, 2.0849825002822513, 2.1412396574248787, 2.1980129352752367, 2.2553023338333236, 2.3131078530991425, 2.3714294930726907, 2.4302672537539705, 2.4896211351429796, 2.5494911372397207, 2.6098772600441906, 2.6707795035563926, 2.732197867776324, 2.794132352703987, 2.8565829583393807, 2.919549684682503, 2.983032531733358, 3.0470314994919434 ], [ 3.054257189400171, 2.9902582216415863, 2.9267753745907323, 2.863808648247609, 2.801358042612216, 2.739423557684553, 2.678005193464621, 2.61710294995242, 2.556716827147949, 2.496846825051209, 2.437492943662199, 2.3786551829809195, 2.320333543007371, 2.262528023741553, 2.205238625183465, 2.148465347333108, 2.0922081901904805, 2.036467153755585, 1.9812422380284187, 1.9265334430089838, 1.872340768697279, 1.818664215093305, 1.7655037821970616, 1.7128594700085484, 1.660731278527766, 1.609119207754714, 1.5580232576893924, 1.507443428331801, 1.4573797196819411, 1.4078321317398106, 1.3588006645054111, 1.3102853179787424, 1.2622860921598038, 1.214802987048596, 1.1678360026451187, 1.121385138949372, 1.0754503959613553, 1.03003177368107, 0.9851292721085141, 0.9407428912436901, 0.8968726310865953, 0.8535184916372316, 0.8106804728955985, 0.7683585748616959, 0.7265527975355237, 0.6852631409170822, 0.6444896050063711, 0.60423218980339, 0.5644908953081405, 0.5252657215206205, 0.486556668440832, 0.4483637360687731, 0.4106869244044451, 0.37352623344784774, 0.33688166319898083, 0.30075321365784435, 0.26514088482443854, 0.23004467669876316, 0.19546458928081778, 0.16140062257060395, 0.12785277656811989, 0.09482105127336693, 0.062305446686343746, 0.030305962807051445, 0.001177400364510195, 0.032144642828341286, 0.06259576458444205, 0.09253076563281215, 0.12194964597345181, 0.15085240560636093, 0.17923904453153994, 0.20710956274898795, 0.23446396025870553, 0.26130223706069255, 0.28762439315494903, 0.31343042854147507, 0.33872034322027056, 0.3634941371913355, 0.3877518104546699, 0.41149336301027384, 0.4347187948581476, 0.4574281059982904, 0.4796212964307027, 0.5012983661553846, 0.5224593151723359, 0.5431041434815567, 0.5632328510830469, 0.5828454379768067, 0.601941904162836, 0.6205222496411347, 0.6385864744117029, 0.6561345784745407, 0.673166561829648, 0.6896824244770245, 0.7056821664166707, 0.7211657876485863, 0.7361332881727713, 0.7505846679892259, 0.7645199270979499, 0.7779390654989435, 0.7908420831922065, 0.803228980177739, 0.8150997564555411, 0.8264544120256125, 0.8372929468879535, 0.8476153610425639, 0.8574216544894437, 0.8667118272285931, 0.875485879260012, 0.8837438105837002, 0.891485621199658, 0.8987113111078854, 0.9054208803083821, 0.9116143288011485, 0.9172916565861842, 0.9224528636634893, 0.927097950033064, 0.9312269156949082, 0.9348397606490219, 0.9379364848954049, 0.9405170884340576, 0.9425815712649797, 0.9441299333881712, 0.9451621748036323, 0.9456782955113628, 0.9456782955113628, 0.9451621748036323, 0.9441299333881713, 0.9425815712649798, 0.9405170884340576, 0.937936484895405, 0.9348397606490219, 0.9312269156949083, 0.927097950033064, 0.9224528636634894, 0.9172916565861843, 0.9116143288011486, 0.9054208803083823, 0.8987113111078856, 0.8914856211996582, 0.8837438105837003, 0.8754858792600122, 0.8667118272285932, 0.857421654489444, 0.847615361042564, 0.8372929468879537, 0.8264544120256128, 0.8150997564555414, 0.8032289801777392, 0.790842083192207, 0.7779390654989439, 0.7645199270979501, 0.7505846679892263, 0.7361332881727716, 0.7211657876485867, 0.7056821664166709, 0.689682424477025, 0.6731665618296482, 0.6561345784745413, 0.6385864744117034, 0.6205222496411349, 0.6019419041628364, 0.582845437976807, 0.5632328510830475, 0.5431041434815569, 0.5224593151723365, 0.5012983661553849, 0.4796212964307034, 0.45742810599829076, 0.4347187948581481, 0.4114933630102745, 0.3877518104546702, 0.36349413719133616, 0.3387203432202709, 0.31343042854147574, 0.28762439315494936, 0.2613022370606932, 0.23446396025870586, 0.20710956274898873, 0.17923904453154027, 0.15085240560636204, 0.12194964597345259, 0.0925307656328126, 0.06259576458444283, 0.03214464282834173, 0.001177400364510972, 0.030305962807051, 0.06230544668634286, 0.09482105127336604, 0.12785277656811878, 0.16140062257060306, 0.1954645892808169, 0.23004467669876227, 0.2651408848244381, 0.30075321365784347, 0.3368816631989804, 0.37352623344784663, 0.41068692440444465, 0.448363736068772, 0.4865566684408309, 0.5252657215206193, 0.5644908953081396, 0.6042321898033889, 0.64448960500637, 0.6852631409170815, 0.7265527975355226, 0.7683585748616952, 0.8106804728955974, 0.8535184916372311, 0.896872631086594, 0.9407428912436888, 0.985129272108513, 1.0300317736810687, 1.075450395961354, 1.1213851389493708, 1.1678360026451182, 1.214802987048595, 1.2622860921598034, 1.310285317978741, 1.3588006645054103, 1.4078321317398093, 1.4573797196819398, 1.5074434283317992, 1.558023257689391, 1.6091192077547118, 1.6607312785277646, 1.7128594700085475, 1.7655037821970598, 1.8186642150933041, 1.8723407686972777, 1.9265334430089829, 1.981242238028417, 2.0364671537555834, 2.0922081901904788, 2.148465347333106, 2.205238625183464, 2.262528023741551, 2.32033354300737, 2.378655182980918, 2.437492943662198, 2.496846825051207, 2.556716827147948, 2.617102949952418, 2.67800519346462, 2.7394235576845514, 2.8013580426122147, 2.863808648247608, 2.9267753745907306, 2.9902582216415854, 3.054257189400171 ], [ 3.0619990000161286, 2.998000032257544, 2.93451718520669, 2.8715504588635667, 2.8090998532281737, 2.747165368300511, 2.6857470040805786, 2.6248447605683776, 2.5644586377639067, 2.5045886356671665, 2.4452347542781565, 2.386396993596877, 2.3280753536233285, 2.2702698343575105, 2.2129804357994227, 2.1562071579490656, 2.0999500008064382, 2.044208964371543, 1.9889840486443764, 1.9342752536249415, 1.8800825793132367, 1.8264060257092627, 1.7732455928130193, 1.7206012806245061, 1.6684730891437236, 1.6168610183706718, 1.5657650683053501, 1.5151852389477587, 1.4651215302978988, 1.4155739423557683, 1.3665424751213688, 1.3180271285947, 1.2700279027757615, 1.2225447976645536, 1.1755778132610764, 1.1291269495653298, 1.083192206577313, 1.0377735842970277, 0.992871082724472, 0.9484847018596481, 0.9046144417025532, 0.8612603022531895, 0.8184222835115564, 0.7761003854776538, 0.7342946081514816, 0.6930049515330401, 0.652231415622329, 0.6119740004193479, 0.5722327059240984, 0.5330075321365784, 0.4942984790567899, 0.456105546684731, 0.418428735020403, 0.38126804406380566, 0.34462347381493874, 0.30849502427380227, 0.27288269544039645, 0.23778648731472107, 0.2032063998967757, 0.16914243318656186, 0.1355945871840778, 0.10256286188932484, 0.07004725730230166, 0.03804777342300936, 0.0065644102514477165, 0.024402832212383374, 0.05485395396848414, 0.08478895501685424, 0.1142078353574939, 0.14311059499040302, 0.17149723391558203, 0.19936775213303004, 0.22672214964274762, 0.25356042644473464, 0.2798825825389911, 0.30568861792551716, 0.33097853260431265, 0.3557523265753776, 0.380009999838712, 0.4037515523943159, 0.42697698424218966, 0.4496862953823325, 0.4718794858147448, 0.4935565555394267, 0.514717504556378, 0.5353623328655988, 0.5554910404670891, 0.5751036273608489, 0.5942000935468781, 0.6127804390251768, 0.630844663795745, 0.6483927678585829, 0.66542475121369, 0.6819406138610666, 0.6979403558007128, 0.7134239770326284, 0.7283914775568134, 0.742842857373268, 0.7567781164819921, 0.7701972548829856, 0.7831002725762486, 0.7954871695617811, 0.8073579458395832, 0.8187126014096546, 0.8295511362719956, 0.8398735504266059, 0.8496798438734858, 0.8589700166126352, 0.8677440686440541, 0.8760019999677424, 0.8837438105837001, 0.8909695004919275, 0.8976790696924242, 0.9038725181851905, 0.9095498459702263, 0.9147110530475314, 0.9193561394171061, 0.9234851050789503, 0.9270979500330639, 0.9301946742794471, 0.9327752778180997, 0.9348397606490217, 0.9363881227722133, 0.9374203641876744, 0.9379364848954049, 0.9379364848954049, 0.9374203641876744, 0.9363881227722134, 0.9348397606490219, 0.9327752778180998, 0.9301946742794471, 0.927097950033064, 0.9234851050789504, 0.9193561394171061, 0.9147110530475316, 0.9095498459702264, 0.9038725181851908, 0.8976790696924244, 0.8909695004919278, 0.8837438105837003, 0.8760019999677424, 0.8677440686440543, 0.8589700166126353, 0.849679843873486, 0.8398735504266062, 0.8295511362719958, 0.8187126014096548, 0.8073579458395835, 0.7954871695617814, 0.7831002725762491, 0.770197254882986, 0.7567781164819922, 0.7428428573732684, 0.7283914775568137, 0.7134239770326288, 0.697940355800713, 0.6819406138610672, 0.6654247512136903, 0.6483927678585834, 0.6308446637957454, 0.6127804390251771, 0.5942000935468786, 0.5751036273608491, 0.5554910404670896, 0.5353623328655991, 0.5147175045563785, 0.493556555539427, 0.4718794858147455, 0.44968629538233285, 0.4269769842421902, 0.4037515523943166, 0.3800099998387123, 0.35575232657537825, 0.330978532604313, 0.3056886179255178, 0.27988258253899145, 0.2535604264447353, 0.22672214964274795, 0.19936775213303082, 0.17149723391558236, 0.14311059499040413, 0.11420783535749468, 0.08478895501685468, 0.054853953968484914, 0.024402832212383818, 0.006564410251446828, 0.03804777342300891, 0.07004725730230077, 0.10256286188932395, 0.1355945871840767, 0.16914243318656097, 0.2032063998967748, 0.23778648731472019, 0.272882695440396, 0.3084950242738014, 0.3446234738149383, 0.38126804406380455, 0.41842873502040256, 0.4561055466847299, 0.4942984790567888, 0.5330075321365773, 0.5722327059240975, 0.6119740004193468, 0.6522314156223279, 0.6930049515330394, 0.7342946081514805, 0.7761003854776531, 0.8184222835115553, 0.8612603022531891, 0.9046144417025519, 0.9484847018596467, 0.9928710827244709, 1.0377735842970264, 1.0831922065773116, 1.1291269495653284, 1.175577813261076, 1.2225447976645527, 1.270027902775761, 1.3180271285946987, 1.366542475121368, 1.415573942355767, 1.4651215302978975, 1.515185238947757, 1.5657650683053488, 1.6168610183706695, 1.6684730891437223, 1.7206012806245052, 1.7732455928130175, 1.8264060257092618, 1.8800825793132354, 1.9342752536249406, 1.9889840486443746, 2.044208964371541, 2.0999500008064365, 2.156207157949064, 2.212980435799422, 2.2702698343575087, 2.3280753536233276, 2.386396993596876, 2.4452347542781556, 2.5045886356671647, 2.564458637763906, 2.624844760568376, 2.6857470040805778, 2.747165368300509, 2.8090998532281723, 2.871550458863566, 2.9345171852066883, 2.998000032257543, 3.0619990000161286 ], [ 3.0702569313398174, 3.0062579635812323, 2.9427751165303784, 2.879808390187255, 2.817357784551862, 2.755423299624199, 2.694004935404267, 2.633102691892066, 2.572716569087595, 2.512846566990855, 2.453492685601845, 2.3946549249205655, 2.336333284947017, 2.278527765681199, 2.221238367123111, 2.164465089272754, 2.1082079321301266, 2.052466895695231, 1.9972419799680647, 1.9425331849486298, 1.888340510636925, 1.834663957032951, 1.7815035241367077, 1.7288592119481945, 1.676731020467412, 1.62511894969436, 1.5740229996290385, 1.523443170271447, 1.4733794616215872, 1.4238318736794566, 1.3748004064450572, 1.3262850599183884, 1.2782858340994498, 1.230802728988242, 1.1838357445847647, 1.1373848808890181, 1.0914501379010013, 1.046031515620716, 1.0011290140481601, 0.9567426331833362, 0.9128723730262414, 0.8695182335768776, 0.8266802148352446, 0.7843583168013419, 0.7425525394751697, 0.7012628828567282, 0.6604893469460171, 0.620231931743036, 0.5804906372477865, 0.5412654634602665, 0.502556410380478, 0.46436347800841915, 0.42668666634409114, 0.3895259753874938, 0.35288140513862687, 0.3167529555974904, 0.2811406267640846, 0.2460444186384092, 0.21146433122046382, 0.17740036451024999, 0.14385251850776593, 0.11082079321301297, 0.07830518862598979, 0.04630570474669771, 0.014822341575135844, 0.016144900888695246, 0.04659602264479601, 0.07653102369316611, 0.10594990403380578, 0.1348526636667149, 0.1632393025918939, 0.1911098208093419, 0.2184642183190595, 0.24530249512104652, 0.271624651215303, 0.29743068660182903, 0.3227206012806245, 0.34749439525168946, 0.37175206851502385, 0.3954936210706278, 0.41871905291850153, 0.4414283640586443, 0.4636215544910567, 0.48529862421573855, 0.5064595732326898, 0.5271044015419106, 0.5472331091434008, 0.5668456960371606, 0.5859421622231898, 0.6045225077014886, 0.6225867324720568, 0.6401348365348947, 0.6571668198900018, 0.6736826825373785, 0.6896824244770245, 0.7051660457089401, 0.7201335462331253, 0.7345849260495798, 0.7485201851583039, 0.7619393235592974, 0.7748423412525605, 0.7872292382380929, 0.7991000145158951, 0.8104546700859665, 0.8212932049483074, 0.8316156191029178, 0.8414219125497977, 0.8507120852889469, 0.8594861373203658, 0.8677440686440542, 0.875485879260012, 0.8827115691682392, 0.889421138368736, 0.8956145868615023, 0.9012919146465381, 0.9064531217238433, 0.9110982080934179, 0.9152271737552621, 0.9188400187093757, 0.9219367429557589, 0.9245173464944115, 0.9265818293253336, 0.9281301914485252, 0.9291624328639863, 0.9296785535717167, 0.9296785535717167, 0.9291624328639863, 0.9281301914485252, 0.9265818293253336, 0.9245173464944115, 0.921936742955759, 0.9188400187093758, 0.9152271737552622, 0.911098208093418, 0.9064531217238434, 0.9012919146465381, 0.8956145868615025, 0.8894211383687362, 0.8827115691682396, 0.8754858792600122, 0.8677440686440543, 0.859486137320366, 0.8507120852889472, 0.8414219125497979, 0.8316156191029179, 0.8212932049483077, 0.8104546700859666, 0.7991000145158953, 0.7872292382380932, 0.7748423412525609, 0.7619393235592977, 0.7485201851583041, 0.7345849260495803, 0.7201335462331255, 0.7051660457089406, 0.6896824244770248, 0.673682682537379, 0.657166819890002, 0.6401348365348951, 0.6225867324720573, 0.6045225077014889, 0.5859421622231904, 0.5668456960371608, 0.5472331091434014, 0.5271044015419108, 0.5064595732326904, 0.48529862421573877, 0.46362155449105724, 0.4414283640586446, 0.4187190529185021, 0.39549362107062846, 0.3717520685150242, 0.3474943952516901, 0.32272060128062485, 0.2974306866018297, 0.2716246512153033, 0.24530249512104718, 0.21846421831905982, 0.1911098208093427, 0.16323930259189423, 0.134852663666716, 0.10594990403380655, 0.07653102369316656, 0.046596022644796786, 0.01614490088869569, 0.014822341575135178, 0.04630570474669726, 0.0783051886259889, 0.11082079321301208, 0.14385251850776481, 0.1774003645102491, 0.21146433122046293, 0.2460444186384083, 0.28114062676408413, 0.3167529555974895, 0.3528814051386264, 0.3895259753874927, 0.4266866663440907, 0.46436347800841804, 0.5025564103804769, 0.5412654634602654, 0.5804906372477856, 0.6202319317430349, 0.660489346946016, 0.7012628828567276, 0.7425525394751686, 0.7843583168013413, 0.8266802148352435, 0.8695182335768772, 0.91287237302624, 0.9567426331833349, 1.0011290140481592, 1.0460315156207147, 1.091450137901, 1.1373848808890168, 1.1838357445847643, 1.230802728988241, 1.2782858340994494, 1.326285059918387, 1.3748004064450563, 1.4238318736794553, 1.4733794616215858, 1.5234431702714453, 1.5740229996290371, 1.6251189496943579, 1.6767310204674106, 1.7288592119481936, 1.7815035241367059, 1.8346639570329502, 1.8883405106369238, 1.942533184948629, 1.997241979968063, 2.0524668956952294, 2.108207932130125, 2.164465089272752, 2.22123836712311, 2.278527765681197, 2.336333284947016, 2.394654924920564, 2.453492685601844, 2.512846566990853, 2.572716569087594, 2.633102691892064, 2.694004935404266, 2.7554232996241974, 2.8173577845518607, 2.879808390187254, 2.9427751165303766, 3.0062579635812314, 3.0702569313398174 ], [ 3.0790309833712355, 3.0150320156126513, 2.9515491685617974, 2.888582442218674, 2.826131836583281, 2.764197351655618, 2.702778987435686, 2.641876743923485, 2.581490621119014, 2.521620619022274, 2.462266737633264, 2.4034289769519845, 2.345107336978436, 2.287301817712618, 2.23001241915453, 2.173239141304173, 2.1169819841615456, 2.0612409477266502, 2.0060160319994838, 1.9513072369800488, 1.897114562668344, 1.84343800906437, 1.7902775761681267, 1.7376332639796135, 1.685505072498831, 1.6338930017257791, 1.5827970516604575, 1.532217222302866, 1.4821535136530062, 1.4326059257108756, 1.3835744584764762, 1.3350591119498074, 1.2870598861308689, 1.239576781019661, 1.1926097966161837, 1.1461589329204371, 1.1002241899324203, 1.054805567652135, 1.0099030660795791, 0.9655166852147552, 0.9216464250576604, 0.8782922856082966, 0.8354542668666636, 0.793132368832761, 0.7513265915065888, 0.7100369348881472, 0.6692633989774361, 0.629005983774455, 0.5892646892792055, 0.5500395154916855, 0.5113304624118971, 0.47313753003983816, 0.43546071837551015, 0.3983000274189128, 0.3616554571700459, 0.3255270076289094, 0.2899146787955036, 0.2548184706698282, 0.22023838325188283, 0.186174416541669, 0.15262657053918494, 0.11959484524443198, 0.0870792406574088, 0.055079756778116495, 0.023596393606554855, 0.007370848857276235, 0.037821970613377, 0.0677569716617471, 0.09717585200238676, 0.12607861163529588, 0.1544652505604749, 0.1823357687779229, 0.20969016628764048, 0.2365284430896275, 0.262850599183884, 0.28865663457041, 0.3139465492492055, 0.33872034322027045, 0.36297801648360484, 0.3867195690392088, 0.4099450008870825, 0.4326543120272254, 0.4548475024596377, 0.47652457218431954, 0.49768552120127085, 0.5183303495104916, 0.5384590571119818, 0.5580716440057416, 0.5771681101917709, 0.5957484556700696, 0.6138126804406379, 0.6313607845034757, 0.6483927678585829, 0.6649086305059595, 0.6809083724456056, 0.6963919936775212, 0.7113594942017063, 0.7258108740181608, 0.7397461331268849, 0.7531652715278785, 0.7660682892211415, 0.778455186206674, 0.7903259624844761, 0.8016806180545475, 0.8125191529168885, 0.8228415670714988, 0.8326478605183787, 0.841938033257528, 0.8507120852889469, 0.8589700166126353, 0.866711827228593, 0.8739375171368203, 0.880647086337317, 0.8868405348300834, 0.8925178626151191, 0.8976790696924243, 0.902324156061999, 0.9064531217238432, 0.9100659666779568, 0.9131626909243399, 0.9157432944629925, 0.9178077772939146, 0.9193561394171061, 0.9203883808325672, 0.9209045015402978, 0.9209045015402978, 0.9203883808325672, 0.9193561394171063, 0.9178077772939146, 0.9157432944629925, 0.91316269092434, 0.9100659666779568, 0.9064531217238433, 0.902324156061999, 0.8976790696924244, 0.8925178626151192, 0.8868405348300835, 0.8806470863373173, 0.8739375171368206, 0.8667118272285932, 0.8589700166126353, 0.8507120852889472, 0.8419380332575281, 0.8326478605183789, 0.8228415670714989, 0.8125191529168887, 0.8016806180545477, 0.7903259624844764, 0.7784551862066742, 0.7660682892211419, 0.7531652715278788, 0.7397461331268851, 0.7258108740181612, 0.7113594942017065, 0.6963919936775217, 0.6809083724456059, 0.6649086305059599, 0.6483927678585831, 0.6313607845034762, 0.6138126804406383, 0.5957484556700698, 0.5771681101917714, 0.5580716440057419, 0.5384590571119825, 0.5183303495104918, 0.4976855212012714, 0.4765245721843199, 0.45484750245963834, 0.4326543120272257, 0.4099450008870831, 0.38671956903920945, 0.36297801648360517, 0.3387203432202711, 0.31394654924920584, 0.2886566345704107, 0.2628505991838843, 0.23652844308962817, 0.2096901662876408, 0.18233576877792368, 0.15446525056047522, 0.126078611635297, 0.09717585200238754, 0.06775697166174754, 0.037821970613377776, 0.0073708488572766795, 0.023596393606553967, 0.05507975677811605, 0.08707924065740791, 0.11959484524443109, 0.15262657053918383, 0.1861744165416681, 0.22023838325188194, 0.2548184706698273, 0.28991467879550314, 0.3255270076289085, 0.36165545717004544, 0.3983000274189117, 0.4354607183755097, 0.47313753003983705, 0.511330462411896, 0.5500395154916844, 0.5892646892792046, 0.6290059837744539, 0.669263398977435, 0.7100369348881466, 0.7513265915065876, 0.7931323688327603, 0.8354542668666625, 0.8782922856082962, 0.921646425057659, 0.9655166852147539, 1.0099030660795778, 1.0548055676521337, 1.100224189932419, 1.1461589329204358, 1.1926097966161833, 1.23957678101966, 1.2870598861308684, 1.335059111949806, 1.3835744584764753, 1.4326059257108743, 1.4821535136530049, 1.5322172223028643, 1.5827970516604561, 1.633893001725777, 1.6855050724988296, 1.7376332639796126, 1.7902775761681249, 1.8434380090643692, 1.8971145626683428, 1.951307236980048, 2.006016031999482, 2.0612409477266485, 2.116981984161544, 2.173239141304171, 2.230012419154529, 2.287301817712616, 2.345107336978435, 2.403428976951983, 2.462266737633263, 2.521620619022272, 2.581490621119013, 2.641876743923483, 2.702778987435685, 2.7641973516556164, 2.8261318365832797, 2.888582442218673, 2.9515491685617956, 3.0150320156126504, 3.0790309833712355 ], [ 3.0883211561103847, 3.0243221883518006, 2.9608393413009466, 2.8978726149578233, 2.8354220093224303, 2.7734875243947674, 2.7120691601748352, 2.651166916662634, 2.5907807938581633, 2.530910791761423, 2.471556910372413, 2.4127191496911338, 2.354397509717585, 2.296591990451767, 2.2393025918936793, 2.182529314043322, 2.126272156900695, 2.0705311204657995, 2.015306204738633, 1.960597409719198, 1.9064047354074933, 1.8527281818035193, 1.7995677489072759, 1.7469234367187627, 1.6947952452379802, 1.6431831744649283, 1.5920872243996067, 1.5415073950420153, 1.4914436863921554, 1.4418960984500249, 1.3928646312156254, 1.3443492846889566, 1.296350058870018, 1.2488669537588102, 1.201899969355333, 1.1554491056595864, 1.1095143626715696, 1.0640957403912843, 1.0191932388187284, 0.9748068579539044, 0.9309365977968096, 0.8875824583474459, 0.8447444396058128, 0.8024225415719102, 0.760616764245738, 0.7193271076272965, 0.6785535717165854, 0.6382961565136043, 0.5985548620183547, 0.5593296882308347, 0.5206206351510463, 0.4824277027789874, 0.4447508911146594, 0.407590200158062, 0.3709456299091951, 0.33481718036805863, 0.2992048515346528, 0.26410864340897744, 0.22952855599103206, 0.19546458928081822, 0.16191674327833416, 0.1288850179835812, 0.09636941339655802, 0.06436992951726572, 0.03288656634570408, 0.0019193238818728808, 0.02853179787422777, 0.058466798922597873, 0.08788567926323754, 0.11678843889614665, 0.14517507782132566, 0.17304559603877367, 0.20039999354849125, 0.22723827035047828, 0.25356042644473475, 0.2793664618312608, 0.3046563765100563, 0.3294301704811212, 0.3536878437444556, 0.37742939630005956, 0.4006548281479333, 0.42336413928807615, 0.44555732972048845, 0.4672343994451703, 0.4883953484621216, 0.5090401767713424, 0.5291688843728326, 0.5487814712665924, 0.5678779374526217, 0.5864582829309204, 0.6045225077014886, 0.6220706117643264, 0.6391025951194337, 0.6556184577668103, 0.6716181997064564, 0.687101820938372, 0.7020693214625571, 0.7165207012790116, 0.7304559603877356, 0.7438750987887293, 0.7567781164819922, 0.7691650134675247, 0.7810357897453268, 0.7923904453153983, 0.8032289801777392, 0.8135513943323496, 0.8233576877792295, 0.8326478605183788, 0.8414219125497977, 0.849679843873486, 0.8574216544894437, 0.8646473443976711, 0.8713569135981678, 0.8775503620909342, 0.8832276898759699, 0.888388896953275, 0.8930339833228498, 0.897162948984694, 0.9007757939388076, 0.9038725181851907, 0.9064531217238433, 0.9085176045547654, 0.9100659666779569, 0.911098208093418, 0.9116143288011486, 0.9116143288011486, 0.911098208093418, 0.910065966677957, 0.9085176045547654, 0.9064531217238433, 0.9038725181851908, 0.9007757939388076, 0.8971629489846941, 0.8930339833228498, 0.8883888969532752, 0.88322768987597, 0.8775503620909343, 0.871356913598168, 0.8646473443976713, 0.857421654489444, 0.849679843873486, 0.8414219125497979, 0.8326478605183789, 0.8233576877792297, 0.8135513943323497, 0.8032289801777395, 0.7923904453153985, 0.7810357897453272, 0.769165013467525, 0.7567781164819927, 0.7438750987887296, 0.7304559603877359, 0.716520701279012, 0.7020693214625573, 0.6871018209383725, 0.6716181997064566, 0.6556184577668107, 0.6391025951194339, 0.622070611764327, 0.6045225077014891, 0.5864582829309206, 0.5678779374526222, 0.5487814712665927, 0.5291688843728333, 0.5090401767713426, 0.4883953484621222, 0.46723439944517065, 0.4455573297204891, 0.4233641392880765, 0.40065482814793385, 0.3774293963000602, 0.35368784374445594, 0.3294301704811219, 0.3046563765100566, 0.27936646183126146, 0.2535604264447351, 0.22723827035047894, 0.20039999354849158, 0.17304559603877445, 0.145175077821326, 0.11678843889614776, 0.08788567926323831, 0.05846679892259832, 0.02853179787422855, 0.0019193238818724367, 0.032886566345703194, 0.06436992951726528, 0.09636941339655714, 0.12888501798358032, 0.16191674327833305, 0.19546458928081734, 0.22952855599103117, 0.26410864340897655, 0.29920485153465237, 0.33481718036805774, 0.37094562990919466, 0.4075902001580609, 0.44475089111465893, 0.4824277027789863, 0.5206206351510452, 0.5593296882308336, 0.5985548620183538, 0.6382961565136032, 0.6785535717165843, 0.7193271076272958, 0.7606167642457369, 0.8024225415719095, 0.8447444396058117, 0.8875824583474454, 0.9309365977968083, 0.9748068579539031, 1.019193238818727, 1.064095740391283, 1.1095143626715682, 1.155449105659585, 1.2018999693553325, 1.2488669537588093, 1.2963500588700176, 1.3443492846889553, 1.3928646312156245, 1.4418960984500235, 1.491443686392154, 1.5415073950420135, 1.5920872243996054, 1.6431831744649261, 1.6947952452379789, 1.7469234367187618, 1.7995677489072741, 1.8527281818035184, 1.906404735407492, 1.9605974097191972, 2.015306204738631, 2.0705311204657977, 2.126272156900693, 2.1825293140433204, 2.2393025918936784, 2.2965919904517653, 2.354397509717584, 2.4127191496911324, 2.471556910372412, 2.5309107917614213, 2.5907807938581624, 2.6511669166626324, 2.7120691601748343, 2.7734875243947656, 2.835422009322429, 2.8978726149578224, 2.960839341300945, 3.0243221883517997, 3.0883211561103847 ], [ 3.098127449557265, 3.034128481798681, 2.9706456347478265, 2.907678908404703, 2.84522830276931, 2.7832938178416473, 2.721875453621715, 2.660973210109514, 2.600587087305043, 2.540717085208303, 2.481363203819293, 2.4225254431380137, 2.364203803164465, 2.306398283898647, 2.249108885340559, 2.192335607490202, 2.1360784503475747, 2.0803374139126793, 2.025112498185513, 1.970403703166078, 1.9162110288543732, 1.8625344752503992, 1.8093740423541558, 1.7567297301656426, 1.70460153868486, 1.6529894679118082, 1.6018935178464866, 1.5513136884888952, 1.5012499798390353, 1.4517023918969048, 1.4026709246625053, 1.3541555781358365, 1.306156352316898, 1.25867324720569, 1.2117062628022128, 1.1652553991064662, 1.1193206561184494, 1.0739020338381642, 1.0289995322656083, 0.9846131514007843, 0.9407428912436895, 0.8973887517943258, 0.8545507330526927, 0.8122288350187901, 0.7704230576926179, 0.7291334010741763, 0.6883598651634653, 0.6481024499604842, 0.6083611554652346, 0.5691359816777146, 0.5304269285979262, 0.4922339962258673, 0.45455718456153926, 0.4173964936049419, 0.380751923356075, 0.3446234738149385, 0.3090111449815327, 0.2739149368558573, 0.23933484943791195, 0.2052708827276981, 0.17172303672521405, 0.1386913114304611, 0.10617570684343791, 0.07417622296414583, 0.04269285979258397, 0.01172561732875299, 0.018725504427347772, 0.048660505475717875, 0.07807938581635754, 0.10698214544926665, 0.13536878437444566, 0.16323930259189368, 0.19059370010161125, 0.21743197690359828, 0.24375413299785476, 0.2695601683843808, 0.2948500830631763, 0.3196238770342412, 0.3438815502975756, 0.36762310285317956, 0.3908485347010533, 0.41355784584119615, 0.43575103627360845, 0.4574281059982903, 0.4785890550152416, 0.4992338833244624, 0.5193625909259527, 0.5389751778197125, 0.5580716440057416, 0.5766519894840404, 0.5947162142546085, 0.6122643183174465, 0.6292963016725537, 0.6458121643199303, 0.6618119062595764, 0.677295527491492, 0.6922630280156771, 0.7067144078321317, 0.7206496669408557, 0.7340688053418492, 0.7469718230351122, 0.7593587200206446, 0.7712294962984468, 0.7825841518685183, 0.7934226867308591, 0.8037451008854696, 0.8135513943323495, 0.8228415670714988, 0.8316156191029176, 0.8398735504266059, 0.8476153610425639, 0.8548410509507911, 0.8615506201512878, 0.8677440686440542, 0.8734213964290899, 0.878582603506395, 0.8832276898759698, 0.887356655537814, 0.8909695004919276, 0.8940662247383107, 0.8966468282769633, 0.8987113111078854, 0.9002596732310769, 0.901291914646538, 0.9018080353542686, 0.9018080353542686, 0.901291914646538, 0.900259673231077, 0.8987113111078855, 0.8966468282769633, 0.8940662247383108, 0.8909695004919276, 0.8873566555378141, 0.8832276898759699, 0.8785826035063953, 0.87342139642909, 0.8677440686440543, 0.861550620151288, 0.8548410509507913, 0.847615361042564, 0.8398735504266062, 0.8316156191029179, 0.8228415670714989, 0.8135513943323497, 0.8037451008854697, 0.7934226867308595, 0.7825841518685184, 0.7712294962984472, 0.7593587200206451, 0.7469718230351128, 0.7340688053418496, 0.7206496669408559, 0.7067144078321321, 0.6922630280156773, 0.6772955274914925, 0.6618119062595766, 0.6458121643199308, 0.6292963016725539, 0.612264318317447, 0.5947162142546091, 0.5766519894840407, 0.5580716440057423, 0.5389751778197127, 0.5193625909259532, 0.4992338833244627, 0.4785890550152422, 0.45742810599829065, 0.4357510362736091, 0.4135578458411965, 0.39084853470105385, 0.36762310285318023, 0.34388155029757594, 0.3196238770342419, 0.2948500830631766, 0.26956016838438146, 0.2437541329978551, 0.21743197690359894, 0.19059370010161159, 0.16323930259189445, 0.135368784374446, 0.10698214544926776, 0.07807938581635832, 0.04866050547571832, 0.01872550442734855, 0.011725617328752547, 0.042692859792583304, 0.07417622296414539, 0.10617570684343702, 0.1386913114304602, 0.17172303672521294, 0.20527088272769722, 0.23933484943791106, 0.27391493685585644, 0.30901114498153226, 0.34462347381493763, 0.38075192335607455, 0.4173964936049408, 0.4545571845615388, 0.49223399622586617, 0.5304269285979251, 0.5691359816777135, 0.6083611554652337, 0.648102449960483, 0.6883598651634641, 0.7291334010741757, 0.7704230576926168, 0.8122288350187894, 0.8545507330526916, 0.8973887517943253, 0.9407428912436882, 0.984613151400783, 1.0289995322656074, 1.0739020338381629, 1.119320656118448, 1.165255399106465, 1.2117062628022124, 1.2586732472056892, 1.3061563523168975, 1.3541555781358352, 1.4026709246625044, 1.4517023918969034, 1.501249979839034, 1.5513136884888934, 1.6018935178464853, 1.652989467911806, 1.7046015386848588, 1.7567297301656417, 1.809374042354154, 1.8625344752503983, 1.916211028854372, 1.970403703166077, 2.025112498185511, 2.0803374139126776, 2.136078450347573, 2.1923356074902003, 2.2491088853405583, 2.306398283898645, 2.364203803164464, 2.4225254431380123, 2.481363203819292, 2.540717085208301, 2.6005870873050423, 2.6609732101095123, 2.7218754536217142, 2.7832938178416455, 2.845228302769309, 2.9076789084047023, 2.9706456347478247, 3.03412848179868, 3.098127449557265 ], [ 3.1084498637118756, 3.0444508959532905, 2.980968048902437, 2.9180013225593138, 2.8555507169239207, 2.793616231996258, 2.7321978677763257, 2.6712956242641246, 2.6109095014596537, 2.5510394993629135, 2.4916856179739035, 2.432847857292624, 2.3745262173190755, 2.3167206980532575, 2.2594312994951697, 2.2026580216448126, 2.1464008645021853, 2.09065982806729, 2.0354349123401234, 1.9807261173206885, 1.9265334430089838, 1.8728568894050097, 1.8196964565087663, 1.7670521443202531, 1.7149239528394706, 1.6633118820664188, 1.6122159320010971, 1.5616361026435057, 1.5115723939936458, 1.4620248060515153, 1.4129933388171159, 1.364477992290447, 1.3164787664715085, 1.2689956613603006, 1.2220286769568234, 1.1755778132610768, 1.12964307027306, 1.0842244479927747, 1.0393219464202188, 0.9949355655553946, 0.9510653053982998, 0.9077111659489361, 0.864873147207303, 0.8225512491734004, 0.7807454718472282, 0.7394558152287867, 0.6986822793180756, 0.6584248641150945, 0.6186835696198449, 0.579458395832325, 0.5407493427525365, 0.5025564103804776, 0.4648795987161496, 0.42771890775955224, 0.3910743375106853, 0.35494588796954885, 0.31933355913614303, 0.28423735101046765, 0.24965726359252227, 0.21559329688230844, 0.18204545087982438, 0.14901372558507142, 0.11649812099804824, 0.08449863711875616, 0.0530152739471943, 0.022048031483363317, 0.008403090272737557, 0.03833809132110766, 0.06775697166174732, 0.09665973129465644, 0.12504637021983545, 0.15291688843728346, 0.18027128594700104, 0.20710956274898806, 0.23343171884324454, 0.2592377542297706, 0.28452766890856607, 0.309301462879631, 0.3335591361429654, 0.35730068869856935, 0.3805261205464431, 0.4032354316865858, 0.42542862211899823, 0.4471056918436801, 0.4682666408606314, 0.4889114691698522, 0.5090401767713424, 0.5286527636651022, 0.5477492298511315, 0.5663295753294302, 0.5843938000999984, 0.6019419041628362, 0.6189738875179435, 0.63548975016532, 0.6514894921049662, 0.6669731133368818, 0.6819406138610669, 0.6963919936775214, 0.7103272527862454, 0.723746391187239, 0.736649408880502, 0.7490363058660345, 0.7609070821438366, 0.772261737713908, 0.7831002725762489, 0.7934226867308594, 0.8032289801777392, 0.8125191529168886, 0.8212932049483075, 0.8295511362719957, 0.8372929468879535, 0.8445186367961808, 0.8512282059966776, 0.857421654489444, 0.8630989822744797, 0.8682601893517848, 0.8729052757213596, 0.8770342413832037, 0.8806470863373174, 0.8837438105837004, 0.8863244141223531, 0.8883888969532752, 0.8899372590764667, 0.8909695004919278, 0.8914856211996582, 0.8914856211996584, 0.8909695004919278, 0.8899372590764668, 0.8883888969532752, 0.8863244141223531, 0.8837438105837006, 0.8806470863373174, 0.8770342413832037, 0.8729052757213596, 0.868260189351785, 0.8630989822744797, 0.8574216544894441, 0.8512282059966778, 0.8445186367961811, 0.8372929468879537, 0.8295511362719958, 0.8212932049483077, 0.8125191529168887, 0.8032289801777395, 0.7934226867308595, 0.7831002725762493, 0.7722617377139082, 0.7609070821438368, 0.7490363058660348, 0.7366494088805025, 0.7237463911872393, 0.7103272527862456, 0.6963919936775218, 0.6819406138610671, 0.6669731133368821, 0.6514894921049664, 0.6354897501653205, 0.6189738875179437, 0.6019419041628368, 0.5843938000999989, 0.5663295753294304, 0.547749229851132, 0.5286527636651025, 0.5090401767713431, 0.4889114691698524, 0.46826664086063197, 0.4471056918436803, 0.4254286221189988, 0.40323543168658615, 0.38052612054644364, 0.35730068869857, 0.33355913614296573, 0.3093014628796317, 0.2845276689085664, 0.25923775422977124, 0.23343171884324487, 0.20710956274898873, 0.18027128594700137, 0.15291688843728424, 0.12504637021983578, 0.09665973129465755, 0.0677569716617481, 0.0383380913211081, 0.008403090272738334, 0.022048031483362873, 0.05301527394719363, 0.08449863711875572, 0.11649812099804735, 0.14901372558507053, 0.18204545087982327, 0.21559329688230755, 0.24965726359252138, 0.28423735101046677, 0.3193335591361426, 0.35494588796954796, 0.3910743375106849, 0.4277189077595511, 0.46487959871614914, 0.5025564103804765, 0.5407493427525354, 0.5794583958323238, 0.618683569619844, 0.6584248641150934, 0.6986822793180745, 0.739455815228786, 0.7807454718472271, 0.8225512491733997, 0.8648731472073019, 0.9077111659489356, 0.9510653053982985, 0.9949355655553933, 1.0393219464202175, 1.0842244479927734, 1.1296430702730587, 1.1755778132610755, 1.222028676956823, 1.2689956613602997, 1.316478766471508, 1.3644779922904458, 1.412993338817115, 1.462024806051514, 1.5115723939936445, 1.561636102643504, 1.6122159320010958, 1.6633118820664166, 1.7149239528394693, 1.7670521443202523, 1.8196964565087645, 1.8728568894050088, 1.9265334430089824, 1.9807261173206876, 2.0354349123401216, 2.090659828067288, 2.1464008645021835, 2.202658021644811, 2.259431299495169, 2.3167206980532558, 2.3745262173190747, 2.432847857292623, 2.4916856179739026, 2.5510394993629117, 2.610909501459653, 2.671295624264123, 2.732197867776325, 2.793616231996256, 2.8555507169239194, 2.918001322559313, 2.9809680489024353, 3.0444508959532897, 3.1084498637118756 ], [ 3.1192883985742164, 3.055289430815632, 2.991806583764778, 2.9288398574216545, 2.8663892517862615, 2.8044547668585986, 2.7430364026386664, 2.6821341591264654, 2.6217480363219945, 2.5618780342252543, 2.5025241528362443, 2.443686392154965, 2.3853647521814163, 2.3275592329155983, 2.2702698343575105, 2.2134965565071534, 2.157239399364526, 2.1014983629296307, 2.046273447202464, 1.9915646521830292, 1.9373719778713245, 1.8836954242673505, 1.830534991371107, 1.777890679182594, 1.7257624877018114, 1.6741504169287595, 1.623054466863438, 1.5724746375058465, 1.5224109288559866, 1.472863340913856, 1.4238318736794566, 1.3753165271527878, 1.3273173013338493, 1.2798341962226414, 1.2328672118191641, 1.1864163481234176, 1.1404816051354008, 1.0950629828551155, 1.0501604812825596, 1.0057741004177356, 0.9619038402606408, 0.9185497008112771, 0.875711682069644, 0.8333897840357414, 0.7915840067095692, 0.7502943500911277, 0.7095208141804166, 0.6692633989774355, 0.6295221044821859, 0.5902969306946659, 0.5515878776148775, 0.5133949452428186, 0.4757181335784906, 0.4385574426218932, 0.4019128723730263, 0.36578442283188983, 0.330172093998484, 0.29507588587280864, 0.26049579845486326, 0.22643183174464943, 0.19288398574216536, 0.1598522604474124, 0.12733665586038923, 0.09533717198109715, 0.06385380880953528, 0.032886566345704304, 0.0024354445896035415, 0.02749955645876656, 0.056918436799406225, 0.08582119643231534, 0.11420783535749435, 0.14207835357494236, 0.16943275108465994, 0.19627102788664696, 0.22259318398090344, 0.24839921936742948, 0.27368913404622497, 0.2984629280172899, 0.3227206012806243, 0.34646215383622825, 0.369687585684102, 0.39239689682424483, 0.41459008725665714, 0.436267156981339, 0.4574281059982903, 0.4780729343075111, 0.4982016419090014, 0.5178142288027612, 0.5369106949887904, 0.5554910404670891, 0.5735552652376573, 0.5911033693004952, 0.6081353526556024, 0.624651215302979, 0.6406509572426251, 0.6561345784745407, 0.6711020789987258, 0.6855534588151804, 0.6994887179239044, 0.712907856324898, 0.7258108740181609, 0.7381977710036934, 0.7500685472814955, 0.761423202851567, 0.7722617377139078, 0.7825841518685183, 0.7923904453153982, 0.8016806180545475, 0.8104546700859664, 0.8187126014096546, 0.8264544120256125, 0.8336801019338398, 0.8403896711343366, 0.8465831196271029, 0.8522604474121386, 0.8574216544894437, 0.8620667408590185, 0.8661957065208626, 0.8698085514749763, 0.8729052757213593, 0.875485879260012, 0.8775503620909341, 0.8790987242141257, 0.8801309656295867, 0.8806470863373173, 0.8806470863373173, 0.8801309656295867, 0.8790987242141257, 0.8775503620909342, 0.875485879260012, 0.8729052757213595, 0.8698085514749763, 0.8661957065208628, 0.8620667408590186, 0.857421654489444, 0.8522604474121387, 0.846583119627103, 0.8403896711343367, 0.83368010193384, 0.8264544120256128, 0.8187126014096548, 0.8104546700859666, 0.8016806180545477, 0.7923904453153985, 0.7825841518685184, 0.7722617377139082, 0.7614232028515671, 0.7500685472814959, 0.7381977710036938, 0.7258108740181615, 0.7129078563248983, 0.6994887179239045, 0.6855534588151808, 0.671102078998726, 0.6561345784745412, 0.6406509572426253, 0.6246512153029795, 0.6081353526556026, 0.5911033693004957, 0.5735552652376578, 0.5554910404670894, 0.536910694988791, 0.5178142288027614, 0.49820164190900196, 0.4780729343075114, 0.45742810599829087, 0.43626715698133933, 0.4145900872566578, 0.39239689682424517, 0.36968758568410254, 0.3464621538362289, 0.32272060128062463, 0.2984629280172906, 0.2736891340462253, 0.24839921936743015, 0.22259318398090377, 0.19627102788664763, 0.16943275108466027, 0.14207835357494314, 0.11420783535749468, 0.08582119643231645, 0.056918436799407, 0.027499556458767005, 0.0024354445896026533, 0.03288656634570386, 0.06385380880953462, 0.0953371719810967, 0.12733665586038834, 0.15985226044741152, 0.19288398574216425, 0.22643183174464854, 0.26049579845486237, 0.29507588587280775, 0.3301720939984836, 0.36578442283188894, 0.40191287237302586, 0.4385574426218921, 0.47571813357849013, 0.5133949452428175, 0.5515878776148764, 0.5902969306946648, 0.629522104482185, 0.6692633989774344, 0.7095208141804155, 0.750294350091127, 0.7915840067095681, 0.8333897840357407, 0.8757116820696429, 0.9185497008112766, 0.9619038402606395, 1.0057741004177343, 1.0501604812825587, 1.0950629828551142, 1.1404816051353994, 1.1864163481234162, 1.2328672118191637, 1.2798341962226405, 1.3273173013338488, 1.3753165271527865, 1.4238318736794557, 1.4728633409138547, 1.5224109288559853, 1.5724746375058447, 1.6230544668634366, 1.6741504169287573, 1.72576248770181, 1.777890679182593, 1.8305349913711053, 1.8836954242673496, 1.9373719778713232, 1.9915646521830284, 2.0462734472024624, 2.101498362929629, 2.1572393993645242, 2.2134965565071516, 2.2702698343575096, 2.3275592329155965, 2.3853647521814154, 2.4436863921549636, 2.5025241528362434, 2.5618780342252525, 2.6217480363219936, 2.6821341591264636, 2.7430364026386655, 2.804454766858597, 2.86638925178626, 2.9288398574216536, 2.991806583764776, 3.0552894308156313, 3.1192883985742164 ], [ 3.1306430541442873, 3.066644086385703, 3.0031612393348492, 2.940194512991726, 2.877743907356333, 2.81580942242867, 2.754391058208738, 2.693488814696537, 2.633102691892066, 2.5732326897953257, 2.5138788084063157, 2.4550410477250364, 2.3967194077514877, 2.3389138884856697, 2.281624489927582, 2.224851212077225, 2.1685940549345974, 2.112853018499702, 2.0576281027725356, 2.0029193077531007, 1.948726633441396, 1.895050079837422, 1.8418896469411785, 1.7892453347526653, 1.7371171432718828, 1.685505072498831, 1.6344091224335093, 1.583829293075918, 1.533765584426058, 1.4842179964839275, 1.435186529249528, 1.3866711827228593, 1.3386719569039207, 1.2911888517927128, 1.2442218673892356, 1.197771003693489, 1.1518362607054722, 1.106417638425187, 1.061515136852631, 1.017128755987807, 0.9732584958307122, 0.9299043563813485, 0.8870663376397154, 0.8447444396058128, 0.8029386622796406, 0.7616490056611991, 0.720875469750488, 0.6806180545475069, 0.6408767600522574, 0.6016515862647374, 0.5629425331849489, 0.52474960081289, 0.487072789148562, 0.44991209819196465, 0.41326752794309773, 0.37713907840196126, 0.34152674956855544, 0.30643054144288007, 0.2718504540249347, 0.23778648731472085, 0.2042386413122368, 0.17120691601748383, 0.13869131143046065, 0.10669182755116835, 0.07520846437960671, 0.04424122191577551, 0.013790100159674745, 0.016144900888695357, 0.04556378122933502, 0.07446654086224413, 0.10285317978742314, 0.13072369800487116, 0.15807809551458873, 0.18491637231657576, 0.21123852841083224, 0.23704456379735828, 0.26233447847615377, 0.2871082724472187, 0.3113659457105531, 0.33510749826615704, 0.3583329301140308, 0.3810422412541735, 0.40323543168658593, 0.4249125014112678, 0.4460734504282191, 0.4667182787374399, 0.4868469863389301, 0.5064595732326899, 0.5255560394187191, 0.5441363848970179, 0.562200609667586, 0.5797487137304239, 0.5967806970855312, 0.6132965597329078, 0.6292963016725539, 0.6447799229044695, 0.6597474234286546, 0.6741988032451091, 0.6881340623538331, 0.7015532007548266, 0.7144562184480896, 0.7268431154336221, 0.7387138917114242, 0.7500685472814956, 0.7609070821438366, 0.771229496298447, 0.7810357897453268, 0.7903259624844763, 0.7991000145158951, 0.8073579458395834, 0.8150997564555412, 0.8223254463637685, 0.8290350155642653, 0.8352284640570315, 0.8409057918420673, 0.8460669989193725, 0.8507120852889472, 0.8548410509507913, 0.8584538959049051, 0.8615506201512881, 0.8641312236899408, 0.8661957065208629, 0.8677440686440544, 0.8687763100595155, 0.869292430767246, 0.869292430767246, 0.8687763100595155, 0.8677440686440545, 0.8661957065208629, 0.8641312236899408, 0.8615506201512882, 0.8584538959049051, 0.8548410509507914, 0.8507120852889473, 0.8460669989193726, 0.8409057918420674, 0.8352284640570318, 0.8290350155642654, 0.8223254463637688, 0.8150997564555414, 0.8073579458395835, 0.7991000145158953, 0.7903259624844764, 0.7810357897453272, 0.7712294962984472, 0.7609070821438368, 0.7500685472814959, 0.7387138917114247, 0.7268431154336225, 0.7144562184480902, 0.7015532007548271, 0.6881340623538333, 0.6741988032451095, 0.6597474234286548, 0.64477992290447, 0.6292963016725541, 0.6132965597329082, 0.5967806970855314, 0.5797487137304245, 0.5622006096675866, 0.5441363848970181, 0.5255560394187196, 0.5064595732326902, 0.48684698633893064, 0.4667182787374401, 0.44607345042821966, 0.424912501411268, 0.4032354316865865, 0.38104224125417385, 0.35833293011403133, 0.3351074982661577, 0.3113659457105534, 0.28710827244721937, 0.2623344784761541, 0.23704456379735894, 0.21123852841083257, 0.18491637231657643, 0.15807809551458907, 0.13072369800487194, 0.10285317978742348, 0.07446654086224525, 0.0455637812293358, 0.0161449008886958, 0.013790100159674079, 0.044241221915775064, 0.07520846437960582, 0.1066918275511679, 0.13869131143045976, 0.17120691601748295, 0.20423864131223568, 0.23778648731471996, 0.2718504540249338, 0.3064305414428792, 0.341526749568555, 0.37713907840196037, 0.4132675279430973, 0.44991209819196354, 0.48707278914856156, 0.5247496008128889, 0.5629425331849478, 0.6016515862647362, 0.6408767600522565, 0.6806180545475058, 0.7208754697504869, 0.7616490056611984, 0.8029386622796395, 0.8447444396058121, 0.8870663376397143, 0.929904356381348, 0.9732584958307109, 1.0171287559878057, 1.0615151368526297, 1.1064176384251856, 1.1518362607054708, 1.1977710036934877, 1.2442218673892351, 1.291188851792712, 1.3386719569039203, 1.386671182722858, 1.4351865292495272, 1.4842179964839262, 1.5337655844260567, 1.5838292930759161, 1.634409122433508, 1.6855050724988287, 1.7371171432718815, 1.7892453347526645, 1.8418896469411767, 1.895050079837421, 1.9487266334413946, 2.0029193077531, 2.057628102772534, 2.1128530184997003, 2.1685940549345957, 2.224851212077223, 2.281624489927581, 2.338913888485668, 2.396719407751487, 2.455041047725035, 2.513878808406315, 2.573232689795324, 2.633102691892065, 2.693488814696535, 2.754391058208737, 2.8158094224286683, 2.8777439073563316, 2.940194512991725, 3.0031612393348475, 3.0666440863857023, 3.1306430541442873 ], [ 3.1425138304220894, 3.0785148626635053, 3.0150320156126513, 2.952065289269528, 2.889614683634135, 2.827680198706472, 2.76626183448654, 2.705359590974339, 2.644973468169868, 2.585103466073128, 2.525749584684118, 2.4669118240028385, 2.40859018402929, 2.350784664763472, 2.293495266205384, 2.236721988355027, 2.1804648312123995, 2.124723794777504, 2.0694988790503377, 2.0147900840309028, 1.960597409719198, 1.906920856115224, 1.8537604232189806, 1.8011161110304674, 1.748987919549685, 1.697375848776633, 1.6462798987113114, 1.59570006935372, 1.5456363607038601, 1.4960887727617296, 1.4470573055273301, 1.3985419590006614, 1.3505427331817228, 1.303059628070515, 1.2560926436670377, 1.209641779971291, 1.1637070369832743, 1.118288414702989, 1.073385913130433, 1.0289995322656091, 0.9851292721085143, 0.9417751326591506, 0.8989371139175175, 0.8566152158836149, 0.8148094385574427, 0.7735197819390012, 0.7327462460282901, 0.692488830825309, 0.6527475363300594, 0.6135223625425394, 0.574813309462751, 0.5366203770906921, 0.4989435654263641, 0.46178287446976674, 0.4251383042208998, 0.38900985467976334, 0.35339752584635753, 0.31830131772068215, 0.28372123030273677, 0.24965726359252294, 0.21610941759003888, 0.18307769229528592, 0.15056208770826274, 0.11856260382897044, 0.0870792406574088, 0.056111998193577595, 0.02566087643747683, 0.004274124610893271, 0.033693004951532934, 0.06259576458444194, 0.09098240350962095, 0.11885292172706907, 0.14620731923678654, 0.17304559603877356, 0.19936775213303015, 0.22517378751955608, 0.25046370219835157, 0.2752374961694166, 0.299495169432751, 0.32323672198835496, 0.3464621538362287, 0.36917146497637143, 0.39136465540878373, 0.4130417251334657, 0.434202674150417, 0.4548475024596377, 0.474976210061128, 0.4945887969548878, 0.513685263140917, 0.5322656086192157, 0.5503298333897839, 0.5678779374526218, 0.5849099208077291, 0.6014257834551056, 0.6174255253947518, 0.6329091466266674, 0.6478766471508524, 0.662328026967307, 0.676263286076031, 0.6896824244770245, 0.7025854421702875, 0.71497233915582, 0.7268431154336221, 0.7381977710036935, 0.7490363058660345, 0.7593587200206449, 0.7691650134675247, 0.7784551862066742, 0.787229238238093, 0.7954871695617813, 0.8032289801777391, 0.8104546700859664, 0.8171642392864631, 0.8233576877792295, 0.8290350155642652, 0.8341962226415705, 0.8388413090111451, 0.8429702746729892, 0.8465831196271029, 0.849679843873486, 0.8522604474121387, 0.8543249302430607, 0.8558732923662523, 0.8569055337817133, 0.8574216544894439, 0.8574216544894439, 0.8569055337817133, 0.8558732923662523, 0.8543249302430608, 0.8522604474121387, 0.849679843873486, 0.846583119627103, 0.8429702746729894, 0.8388413090111452, 0.8341962226415706, 0.8290350155642653, 0.8233576877792297, 0.8171642392864633, 0.8104546700859667, 0.8032289801777392, 0.7954871695617814, 0.7872292382380932, 0.7784551862066742, 0.769165013467525, 0.7593587200206451, 0.7490363058660348, 0.7381977710036938, 0.7268431154336225, 0.7149723391558204, 0.7025854421702881, 0.6896824244770249, 0.6762632860760311, 0.6623280269673074, 0.6478766471508526, 0.6329091466266678, 0.617425525394752, 0.6014257834551061, 0.5849099208077293, 0.5678779374526224, 0.5503298333897844, 0.532265608619216, 0.5136852631409176, 0.4945887969548881, 0.47497621006112856, 0.454847502459638, 0.43420267415041747, 0.41304172513346593, 0.3913646554087844, 0.36917146497637177, 0.34646215383622914, 0.3232367219883556, 0.29949516943275123, 0.2752374961694173, 0.250463702198352, 0.22517378751955675, 0.19936775213303037, 0.17304559603877423, 0.14620731923678698, 0.11885292172706974, 0.09098240350962139, 0.06259576458444305, 0.0336930049515336, 0.004274124610893715, 0.025660876437476166, 0.05611199819357715, 0.08707924065740791, 0.11856260382896999, 0.15056208770826185, 0.18307769229528503, 0.21610941759003777, 0.24965726359252205, 0.2837212303027359, 0.31830131772068126, 0.3533975258463571, 0.38900985467976246, 0.4251383042208994, 0.4617828744697656, 0.49894356542636364, 0.536620377090691, 0.5748133094627499, 0.6135223625425383, 0.6527475363300586, 0.6924888308253079, 0.732746246028289, 0.7735197819390005, 0.8148094385574416, 0.8566152158836142, 0.8989371139175164, 0.9417751326591501, 0.985129272108513, 1.0289995322656078, 1.0733859131304317, 1.1182884147029877, 1.163707036983273, 1.2096417799712897, 1.2560926436670372, 1.303059628070514, 1.3505427331817224, 1.39854195900066, 1.4470573055273293, 1.4960887727617282, 1.5456363607038588, 1.5957000693537182, 1.64627989871131, 1.6973758487766308, 1.7489879195496836, 1.8011161110304665, 1.8537604232189788, 1.906920856115223, 1.9605974097191967, 2.014790084030902, 2.069498879050336, 2.1247237947775024, 2.1804648312123978, 2.236721988355025, 2.293495266205383, 2.35078466476347, 2.408590184029289, 2.466911824002837, 2.525749584684117, 2.585103466073126, 2.644973468169867, 2.705359590974337, 2.766261834486539, 2.8276801987064704, 2.8896146836341337, 2.952065289269527, 3.0150320156126496, 3.0785148626635044, 3.1425138304220894 ], [ 3.1549007274076217, 3.0909017596490376, 3.0274189125981836, 2.9644521862550604, 2.9020015806196673, 2.8400670956920044, 2.7786487314720723, 2.717746487959871, 2.6573603651554003, 2.59749036305866, 2.53813648166965, 2.479298720988371, 2.420977081014822, 2.363171561749004, 2.3058821631909163, 2.249108885340559, 2.192851728197932, 2.1371106917630365, 2.08188577603587, 2.027176981016435, 1.9729843067047304, 1.9193077531007563, 1.866147320204513, 1.8135030080159997, 1.7613748165352172, 1.7097627457621654, 1.6586667956968437, 1.6080869663392523, 1.5580232576893924, 1.5084756697472619, 1.4594442025128624, 1.4109288559861937, 1.362929630167255, 1.3154465250560472, 1.26847954065257, 1.2220286769568234, 1.1760939339688066, 1.1306753116885213, 1.0857728101159654, 1.0413864292511414, 0.9975161690940466, 0.9541620296446829, 0.9113240109030498, 0.8690021128691472, 0.827196335542975, 0.7859066789245335, 0.7451331430138224, 0.7048757278108413, 0.6651344333155917, 0.6259092595280717, 0.5872002064482833, 0.5490072740762244, 0.5113304624118964, 0.47416977145529904, 0.4375252012064321, 0.40139675166529565, 0.36578442283188983, 0.33068821470621446, 0.2961081272882691, 0.26204416057805524, 0.22849631457557118, 0.19546458928081822, 0.16294898469379504, 0.13094950081450274, 0.0994661376429411, 0.0684988951791099, 0.038047773423009135, 0.008112772374639032, 0.02130610796600063, 0.050208867598909634, 0.07859550652408864, 0.10646602474153677, 0.13382042225125423, 0.16065869905324126, 0.18698085514749785, 0.21278689053402378, 0.23807680521281926, 0.2628505991838843, 0.2871082724472187, 0.31084982500282266, 0.3340752568506964, 0.35678456799083913, 0.37897775842325143, 0.4006548281479334, 0.4218157771648847, 0.4424606054741054, 0.4625893130755957, 0.4822018999693555, 0.5012983661553847, 0.5198787116336834, 0.5379429364042516, 0.5554910404670895, 0.5725230238221968, 0.5890388864695733, 0.6050386284092195, 0.6205222496411351, 0.63548975016532, 0.6499411299817747, 0.6638763890904987, 0.6772955274914922, 0.6901985451847552, 0.7025854421702877, 0.7144562184480898, 0.7258108740181612, 0.7366494088805022, 0.7469718230351126, 0.7567781164819924, 0.7660682892211419, 0.7748423412525607, 0.783100272576249, 0.7908420831922068, 0.7980677731004341, 0.8047773423009308, 0.8109707907936972, 0.8166481185787329, 0.8218093256560381, 0.8264544120256128, 0.8305833776874569, 0.8341962226415706, 0.8372929468879537, 0.8398735504266064, 0.8419380332575284, 0.84348639538072, 0.844518636796181, 0.8450347575039115, 0.8450347575039115, 0.844518636796181, 0.84348639538072, 0.8419380332575285, 0.8398735504266064, 0.8372929468879537, 0.8341962226415707, 0.830583377687457, 0.8264544120256129, 0.8218093256560383, 0.816648118578733, 0.8109707907936974, 0.804777342300931, 0.7980677731004344, 0.790842083192207, 0.7831002725762491, 0.7748423412525609, 0.7660682892211419, 0.7567781164819927, 0.7469718230351128, 0.7366494088805025, 0.7258108740181615, 0.7144562184480902, 0.7025854421702881, 0.6901985451847558, 0.6772955274914926, 0.6638763890904988, 0.6499411299817751, 0.6354897501653203, 0.6205222496411354, 0.6050386284092197, 0.5890388864695738, 0.572523023822197, 0.5554910404670901, 0.5379429364042521, 0.5198787116336837, 0.5012983661553853, 0.4822018999693558, 0.46258931307559625, 0.4424606054741057, 0.42181577716488516, 0.40065482814793363, 0.3789777584232521, 0.35678456799083946, 0.33407525685069683, 0.3108498250028233, 0.2871082724472189, 0.262850599183885, 0.2380768052128197, 0.21278689053402444, 0.18698085514749807, 0.16065869905324193, 0.13382042225125468, 0.10646602474153744, 0.07859550652408909, 0.050208867598910745, 0.021306107966001298, 0.008112772374638588, 0.03804777342300847, 0.06849889517910945, 0.09946613764294021, 0.1309495008145023, 0.16294898469379415, 0.19546458928081734, 0.22849631457557007, 0.26204416057805435, 0.2961081272882682, 0.33068821470621357, 0.3657844228318894, 0.40139675166529476, 0.4375252012064317, 0.47416977145529793, 0.511330462411896, 0.5490072740762233, 0.5872002064482822, 0.6259092595280706, 0.6651344333155909, 0.7048757278108402, 0.7451331430138213, 0.7859066789245328, 0.8271963355429739, 0.8690021128691465, 0.9113240109030487, 0.9541620296446824, 0.9975161690940453, 1.0413864292511401, 1.085772810115964, 1.13067531168852, 1.1760939339688052, 1.222028676956822, 1.2684795406525695, 1.3154465250560463, 1.3629296301672547, 1.4109288559861923, 1.4594442025128616, 1.5084756697472606, 1.558023257689391, 1.6080869663392505, 1.6586667956968424, 1.7097627457621631, 1.7613748165352159, 1.8135030080159988, 1.8661473202045111, 1.9193077531007554, 1.972984306704729, 2.027176981016434, 2.081885776035868, 2.1371106917630347, 2.19285172819793, 2.2491088853405574, 2.3058821631909154, 2.3631715617490023, 2.4209770810148212, 2.4792987209883695, 2.5381364816696492, 2.5974903630586583, 2.6573603651553994, 2.7177464879598694, 2.7786487314720714, 2.8400670956920027, 2.902001580619666, 2.9644521862550595, 3.027418912598182, 3.0909017596490367, 3.1549007274076217 ], [ 3.167803745100885, 3.103804777342301, 3.040321930291447, 2.9773552039483233, 2.9149045983129303, 2.8529701133852674, 2.791551749165335, 2.730649505653134, 2.6702633828486633, 2.610393380751923, 2.551039499362913, 2.4922017386816337, 2.433880098708085, 2.376074579442267, 2.3187851808841793, 2.262011903033822, 2.205754745891195, 2.1500137094562994, 2.094788793729133, 2.040079998709698, 1.9858873243979933, 1.9322107707940193, 1.8790503378977759, 1.8264060257092627, 1.7742778342284802, 1.7226657634554283, 1.6715698133901067, 1.6209899840325153, 1.5709262753826554, 1.5213786874405248, 1.4723472202061254, 1.4238318736794566, 1.375832647860518, 1.3283495427493102, 1.281382558345833, 1.2349316946500863, 1.1889969516620695, 1.1435783293817843, 1.0986758278092283, 1.0542894469444044, 1.0104191867873098, 0.9670650473379461, 0.924227028596313, 0.8819051305624104, 0.8400993532362382, 0.7988096966177967, 0.7580361607070856, 0.7177787455041045, 0.6780374510088549, 0.6388122772213349, 0.6001032241415465, 0.5619102917694876, 0.5242334801051596, 0.4870727891485622, 0.4504282188996953, 0.41429976935855883, 0.378687440525153, 0.34359123239947764, 0.30901114498153226, 0.2749471782713184, 0.24139933226883437, 0.2083676069740814, 0.17585200238705823, 0.14385251850776593, 0.11236915533620428, 0.08140191287237308, 0.05095079111627232, 0.021015790067902218, 0.008403090272737446, 0.03730584990564656, 0.06569248883082557, 0.09356300704827358, 0.12091740455799116, 0.14775568135997819, 0.17407783745423466, 0.1998838728407607, 0.2251737875195562, 0.24994758149062113, 0.2742052547539555, 0.29794680730955947, 0.3211722391574332, 0.34388155029757594, 0.36607474072998836, 0.3877518104546702, 0.40891275947162153, 0.4295575877808423, 0.4496862953823325, 0.4692988822760923, 0.4883953484621215, 0.5069756939404203, 0.5250399187109884, 0.5425880227738263, 0.5596200061289336, 0.5761358687763102, 0.5921356107159563, 0.6076192319478719, 0.622586732472057, 0.6370381122885115, 0.6509733713972355, 0.6643925097982291, 0.677295527491492, 0.6896824244770245, 0.7015532007548266, 0.7129078563248981, 0.723746391187239, 0.7340688053418494, 0.7438750987887293, 0.7531652715278787, 0.7619393235592975, 0.7701972548829858, 0.7779390654989436, 0.7851647554071709, 0.7918743246076677, 0.798067773100434, 0.8037451008854697, 0.808906307962775, 0.8135513943323496, 0.8176803599941938, 0.8212932049483075, 0.8243899291946906, 0.8269705327333432, 0.8290350155642653, 0.8305833776874568, 0.8316156191029179, 0.8321317398106485, 0.8321317398106485, 0.8316156191029179, 0.8305833776874569, 0.8290350155642653, 0.8269705327333432, 0.8243899291946907, 0.8212932049483075, 0.8176803599941939, 0.8135513943323497, 0.8089063079627751, 0.8037451008854698, 0.7980677731004342, 0.7918743246076678, 0.7851647554071712, 0.7779390654989439, 0.770197254882986, 0.7619393235592977, 0.7531652715278788, 0.7438750987887296, 0.7340688053418496, 0.7237463911872393, 0.7129078563248983, 0.7015532007548271, 0.6896824244770249, 0.6772955274914926, 0.6643925097982295, 0.6509733713972358, 0.6370381122885119, 0.6225867324720572, 0.6076192319478724, 0.5921356107159566, 0.5761358687763106, 0.5596200061289338, 0.5425880227738269, 0.525039918710989, 0.5069756939404205, 0.48839534846212207, 0.4692988822760926, 0.44968629538233307, 0.4295575877808425, 0.4089127594716221, 0.38775181045467044, 0.3660747407299889, 0.3438815502975763, 0.32117223915743376, 0.29794680730956014, 0.27420525475395585, 0.2499475814906218, 0.22517378751955652, 0.19988387284076137, 0.174077837454235, 0.14775568135997885, 0.12091740455799149, 0.09356300704827436, 0.0656924888308259, 0.03730584990564767, 0.008403090272738223, 0.021015790067901774, 0.050950791116271654, 0.08140191287237264, 0.1123691553362034, 0.14385251850776548, 0.17585200238705734, 0.20836760697408052, 0.24139933226883326, 0.27494717827131754, 0.30901114498153137, 0.34359123239947675, 0.3786874405251526, 0.41429976935855795, 0.45042821889969487, 0.4870727891485611, 0.5242334801051591, 0.5619102917694865, 0.6001032241415454, 0.6388122772213338, 0.678037451008854, 0.7177787455041034, 0.7580361607070845, 0.798809696617796, 0.8400993532362371, 0.8819051305624097, 0.9242270285963119, 0.9670650473379456, 1.0104191867873085, 1.054289446944403, 1.0986758278092275, 1.143578329381783, 1.1889969516620682, 1.234931694650085, 1.2813825583458325, 1.3283495427493093, 1.3758326478605176, 1.4238318736794553, 1.4723472202061245, 1.5213786874405235, 1.570926275382654, 1.6209899840325135, 1.6715698133901054, 1.722665763455426, 1.7742778342284788, 1.8264060257092618, 1.879050337897774, 1.9322107707940184, 1.985887324397992, 2.040079998709697, 2.094788793729131, 2.1500137094562977, 2.205754745891193, 2.2620119030338204, 2.3187851808841784, 2.3760745794422653, 2.433880098708084, 2.4922017386816324, 2.551039499362912, 2.6103933807519213, 2.6702633828486624, 2.7306495056531324, 2.7915517491653343, 2.8529701133852656, 2.914904598312929, 2.9773552039483224, 3.0403219302914453, 3.1038047773423, 3.167803745100885 ], [ 3.1812228835018788, 3.1172239157432946, 3.0537410686924407, 2.990774342349317, 2.9283237367139243, 2.866389251786261, 2.804970887566329, 2.7440686440541278, 2.683682521249657, 2.623812519152917, 2.5644586377639067, 2.5056208770826274, 2.447299237109079, 2.389493717843261, 2.3322043192851734, 2.275431041434816, 2.2191738842921884, 2.163432847857293, 2.108207932130127, 2.053499137110692, 1.9993064627989874, 1.9456299091950129, 1.8924694762987695, 1.8398251641102563, 1.7876969726294742, 1.7360849018564224, 1.6849889517911008, 1.6344091224335093, 1.584345413783649, 1.534797825841519, 1.485766358607119, 1.4372510120804503, 1.3892517862615117, 1.3417686811503042, 1.294801696746827, 1.24835083305108, 1.2024160900630632, 1.1569974677827783, 1.112094966210222, 1.0677085853453985, 1.0238383251883034, 0.9804841857389397, 0.9376461669973066, 0.895324268963404, 0.8535184916372318, 0.8122288350187903, 0.7714552991080792, 0.7311978839050981, 0.6914565894098486, 0.6522314156223286, 0.6135223625425401, 0.5753294301704812, 0.5376526185061532, 0.5004919275495558, 0.46384735730068893, 0.42771890775955246, 0.39210657892614664, 0.35701037080047127, 0.3224302833825259, 0.28836631667231205, 0.254818470669828, 0.22178674537507503, 0.18927114078805185, 0.15727165690875955, 0.1257882937371979, 0.09482105127336693, 0.06436992951726594, 0.034434928468896064, 0.005016048128256401, 0.023886711504652824, 0.05227335042983183, 0.08014386864727985, 0.10749826615699742, 0.13433654295898445, 0.16065869905324093, 0.18646473443976697, 0.21175464911856245, 0.2365284430896274, 0.2607861163529618, 0.28452766890856573, 0.30775310075643947, 0.3304624118965822, 0.3526556023289946, 0.3743326720536765, 0.3954936210706278, 0.41613844937984856, 0.4362671569813388, 0.45587974387509855, 0.4749762100611279, 0.49355655553942657, 0.5116207803099948, 0.5291688843728326, 0.5462008677279399, 0.5627167303753164, 0.5787164723149626, 0.5942000935468782, 0.6091675940710632, 0.6236189738875177, 0.6375542329962418, 0.6509733713972354, 0.6638763890904984, 0.6762632860760309, 0.688134062353833, 0.6994887179239044, 0.7103272527862453, 0.7206496669408557, 0.7304559603877356, 0.739746133126885, 0.7485201851583039, 0.7567781164819921, 0.7645199270979499, 0.7717456170061772, 0.778455186206674, 0.7846486346994404, 0.7903259624844761, 0.7954871695617812, 0.800132255931356, 0.8042612215932001, 0.8078740665473138, 0.8109707907936968, 0.8135513943323495, 0.8156158771632716, 0.8171642392864631, 0.8181964807019242, 0.8187126014096547, 0.8187126014096547, 0.8181964807019242, 0.8171642392864632, 0.8156158771632716, 0.8135513943323495, 0.8109707907936969, 0.8078740665473138, 0.8042612215932001, 0.800132255931356, 0.7954871695617813, 0.7903259624844761, 0.7846486346994405, 0.7784551862066742, 0.7717456170061775, 0.7645199270979501, 0.7567781164819922, 0.7485201851583041, 0.7397461331268851, 0.7304559603877359, 0.7206496669408559, 0.7103272527862456, 0.6994887179239045, 0.6881340623538333, 0.6762632860760311, 0.6638763890904988, 0.6509733713972358, 0.637554232996242, 0.6236189738875182, 0.6091675940710635, 0.5942000935468786, 0.5787164723149628, 0.5627167303753169, 0.5462008677279401, 0.5291688843728332, 0.5116207803099952, 0.4935565555394268, 0.47497621006112833, 0.4558797438750989, 0.43626715698133944, 0.4161384493798488, 0.39549362107062835, 0.3743326720536768, 0.3526556023289953, 0.33046241189658265, 0.30775310075644, 0.2845276689085664, 0.2607861163529621, 0.23652844308962806, 0.2117546491185628, 0.18646473443976763, 0.16065869905324126, 0.13433654295898512, 0.10749826615699776, 0.08014386864728062, 0.052273350429832166, 0.023886711504653935, 0.0050160481282555125, 0.03443492846889562, 0.06436992951726528, 0.09482105127336649, 0.12578829373719724, 0.1572716569087591, 0.18927114078805096, 0.22178674537507415, 0.2548184706698269, 0.28836631667231116, 0.322430283382525, 0.3570103708004704, 0.3921065789261462, 0.42771890775955157, 0.4638473573006885, 0.5004919275495547, 0.5376526185061528, 0.5753294301704801, 0.613522362542539, 0.6522314156223274, 0.6914565894098477, 0.731197883905097, 0.7714552991080781, 0.8122288350187896, 0.8535184916372307, 0.8953242689634033, 0.9376461669973055, 0.9804841857389393, 1.023838325188302, 1.0677085853453967, 1.112094966210221, 1.1569974677827766, 1.2024160900630623, 1.248350833051079, 1.294801696746826, 1.3417686811503033, 1.3892517862615117, 1.4372510120804494, 1.4857663586071181, 1.5347978258415171, 1.5843454137836481, 1.6344091224335076, 1.684988951791099, 1.7360849018564197, 1.7876969726294725, 1.8398251641102554, 1.8924694762987677, 1.945629909195012, 1.9993064627989856, 2.053499137110691, 2.1082079321301253, 2.1634328478572913, 2.2191738842921866, 2.275431041434814, 2.3322043192851725, 2.3894937178432594, 2.4472992371090783, 2.5056208770826265, 2.564458637763906, 2.6238125191529154, 2.683682521249656, 2.744068644054126, 2.804970887566328, 2.8663892517862593, 2.9283237367139225, 2.990774342349316, 3.053741068692439, 3.1172239157432937, 3.1812228835018788 ], [ 3.1951581426106026, 3.1311591748520184, 3.0676763278011645, 3.004709601458041, 2.9422589958226477, 2.880324510894985, 2.8189061466750527, 2.7580039031628516, 2.6976177803583807, 2.6377477782616405, 2.5783938968726305, 2.519556136191351, 2.4612344962178025, 2.4034289769519845, 2.3461395783938968, 2.2893663005435396, 2.2331091434009123, 2.177368106966017, 2.1221431912388504, 2.0674343962194155, 2.013241721907711, 1.9595651683037367, 1.9064047354074933, 1.8537604232189802, 1.8016322317381976, 1.7500201609651458, 1.6989242108998241, 1.6483443815422327, 1.5982806728923729, 1.5487330849502423, 1.4997016177158429, 1.451186271189174, 1.4031870453702355, 1.3557039402590276, 1.3087369558555504, 1.2622860921598038, 1.216351349171787, 1.1709327268915017, 1.1260302253189458, 1.0816438444541219, 1.0377735842970273, 0.9944194448476635, 0.9515814261060305, 0.9092595280721278, 0.8674537507459557, 0.8261640941275141, 0.785390558216803, 0.7451331430138219, 0.7053918485185724, 0.6661666747310524, 0.627457621651264, 0.5892646892792051, 0.551587877614877, 0.5144271866582797, 0.4777826164094128, 0.4416541668682763, 0.4060418380348705, 0.3709456299091951, 0.3363655424912497, 0.3023015757810359, 0.26875372977855183, 0.23572200448379887, 0.2032063998967757, 0.1712069160174834, 0.13972355284592175, 0.10875631038209055, 0.07830518862598979, 0.04837018757761968, 0.01895130723698002, 0.009951452395928984, 0.03833809132110799, 0.06620860953855601, 0.09356300704827358, 0.12040128385026061, 0.1467234399445171, 0.17252947533104313, 0.1978193900098386, 0.22259318398090355, 0.24685085724423794, 0.2705924097998419, 0.2938178416477156, 0.3165271527878585, 0.3387203432202708, 0.36039741294495264, 0.38155836196190396, 0.4022031902711247, 0.42233189787261505, 0.4419444847663748, 0.46104095095240405, 0.4796212964307027, 0.49768552120127096, 0.5152336252641089, 0.532265608619216, 0.5487814712665926, 0.5647812132062388, 0.5802648344381544, 0.5952323349623394, 0.609683714778794, 0.6236189738875181, 0.6370381122885116, 0.6499411299817746, 0.6623280269673071, 0.6741988032451092, 0.6855534588151806, 0.6963919936775216, 0.7067144078321319, 0.7165207012790118, 0.7258108740181611, 0.73458492604958, 0.7428428573732684, 0.7505846679892261, 0.7578103578974534, 0.7645199270979501, 0.7707133755907165, 0.7763907033757522, 0.7815519104530575, 0.7861969968226321, 0.7903259624844763, 0.7939388074385899, 0.7970355316849731, 0.7996161352236256, 0.8016806180545477, 0.8032289801777392, 0.8042612215932003, 0.8047773423009309, 0.8047773423009309, 0.8042612215932003, 0.8032289801777394, 0.8016806180545478, 0.7996161352236257, 0.7970355316849731, 0.79393880743859, 0.7903259624844764, 0.7861969968226321, 0.7815519104530575, 0.7763907033757523, 0.7707133755907167, 0.7645199270979504, 0.7578103578974538, 0.7505846679892263, 0.7428428573732684, 0.7345849260495803, 0.7258108740181612, 0.716520701279012, 0.7067144078321321, 0.6963919936775218, 0.6855534588151808, 0.6741988032451095, 0.6623280269673074, 0.6499411299817751, 0.6370381122885119, 0.6236189738875182, 0.6096837147787944, 0.5952323349623396, 0.5802648344381548, 0.564781213206239, 0.5487814712665932, 0.5322656086192162, 0.5152336252641093, 0.4976855212012714, 0.47962129643070306, 0.4610409509524046, 0.44194448476637505, 0.4223318978726156, 0.40220319027112506, 0.3815583619619045, 0.360397412944953, 0.33872034322027145, 0.3165271527878588, 0.2938178416477162, 0.27059240979984256, 0.24685085724423828, 0.22259318398090422, 0.19781939000983895, 0.1725294753310438, 0.14672343994451742, 0.12040128385026128, 0.09356300704827392, 0.06620860953855678, 0.038338091321108325, 0.009951452395930094, 0.018951307236979353, 0.04837018757761924, 0.07830518862598912, 0.1087563103820901, 0.13972355284592086, 0.17120691601748295, 0.2032063998967748, 0.235722004483798, 0.2687537297785507, 0.302301575781035, 0.33636554249124884, 0.3709456299091942, 0.40604183803487004, 0.4416541668682754, 0.47778261640941233, 0.5144271866582786, 0.5515878776148766, 0.589264689279204, 0.6274576216512628, 0.6661666747310513, 0.7053918485185715, 0.7451331430138208, 0.7853905582168019, 0.8261640941275135, 0.8674537507459545, 0.9092595280721272, 0.9515814261060294, 0.9944194448476631, 1.037773584297026, 1.0816438444541205, 1.126030225318945, 1.1709327268915004, 1.2163513491717857, 1.2622860921598025, 1.30873695585555, 1.3557039402590267, 1.403187045370235, 1.4511862711891728, 1.499701617715842, 1.548733084950241, 1.5982806728923715, 1.648344381542231, 1.6989242108998228, 1.7500201609651436, 1.8016322317381963, 1.8537604232189793, 1.9064047354074916, 1.9595651683037358, 2.0132417219077094, 2.0674343962194146, 2.1221431912388486, 2.177368106966015, 2.2331091434009105, 2.289366300543538, 2.346139578393896, 2.4034289769519828, 2.4612344962178017, 2.51955613619135, 2.5783938968726297, 2.6377477782616388, 2.69761778035838, 2.75800390316285, 2.818906146675052, 2.880324510894983, 2.9422589958226464, 3.00470960145804, 3.0676763278011627, 3.1311591748520176, 3.1951581426106026 ], [ 3.2096095224270575, 3.1456105546684725, 3.0821277076176194, 3.0191609812744957, 2.9567103756391027, 2.89477589071144, 2.8333575264915076, 2.7724552829793065, 2.7120691601748357, 2.6521991580780955, 2.5928452766890855, 2.534007516007806, 2.4756858760342575, 2.4178803567684395, 2.3605909582103517, 2.3038176803599946, 2.247560523217367, 2.191819486782472, 2.1365945710553054, 2.0818857760358704, 2.0276931017241657, 1.9740165481201917, 1.9208561152239483, 1.868211803035435, 1.8160836115546526, 1.7644715407816007, 1.713375590716279, 1.6627957613586877, 1.6127320527088278, 1.5631844647666973, 1.5141529975322978, 1.465637651005629, 1.4176384251866905, 1.3701553200754826, 1.3231883356720053, 1.2767374719762588, 1.230802728988242, 1.1853841067079567, 1.1404816051354008, 1.0960952242705768, 1.0522249641134822, 1.0088708246641183, 0.9660328059224852, 0.9237109078885826, 0.8819051305624104, 0.8406154739439688, 0.7998419380332578, 0.7595845228302767, 0.7198432283350271, 0.6806180545475071, 0.6419090014677187, 0.6037160690956598, 0.5660392574313318, 0.5288785664747344, 0.4922339962258675, 0.456105546684731, 0.4204932178513252, 0.38539700972564983, 0.35081692230770445, 0.3167529555974906, 0.28320510959500655, 0.2501733843002536, 0.21765777971323041, 0.18565829583393834, 0.15417493266237647, 0.12320769019854527, 0.09275656844244473, 0.0628215673940744, 0.03340268705343474, 0.00449992742052574, 0.02388671150465327, 0.05175722972210128, 0.07911162723181886, 0.10594990403380589, 0.13227206012806236, 0.1580780955145884, 0.1833680101933839, 0.20814180416444883, 0.23239947742778322, 0.25614102998338717, 0.2793664618312609, 0.30207577297140364, 0.32426896340381606, 0.3459460331284979, 0.36710698214544923, 0.38775181045467, 0.4078805180561602, 0.42749310494992, 0.4465895711359493, 0.465169916614248, 0.48323414138481624, 0.500782245447654, 0.5178142288027613, 0.5343300914501379, 0.550329833389784, 0.5658134546216996, 0.5807809551458847, 0.5952323349623392, 0.6091675940710632, 0.6225867324720569, 0.6354897501653198, 0.6478766471508524, 0.6597474234286544, 0.6711020789987259, 0.6819406138610667, 0.6922630280156772, 0.7020693214625571, 0.7113594942017064, 0.7201335462331253, 0.7283914775568135, 0.7361332881727713, 0.7433589780809986, 0.7500685472814954, 0.7562619957742618, 0.7619393235592975, 0.7671005306366027, 0.7717456170061774, 0.7758745826680216, 0.7794874276221352, 0.7825841518685183, 0.7851647554071709, 0.787229238238093, 0.7887776003612845, 0.7898098417767456, 0.7903259624844762, 0.7903259624844762, 0.7898098417767456, 0.7887776003612846, 0.787229238238093, 0.7851647554071709, 0.7825841518685184, 0.7794874276221352, 0.7758745826680216, 0.7717456170061774, 0.7671005306366028, 0.7619393235592975, 0.7562619957742619, 0.7500685472814956, 0.7433589780809989, 0.7361332881727716, 0.7283914775568137, 0.7201335462331255, 0.7113594942017065, 0.7020693214625573, 0.6922630280156773, 0.6819406138610671, 0.671102078998726, 0.6597474234286548, 0.6478766471508526, 0.6354897501653203, 0.6225867324720572, 0.6091675940710635, 0.5952323349623396, 0.5807809551458849, 0.5658134546217001, 0.5503298333897843, 0.5343300914501383, 0.5178142288027615, 0.5007822454476546, 0.4832341413848167, 0.4651699166142482, 0.44658957113594977, 0.4274931049499203, 0.4078805180561609, 0.3877518104546702, 0.3671069821454498, 0.34594603312849825, 0.3242689634038167, 0.3020757729714041, 0.27936646183126146, 0.25614102998338784, 0.23239947742778355, 0.2081418041644495, 0.18336801019338422, 0.15807809551458907, 0.1322720601280627, 0.10594990403380655, 0.07911162723181919, 0.05175722972210206, 0.0238867115046536, 0.00449992742052463, 0.03340268705343408, 0.06282156739407396, 0.09275656844244384, 0.12320769019854483, 0.15417493266237559, 0.1856582958339379, 0.21765777971322953, 0.2501733843002527, 0.28320510959500544, 0.3167529555974897, 0.35081692230770356, 0.38539700972564894, 0.42049321785132476, 0.45610554668473013, 0.49223399622586705, 0.5288785664747333, 0.5660392574313313, 0.6037160690956587, 0.6419090014677176, 0.680618054547506, 0.7198432283350262, 0.7595845228302756, 0.7998419380332566, 0.8406154739439682, 0.8819051305624093, 0.9237109078885819, 0.9660328059224841, 1.0088708246641178, 1.0522249641134804, 1.0960952242705755, 1.1404816051353999, 1.1853841067079554, 1.2308027289882406, 1.2767374719762574, 1.323188335672005, 1.3701553200754817, 1.41763842518669, 1.4656376510056277, 1.514152997532297, 1.563184464766696, 1.6127320527088265, 1.662795761358686, 1.7133755907162778, 1.7644715407815985, 1.8160836115546513, 1.8682118030354342, 1.9208561152239465, 1.9740165481201908, 2.0276931017241644, 2.0818857760358696, 2.1365945710553036, 2.19181948678247, 2.2475605232173654, 2.303817680359993, 2.360590958210351, 2.4178803567684377, 2.4756858760342566, 2.534007516007805, 2.5928452766890846, 2.6521991580780937, 2.712069160174835, 2.7724552829793048, 2.8333575264915067, 2.894775890711438, 2.9567103756391013, 3.019160981274495, 3.0821277076176177, 3.1456105546684725, 3.2096095224270575 ], [ 3.2245770229512427, 3.1605780551926577, 3.0970952081418037, 3.034128481798681, 2.9716778761632874, 2.9097433912356245, 2.8483250270156923, 2.7874227835034913, 2.7270366606990204, 2.66716665860228, 2.60781277721327, 2.548975016531991, 2.490653376558442, 2.432847857292624, 2.3755584587345364, 2.3187851808841793, 2.262528023741552, 2.2067869873066566, 2.15156207157949, 2.096853276560055, 2.0426606022483504, 1.9889840486443764, 1.935823615748133, 1.8831793035596198, 1.8310511120788373, 1.7794390413057855, 1.7283430912404638, 1.6777632618828724, 1.6276995532330125, 1.578151965290882, 1.5291204980564825, 1.4806051515298138, 1.4326059257108752, 1.3851228205996673, 1.33815583619619, 1.2917049725004435, 1.2457702295124267, 1.2003516072321414, 1.1554491056595855, 1.1110627247947615, 1.067192464637667, 1.023838325188303, 0.9810003064466701, 0.9386784084127675, 0.8968726310865953, 0.8555829744681538, 0.8148094385574427, 0.7745520233544616, 0.7348107288592121, 0.6955855550716921, 0.6568765019919036, 0.6186835696198447, 0.5810067579555167, 0.5438460669989194, 0.5072014967500524, 0.47107304720891596, 0.43546071837551015, 0.40036451024983477, 0.3657844228318894, 0.33172045612167556, 0.2981726101191915, 0.26514088482443854, 0.23262528023741535, 0.20062579635812305, 0.16914243318656141, 0.1381751907227302, 0.10772406896662945, 0.07778906791825935, 0.04837018757761968, 0.01946742794471068, 0.00891921098046844, 0.036789729197916454, 0.06414412670763403, 0.09098240350962106, 0.11730455960387753, 0.14311059499040357, 0.16840050966919906, 0.193174303640264, 0.2174319769035984, 0.24117352945920234, 0.2643989613070761, 0.2871082724472188, 0.30930146287963123, 0.3309785326043131, 0.3521394816212644, 0.37278430993048517, 0.3929130175319754, 0.41252560442573516, 0.4316220706117644, 0.4502024160900632, 0.4682666408606313, 0.4858147449234692, 0.5028467282785765, 0.519362590925953, 0.5353623328655992, 0.5508459540975148, 0.5658134546216999, 0.5802648344381544, 0.5942000935468784, 0.6076192319478719, 0.6205222496411349, 0.6329091466266674, 0.6447799229044695, 0.6561345784745409, 0.6669731133368819, 0.6772955274914922, 0.6871018209383721, 0.6963919936775216, 0.7051660457089404, 0.7134239770326287, 0.7211657876485865, 0.7283914775568139, 0.7351010467573106, 0.7412944952500768, 0.7469718230351126, 0.7521330301124178, 0.7567781164819924, 0.7609070821438366, 0.7645199270979504, 0.7676166513443334, 0.7701972548829861, 0.7722617377139082, 0.7738100998370997, 0.7748423412525608, 0.7753584619602913, 0.7753584619602913, 0.7748423412525608, 0.7738100998370998, 0.7722617377139082, 0.7701972548829861, 0.7676166513443335, 0.7645199270979504, 0.7609070821438367, 0.7567781164819926, 0.7521330301124179, 0.7469718230351127, 0.7412944952500771, 0.7351010467573107, 0.7283914775568141, 0.7211657876485867, 0.7134239770326288, 0.7051660457089406, 0.6963919936775217, 0.6871018209383725, 0.6772955274914925, 0.6669731133368821, 0.6561345784745412, 0.64477992290447, 0.6329091466266678, 0.6205222496411354, 0.6076192319478724, 0.5942000935468786, 0.5802648344381548, 0.5658134546217001, 0.5508459540975152, 0.5353623328655994, 0.5193625909259535, 0.5028467282785767, 0.48581474492346977, 0.46826664086063186, 0.4502024160900634, 0.43162207061176494, 0.4125256044257355, 0.39291301753197594, 0.3727843099304854, 0.35213948162126496, 0.3309785326043133, 0.3093014628796318, 0.28710827244721915, 0.26439896130707663, 0.241173529459203, 0.21743197690359872, 0.19317430364026467, 0.1684005096691994, 0.14311059499040424, 0.11730455960387787, 0.09098240350962172, 0.06414412670763436, 0.03678972919791723, 0.008919210980468772, 0.01946742794470957, 0.04837018757761902, 0.0777890679182589, 0.10772406896662878, 0.13817519072272977, 0.16914243318656053, 0.2006257963581226, 0.23262528023741447, 0.26514088482443765, 0.2981726101191904, 0.33172045612167467, 0.3657844228318885, 0.4003645102498339, 0.4354607183755097, 0.4710730472089151, 0.507201496750052, 0.5438460669989182, 0.5810067579555163, 0.6186835696198436, 0.6568765019919025, 0.695585555071691, 0.7348107288592112, 0.7745520233544605, 0.8148094385574416, 0.8555829744681531, 0.8968726310865942, 0.9386784084127668, 0.981000306446669, 1.0238383251883025, 1.0671924646376656, 1.1110627247947602, 1.1554491056595846, 1.20035160723214, 1.2457702295124253, 1.2917049725004421, 1.3381558361961896, 1.3851228205996664, 1.4326059257108748, 1.4806051515298124, 1.5291204980564816, 1.5781519652908806, 1.6276995532330112, 1.6777632618828706, 1.7283430912404625, 1.7794390413057832, 1.831051112078836, 1.883179303559619, 1.9358236157481312, 1.9889840486443755, 2.042660602248349, 2.0968532765600543, 2.1515620715794883, 2.206786987306655, 2.26252802374155, 2.3187851808841775, 2.3755584587345355, 2.4328478572926224, 2.4906533765584413, 2.5489750165319895, 2.6078127772132693, 2.6671666586022784, 2.7270366606990195, 2.7874227835034895, 2.8483250270156915, 2.9097433912356228, 2.971677876163286, 3.03412848179868, 3.097095208141802, 3.1605780551926568, 3.2245770229512427 ], [ 3.240060644183158, 3.176061676424574, 3.11257882937372, 3.0496121030305963, 2.987161497395203, 2.9252270124675404, 2.863808648247608, 2.802906404735407, 2.742520281930936, 2.682650279834196, 2.623296398445186, 2.5644586377639067, 2.506136997790358, 2.44833147852454, 2.3910420799664522, 2.334268802116095, 2.2780116449734678, 2.2222706085385724, 2.167045692811406, 2.112336897791971, 2.0581442234802663, 2.004467669876292, 1.9513072369800488, 1.8986629247915356, 1.8465347333107531, 1.7949226625377013, 1.7438267124723796, 1.6932468831147882, 1.6431831744649283, 1.5936355865227978, 1.5446041192883984, 1.4960887727617296, 1.448089546942791, 1.4006064418315831, 1.3536394574281059, 1.3071885937323593, 1.2612538507443425, 1.2158352284640572, 1.1709327268915013, 1.1265463460266774, 1.0826760858695827, 1.0393219464202188, 0.996483927678586, 0.9541620296446833, 0.9123562523185109, 0.8710665957000696, 0.8302930597893585, 0.7900356445863772, 0.7502943500911279, 0.7110691763036079, 0.6723601232238194, 0.6341671908517603, 0.5964903791874323, 0.559329688230835, 0.5226851179819683, 0.4865566684408318, 0.45094433960742597, 0.41584813148175037, 0.381268044063805, 0.34720407735359116, 0.3136562313511071, 0.28062450605635414, 0.24810890146933096, 0.21610941759003888, 0.18462605441847701, 0.15365881195464604, 0.12320769019854527, 0.09327268915017517, 0.0638538088095355, 0.03495104917662628, 0.0065644102514474945, 0.02130610796600063, 0.04866050547571821, 0.07549878227770523, 0.10182093837196171, 0.12762697375848775, 0.15291688843728324, 0.17769068240834818, 0.20194835567168257, 0.22568990822728652, 0.24891534007516025, 0.2716246512153031, 0.2938178416477154, 0.31549491137239727, 0.3366558603893486, 0.35730068869856935, 0.37742939630005967, 0.39704198319381945, 0.41613844937984856, 0.43471879485814735, 0.4527830196287155, 0.4703311236915535, 0.48736310704666064, 0.5038789696940372, 0.5198787116336834, 0.535362332865599, 0.550329833389784, 0.5647812132062386, 0.5787164723149627, 0.5921356107159561, 0.6050386284092192, 0.6174255253947516, 0.6292963016725538, 0.6406509572426252, 0.6514894921049661, 0.6618119062595765, 0.6716181997064564, 0.6809083724456058, 0.6896824244770245, 0.6979403558007129, 0.7056821664166707, 0.7129078563248981, 0.7196174255253948, 0.7258108740181611, 0.7314882018031968, 0.736649408880502, 0.7412944952500767, 0.7454234609119208, 0.7490363058660345, 0.7521330301124176, 0.7547136336510702, 0.7567781164819923, 0.7583264786051839, 0.759358720020645, 0.7598748407283755, 0.7598748407283755, 0.759358720020645, 0.758326478605184, 0.7567781164819924, 0.7547136336510702, 0.7521330301124177, 0.7490363058660345, 0.745423460911921, 0.7412944952500768, 0.7366494088805022, 0.731488201803197, 0.7258108740181612, 0.719617425525395, 0.7129078563248983, 0.7056821664166709, 0.697940355800713, 0.6896824244770248, 0.6809083724456059, 0.6716181997064566, 0.6618119062595766, 0.6514894921049664, 0.6406509572426253, 0.6292963016725541, 0.617425525394752, 0.6050386284092197, 0.5921356107159566, 0.5787164723149628, 0.564781213206239, 0.5503298333897843, 0.5353623328655994, 0.5198787116336836, 0.5038789696940378, 0.48736310704666086, 0.47033112369155394, 0.45278301962871603, 0.4347187948581477, 0.41613844937984923, 0.39704198319381967, 0.3774293963000601, 0.3573006886985697, 0.33665586038934914, 0.3154949113723975, 0.29381784164771596, 0.2716246512153033, 0.2489153400751608, 0.22568990822728718, 0.2019483556716829, 0.17769068240834884, 0.15291688843728357, 0.12762697375848842, 0.10182093837196204, 0.0754987822777059, 0.04866050547571854, 0.02130610796600141, 0.00656441025144705, 0.03495104917662539, 0.06385380880953484, 0.09327268915017473, 0.12320769019854438, 0.1536588119546456, 0.18462605441847635, 0.21610941759003843, 0.24810890146933007, 0.28062450605635325, 0.3136562313511062, 0.34720407735359027, 0.3812680440638041, 0.4158481314817495, 0.4509443396074255, 0.4865566684408309, 0.5226851179819678, 0.5593296882308341, 0.5964903791874319, 0.6341671908517594, 0.6723601232238181, 0.7110691763036066, 0.750294350091127, 0.7900356445863763, 0.8302930597893572, 0.8710665957000687, 0.91235625231851, 0.9541620296446824, 0.9964839276785846, 1.0393219464202184, 1.0826760858695814, 1.126546346026676, 1.1709327268915004, 1.215835228464056, 1.2612538507443412, 1.307188593732358, 1.3536394574281054, 1.4006064418315822, 1.4480895469427906, 1.4960887727617282, 1.5446041192883975, 1.5936355865227965, 1.643183174464927, 1.6932468831147864, 1.7438267124723783, 1.794922662537699, 1.8465347333107518, 1.8986629247915348, 1.951307236980047, 2.0044676698762913, 2.058144223480265, 2.11233689779197, 2.167045692811404, 2.2222706085385706, 2.278011644973466, 2.3342688021160933, 2.3910420799664514, 2.4483314785245383, 2.506136997790357, 2.5644586377639054, 2.623296398445185, 2.6826502798341942, 2.7425202819309353, 2.8029064047354053, 2.8638086482476073, 2.9252270124675386, 2.987161497395202, 3.0496121030305954, 3.112578829373718, 3.176061676424573, 3.240060644183158 ], [ 3.2560603861228037, 3.1920614183642195, 3.1285785713133656, 3.065611844970242, 3.0031612393348492, 2.9412267544071864, 2.879808390187254, 2.818906146675053, 2.7585200238705823, 2.698650021773842, 2.639296140384832, 2.5804583797035527, 2.522136739730004, 2.464331220464186, 2.4070418219060983, 2.350268544055741, 2.294011386913114, 2.2382703504782184, 2.183045434751052, 2.128336639731617, 2.0741439654199123, 2.0204674118159383, 1.9673069789196949, 1.9146626667311817, 1.8625344752503992, 1.8109224044773473, 1.7598264544120257, 1.7092466250544343, 1.6591829164045744, 1.6096353284624438, 1.5606038612280444, 1.5120885147013756, 1.464089288882437, 1.4166061837712292, 1.369639199367752, 1.3231883356720053, 1.2772535926839885, 1.2318349704037033, 1.1869324688311473, 1.1425460879663234, 1.0986758278092283, 1.0553216883598648, 1.0124836696182316, 0.9701617715843291, 0.928355994258157, 0.8870663376397154, 0.8462928017290043, 0.8060353865260232, 0.7662940920307737, 0.7270689182432537, 0.6883598651634653, 0.6501669327914064, 0.6124901211270783, 0.575329430170481, 0.5386848599216141, 0.5025564103804776, 0.4669440815470718, 0.4318478734213964, 0.39726778600345103, 0.3632038192932372, 0.32965597329075313, 0.2966242479960002, 0.264108643408977, 0.2321091595296847, 0.20062579635812305, 0.16965855389429185, 0.1392074321381911, 0.10927243108982099, 0.07985355074918132, 0.05095079111627232, 0.022564152191093312, 0.005306366026354814, 0.03266076353607228, 0.059499040338059306, 0.0858211964323159, 0.11162723181884182, 0.1369171464976373, 0.16169094046870236, 0.18594861373203675, 0.2096901662876407, 0.23291559813551443, 0.2556249092756572, 0.2778180997080695, 0.29949516943275145, 0.32065611844970277, 0.3413009467589234, 0.36142965436041374, 0.3810422412541735, 0.40013870744020275, 0.4187190529185014, 0.43678327768906966, 0.45433138175190757, 0.4713633651070148, 0.4878792277543913, 0.5038789696940376, 0.5193625909259532, 0.5343300914501381, 0.5487814712665927, 0.5627167303753168, 0.5761358687763103, 0.5890388864695733, 0.6014257834551058, 0.6132965597329079, 0.6246512153029793, 0.6354897501653203, 0.6458121643199306, 0.6556184577668105, 0.6649086305059599, 0.6736826825373787, 0.6819406138610671, 0.6896824244770249, 0.6969081143852521, 0.7036176835857488, 0.7098111320785152, 0.7154884598635509, 0.7206496669408562, 0.7252947533104308, 0.729423718972275, 0.7330365639263887, 0.7361332881727718, 0.7387138917114244, 0.7407783745423464, 0.742326736665538, 0.743358978080999, 0.7438750987887296, 0.7438750987887296, 0.743358978080999, 0.7423267366655381, 0.7407783745423465, 0.7387138917114244, 0.7361332881727718, 0.7330365639263887, 0.7294237189722751, 0.7252947533104309, 0.7206496669408563, 0.715488459863551, 0.7098111320785154, 0.703617683585749, 0.6969081143852525, 0.689682424477025, 0.6819406138610672, 0.673682682537379, 0.6649086305059599, 0.6556184577668107, 0.6458121643199308, 0.6354897501653205, 0.6246512153029795, 0.6132965597329082, 0.6014257834551061, 0.5890388864695738, 0.5761358687763106, 0.5627167303753169, 0.5487814712665932, 0.5343300914501383, 0.5193625909259535, 0.5038789696940378, 0.48787922775439185, 0.47136336510701504, 0.4543313817519081, 0.4367832776890701, 0.41871905291850176, 0.4001387074402033, 0.38104224125417385, 0.3614296543604143, 0.34130094675892375, 0.3206561184497032, 0.2994951694327517, 0.27781809970807014, 0.2556249092756575, 0.23291559813551488, 0.20969016628764137, 0.18594861373203697, 0.16169094046870303, 0.13691714649763775, 0.11162723181884249, 0.08582119643231612, 0.05949904033805997, 0.03266076353607272, 0.00530636602635548, 0.022564152191092868, 0.05095079111627121, 0.07985355074918066, 0.10927243108982054, 0.13920743213819042, 0.1696585538942914, 0.20062579635812217, 0.23210915952968425, 0.2641086434089761, 0.2966242479959993, 0.329655973290752, 0.3632038192932363, 0.39726778600345014, 0.4318478734213955, 0.46694408154707134, 0.5025564103804767, 0.5386848599216136, 0.5753294301704799, 0.6124901211270779, 0.6501669327914052, 0.6883598651634641, 0.7270689182432526, 0.7662940920307728, 0.8060353865260221, 0.8462928017290032, 0.8870663376397148, 0.9283559942581558, 0.9701617715843285, 1.0124836696182307, 1.0553216883598644, 1.098675827809227, 1.142546087966322, 1.186932468831146, 1.231834970403702, 1.2772535926839872, 1.323188335672004, 1.3696391993677515, 1.4166061837712283, 1.4640892888824366, 1.5120885147013743, 1.5606038612280435, 1.6096353284624425, 1.659182916404573, 1.7092466250544325, 1.7598264544120243, 1.810922404477345, 1.8625344752503978, 1.9146626667311808, 1.967306978919693, 2.0204674118159374, 2.074143965419911, 2.128336639731616, 2.18304543475105, 2.2382703504782167, 2.294011386913112, 2.3502685440557394, 2.4070418219060974, 2.4643312204641843, 2.522136739730003, 2.5804583797035514, 2.639296140384831, 2.6986500217738403, 2.7585200238705814, 2.8189061466750513, 2.8798083901872533, 2.9412267544071846, 3.0031612393348475, 3.065611844970241, 3.128578571313364, 3.1920614183642186, 3.2560603861228037 ], [ 3.2725762487701813, 3.2085772810115962, 3.1450944339607423, 3.0821277076176194, 3.019677101982226, 2.957742617054563, 2.896324252834631, 2.83542200932243, 2.775035886517959, 2.7151658844212188, 2.6558120030322088, 2.5969742423509294, 2.5386526023773808, 2.4808470831115628, 2.423557684553475, 2.366784406703118, 2.3105272495604905, 2.254786213125595, 2.1995612973984286, 2.1448525023789937, 2.090659828067289, 2.036983274463315, 1.9838228415670716, 1.9311785293785584, 1.8790503378977759, 1.827438267124724, 1.7763423170594024, 1.725762487701811, 1.675698779051951, 1.6261511911098205, 1.577119723875421, 1.5286043773487523, 1.4806051515298138, 1.4331220464186059, 1.3861550620151286, 1.339704198319382, 1.2937694553313652, 1.24835083305108, 1.203448331478524, 1.1590619506137, 1.1151916904566055, 1.0718375510072415, 1.0289995322656087, 0.9866776342317061, 0.9448718569055337, 0.9035822002870924, 0.8628086643763813, 0.8225512491734, 0.7828099546781506, 0.7435847808906306, 0.7048757278108422, 0.6666827954387831, 0.629005983774455, 0.5918452928178577, 0.555200722568991, 0.5190722730278545, 0.4834599441944487, 0.4483637360687731, 0.41378364865082773, 0.3797196819406139, 0.34617183593812983, 0.3131401106433769, 0.2806245060563537, 0.24862502217706162, 0.21714165900549975, 0.18617441654166877, 0.155723294785568, 0.1257882937371979, 0.09636941339655825, 0.06746665376364902, 0.039080014838470234, 0.011209496621022108, 0.016144900888695468, 0.042983177690682495, 0.06930533378493897, 0.09511136917146501, 0.1204012838502605, 0.14517507782132544, 0.16943275108465983, 0.19317430364026378, 0.2163997354881375, 0.23910904662828036, 0.26130223706069267, 0.28297930678537453, 0.30414025580232584, 0.3247850841115466, 0.34491379171303693, 0.3645263786067967, 0.3836228447928258, 0.4022031902711246, 0.42026741504169274, 0.43781551910453076, 0.4548475024596379, 0.4713633651070145, 0.48736310704666064, 0.5028467282785762, 0.5178142288027613, 0.5322656086192159, 0.54620086772794, 0.5596200061289334, 0.5725230238221964, 0.5849099208077289, 0.596780697085531, 0.6081353526556025, 0.6189738875179434, 0.6292963016725538, 0.6391025951194337, 0.648392767858583, 0.6571668198900018, 0.6654247512136902, 0.673166561829648, 0.6803922517378753, 0.687101820938372, 0.6932952694311384, 0.6989725972161741, 0.7041338042934793, 0.708778890663054, 0.7129078563248981, 0.7165207012790118, 0.7196174255253949, 0.7221980290640475, 0.7242625118949696, 0.7258108740181611, 0.7268431154336222, 0.7273592361413528, 0.7273592361413528, 0.7268431154336222, 0.7258108740181612, 0.7242625118949697, 0.7221980290640475, 0.719617425525395, 0.7165207012790118, 0.7129078563248983, 0.7087788906630541, 0.7041338042934795, 0.6989725972161742, 0.6932952694311385, 0.6871018209383722, 0.6803922517378755, 0.6731665618296482, 0.6654247512136903, 0.657166819890002, 0.6483927678585831, 0.6391025951194339, 0.6292963016725539, 0.6189738875179437, 0.6081353526556026, 0.5967806970855314, 0.5849099208077293, 0.572523023822197, 0.5596200061289338, 0.5462008677279401, 0.5322656086192162, 0.5178142288027615, 0.5028467282785767, 0.48736310704666086, 0.47136336510701504, 0.4548475024596381, 0.4378155191045312, 0.4202674150416933, 0.40220319027112494, 0.3836228447928265, 0.36452637860679693, 0.3449137917130374, 0.32478508411154694, 0.3041402558023264, 0.28297930678537475, 0.2613022370606932, 0.23910904662828059, 0.21639973548813807, 0.19317430364026444, 0.16943275108466016, 0.1451750778213261, 0.12040128385026083, 0.09511136917146568, 0.0693053337849393, 0.04298317769068316, 0.0161449008886958, 0.01120949662102122, 0.03908001483846979, 0.06746665376364813, 0.09636941339655758, 0.12578829373719747, 0.15572329478556712, 0.18617441654166833, 0.2171416590054991, 0.24862502217706117, 0.2806245060563528, 0.313140110643376, 0.34617183593812895, 0.379719681940613, 0.41378364865082684, 0.4483637360687722, 0.48345994419444827, 0.5190722730278536, 0.5552007225689906, 0.5918452928178568, 0.6290059837744546, 0.6666827954387822, 0.7048757278108408, 0.7435847808906293, 0.7828099546781497, 0.8225512491733991, 0.8628086643763799, 0.9035822002870915, 0.9448718569055328, 0.9866776342317052, 1.0289995322656074, 1.071837551007241, 1.1151916904566042, 1.1590619506136988, 1.2034483314785231, 1.2483508330510786, 1.293769455331364, 1.3397041983193807, 1.3861550620151282, 1.433122046418605, 1.4806051515298133, 1.528604377348751, 1.5771197238754202, 1.6261511911098192, 1.6756987790519497, 1.7257624877018092, 1.776342317059401, 1.8274382671247218, 1.8790503378977745, 1.9311785293785575, 1.9838228415670698, 2.036983274463314, 2.0906598280672877, 2.144852502378993, 2.199561297398427, 2.2547862131255934, 2.3105272495604887, 2.366784406703116, 2.423557684553474, 2.480847083111561, 2.53865260237738, 2.596974242350928, 2.655812003032208, 2.715165884421217, 2.775035886517958, 2.835422009322428, 2.89632425283463, 2.9577426170545613, 3.019677101982225, 3.0821277076176186, 3.1450944339607405, 3.2085772810115953, 3.2725762487701813 ], [ 3.289608232125288, 3.225609264366703, 3.162126417315849, 3.0991596909727264, 3.036709085337333, 2.97477460040967, 2.913356236189738, 2.8524539926775367, 2.792067869873066, 2.7321978677763257, 2.6728439863873157, 2.6140062257060364, 2.5556845857324877, 2.4978790664666697, 2.440589667908582, 2.3838163900582248, 2.3275592329155974, 2.271818196480702, 2.2165932807535356, 2.1618844857341006, 2.107691811422396, 2.054015257818422, 2.0008548249221785, 1.9482105127336653, 1.8960823212528828, 1.844470250479831, 1.7933743004145093, 1.7427944710569179, 1.692730762407058, 1.6431831744649275, 1.594151707230528, 1.5456363607038592, 1.4976371348849207, 1.4501540297737128, 1.4031870453702355, 1.356736181674489, 1.3108014386864721, 1.2653828164061869, 1.220480314833631, 1.176093933968807, 1.1322236738117124, 1.0888695343623485, 1.0460315156207156, 1.003709617586813, 0.9619038402606406, 0.9206141836421993, 0.8798406477314882, 0.8395832325285069, 0.7998419380332575, 0.7606167642457375, 0.7219077111659491, 0.68371477879389, 0.646037967129562, 0.6088772761729646, 0.5722327059240979, 0.5361042563829614, 0.5004919275495556, 0.46539571942388, 0.43081563200593465, 0.3967516652957208, 0.36320381929323675, 0.3301720939984838, 0.2976564894114606, 0.26565700553216853, 0.23417364236060667, 0.2032063998967757, 0.17275527814067493, 0.14282027709230483, 0.11340139675166516, 0.08449863711875594, 0.05611199819357715, 0.028241479976129025, 0.0008870824664115595, 0.025951194335575578, 0.052273350429832055, 0.0780793858163581, 0.10336930049515358, 0.12814309446621852, 0.1524007677295529, 0.17614232028515686, 0.1993677521330306, 0.22207706327317345, 0.24427025370558575, 0.2659473234302676, 0.2871082724472189, 0.3077531007564397, 0.32788180835793, 0.3474943952516898, 0.3665908614377189, 0.3851712069160177, 0.4032354316865858, 0.42078353574942384, 0.437815519104531, 0.45433138175190757, 0.4703311236915537, 0.4858147449234693, 0.5007822454476544, 0.515233625264109, 0.529168884372833, 0.5425880227738265, 0.5554910404670895, 0.5678779374526219, 0.5797487137304241, 0.5911033693004956, 0.6019419041628364, 0.6122643183174469, 0.6220706117643268, 0.6313607845034761, 0.6401348365348949, 0.6483927678585832, 0.656134578474541, 0.6633602683827684, 0.6700698375832651, 0.6762632860760315, 0.6819406138610672, 0.6871018209383724, 0.6917469073079471, 0.6958758729697911, 0.6994887179239049, 0.702585442170288, 0.7051660457089406, 0.7072305285398627, 0.7087788906630542, 0.7098111320785153, 0.7103272527862459, 0.7103272527862459, 0.7098111320785153, 0.7087788906630543, 0.7072305285398628, 0.7051660457089406, 0.7025854421702881, 0.6994887179239049, 0.6958758729697914, 0.6917469073079472, 0.6871018209383726, 0.6819406138610673, 0.6762632860760316, 0.6700698375832653, 0.6633602683827686, 0.6561345784745413, 0.6483927678585834, 0.6401348365348951, 0.6313607845034762, 0.622070611764327, 0.612264318317447, 0.6019419041628368, 0.5911033693004957, 0.5797487137304245, 0.5678779374526224, 0.5554910404670901, 0.5425880227738269, 0.5291688843728332, 0.5152336252641093, 0.5007822454476546, 0.48581474492346977, 0.47033112369155394, 0.4543313817519081, 0.4378155191045312, 0.4207835357494243, 0.4032354316865864, 0.385171206916018, 0.3665908614377196, 0.34749439525169, 0.32788180835793046, 0.30775310075644, 0.2871082724472195, 0.26594732343026783, 0.2442702537055863, 0.22207706327317367, 0.19936775213303115, 0.17614232028515753, 0.15240076772955324, 0.1281430944662192, 0.10336930049515392, 0.07807938581635876, 0.05227335042983239, 0.025951194335576244, 0.0008870824664111154, 0.028241479976128137, 0.056111998193576706, 0.08449863711875505, 0.1134013967516645, 0.14282027709230438, 0.17275527814067404, 0.20320639989677525, 0.234173642360606, 0.2656570055321681, 0.2976564894114597, 0.3301720939984829, 0.36320381929323586, 0.3967516652957199, 0.43081563200593376, 0.46539571942387914, 0.5004919275495552, 0.5361042563829606, 0.5722327059240975, 0.6088772761729637, 0.6460379671295615, 0.6837147787938891, 0.7219077111659478, 0.7606167642457362, 0.7998419380332566, 0.839583232528506, 0.8798406477314868, 0.9206141836421984, 0.9619038402606397, 1.003709617586812, 1.0460315156207143, 1.088869534362348, 1.132223673811711, 1.1760939339688057, 1.22048031483363, 1.2653828164061856, 1.3108014386864708, 1.3567361816744876, 1.403187045370235, 1.4501540297737119, 1.4976371348849202, 1.545636360703858, 1.5941517072305271, 1.6431831744649261, 1.6927307624070567, 1.742794471056916, 1.793374300414508, 1.8444702504798287, 1.8960823212528815, 1.9482105127336644, 2.0008548249221767, 2.054015257818421, 2.1076918114223946, 2.1618844857340997, 2.216593280753534, 2.2718181964807003, 2.3275592329155956, 2.383816390058223, 2.440589667908581, 2.497879066466668, 2.555684585732487, 2.614006225706035, 2.672843986387315, 2.732197867776324, 2.792067869873065, 2.852453992677535, 2.913356236189737, 2.9747746004096682, 3.036709085337332, 3.0991596909727255, 3.1621264173158474, 3.2256092643667023, 3.289608232125288 ], [ 3.3071563361881253, 3.243157368429541, 3.1796745213786872, 3.1167077950355644, 3.054257189400171, 2.992322704472508, 2.930904340252576, 2.8700020967403748, 2.809615973935904, 2.7497459718391637, 2.6903920904501537, 2.6315543297688744, 2.5732326897953257, 2.5154271705295077, 2.45813777197142, 2.401364494121063, 2.3451073369784354, 2.28936630054354, 2.2341413848163736, 2.1794325897969387, 2.125239915485234, 2.07156336188126, 2.0184029289850165, 1.9657586167965033, 1.9136304253157208, 1.862018354542669, 1.8109224044773473, 1.760342575119756, 1.710278866469896, 1.6607312785277655, 1.611699811293366, 1.5631844647666973, 1.5151852389477587, 1.4677021338365508, 1.4207351494330736, 1.374284285737327, 1.3283495427493102, 1.282930920469025, 1.238028418896469, 1.193642038031645, 1.14977177787455, 1.1064176384251865, 1.0635796196835532, 1.0212577216496506, 0.9794519443234786, 0.9381622877050371, 0.897388751794326, 0.8571313365913449, 0.8173900420960953, 0.7781648683085753, 0.7394558152287869, 0.701262882856728, 0.6635860711924, 0.6264253802358026, 0.5897808099869357, 0.5536523604457992, 0.5180400316123934, 0.48294382348671805, 0.44836373606877267, 0.41429976935855883, 0.3807519233560748, 0.3477201980613218, 0.31520459347429863, 0.28320510959500655, 0.2517217464234447, 0.2207545039596135, 0.19030338220351295, 0.16036838115514263, 0.13094950081450296, 0.10204674118159396, 0.07366010225641495, 0.045789584038967046, 0.01843518652924936, 0.008403090272737668, 0.034725246366994145, 0.06053128175352018, 0.08582119643231567, 0.11059499040338061, 0.134852663666715, 0.15859421622231895, 0.18181964807019269, 0.20452895921033543, 0.22672214964274784, 0.2483992193674297, 0.269560168384381, 0.2902049966936018, 0.310333704295092, 0.32994629118885177, 0.3490427573748811, 0.3676231028531798, 0.385687327623748, 0.4032354316865858, 0.42026741504169307, 0.43678327768906966, 0.4527830196287158, 0.4682666408606314, 0.48323414138481646, 0.49768552120127096, 0.511620780309995, 0.5250399187109887, 0.5379429364042516, 0.5503298333897841, 0.5622006096675862, 0.5735552652376577, 0.5843938000999985, 0.594716214254609, 0.6045225077014889, 0.6138126804406382, 0.6225867324720571, 0.6308446637957453, 0.6385864744117031, 0.6458121643199304, 0.6525217335204272, 0.6587151820131936, 0.6643925097982293, 0.6695537168755344, 0.6741988032451092, 0.6783277689069533, 0.681940613861067, 0.6850373381074502, 0.6876179416461027, 0.6896824244770248, 0.6912307866002163, 0.6922630280156774, 0.6927791487234078, 0.6927791487234078, 0.6922630280156774, 0.6912307866002163, 0.6896824244770248, 0.6876179416461028, 0.6850373381074502, 0.681940613861067, 0.6783277689069533, 0.6741988032451092, 0.6695537168755346, 0.6643925097982293, 0.6587151820131937, 0.6525217335204274, 0.6458121643199307, 0.6385864744117034, 0.6308446637957454, 0.6225867324720573, 0.6138126804406383, 0.6045225077014891, 0.5947162142546091, 0.5843938000999989, 0.5735552652376578, 0.5622006096675866, 0.5503298333897844, 0.5379429364042521, 0.525039918710989, 0.5116207803099952, 0.4976855212012714, 0.4832341413848167, 0.46826664086063186, 0.45278301962871603, 0.4367832776890701, 0.4202674150416933, 0.4032354316865864, 0.38568732762374847, 0.36762310285318, 0.34904275737488155, 0.3299462911888521, 0.31033370429509266, 0.290204996693602, 0.26956016838438157, 0.24839921936743004, 0.2267221496427485, 0.20452895921033587, 0.18181964807019324, 0.15859421622231962, 0.13485266366671533, 0.11059499040338128, 0.085821196432316, 0.06053128175352085, 0.03472524636699448, 0.008403090272738334, 0.018435186529249137, 0.04578958403896616, 0.07366010225641473, 0.10204674118159285, 0.1309495008145023, 0.16036838115514218, 0.19030338220351206, 0.22075450395961305, 0.2517217464234438, 0.2832051095950061, 0.31520459347429775, 0.34772019806132093, 0.38075192335607366, 0.41429976935855795, 0.4483637360687718, 0.48294382348671716, 0.518040031612393, 0.5536523604457984, 0.5897808099869353, 0.6264253802358015, 0.6635860711923995, 0.7012628828567269, 0.7394558152287858, 0.7781648683085742, 0.8173900420960944, 0.8571313365913438, 0.8973887517943249, 0.9381622877050364, 0.9794519443234775, 1.0212577216496501, 1.0635796196835523, 1.106417638425186, 1.149771777874549, 1.1936420380316437, 1.2380284188964676, 1.2829309204690236, 1.3283495427493088, 1.3742842857373256, 1.420735149433073, 1.46770213383655, 1.5151852389477583, 1.563184464766696, 1.6116998112933651, 1.6607312785277641, 1.7102788664698947, 1.7603425751197541, 1.810922404477346, 1.8620183545426667, 1.9136304253157195, 1.9657586167965024, 2.0184029289850147, 2.071563361881259, 2.1252399154852326, 2.1794325897969378, 2.234141384816372, 2.2893663005435383, 2.3451073369784337, 2.401364494121061, 2.458137771971419, 2.515427170529506, 2.573232689795325, 2.631554329768873, 2.690392090450153, 2.749745971839162, 2.809615973935903, 2.870002096740373, 2.930904340252575, 2.9923227044725063, 3.05425718940017, 3.1167077950355626, 3.1796745213786854, 3.2431573684295403, 3.3071563361881253 ], [ 3.3252205609586944, 3.2612215932001094, 3.1977387461492555, 3.1347720198061326, 3.072321414170739, 3.0103869292430767, 2.948968565023144, 2.888066321510943, 2.827680198706472, 2.767810196609732, 2.708456315220722, 2.6496185545394426, 2.591296914565894, 2.533491395300076, 2.476201996741988, 2.419428718891631, 2.3631715617490037, 2.3074305253141083, 2.252205609586942, 2.197496814567507, 2.143304140255802, 2.089627586651828, 2.0364671537555847, 1.9838228415670716, 1.931694650086289, 1.8800825793132372, 1.8289866292479156, 1.7784067998903241, 1.7283430912404643, 1.6787955032983337, 1.6297640360639343, 1.5812486895372655, 1.533249463718327, 1.485766358607119, 1.4387993742036418, 1.3923485105078952, 1.3464137675198784, 1.3009951452395931, 1.2560926436670372, 1.2117062628022133, 1.1678360026451187, 1.1244818631957547, 1.0816438444541219, 1.0393219464202192, 0.9975161690940471, 0.9562265124756055, 0.9154529765648944, 0.8751955613619133, 0.8354542668666638, 0.7962290930791438, 0.7575200399993554, 0.7193271076272965, 0.6816502959629684, 0.6444896050063711, 0.6078450347575042, 0.5717165852163677, 0.5361042563829619, 0.5010080482572865, 0.4664279608393411, 0.4323639941291273, 0.39881614812664323, 0.3657844228318903, 0.3332688182448671, 0.3012693343655748, 0.26978597119401315, 0.23881872873018195, 0.2083676069740812, 0.17843260592571109, 0.14901372558507142, 0.12011096595216242, 0.09172432702698341, 0.06385380880953528, 0.03649941129981782, 0.009661134497830792, 0.016661021596425796, 0.04246705698295172, 0.06775697166174721, 0.09253076563281226, 0.11678843889614665, 0.1405299914517506, 0.16375542329962434, 0.18646473443976708, 0.20865792487217938, 0.23033499459686135, 0.25149594361381267, 0.2721407719230333, 0.29226947952452365, 0.3118820664182834, 0.33097853260431265, 0.3495588780826113, 0.36762310285317956, 0.3851712069160175, 0.4022031902711247, 0.4187190529185012, 0.43471879485814746, 0.45020241609006306, 0.465169916614248, 0.4796212964307026, 0.4935565555394267, 0.5069756939404202, 0.5198787116336832, 0.5322656086192157, 0.5441363848970178, 0.5554910404670892, 0.5663295753294302, 0.5766519894840405, 0.5864582829309204, 0.5957484556700698, 0.6045225077014886, 0.612780439025177, 0.6205222496411348, 0.627747939549362, 0.6344575087498587, 0.6406509572426251, 0.6463282850276608, 0.6514894921049661, 0.6561345784745407, 0.6602635441363849, 0.6638763890904986, 0.6669731133368817, 0.6695537168755343, 0.6716181997064563, 0.6731665618296478, 0.674198803245109, 0.6747149239528395, 0.6747149239528395, 0.674198803245109, 0.673166561829648, 0.6716181997064564, 0.6695537168755343, 0.6669731133368817, 0.6638763890904986, 0.660263544136385, 0.6561345784745408, 0.6514894921049662, 0.6463282850276609, 0.6406509572426253, 0.634457508749859, 0.6277479395493624, 0.6205222496411349, 0.6127804390251771, 0.6045225077014889, 0.5957484556700698, 0.5864582829309206, 0.5766519894840407, 0.5663295753294304, 0.5554910404670894, 0.5441363848970181, 0.532265608619216, 0.5198787116336837, 0.5069756939404205, 0.4935565555394268, 0.47962129643070306, 0.4651699166142482, 0.4502024160900634, 0.4347187948581477, 0.41871905291850176, 0.40220319027112494, 0.385171206916018, 0.36762310285318, 0.34955887808261166, 0.3309785326043132, 0.31188206641828375, 0.2922694795245242, 0.27214077192303365, 0.2514959436138131, 0.23033499459686158, 0.20865792487218005, 0.1864647344397674, 0.16375542329962478, 0.14052999145175127, 0.11678843889614687, 0.09253076563281293, 0.06775697166174766, 0.04246705698295239, 0.016661021596426018, 0.009661134497830126, 0.036499411299817375, 0.06385380880953462, 0.09172432702698297, 0.12011096595216131, 0.14901372558507076, 0.17843260592571064, 0.20836760697408052, 0.2388187287301815, 0.26978597119401226, 0.30126933436557435, 0.3332688182448662, 0.3657844228318894, 0.3988161481266421, 0.4323639941291264, 0.46642796083934024, 0.5010080482572856, 0.5361042563829614, 0.5717165852163668, 0.6078450347575037, 0.64448960500637, 0.681650295962968, 0.7193271076272953, 0.7575200399993542, 0.7962290930791427, 0.8354542668666629, 0.8751955613619122, 0.9154529765648933, 0.9562265124756049, 0.997516169094046, 1.0393219464202184, 1.0816438444541205, 1.1244818631957543, 1.1678360026451173, 1.211706262802212, 1.2560926436670363, 1.3009951452395918, 1.346413767519877, 1.3923485105078939, 1.4387993742036413, 1.4857663586071181, 1.5332494637183265, 1.5812486895372642, 1.6297640360639334, 1.6787955032983324, 1.728343091240463, 1.7784067998903224, 1.8289866292479142, 1.880082579313235, 1.9316946500862877, 1.9838228415670707, 2.036467153755583, 2.0896275866518272, 2.143304140255801, 2.197496814567506, 2.25220560958694, 2.3074305253141065, 2.363171561749002, 2.4194287188916292, 2.4762019967419873, 2.533491395300074, 2.591296914565893, 2.6496185545394413, 2.708456315220721, 2.76781019660973, 2.8276801987064712, 2.8880663215109412, 2.948968565023143, 3.010386929243075, 3.0723214141707382, 3.1347720198061317, 3.1977387461492537, 3.2612215932001085, 3.3252205609586944 ], [ 3.343800906436993, 3.279801938678408, 3.216319091627554, 3.153352365284431, 3.0909017596490376, 3.028967274721375, 2.9675489105014425, 2.9066466669892415, 2.8462605441847706, 2.7863905420880304, 2.7270366606990204, 2.668198900017741, 2.6098772600441924, 2.5520717407783744, 2.4947823422202866, 2.4380090643699295, 2.381751907227302, 2.3260108707924068, 2.2707859550652403, 2.2160771600458053, 2.1618844857341006, 2.1082079321301266, 2.055047499233883, 2.00240318704537, 1.9502749955645875, 1.8986629247915356, 1.847566974726214, 1.7969871453686226, 1.7469234367187627, 1.6973758487766322, 1.6483443815422327, 1.599829035015564, 1.5518298091966254, 1.5043467040854175, 1.4573797196819402, 1.4109288559861937, 1.3649941129981769, 1.3195754907178916, 1.2746729891453357, 1.2302866082805117, 1.1864163481234171, 1.1430622086740532, 1.1002241899324203, 1.0579022918985177, 1.0160965145723453, 0.974806857953904, 0.9340333220431929, 0.8937759068402118, 0.8540346123449623, 0.8148094385574423, 0.7761003854776538, 0.7379074531055949, 0.7002306414412669, 0.6630699504846695, 0.6264253802358026, 0.5902969306946662, 0.5546846018612603, 0.519588393735585, 0.4850083063176396, 0.45094433960742575, 0.4173964936049417, 0.38436476831018873, 0.35184916372316555, 0.31984967984387325, 0.2883663166723116, 0.2573990742084804, 0.22694795245237964, 0.19701295140400954, 0.16759407106336988, 0.13869131143046087, 0.11030467250528186, 0.08243415428783374, 0.05507975677811627, 0.028241479976129247, 0.0019193238818726588, 0.02388671150465327, 0.04917662618344876, 0.07395042015451381, 0.0982080934178482, 0.12194964597345215, 0.14517507782132588, 0.16788438896146862, 0.19007757939388092, 0.2117546491185629, 0.2329155981355142, 0.25356042644473487, 0.2736891340462252, 0.29330172093998497, 0.3123981871260142, 0.33097853260431287, 0.3490427573748811, 0.366590861437719, 0.38362284479282627, 0.40013870744020275, 0.416138449379849, 0.4316220706117646, 0.44658957113594955, 0.46104095095240416, 0.4749762100611282, 0.48839534846212174, 0.5012983661553847, 0.5136852631409172, 0.5255560394187193, 0.5369106949887907, 0.5477492298511317, 0.558071644005742, 0.5678779374526219, 0.5771681101917714, 0.5859421622231902, 0.5942000935468785, 0.6019419041628363, 0.6091675940710636, 0.6158771632715603, 0.6220706117643267, 0.6277479395493624, 0.6329091466266676, 0.6375542329962423, 0.6416831986580864, 0.6452960436122002, 0.6483927678585832, 0.6509733713972359, 0.6530378542281579, 0.6545862163513494, 0.6556184577668105, 0.656134578474541, 0.656134578474541, 0.6556184577668105, 0.6545862163513495, 0.653037854228158, 0.6509733713972359, 0.6483927678585832, 0.6452960436122002, 0.6416831986580865, 0.6375542329962424, 0.6329091466266678, 0.6277479395493625, 0.6220706117643269, 0.6158771632715605, 0.6091675940710639, 0.6019419041628364, 0.5942000935468786, 0.5859421622231904, 0.5771681101917714, 0.5678779374526222, 0.5580716440057423, 0.547749229851132, 0.536910694988791, 0.5255560394187196, 0.5136852631409176, 0.5012983661553853, 0.48839534846212207, 0.47497621006112833, 0.4610409509524046, 0.44658957113594977, 0.43162207061176494, 0.41613844937984923, 0.4001387074402033, 0.3836228447928265, 0.3665908614377196, 0.34904275737488155, 0.3309785326043132, 0.31239818712601475, 0.2933017209399853, 0.27368913404622575, 0.2535604264447352, 0.23291559813551466, 0.21175464911856312, 0.1900775793938816, 0.16788438896146896, 0.14517507782132633, 0.12194964597345281, 0.09820809341784842, 0.07395042015451447, 0.0491766261834492, 0.023886711504653935, 0.0019193238818724367, 0.02824147997612858, 0.05507975677811583, 0.08243415428783307, 0.11030467250528142, 0.13869131143045976, 0.1675940710633692, 0.1970129514040091, 0.22694795245237898, 0.25739907420847996, 0.2883663166723107, 0.3198496798438728, 0.35184916372316466, 0.38436476831018784, 0.4173964936049406, 0.45094433960742486, 0.4850083063176387, 0.5195883937355841, 0.5546846018612599, 0.5902969306946653, 0.6264253802358022, 0.6630699504846684, 0.7002306414412665, 0.7379074531055938, 0.7761003854776527, 0.8148094385574411, 0.8540346123449614, 0.8937759068402107, 0.9340333220431918, 0.9748068579539033, 1.0160965145723444, 1.0579022918985168, 1.100224189932419, 1.1430622086740527, 1.1864163481234158, 1.2302866082805104, 1.2746729891453348, 1.3195754907178903, 1.3649941129981755, 1.4109288559861923, 1.4573797196819398, 1.5043467040854166, 1.551829809196625, 1.5998290350155626, 1.6483443815422318, 1.6973758487766308, 1.7469234367187614, 1.7969871453686208, 1.8475669747262127, 1.8986629247915334, 1.9502749955645862, 2.002403187045369, 2.0550474992338814, 2.1082079321301257, 2.1618844857340993, 2.2160771600458045, 2.2707859550652385, 2.326010870792405, 2.3817519072273003, 2.4380090643699277, 2.4947823422202857, 2.5520717407783726, 2.6098772600441915, 2.6681989000177397, 2.7270366606990195, 2.7863905420880286, 2.8462605441847697, 2.9066466669892397, 2.9675489105014417, 3.0289672747213734, 3.0909017596490367, 3.15335236528443, 3.216319091627552, 3.279801938678407, 3.343800906436993 ], [ 3.3628973726230225, 3.2988984048644374, 3.2354155578135835, 3.1724488314704606, 3.109998225835067, 3.0480637409074047, 2.986645376687472, 2.925743133175271, 2.8653570103708, 2.80548700827406, 2.74613312688505, 2.6872953662037706, 2.628973726230222, 2.571168206964404, 2.513878808406316, 2.457105530555959, 2.4008483734133317, 2.3451073369784363, 2.28988242125127, 2.235173626231835, 2.18098095192013, 2.127304398316156, 2.0741439654199127, 2.0214996532313996, 1.969371461750617, 1.9177593909775652, 1.8666634409122436, 1.8160836115546521, 1.7660199029047923, 1.7164723149626617, 1.6674408477282623, 1.6189255012015935, 1.570926275382655, 1.523443170271447, 1.4764761858679698, 1.4300253221722232, 1.3840905791842064, 1.3386719569039212, 1.2937694553313652, 1.2493830744665413, 1.2055128143094467, 1.1621586748600827, 1.1193206561184499, 1.0769987580845473, 1.0351929807583748, 0.9939033241399335, 0.9531297882292225, 0.9128723730262411, 0.8731310785309918, 0.8339059047434718, 0.7951968516636834, 0.7570039192916242, 0.7193271076272962, 0.6821664166706989, 0.6455218464218322, 0.6093933968806957, 0.5737810680472899, 0.5386848599216143, 0.5041047725036689, 0.4700408057934551, 0.436492959790971, 0.40346123449621807, 0.3709456299091949, 0.3389461460299028, 0.30746278285834094, 0.27649554039450996, 0.2460444186384092, 0.2161094175900391, 0.18669053724939944, 0.1577877776164902, 0.12940113869131142, 0.1015306204738633, 0.07417622296414583, 0.047337946162158584, 0.021015790067902218, 0.00479024531862382, 0.03008015999741931, 0.05485395396848425, 0.07911162723181864, 0.10285317978742259, 0.12607861163529632, 0.14878792277543917, 0.17098111320785148, 0.19265818293253334, 0.21381913194948465, 0.23446396025870542, 0.25459266786019574, 0.2742052547539555, 0.29330172093998463, 0.3118820664182834, 0.32994629118885155, 0.34749439525168957, 0.3645263786067967, 0.3810422412541733, 0.39704198319381945, 0.41252560442573505, 0.4274931049499201, 0.4419444847663747, 0.4558797438750988, 0.4692988822760922, 0.48220189996935525, 0.49458879695488767, 0.5064595732326899, 0.5178142288027613, 0.5286527636651022, 0.5389751778197126, 0.5487814712665925, 0.5580716440057418, 0.5668456960371606, 0.575103627360849, 0.5828454379768068, 0.5900711278850341, 0.5967806970855308, 0.6029741455782972, 0.6086514733633329, 0.6138126804406381, 0.6184577668102128, 0.6225867324720569, 0.6261995774261706, 0.6292963016725537, 0.6318769052112063, 0.6339413880421284, 0.6354897501653199, 0.636521991580781, 0.6370381122885116, 0.6370381122885116, 0.636521991580781, 0.63548975016532, 0.6339413880421285, 0.6318769052112063, 0.6292963016725538, 0.6261995774261706, 0.6225867324720571, 0.6184577668102129, 0.6138126804406383, 0.608651473363333, 0.6029741455782973, 0.596780697085531, 0.5900711278850344, 0.582845437976807, 0.5751036273608491, 0.5668456960371608, 0.5580716440057419, 0.5487814712665927, 0.5389751778197127, 0.5286527636651025, 0.5178142288027614, 0.5064595732326902, 0.4945887969548881, 0.4822018999693558, 0.4692988822760926, 0.4558797438750989, 0.44194448476637505, 0.4274931049499203, 0.4125256044257355, 0.39704198319381967, 0.38104224125417385, 0.36452637860679693, 0.34749439525169, 0.3299462911888521, 0.31188206641828375, 0.2933017209399853, 0.27420525475395574, 0.2545926678601962, 0.23446396025870575, 0.2138191319494852, 0.19265818293253356, 0.17098111320785203, 0.1487879227754394, 0.12607861163529688, 0.10285317978742325, 0.07911162723181897, 0.054853953968484914, 0.030080159997419642, 0.0047902453186244864, 0.021015790067901996, 0.04733794616215814, 0.07417622296414539, 0.10153062047386241, 0.12940113869131098, 0.15778777761648932, 0.18669053724939877, 0.21610941759003865, 0.2460444186384083, 0.2764955403945095, 0.3074627828583403, 0.33894614602990236, 0.370945629909194, 0.4034612344962172, 0.43649295979097014, 0.4700408057934542, 0.504104772503668, 0.5386848599216134, 0.5737810680472895, 0.6093933968806948, 0.6455218464218317, 0.682166416670698, 0.7193271076272958, 0.7570039192916234, 0.795196851663682, 0.8339059047434705, 0.8731310785309909, 0.9128723730262402, 0.9531297882292211, 0.9939033241399327, 1.035192980758374, 1.0769987580845464, 1.1193206561184486, 1.1621586748600823, 1.2055128143094453, 1.24938307446654, 1.2937694553313643, 1.3386719569039198, 1.384090579184205, 1.430025322172222, 1.4764761858679694, 1.5234431702714462, 1.5709262753826545, 1.6189255012015922, 1.6674408477282614, 1.7164723149626604, 1.766019902904791, 1.8160836115546504, 1.8666634409122422, 1.917759390977563, 1.9693714617506157, 2.0214996532313987, 2.074143965419911, 2.1273043983161553, 2.180980951920129, 2.235173626231834, 2.289882421251268, 2.3451073369784345, 2.40084837341333, 2.4571055305559573, 2.5138788084063153, 2.571168206964402, 2.628973726230221, 2.6872953662037693, 2.746133126885049, 2.805487008274058, 2.8653570103707993, 2.9257431331752692, 2.986645376687471, 3.048063740907403, 3.1099982258350662, 3.1724488314704598, 3.2354155578135817, 3.2988984048644365, 3.3628973726230225 ], [ 3.3825099595167814, 3.318510991758197, 3.2550281447073433, 3.1920614183642195, 3.129610812728827, 3.0676763278011636, 3.0062579635812314, 2.945355720069031, 2.88496959726456, 2.8250995951678197, 2.7657457137788097, 2.7069079530975304, 2.6485863131239817, 2.5907807938581637, 2.533491395300076, 2.476718117449719, 2.4204609603070915, 2.364719923872196, 2.3094950081450296, 2.2547862131255947, 2.20059353881389, 2.146916985209916, 2.0937565523136725, 2.0411122401251593, 1.9889840486443768, 1.937371977871325, 1.8862760278060033, 1.835696198448412, 1.785632489798552, 1.7360849018564215, 1.687053434622022, 1.6385380880953533, 1.5905388622764147, 1.5430557571652068, 1.4960887727617296, 1.449637909065983, 1.4037031660779662, 1.358284543797681, 1.313382042225125, 1.268995661360301, 1.225125401203206, 1.1817712617538425, 1.1389332430122092, 1.0966113449783066, 1.0548055676521346, 1.0135159110336929, 0.9727423751229818, 0.9324849599200007, 0.8927436654247511, 0.8535184916372311, 0.8148094385574427, 0.7766165061853838, 0.7389396945210558, 0.7017790035644584, 0.6651344333155915, 0.629005983774455, 0.5933936549410492, 0.5582974468153739, 0.5237173593974285, 0.48965339268721464, 0.4561055466847306, 0.4230738213899776, 0.39055821680295444, 0.35855873292366236, 0.3270753697521005, 0.2961081272882695, 0.26565700553216876, 0.23572200448379865, 0.206303124143159, 0.17740036451024976, 0.14901372558507076, 0.12114320736762285, 0.09378880985790516, 0.06695053305591814, 0.04062837696166177, 0.014822341575135622, 0.010467573103659866, 0.035241367074724694, 0.059499040338059084, 0.08324059289366303, 0.10646602474153677, 0.12917533588167962, 0.15136852631409203, 0.17304559603877379, 0.1942065450557251, 0.21485137336494597, 0.2349800809664362, 0.25459266786019596, 0.2736891340462252, 0.292269479524524, 0.3103337042950921, 0.32788180835793, 0.34491379171303715, 0.36142965436041385, 0.3774293963000599, 0.3929130175319755, 0.40788051805616066, 0.42233189787261516, 0.4362671569813392, 0.44968629538233273, 0.4625893130755957, 0.4749762100611282, 0.4868469863389303, 0.49820164190900174, 0.5090401767713427, 0.5193625909259532, 0.5291688843728329, 0.5384590571119823, 0.5472331091434012, 0.5554910404670895, 0.5632328510830473, 0.5704585409912746, 0.5771681101917714, 0.5833615586845377, 0.5890388864695735, 0.5942000935468785, 0.5988451799164533, 0.6029741455782974, 0.606586990532411, 0.6096837147787942, 0.6122643183174468, 0.614328801148369, 0.6158771632715605, 0.6169094046870216, 0.617425525394752, 0.617425525394752, 0.6169094046870216, 0.6158771632715605, 0.614328801148369, 0.6122643183174469, 0.6096837147787944, 0.606586990532411, 0.6029741455782975, 0.5988451799164534, 0.5942000935468787, 0.5890388864695735, 0.5833615586845378, 0.5771681101917715, 0.5704585409912748, 0.5632328510830475, 0.5554910404670896, 0.5472331091434014, 0.5384590571119825, 0.5291688843728333, 0.5193625909259532, 0.5090401767713431, 0.49820164190900196, 0.48684698633893064, 0.47497621006112856, 0.46258931307559625, 0.44968629538233307, 0.43626715698133944, 0.4223318978726156, 0.4078805180561609, 0.39291301753197594, 0.3774293963000601, 0.3614296543604143, 0.3449137917130374, 0.32788180835793046, 0.31033370429509266, 0.2922694795245242, 0.27368913404622575, 0.2545926678601962, 0.23498008096643674, 0.2148513733649462, 0.19420654505572577, 0.17304559603877412, 0.1513685263140926, 0.12917533588167995, 0.10646602474153744, 0.0832405928936637, 0.05949904033805953, 0.03524136707472536, 0.010467573103660088, 0.014822341575134956, 0.04062837696166133, 0.06695053305591747, 0.09378880985790494, 0.12114320736762196, 0.14901372558507053, 0.17740036451024865, 0.2063031241431581, 0.2357220044837982, 0.26565700553216787, 0.2961081272882691, 0.32707536975209983, 0.3585587329236619, 0.39055821680295355, 0.42307382138997673, 0.45610554668472947, 0.48965339268721375, 0.5237173593974276, 0.558297446815373, 0.5933936549410488, 0.6290059837744542, 0.6651344333155911, 0.7017790035644573, 0.7389396945210553, 0.7766165061853827, 0.8148094385574416, 0.85351849163723, 0.8927436654247503, 0.9324849599199996, 0.9727423751229807, 1.0135159110336924, 1.0548055676521333, 1.0966113449783061, 1.1389332430122083, 1.181771261753842, 1.2251254012032047, 1.2689956613602997, 1.3133820422251237, 1.3582845437976796, 1.4037031660779649, 1.4496379090659817, 1.4960887727617291, 1.543055757165206, 1.5905388622764143, 1.638538088095352, 1.6870534346220212, 1.7360849018564202, 1.7856324897985507, 1.8356961984484101, 1.886276027806002, 1.9373719778713228, 1.9889840486443755, 2.0411122401251585, 2.0937565523136707, 2.146916985209915, 2.2005935388138886, 2.254786213125594, 2.309495008145028, 2.3647199238721943, 2.4204609603070897, 2.476718117449717, 2.533491395300075, 2.590780793858162, 2.648586313123981, 2.706907953097529, 2.765745713778809, 2.825099595167818, 2.884969597264559, 2.945355720069029, 3.0062579635812305, 3.067676327801162, 3.129610812728825, 3.1920614183642186, 3.2550281447073415, 3.3185109917581963, 3.3825099595167814 ], [ 3.4026386671182722, 3.338639699359687, 3.2751568523088332, 3.2121901259657104, 3.149739520330317, 3.0878050354026545, 3.0263866711827223, 2.9654844276705212, 2.9050983048660504, 2.84522830276931, 2.7858744213803, 2.727036660699021, 2.668715020725472, 2.610909501459654, 2.5536201029015664, 2.4968468250512093, 2.440589667908582, 2.3848486314736865, 2.32962371574652, 2.274914920727085, 2.2207222464153804, 2.1670456928114064, 2.113885259915163, 2.06124094772665, 2.0091127562458673, 1.9575006854728154, 1.9064047354074938, 1.8558249060499024, 1.8057611974000425, 1.756213609457912, 1.7071821422235125, 1.6586667956968437, 1.6106675698779052, 1.5631844647666973, 1.51621748036322, 1.4697666166674734, 1.4238318736794566, 1.3784132513991714, 1.3335107498266154, 1.2891243689617915, 1.2452541088046964, 1.201899969355333, 1.1590619506136997, 1.116740052579797, 1.074934275253625, 1.0336446186351833, 0.9928710827244724, 0.9526136675214913, 0.9128723730262418, 0.8736471992387218, 0.8349381461589334, 0.7967452137868745, 0.7590684021225464, 0.7219077111659491, 0.6852631409170822, 0.6491346913759457, 0.6135223625425399, 0.5784261544168645, 0.5438460669989191, 0.5097821002887053, 0.47623425428622124, 0.4432025289914683, 0.4106869244044451, 0.3786874405251528, 0.34720407735359116, 0.31623683488975995, 0.2857857131336592, 0.2558507120852891, 0.22643183174464943, 0.19752907211174042, 0.16914243318656141, 0.1412719149691133, 0.11391751745939582, 0.0870792406574088, 0.06075708456315221, 0.03495104917662628, 0.009661134497830792, 0.015112659473234258, 0.03937033273656865, 0.0631118852921726, 0.08633731714004633, 0.10904662828018907, 0.13123981871260137, 0.15291688843728335, 0.17407783745423466, 0.19472266576345532, 0.21485137336494564, 0.23446396025870542, 0.25356042644473464, 0.2721407719230333, 0.29020499669360156, 0.30775310075643947, 0.3247850841115467, 0.3413009467589232, 0.35730068869856946, 0.37278430993048506, 0.38775181045467, 0.4022031902711246, 0.4161384493798487, 0.4295575877808422, 0.44246060547410515, 0.4548475024596377, 0.46671827873743976, 0.4780729343075112, 0.4889114691698522, 0.4992338833244625, 0.5090401767713424, 0.5183303495104918, 0.5271044015419106, 0.535362332865599, 0.5431041434815568, 0.550329833389784, 0.5570394025902807, 0.5632328510830471, 0.5689101788680828, 0.5740713859453881, 0.5787164723149627, 0.5828454379768069, 0.5864582829309206, 0.5895550071773037, 0.5921356107159563, 0.5942000935468783, 0.5957484556700698, 0.5967806970855309, 0.5972968177932615, 0.5972968177932615, 0.5967806970855309, 0.59574845567007, 0.5942000935468784, 0.5921356107159563, 0.5895550071773037, 0.5864582829309206, 0.582845437976807, 0.5787164723149628, 0.5740713859453882, 0.5689101788680829, 0.5632328510830473, 0.557039402590281, 0.5503298333897844, 0.5431041434815569, 0.5353623328655991, 0.5271044015419108, 0.5183303495104918, 0.5090401767713426, 0.4992338833244627, 0.4889114691698524, 0.4780729343075114, 0.4667182787374401, 0.454847502459638, 0.4424606054741057, 0.4295575877808425, 0.4161384493798488, 0.40220319027112506, 0.3877518104546702, 0.3727843099304854, 0.3573006886985697, 0.34130094675892375, 0.32478508411154694, 0.30775310075644, 0.290204996693602, 0.27214077192303365, 0.2535604264447352, 0.23446396025870575, 0.2148513733649462, 0.19472266576345565, 0.1740778374542351, 0.15291688843728357, 0.13123981871260204, 0.1090466282801894, 0.08633731714004678, 0.06311188529217326, 0.03937033273656887, 0.015112659473234924, 0.009661134497830348, 0.034951049176625615, 0.060757084563151986, 0.08707924065740813, 0.11391751745939538, 0.14127191496911262, 0.16914243318656097, 0.1975290721117393, 0.22643183174464876, 0.25585071208528865, 0.2857857131336585, 0.3162368348897595, 0.34720407735359027, 0.37868744052515235, 0.4106869244044442, 0.4432025289914674, 0.4762342542862201, 0.5097821002887044, 0.5438460669989182, 0.5784261544168636, 0.6135223625425394, 0.6491346913759448, 0.6852631409170817, 0.721907711165948, 0.759068402122546, 0.7967452137868734, 0.8349381461589322, 0.8736471992387207, 0.9128723730262409, 0.9526136675214902, 0.9928710827244713, 1.0336446186351829, 1.0749342752536237, 1.1167400525797966, 1.1590619506136988, 1.2018999693553325, 1.2452541088046951, 1.2891243689617902, 1.333510749826614, 1.37841325139917, 1.4238318736794553, 1.469766616667472, 1.5162174803632196, 1.5631844647666964, 1.6106675698779047, 1.6586667956968424, 1.7071821422235116, 1.7562136094579106, 1.8057611974000412, 1.8558249060499006, 1.9064047354074924, 1.9575006854728132, 2.009112756245866, 2.061240947726649, 2.113885259915161, 2.1670456928114055, 2.220722246415379, 2.2749149207270842, 2.3296237157465183, 2.3848486314736848, 2.44058966790858, 2.4968468250512075, 2.5536201029015655, 2.6109095014596524, 2.6687150207254713, 2.7270366606990195, 2.7858744213802993, 2.8452283027693084, 2.9050983048660495, 2.9654844276705195, 3.0263866711827214, 3.0878050354026527, 3.149739520330316, 3.2121901259657095, 3.2751568523088315, 3.3386396993596863, 3.4026386671182722 ], [ 3.4232834954274924, 3.3592845276689083, 3.2958016806180543, 3.2328349542749306, 3.170384348639538, 3.1084498637118747, 3.0470314994919425, 2.9861292559797414, 2.9257431331752706, 2.865873131078531, 2.8065192496895204, 2.747681489008241, 2.689359849034693, 2.631554329768875, 2.574264931210787, 2.5174916533604295, 2.461234496217802, 2.4054934597829067, 2.3502685440557407, 2.2955597490363058, 2.241367074724601, 2.1876905211206266, 2.134530088224383, 2.08188577603587, 2.029757584555088, 1.978145513782036, 1.9270495637167144, 1.876469734359123, 1.8264060257092627, 1.7768584377671326, 1.7278269705327327, 1.679311624006064, 1.6313123981871254, 1.583829293075918, 1.5368623086724407, 1.4904114449766936, 1.4444767019886768, 1.399058079708392, 1.3541555781358356, 1.3097691972710122, 1.265898937113917, 1.2225447976645532, 1.1797067789229203, 1.1373848808890177, 1.0955791035628453, 1.054289446944404, 1.0135159110336929, 0.9732584958307118, 0.9335172013354622, 0.8942920275479422, 0.8555829744681538, 0.8173900420960949, 0.7797132304317669, 0.7425525394751695, 0.7059079692263026, 0.6697795196851661, 0.6341671908517603, 0.5990709827260849, 0.5644908953081396, 0.5304269285979257, 0.49687908259544167, 0.4638473573006887, 0.43133175271366553, 0.3993322688343732, 0.3678489056628116, 0.3368816631989806, 0.3064305414428796, 0.27649554039450974, 0.24707666005387008, 0.21817390042096085, 0.18978726149578184, 0.16191674327833372, 0.13456234576861625, 0.10772406896662923, 0.08140191287237286, 0.05559587748584671, 0.030305962807051223, 0.005532168835986173, 0.018725504427348105, 0.042467056982952056, 0.06569248883082579, 0.08840179997096853, 0.11059499040338094, 0.1322720601280628, 0.15343300914501412, 0.17407783745423488, 0.1942065450557251, 0.21381913194948488, 0.2329155981355142, 0.2514959436138129, 0.2695601683843811, 0.2871082724472189, 0.3041402558023262, 0.32065611844970277, 0.3366558603893489, 0.3521394816212645, 0.36710698214544957, 0.38155836196190407, 0.39549362107062813, 0.40891275947162176, 0.4218157771648847, 0.43420267415041724, 0.44607345042821933, 0.45742810599829076, 0.46826664086063163, 0.47858905501524207, 0.48839534846212196, 0.4976855212012713, 0.5064595732326902, 0.5147175045563784, 0.5224593151723362, 0.5296850050805635, 0.5363945742810603, 0.5425880227738267, 0.5482653505588624, 0.5534265576361675, 0.5580716440057423, 0.5622006096675864, 0.5658134546217001, 0.5689101788680833, 0.5714907824067358, 0.5735552652376579, 0.5751036273608494, 0.5761358687763105, 0.576651989484041, 0.576651989484041, 0.5761358687763105, 0.5751036273608494, 0.5735552652376579, 0.5714907824067359, 0.5689101788680833, 0.5658134546217001, 0.5622006096675864, 0.5580716440057423, 0.5534265576361677, 0.5482653505588624, 0.5425880227738268, 0.5363945742810605, 0.5296850050805638, 0.5224593151723365, 0.5147175045563785, 0.5064595732326904, 0.4976855212012714, 0.4883953484621222, 0.4785890550152422, 0.46826664086063197, 0.45742810599829087, 0.44607345042821966, 0.43420267415041747, 0.42181577716488516, 0.4089127594716221, 0.39549362107062835, 0.3815583619619045, 0.3671069821454498, 0.35213948162126496, 0.33665586038934914, 0.3206561184497032, 0.3041402558023264, 0.2871082724472195, 0.26956016838438157, 0.2514959436138131, 0.23291559813551466, 0.2138191319494852, 0.19420654505572577, 0.1740778374542351, 0.15343300914501468, 0.13227206012806314, 0.11059499040338161, 0.08840179997096898, 0.06569248883082635, 0.04246705698295272, 0.01872550442734844, 0.005532168835985729, 0.03030596280705078, 0.055595877485846046, 0.08140191287237242, 0.10772406896662856, 0.1345623457686158, 0.16191674327833305, 0.1897872614957814, 0.21817390042095974, 0.2470766600538692, 0.2764955403945093, 0.30643054144287896, 0.33688166319898016, 0.3678489056628109, 0.3993322688343728, 0.43133175271366464, 0.4638473573006878, 0.49687908259544056, 0.5304269285979248, 0.5644908953081387, 0.5990709827260841, 0.6341671908517599, 0.6697795196851652, 0.7059079692263022, 0.7425525394751684, 0.7797132304317664, 0.8173900420960938, 0.8555829744681527, 0.8942920275479411, 0.9335172013354613, 0.9732584958307107, 1.013515911033692, 1.054289446944403, 1.0955791035628444, 1.1373848808890168, 1.1797067789229194, 1.2225447976645532, 1.2658989371139158, 1.3097691972710104, 1.3541555781358348, 1.3990580797083902, 1.444476701988676, 1.4904114449766928, 1.5368623086724398, 1.583829293075917, 1.6313123981871254, 1.679311624006063, 1.7278269705327318, 1.7768584377671308, 1.8264060257092618, 1.8764697343591212, 1.9270495637167127, 1.9781455137820334, 2.029757584555086, 2.081885776035869, 2.1345300882243814, 2.1876905211206257, 2.2413670747245993, 2.295559749036305, 2.350268544055739, 2.405493459782905, 2.4612344962178003, 2.5174916533604277, 2.574264931210786, 2.631554329768873, 2.689359849034692, 2.74768148900824, 2.8065192496895195, 2.865873131078529, 2.9257431331752697, 2.9861292559797397, 3.0470314994919416, 3.108449863711873, 3.170384348639536, 3.2328349542749297, 3.2958016806180526, 3.3592845276689074, 3.4232834954274924 ], [ 3.4444444444444446, 3.3804454766858596, 3.3169626296350057, 3.253995903291883, 3.1915452976564893, 3.129610812728827, 3.0681924485088947, 3.0072902049966936, 2.9469040821922223, 2.887034080095482, 2.827680198706472, 2.768842438025193, 2.710520798051644, 2.652715278785826, 2.5954258802277383, 2.538652602377381, 2.482395445234754, 2.4266544087998585, 2.371429493072692, 2.316720698053257, 2.2625280237415524, 2.2088514701375783, 2.155691037241335, 2.1030467250528218, 2.0509185335720392, 1.9993064627989874, 1.9482105127336657, 1.8976306833760743, 1.8475669747262145, 1.798019386784084, 1.7489879195496845, 1.7004725730230157, 1.6524733472040771, 1.6049902420928692, 1.558023257689392, 1.5115723939936454, 1.4656376510056286, 1.4202190287253433, 1.3753165271527874, 1.3309301462879635, 1.2870598861308689, 1.243705746681505, 1.200867727939872, 1.1585458299059694, 1.116740052579797, 1.0754503959613557, 1.0346768600506446, 0.9944194448476633, 0.9546781503524138, 0.9154529765648938, 0.8767439234851053, 0.8385509911130464, 0.8008741794487184, 0.7637134884921211, 0.7270689182432541, 0.6909404687021177, 0.6553281398687119, 0.6202319317430365, 0.5856518443250911, 0.5515878776148773, 0.5180400316123932, 0.48500830631764025, 0.45249270173061706, 0.420493217851325, 0.3890098546797631, 0.35804261221593214, 0.3275914904598314, 0.2976564894114613, 0.2682376090708216, 0.2393348494379124, 0.21094821051273338, 0.18307769229528548, 0.1557232947855678, 0.12888501798358076, 0.1025628618893244, 0.07675682650279825, 0.05146691182400276, 0.02669311785293793, 0.0024354445896035415, 0.02130610796600041, 0.044531539813874144, 0.067240850954017, 0.08943404138642941, 0.11111111111111116, 0.13227206012806247, 0.15291688843728335, 0.17304559603877356, 0.19265818293253334, 0.21175464911856257, 0.23033499459686135, 0.24839921936742948, 0.2659473234302674, 0.28297930678537453, 0.29949516943275123, 0.31549491137239727, 0.33097853260431287, 0.34594603312849803, 0.36039741294495253, 0.3743326720536766, 0.3877518104546701, 0.4006548281479331, 0.4130417251334656, 0.4249125014112677, 0.4362671569813391, 0.4471056918436801, 0.4574281059982904, 0.4672343994451703, 0.47652457218431965, 0.48529862421573855, 0.4935565555394269, 0.5012983661553847, 0.508524056063612, 0.5152336252641088, 0.521427073756875, 0.5271044015419108, 0.5322656086192159, 0.5369106949887906, 0.5410396606506348, 0.5446525056047484, 0.5477492298511316, 0.5503298333897841, 0.5523943162207063, 0.5539426783438979, 0.554974919759359, 0.5554910404670894, 0.5554910404670894, 0.554974919759359, 0.5539426783438979, 0.5523943162207063, 0.5503298333897843, 0.5477492298511317, 0.5446525056047484, 0.5410396606506349, 0.5369106949887907, 0.5322656086192161, 0.5271044015419108, 0.5214270737568751, 0.5152336252641089, 0.5085240560636122, 0.5012983661553849, 0.493556555539427, 0.48529862421573877, 0.4765245721843199, 0.46723439944517065, 0.45742810599829065, 0.4471056918436803, 0.43626715698133933, 0.424912501411268, 0.41304172513346593, 0.40065482814793363, 0.38775181045467044, 0.3743326720536768, 0.360397412944953, 0.34594603312849825, 0.3309785326043133, 0.3154949113723975, 0.2994951694327517, 0.28297930678537475, 0.26594732343026783, 0.24839921936743004, 0.23033499459686158, 0.21175464911856312, 0.19265818293253356, 0.17304559603877412, 0.15291688843728357, 0.13227206012806314, 0.1111111111111115, 0.08943404138642996, 0.06724085095401733, 0.04453153981387481, 0.021306107966001075, 0.0024354445896030974, 0.026693117852937265, 0.05146691182400254, 0.07675682650279758, 0.10256286188932395, 0.1288850179835801, 0.15572329478556757, 0.1830776922952846, 0.21094821051273316, 0.23933484943791128, 0.2682376090708207, 0.29765648941146083, 0.3275914904598305, 0.3580426122159317, 0.38900985467976246, 0.42049321785132454, 0.4524927017306162, 0.48500830631763936, 0.5180400316123921, 0.5515878776148764, 0.5856518443250902, 0.6202319317430356, 0.6553281398687114, 0.6909404687021168, 0.7270689182432537, 0.76371348849212, 0.800874179448718, 0.8385509911130453, 0.8767439234851042, 0.9154529765648927, 0.9546781503524129, 0.9944194448476622, 1.0346768600506433, 1.0754503959613548, 1.1167400525797961, 1.1585458299059685, 1.2008677279398707, 1.2437057466815045, 1.2870598861308675, 1.3309301462879621, 1.3753165271527865, 1.420219028725342, 1.4656376510056273, 1.511572393993644, 1.5580232576893915, 1.6049902420928683, 1.6524733472040767, 1.7004725730230144, 1.7489879195496836, 1.7980193867840826, 1.8475669747262131, 1.8976306833760725, 1.9482105127336644, 1.9993064627989852, 2.050918533572038, 2.103046725052821, 2.155691037241333, 2.2088514701375774, 2.262528023741551, 2.316720698053256, 2.3714294930726902, 2.4266544087998567, 2.482395445234752, 2.5386526023773794, 2.5954258802277375, 2.6527152787858244, 2.7105207980516433, 2.7688424380251915, 2.8276801987064712, 2.8870340800954803, 2.9469040821922214, 3.007290204996692, 3.068192448508894, 3.129610812728825, 3.1915452976564884, 3.253995903291882, 3.316962629635004, 3.3804454766858587, 3.4444444444444446 ], [ 3.466121514169126, 3.402122546410541, 3.338639699359687, 3.2756729730165643, 3.213222367381171, 3.1512878824535084, 3.0898695182335763, 3.028967274721375, 2.968581151916904, 2.9087111498201637, 2.8493572684311537, 2.7905195077498743, 2.7321978677763257, 2.6743923485105077, 2.61710294995242, 2.5603296721020627, 2.5040725149594354, 2.44833147852454, 2.3931065627973735, 2.3383977677779386, 2.284205093466234, 2.23052853986226, 2.1773681069660165, 2.1247237947775033, 2.0725956032967208, 2.020983532523669, 1.9698875824583473, 1.9193077531007559, 1.869244044450896, 1.8196964565087654, 1.770664989274366, 1.7221496427476972, 1.6741504169287587, 1.6266673118175508, 1.5797003274140735, 1.533249463718327, 1.4873147207303101, 1.4418960984500249, 1.396993596877469, 1.352607216012645, 1.3087369558555504, 1.2653828164061864, 1.2225447976645536, 1.180222899630651, 1.1384171223044786, 1.0971274656860373, 1.0563539297753262, 1.0160965145723448, 0.9763552200770953, 0.9371300462895753, 0.8984209932097869, 0.860228060837728, 0.8225512491734, 0.7853905582168026, 0.7487459879679357, 0.7126175384267992, 0.6770052095933934, 0.641909001467718, 0.6073289140497726, 0.5732649473395588, 0.5397171013370747, 0.5066853760423218, 0.4741697714552986, 0.4421702875760065, 0.41068692440444465, 0.3797196819406137, 0.3492685601845129, 0.3193335591361428, 0.28991467879550314, 0.2610119191625939, 0.2326252802374149, 0.204754762019967, 0.17740036451024932, 0.1505620877082623, 0.12423993161400593, 0.09843389622747978, 0.07314398154868429, 0.04837018757761946, 0.024112514314285072, 0.0003709617586811209, 0.022854470089192613, 0.045563781229335465, 0.06775697166174788, 0.08943404138642963, 0.11059499040338094, 0.13123981871260182, 0.15136852631409203, 0.1709811132078518, 0.19007757939388104, 0.20865792487217982, 0.22672214964274795, 0.24427025370558586, 0.261302237060693, 0.2778180997080697, 0.29381784164771574, 0.30930146287963134, 0.3242689634038165, 0.338720343220271, 0.35265560232899507, 0.3660747407299886, 0.37897775842325154, 0.39136465540878407, 0.40323543168658615, 0.4145900872566576, 0.42542862211899857, 0.4357510362736089, 0.4455573297204888, 0.4548475024596381, 0.463621554491057, 0.47187948581474537, 0.47962129643070317, 0.4868469863389304, 0.49355655553942723, 0.4997500040321935, 0.5054273318172293, 0.5105885388945344, 0.5152336252641091, 0.5193625909259533, 0.5229754358800669, 0.5260721601264501, 0.5286527636651026, 0.5307172464960248, 0.5322656086192163, 0.5332978500346774, 0.5338139707424079, 0.5338139707424079, 0.5332978500346774, 0.5322656086192163, 0.5307172464960248, 0.5286527636651027, 0.5260721601264502, 0.5229754358800669, 0.5193625909259534, 0.5152336252641092, 0.5105885388945346, 0.5054273318172293, 0.4997500040321937, 0.49355655553942734, 0.48684698633893075, 0.4796212964307034, 0.4718794858147455, 0.46362155449105724, 0.45484750245963834, 0.4455573297204891, 0.4357510362736091, 0.4254286221189988, 0.4145900872566578, 0.4032354316865865, 0.3913646554087844, 0.3789777584232521, 0.3660747407299889, 0.3526556023289953, 0.33872034322027145, 0.3242689634038167, 0.3093014628796318, 0.29381784164771596, 0.27781809970807014, 0.2613022370606932, 0.2442702537055863, 0.2267221496427485, 0.20865792487218005, 0.1900775793938816, 0.17098111320785203, 0.1513685263140926, 0.13123981871260204, 0.11059499040338161, 0.08943404138642996, 0.06775697166174843, 0.0455637812293358, 0.02285447008919328, 0.0003709617586804548, 0.024112514314284628, 0.048370187577618795, 0.07314398154868407, 0.09843389622747911, 0.12423993161400548, 0.15056208770826163, 0.1774003645102491, 0.20475476201996612, 0.2326252802374147, 0.2610119191625928, 0.28991467879550226, 0.31933355913614236, 0.349268560184512, 0.37971968194061323, 0.410686924404444, 0.44217028757600607, 0.4741697714552977, 0.5066853760423209, 0.5397171013370736, 0.5732649473395579, 0.6073289140497717, 0.6419090014677171, 0.6770052095933929, 0.7126175384267983, 0.7487459879679352, 0.7853905582168015, 0.8225512491733995, 0.8602280608377268, 0.8984209932097857, 0.9371300462895742, 0.9763552200770944, 1.016096514572344, 1.0563539297753248, 1.0971274656860364, 1.1384171223044777, 1.18022289963065, 1.2225447976645523, 1.265382816406186, 1.308736955855549, 1.3526072160126437, 1.396993596877468, 1.4418960984500235, 1.4873147207303088, 1.5332494637183256, 1.579700327414073, 1.6266673118175499, 1.6741504169287582, 1.7221496427476959, 1.770664989274365, 1.819696456508764, 1.8692440444508946, 1.919307753100754, 1.969887582458346, 2.0209835325236667, 2.0725956032967194, 2.1247237947775024, 2.1773681069660147, 2.230528539862259, 2.2842050934662326, 2.3383977677779377, 2.3931065627973718, 2.4483314785245383, 2.5040725149594336, 2.560329672102061, 2.617102949952419, 2.674392348510506, 2.732197867776325, 2.790519507749873, 2.849357268431153, 2.908711149820162, 2.968581151916903, 3.0289672747213734, 3.0898695182335754, 3.1512878824535067, 3.21322236738117, 3.2756729730165635, 3.3386396993596854, 3.4021225464105402, 3.466121514169126 ], [ 3.488314704601539, 3.4243157368429538, 3.3608328897921, 3.297866163448977, 3.2354155578135835, 3.173481072885921, 3.112062708665989, 3.051160465153788, 2.9907743423493165, 2.9309043402525763, 2.8715504588635663, 2.812712698182287, 2.7543910582087383, 2.6965855389429203, 2.6392961403848325, 2.5825228625344754, 2.526265705391848, 2.4705246689569527, 2.415299753229786, 2.3605909582103513, 2.3063982838986465, 2.2527217302946725, 2.199561297398429, 2.146916985209916, 2.0947887937291334, 2.0431767229560815, 1.99208077289076, 1.9415009435331685, 1.8914372348833086, 1.841889646941178, 1.7928581797067786, 1.7443428331801099, 1.6963436073611713, 1.6488605022499634, 1.6018935178464861, 1.5554426541507396, 1.5095079111627228, 1.4640892888824375, 1.4191867873098816, 1.3748004064450576, 1.330930146287963, 1.287576006838599, 1.2447379880969662, 1.2024160900630636, 1.1606103127368912, 1.1193206561184499, 1.0785471202077388, 1.0382897050047575, 0.9985484105095079, 0.9593232367219879, 0.9206141836421995, 0.8824212512701406, 0.8447444396058126, 0.8075837486492152, 0.7709391784003483, 0.7348107288592118, 0.699198400025806, 0.6641021919001306, 0.6295221044821853, 0.5954581377719714, 0.5619102917694874, 0.5288785664747344, 0.49636296188771123, 0.46436347800841915, 0.4328801148368573, 0.4019128723730263, 0.37146175061692555, 0.34152674956855544, 0.3121078692279158, 0.28320510959500655, 0.25481847066982755, 0.22694795245237964, 0.19959355494266195, 0.17275527814067493, 0.14643312204641856, 0.12062708665989241, 0.09533717198109692, 0.0705633780100321, 0.04630570474669771, 0.022564152191093756, 0.0006612796567799784, 0.02337059079692283, 0.04556378122933524, 0.067240850954017, 0.08840179997096831, 0.10904662828018918, 0.1291753358816794, 0.14878792277543917, 0.1678843889614684, 0.1864647344397672, 0.20452895921033531, 0.22207706327317323, 0.23910904662828036, 0.25562490927565706, 0.2716246512153031, 0.2871082724472187, 0.30207577297140387, 0.31652715278785837, 0.33046241189658243, 0.34388155029757594, 0.3567845679908389, 0.36917146497637143, 0.3810422412541735, 0.39239689682424495, 0.40323543168658593, 0.41355784584119626, 0.42336413928807615, 0.4326543120272255, 0.4414283640586444, 0.44968629538233273, 0.45742810599829054, 0.4646537959065178, 0.4713633651070146, 0.47755681359978086, 0.4832341413848166, 0.48839534846212185, 0.49304043483169646, 0.49716940049354064, 0.5007822454476543, 0.5038789696940374, 0.50645957323269, 0.5085240560636122, 0.5100724181868037, 0.5111046596022648, 0.5116207803099952, 0.5116207803099952, 0.5111046596022648, 0.5100724181868037, 0.5085240560636122, 0.5064595732326901, 0.5038789696940376, 0.5007822454476543, 0.49716940049354075, 0.4930404348316966, 0.48839534846212196, 0.4832341413848167, 0.4775568135997811, 0.4713633651070147, 0.4646537959065181, 0.45742810599829076, 0.44968629538233285, 0.4414283640586446, 0.4326543120272257, 0.4233641392880765, 0.4135578458411965, 0.40323543168658615, 0.39239689682424517, 0.38104224125417385, 0.36917146497637177, 0.35678456799083946, 0.3438815502975763, 0.33046241189658265, 0.3165271527878588, 0.3020757729714041, 0.28710827244721915, 0.2716246512153033, 0.2556249092756575, 0.23910904662828059, 0.22207706327317367, 0.20452895921033587, 0.1864647344397674, 0.16788438896146896, 0.1487879227754394, 0.12917533588167995, 0.1090466282801894, 0.08840179997096898, 0.06724085095401733, 0.0455637812293358, 0.023370590796923163, 0.0006612796567806445, 0.02256415219109309, 0.04630570474669726, 0.07056337801003143, 0.0953371719810967, 0.12062708665989175, 0.14643312204641812, 0.17275527814067426, 0.19959355494266173, 0.22694795245237875, 0.2548184706698273, 0.28320510959500544, 0.3121078692279149, 0.341526749568555, 0.37146175061692466, 0.40191287237302586, 0.4328801148368566, 0.4643634780084187, 0.49636296188771034, 0.5288785664747335, 0.5619102917694863, 0.5954581377719705, 0.6295221044821844, 0.6641021919001298, 0.6991984000258056, 0.734810728859211, 0.7709391784003479, 0.8075837486492141, 0.8447444396058121, 0.8824212512701395, 0.9206141836421984, 0.9593232367219868, 0.998548410509507, 1.0382897050047566, 1.0785471202077375, 1.119320656118449, 1.1606103127368903, 1.2024160900630627, 1.244737988096965, 1.2875760068385986, 1.3309301462879617, 1.3748004064450563, 1.4191867873098807, 1.4640892888824362, 1.5095079111627214, 1.5554426541507382, 1.6018935178464857, 1.6488605022499625, 1.6963436073611708, 1.7443428331801085, 1.7928581797067777, 1.8418896469411767, 1.8914372348833073, 1.9415009435331667, 1.9920807728907586, 2.0431767229560793, 2.094788793729132, 2.146916985209915, 2.1995612973984273, 2.2527217302946716, 2.306398283898645, 2.3605909582103504, 2.4152997532297844, 2.470524668956951, 2.5262657053918463, 2.5825228625344736, 2.6392961403848316, 2.6965855389429185, 2.7543910582087374, 2.8127126981822856, 2.8715504588635654, 2.9309043402525745, 2.9907743423493156, 3.051160465153786, 3.112062708665988, 3.1734810728859193, 3.2354155578135826, 3.297866163448976, 3.360832889792098, 3.424315736842953, 3.488314704601539 ], [ 3.5110240157416808, 3.4470250479830966, 3.3835422009322427, 3.320575474589119, 3.2581248689537263, 3.196190384026063, 3.134772019806131, 3.0738697762939298, 3.013483653489459, 2.953613651392719, 2.8942597700037087, 2.8354220093224294, 2.777100369348881, 2.719294850083063, 2.6620054515249754, 2.605232173674618, 2.5489750165319904, 2.493233980097095, 2.438009064369929, 2.383300269350494, 2.3291075950387894, 2.275431041434815, 2.2222706085385715, 2.1696262963500583, 2.1174981048692763, 2.0658860340962244, 2.0147900840309028, 1.9642102546733113, 1.914146546023451, 1.864598958081321, 1.815567490846921, 1.7670521443202523, 1.7190529185013137, 1.6715698133901062, 1.624602828986629, 1.578151965290882, 1.5322172223028652, 1.4867986000225804, 1.441896098450024, 1.3975097175852005, 1.3536394574281054, 1.3102853179787415, 1.2674472992371086, 1.225125401203206, 1.1833196238770336, 1.1420299672585923, 1.1012564313478812, 1.0609990161449003, 1.0212577216496506, 0.9820325478621306, 0.9433234947823421, 0.9051305624102832, 0.8674537507459552, 0.8302930597893579, 0.7936484895404909, 0.7575200399993545, 0.7219077111659487, 0.6868115030402733, 0.6522314156223279, 0.6181674489121141, 0.58461960290963, 0.551587877614877, 0.5190722730278539, 0.48707278914856156, 0.4555894259769999, 0.42462218351316894, 0.39417106175706795, 0.3642360607086981, 0.3348171803680584, 0.3059144207351492, 0.2775277818099702, 0.24965726359252205, 0.22230286608280458, 0.19546458928081756, 0.1691424331865612, 0.14333639780003504, 0.11804648312123955, 0.0932726891501745, 0.06901501588684011, 0.045273463331236385, 0.02204803148336243, 0.0006612796567802004, 0.022854470089192613, 0.04453153981387448, 0.06569248883082579, 0.08633731714004655, 0.10646602474153677, 0.12607861163529654, 0.14517507782132588, 0.16375542329962456, 0.1818196480701928, 0.1993677521330306, 0.21639973548813785, 0.23291559813551443, 0.24891534007516058, 0.2643989613070762, 0.27936646183126124, 0.29381784164771574, 0.3077531007564398, 0.3211722391574334, 0.3340752568506964, 0.3464621538362289, 0.358332930114031, 0.3696875856841024, 0.3805261205464433, 0.39084853470105374, 0.40065482814793363, 0.40994500088708297, 0.41871905291850187, 0.4269769842421901, 0.4347187948581479, 0.44194448476637527, 0.44865405396687197, 0.45484750245963834, 0.46052483024467405, 0.4656860373219792, 0.47033112369155394, 0.4744600893533981, 0.47807293430751174, 0.4811696585538948, 0.48375026209254746, 0.48581474492346954, 0.4873631070466611, 0.4883953484621222, 0.48891146916985273, 0.48891146916985273, 0.4883953484621222, 0.4873631070466612, 0.48581474492346954, 0.48375026209254746, 0.48116965855389493, 0.47807293430751174, 0.47446008935339823, 0.47033112369155394, 0.46568603732197933, 0.46052483024467405, 0.45484750245963845, 0.4486540539668722, 0.4419444847663755, 0.4347187948581481, 0.4269769842421902, 0.4187190529185021, 0.4099450008870831, 0.40065482814793385, 0.39084853470105385, 0.38052612054644364, 0.36968758568410254, 0.35833293011403133, 0.34646215383622914, 0.33407525685069683, 0.32117223915743376, 0.30775310075644, 0.2938178416477162, 0.27936646183126146, 0.26439896130707663, 0.2489153400751608, 0.23291559813551488, 0.21639973548813807, 0.19936775213303115, 0.18181964807019324, 0.16375542329962478, 0.14517507782132633, 0.12607861163529688, 0.10646602474153744, 0.08633731714004678, 0.06569248883082635, 0.04453153981387481, 0.02285447008919328, 0.0006612796567806445, 0.022048031483361985, 0.0452734633312355, 0.06901501588683989, 0.09327268915017406, 0.11804648312123911, 0.14333639780003438, 0.16914243318656075, 0.1954645892808169, 0.22230286608280414, 0.24965726359252138, 0.27752778180996973, 0.3059144207351481, 0.3348171803680575, 0.36423606070869763, 0.3941710617570673, 0.4246221835131685, 0.45558942597699925, 0.4870727891485611, 0.519072273027853, 0.5515878776148762, 0.5846196029096289, 0.6181674489121132, 0.652231415622327, 0.6868115030402724, 0.7219077111659482, 0.7575200399993536, 0.7936484895404905, 0.8302930597893567, 0.8674537507459548, 0.9051305624102821, 0.943323494782341, 0.9820325478621295, 1.0212577216496497, 1.060999016144899, 1.1012564313478803, 1.1420299672585914, 1.1833196238770327, 1.2251254012032051, 1.2674472992371077, 1.3102853179787415, 1.353639457428104, 1.3975097175851987, 1.441896098450023, 1.4867986000225786, 1.5322172223028643, 1.578151965290881, 1.6246028289866281, 1.6715698133901054, 1.7190529185013137, 1.7670521443202514, 1.8155674908469202, 1.8645989580813191, 1.9141465460234501, 1.9642102546733096, 2.014790084030901, 2.0658860340962217, 2.1174981048692745, 2.1696262963500574, 2.2222706085385697, 2.275431041434814, 2.3291075950387876, 2.383300269350493, 2.4380090643699273, 2.4932339800970933, 2.5489750165319887, 2.605232173674616, 2.6620054515249745, 2.7192948500830614, 2.7771003693488803, 2.8354220093224285, 2.894259770003708, 2.9536136513927174, 3.013483653489458, 3.073869776293928, 3.13477201980613, 3.1961903840260613, 3.2581248689537246, 3.320575474589118, 3.383542200932241, 3.4470250479830957, 3.5110240157416808 ], [ 3.5342494475895547, 3.4702504798309697, 3.4067676327801157, 3.343800906436993, 3.2813503008015994, 3.219415815873937, 3.157997451654005, 3.0970952081418037, 3.036709085337333, 2.9768390832405927, 2.9174852018515827, 2.8586474411703033, 2.8003258011967547, 2.7425202819309367, 2.685230883372849, 2.6284576055224917, 2.5722004483798644, 2.516459411944969, 2.4612344962178025, 2.4065257011983676, 2.352333026886663, 2.298656473282689, 2.2454960403864455, 2.1928517281979323, 2.1407235367171498, 2.089111465944098, 2.0380155158787763, 1.9874356865211849, 1.937371977871325, 1.8878243899291944, 1.838792922694795, 1.7902775761681262, 1.7422783503491877, 1.6947952452379798, 1.6478282608345025, 1.601377397138756, 1.5554426541507391, 1.5100240318704539, 1.465121530297898, 1.420735149433074, 1.376864889275979, 1.3335107498266154, 1.2906727310849821, 1.2483508330510795, 1.2065450557249076, 1.1652553991064658, 1.1244818631957547, 1.0842244479927738, 1.044483153497524, 1.005257979710004, 0.9665489266302156, 0.928355994258157, 0.8906791825938289, 0.8535184916372316, 0.8168739213883645, 0.780745471847228, 0.7451331430138222, 0.710036934888147, 0.6754568474702016, 0.6413928807599878, 0.6078450347575037, 0.5748133094627508, 0.5422977048757276, 0.5102982209964353, 0.47881485782487365, 0.44784761536104245, 0.4173964936049417, 0.3874614925565716, 0.3580426122159319, 0.3291398525830229, 0.3007532136578437, 0.2728826954403958, 0.2455282979306781, 0.2186900211286913, 0.1923678650344347, 0.16656182964790878, 0.14127191496911307, 0.11649812099804824, 0.09224044773471385, 0.0684988951791099, 0.04527346333123616, 0.022564152191093312, 0.00037096175868089887, 0.021306107966000853, 0.04246705698295217, 0.06311188529217293, 0.08324059289366326, 0.10285317978742303, 0.12194964597345215, 0.14052999145175094, 0.15859421622231906, 0.17614232028515708, 0.19317430364026422, 0.2096901662876408, 0.22568990822728696, 0.24117352945920256, 0.2561410299833876, 0.2705924097998422, 0.2845276689085663, 0.2979468073095597, 0.31084982500282277, 0.3232367219883552, 0.3351074982661574, 0.3464621538362288, 0.3573006886985697, 0.3676231028531801, 0.37742939630006, 0.38671956903920934, 0.39549362107062813, 0.4037515523943165, 0.4114933630102743, 0.41871905291850164, 0.42542862211899835, 0.4316220706117647, 0.43729939839680043, 0.4424606054741056, 0.4471056918436803, 0.4512346575055245, 0.4548475024596381, 0.4579442267060212, 0.46052483024467383, 0.4625893130755959, 0.46413767519878746, 0.46516991661424856, 0.4656860373219791, 0.4656860373219791, 0.46516991661424856, 0.46413767519878757, 0.4625893130755959, 0.46052483024467383, 0.4579442267060213, 0.4548475024596381, 0.4512346575055246, 0.4471056918436803, 0.4424606054741057, 0.43729939839680043, 0.43162207061176483, 0.42542862211899857, 0.41871905291850187, 0.4114933630102745, 0.4037515523943166, 0.39549362107062846, 0.38671956903920945, 0.3774293963000602, 0.36762310285318023, 0.35730068869857, 0.3464621538362289, 0.3351074982661577, 0.3232367219883556, 0.3108498250028233, 0.29794680730956014, 0.2845276689085664, 0.27059240979984256, 0.25614102998338784, 0.241173529459203, 0.22568990822728718, 0.20969016628764137, 0.19317430364026444, 0.17614232028515753, 0.15859421622231962, 0.14052999145175127, 0.12194964597345281, 0.10285317978742325, 0.0832405928936637, 0.06311188529217326, 0.04246705698295272, 0.021306107966001075, 0.0003709617586804548, 0.02256415219109309, 0.0452734633312355, 0.06849889517910923, 0.09224044773471363, 0.11649812099804757, 0.14127191496911284, 0.1665618296479079, 0.19236786503443426, 0.2186900211286904, 0.24552829793067787, 0.2728826954403951, 0.30075321365784347, 0.3291398525830216, 0.35804261221593103, 0.38746149255657114, 0.417396493604941, 0.447847615361042, 0.47881485782487276, 0.5102982209964348, 0.5422977048757267, 0.5748133094627499, 0.6078450347575024, 0.6413928807599869, 0.6754568474702007, 0.7100369348881461, 0.7451331430138217, 0.7807454718472271, 0.816873921388364, 0.8535184916372303, 0.8906791825938285, 0.9283559942581556, 0.9665489266302147, 1.0052579797100032, 1.0444831534975232, 1.0842244479927725, 1.1244818631957538, 1.1652553991064654, 1.2065450557249062, 1.248350833051079, 1.2906727310849813, 1.333510749826615, 1.3768648892759776, 1.4207351494330727, 1.4651215302978966, 1.5100240318704525, 1.5554426541507378, 1.6013773971387546, 1.647828260834502, 1.6947952452379789, 1.7422783503491872, 1.7902775761681249, 1.838792922694794, 1.887824389929193, 1.9373719778713236, 1.987435686521183, 2.038015515878775, 2.0891114659440957, 2.1407235367171484, 2.1928517281979314, 2.2454960403864437, 2.298656473282688, 2.3523330268866616, 2.4065257011983667, 2.4612344962178008, 2.5164594119449673, 2.5722004483798626, 2.62845760552249, 2.685230883372848, 2.742520281930935, 2.800325801196754, 2.858647441170302, 2.9174852018515818, 2.976839083240591, 3.036709085337332, 3.097095208141802, 3.157997451654004, 3.219415815873935, 3.2813503008015985, 3.343800906436992, 3.406767632780114, 3.470250479830969, 3.5342494475895547 ], [ 3.557991000145159, 3.493992032386574, 3.430509185335721, 3.367542458992597, 3.3050918533572045, 3.243157368429541, 3.181739004209609, 3.120836760697408, 3.060450637892937, 3.0005806357961973, 2.941226754407187, 2.8823889937259075, 2.824067353752359, 2.766261834486541, 2.708972435928453, 2.652199158078096, 2.5959420009354686, 2.540200964500573, 2.4849760487734067, 2.430267253753972, 2.376074579442267, 2.322398025838293, 2.2692375929420496, 2.2165932807535365, 2.164465089272754, 2.112853018499702, 2.0617570684343804, 2.011177239076789, 1.9611135304269292, 1.9115659424847986, 1.8625344752503992, 1.8140191287237304, 1.7660199029047918, 1.718536797793584, 1.6715698133901067, 1.62511894969436, 1.5791842067063433, 1.533765584426058, 1.488863082853502, 1.4444767019886782, 1.4006064418315836, 1.3572523023822196, 1.3144142836405868, 1.2720923856066841, 1.2302866082805117, 1.1889969516620704, 1.1482234157513593, 1.107966000548378, 1.0682247060531287, 1.0289995322656083, 0.99029047918582, 0.9520975468137611, 0.9144207351494331, 0.8772600441928358, 0.8406154739439688, 0.8044870244028324, 0.7688746955694266, 0.7337784874437512, 0.6991984000258058, 0.665134433315592, 0.6315865873131079, 0.598554862018355, 0.5660392574313318, 0.5340397735520397, 0.5025564103804778, 0.4715891679166466, 0.4411380461605461, 0.41120304511217576, 0.3817841647715361, 0.3528814051386271, 0.3244947662134481, 0.2966242479960002, 0.2692698504862825, 0.24243157368429546, 0.21610941759003888, 0.19030338220351295, 0.16501346752471746, 0.14023967355365263, 0.11598200029031824, 0.09224044773471407, 0.06901501588684056, 0.04630570474669771, 0.024112514314285294, 0.0024354445896035415, 0.018725504427347883, 0.03937033273656865, 0.05949904033805886, 0.07911162723181864, 0.09820809341784797, 0.11678843889614665, 0.1348526636667149, 0.1524007677295527, 0.16943275108465994, 0.18594861373203653, 0.20194835567168268, 0.21743197690359828, 0.23239947742778333, 0.24685085724423783, 0.2607861163529619, 0.2742052547539555, 0.2871082724472185, 0.299495169432751, 0.3113659457105531, 0.3227206012806245, 0.3335591361429654, 0.34388155029757583, 0.3536878437444557, 0.36297801648360506, 0.37175206851502396, 0.3800099998387122, 0.38775181045467, 0.39497750036289736, 0.40168706956339406, 0.40788051805616043, 0.41355784584119615, 0.4187190529185013, 0.42336413928807604, 0.4274931049499202, 0.43110594990403384, 0.4342026741504169, 0.43678327768906955, 0.43884776051999164, 0.4403961226431832, 0.4414283640586443, 0.4419444847663748, 0.4419444847663748, 0.4414283640586443, 0.4403961226431833, 0.43884776051999164, 0.43678327768906955, 0.434202674150417, 0.43110594990403384, 0.4274931049499203, 0.42336413928807604, 0.4187190529185014, 0.41355784584119615, 0.40788051805616055, 0.4016870695633943, 0.3949775003628976, 0.3877518104546702, 0.3800099998387123, 0.3717520685150242, 0.36297801648360517, 0.35368784374445594, 0.34388155029757594, 0.33355913614296573, 0.32272060128062463, 0.3113659457105534, 0.29949516943275123, 0.2871082724472189, 0.27420525475395585, 0.2607861163529621, 0.24685085724423828, 0.23239947742778355, 0.21743197690359872, 0.2019483556716829, 0.18594861373203697, 0.16943275108466016, 0.15240076772955324, 0.13485266366671533, 0.11678843889614687, 0.09820809341784842, 0.07911162723181897, 0.05949904033805953, 0.03937033273656887, 0.01872550442734844, 0.0024354445896030974, 0.024112514314284628, 0.04630570474669726, 0.06901501588683989, 0.09224044773471363, 0.1159820002903178, 0.14023967355365174, 0.16501346752471724, 0.19030338220351228, 0.21610941759003865, 0.2424315736842948, 0.26926985048628227, 0.2966242479959993, 0.32449476621344786, 0.352881405138626, 0.38178416477153543, 0.4112030451121753, 0.4411380461605452, 0.4715891679166462, 0.5025564103804769, 0.5340397735520392, 0.5660392574313309, 0.5985548620183541, 0.6315865873131068, 0.6651344333155911, 0.6991984000258049, 0.7337784874437503, 0.7688746955694261, 0.8044870244028315, 0.8406154739439684, 0.8772600441928347, 0.9144207351494327, 0.95209754681376, 0.9902904791858189, 1.0289995322656074, 1.0682247060531278, 1.1079660005483767, 1.148223415751358, 1.1889969516620695, 1.2302866082805108, 1.2720923856066833, 1.3144142836405854, 1.3572523023822192, 1.4006064418315818, 1.4444767019886768, 1.4888630828535012, 1.5337655844260567, 1.579184206706342, 1.6251189496943588, 1.6715698133901062, 1.718536797793583, 1.7660199029047914, 1.814019128723729, 1.8625344752503983, 1.9115659424847973, 1.9611135304269278, 2.0111772390767872, 2.061757068434379, 2.1128530184997, 2.1644650892727526, 2.2165932807535356, 2.269237592942048, 2.322398025838292, 2.3760745794422657, 2.430267253753971, 2.484976048773405, 2.5402009645005714, 2.595942000935467, 2.652199158078094, 2.708972435928452, 2.766261834486539, 2.824067353752358, 2.882388993725906, 2.941226754407186, 3.0005806357961955, 3.060450637892936, 3.120836760697406, 3.181739004209608, 3.2431573684295394, 3.3050918533572027, 3.367542458992596, 3.430509185335719, 3.493992032386574, 3.557991000145159 ], [ 3.5822486734084933, 3.5182497056499082, 3.4547668585990543, 3.3918001322559315, 3.329349526620538, 3.2674150416928756, 3.2059966774729434, 3.1450944339607423, 3.0847083111562714, 3.0248383090595308, 2.965484427670521, 2.9066466669892415, 2.848325027015693, 2.790519507749875, 2.733230109191787, 2.67645683134143, 2.6201996741988025, 2.564458637763907, 2.5092337220367407, 2.4545249270173057, 2.400332252705601, 2.346655699101627, 2.2934952662053836, 2.2408509540168704, 2.188722762536088, 2.137110691763036, 2.0860147416977144, 2.035434912340123, 1.985371203690263, 1.9358236157481326, 1.8867921485137331, 1.8382768019870643, 1.7902775761681258, 1.7427944710569179, 1.6958274866534406, 1.649376622957694, 1.6034418799696772, 1.558023257689392, 1.513120756116836, 1.4687343752520121, 1.4248641150949175, 1.3815099756455536, 1.3386719569039207, 1.296350058870018, 1.2545442815438457, 1.2132546249254044, 1.1724810890146933, 1.132223673811712, 1.0924823793164626, 1.0532572055289426, 1.0145481524491542, 0.9763552200770951, 0.9386784084127671, 0.9015177174561697, 0.864873147207303, 0.8287446976661665, 0.7931323688327607, 0.7580361607070851, 0.7234560732891397, 0.6893921065789259, 0.6558442605764419, 0.6228125352816889, 0.5902969306946657, 0.5582974468153736, 0.5268140836438118, 0.4958468411799808, 0.46539571942388, 0.4354607183755099, 0.40604183803487026, 0.37713907840196104, 0.34875243947678225, 0.3208819212593341, 0.29352752374961666, 0.2666892469476294, 0.24036709085337304, 0.2145610554668469, 0.18927114078805163, 0.16449734681698658, 0.1402396735536522, 0.11649812099804824, 0.0932726891501745, 0.07056337801003165, 0.04837018757761946, 0.026693117852937487, 0.005532168835986173, 0.015112659473234591, 0.035241367074724916, 0.05485395396848469, 0.07395042015451381, 0.0925307656328126, 0.11059499040338072, 0.12814309446621874, 0.14517507782132588, 0.16169094046870247, 0.17769068240834862, 0.19317430364026422, 0.20814180416444927, 0.22259318398090389, 0.23652844308962795, 0.24994758149062135, 0.2628505991838844, 0.27523749616941684, 0.28710827244721904, 0.29846292801729046, 0.30930146287963134, 0.3196238770342418, 0.32943017048112166, 0.338720343220271, 0.3474943952516898, 0.35575232657537814, 0.36349413719133594, 0.3707198270995633, 0.37742939630006, 0.3836228447928264, 0.3893001725778621, 0.39446137965516725, 0.399106466024742, 0.40323543168658615, 0.4068482766406998, 0.40994500088708286, 0.4125256044257355, 0.4145900872566576, 0.4161384493798491, 0.4171706907953102, 0.41768681150304077, 0.41768681150304077, 0.4171706907953102, 0.41613844937984923, 0.4145900872566576, 0.4125256044257355, 0.40994500088708297, 0.4068482766406998, 0.40323543168658627, 0.399106466024742, 0.39446137965516737, 0.3893001725778621, 0.3836228447928265, 0.3774293963000602, 0.3707198270995635, 0.36349413719133616, 0.35575232657537825, 0.3474943952516901, 0.3387203432202711, 0.3294301704811219, 0.3196238770342419, 0.3093014628796317, 0.2984629280172906, 0.28710827244721937, 0.2752374961694173, 0.262850599183885, 0.2499475814906218, 0.23652844308962806, 0.22259318398090422, 0.2081418041644495, 0.19317430364026467, 0.17769068240834884, 0.16169094046870303, 0.1451750778213261, 0.1281430944662192, 0.11059499040338128, 0.09253076563281293, 0.07395042015451447, 0.054853953968484914, 0.03524136707472536, 0.015112659473234924, 0.005532168835985729, 0.026693117852937265, 0.048370187577618795, 0.07056337801003143, 0.09327268915017406, 0.11649812099804757, 0.14023967355365174, 0.1644973468169859, 0.18927114078805118, 0.21456105546684645, 0.24036709085337282, 0.26668924694762897, 0.2935275237496162, 0.32088192125933324, 0.3487524394767818, 0.37713907840196015, 0.4060418380348696, 0.4354607183755095, 0.46539571942387914, 0.49584684117998035, 0.5268140836438111, 0.5582974468153732, 0.5902969306946648, 0.622812535281688, 0.655844260576441, 0.689392106578925, 0.7234560732891389, 0.7580361607070842, 0.7931323688327603, 0.8287446976661657, 0.8648731472073026, 0.9015177174561688, 0.9386784084127666, 0.9763552200770942, 1.0145481524491529, 1.0532572055289413, 1.0924823793164617, 1.132223673811711, 1.172481089014692, 1.2132546249254035, 1.2545442815438448, 1.2963500588700172, 1.3386719569039194, 1.3815099756455531, 1.4248641150949162, 1.4687343752520108, 1.5131207561168352, 1.5580232576893907, 1.603441879969676, 1.6493766229576927, 1.6958274866534402, 1.742794471056917, 1.7902775761681253, 1.838276801987063, 1.8867921485137322, 1.9358236157481312, 1.9853712036902618, 2.035434912340121, 2.086014741697713, 2.137110691763034, 2.1887227625360866, 2.2408509540168695, 2.293495266205382, 2.346655699101626, 2.4003322527055997, 2.454524927017305, 2.509233722036739, 2.5644586377639054, 2.6201996741988007, 2.676456831341428, 2.733230109191786, 2.790519507749873, 2.848325027015692, 2.90664666698924, 2.96548442767052, 3.024838309059529, 3.0847083111562705, 3.1450944339607405, 3.2059966774729425, 3.267415041692874, 3.329349526620537, 3.3918001322559306, 3.4547668585990525, 3.5182497056499074, 3.5822486734084933 ], [ 3.607022467379558, 3.5430234996209737, 3.47954065257012, 3.416573926226996, 3.3541233205916035, 3.29218883566394, 3.230770471444008, 3.169868227931807, 3.109482105127336, 3.0496121030305963, 2.9902582216415863, 2.931420460960307, 2.8730988209867583, 2.8152933017209403, 2.7580039031628525, 2.7012306253124954, 2.644973468169868, 2.5892324317349726, 2.534007516007806, 2.4792987209883712, 2.4251060466766665, 2.3714294930726925, 2.318269060176449, 2.265624747987936, 2.2134965565071534, 2.1618844857341015, 2.11078853566878, 2.0602087063111885, 2.0101449976613286, 1.960597409719198, 1.9115659424847986, 1.8630505959581298, 1.8150513701391913, 1.7675682650279834, 1.7206012806245061, 1.6741504169287595, 1.6282156739407427, 1.5827970516604575, 1.5378945500879015, 1.4935081692230776, 1.4496379090659826, 1.406283769616619, 1.3634457508749858, 1.3211238528410831, 1.2793180755149112, 1.2380284188964694, 1.1972548829857583, 1.1569974677827775, 1.1172561732875277, 1.0780309995000077, 1.0393219464202192, 1.0011290140481606, 0.9634522023838326, 0.9262915114272352, 0.8896469411783681, 0.8535184916372316, 0.8179061628038258, 0.7828099546781506, 0.7482298672602052, 0.7141659005499914, 0.6806180545475073, 0.6475863292527544, 0.6150707246657312, 0.5830712407864389, 0.5515878776148773, 0.5206206351510461, 0.4901695133949453, 0.4602345123465752, 0.43081563200593553, 0.40191287237302653, 0.3735262334478473, 0.3456557152303994, 0.3183013177206817, 0.2914630409186949, 0.2651408848244383, 0.2393348494379124, 0.21404493475911668, 0.18927114078805185, 0.16501346752471746, 0.1412719149691135, 0.11804648312123978, 0.09533717198109692, 0.07314398154868451, 0.05146691182400276, 0.030305962807051445, 0.00966113449783057, 0.010467573103659644, 0.03008015999741942, 0.049176626183448535, 0.06775697166174732, 0.08582119643231545, 0.10336930049515347, 0.12040128385026061, 0.1369171464976372, 0.15291688843728335, 0.16840050966919895, 0.183368010193384, 0.1978193900098386, 0.21175464911856268, 0.22517378751955608, 0.23807680521281915, 0.25046370219835157, 0.26233447847615377, 0.2736891340462252, 0.28452766890856607, 0.2948500830631765, 0.3046563765100564, 0.31394654924920573, 0.3227206012806245, 0.33097853260431287, 0.33872034322027067, 0.34594603312849803, 0.35265560232899473, 0.3588490508217611, 0.3645263786067968, 0.369687585684102, 0.3743326720536767, 0.3784616377155209, 0.3820744826696345, 0.3851712069160176, 0.3877518104546702, 0.3898162932855923, 0.39136465540878385, 0.39239689682424495, 0.3929130175319755, 0.3929130175319755, 0.39239689682424495, 0.39136465540878396, 0.3898162932855923, 0.3877518104546702, 0.3851712069160177, 0.3820744826696345, 0.378461637715521, 0.3743326720536767, 0.3696875856841021, 0.3645263786067968, 0.3588490508217612, 0.35265560232899495, 0.34594603312849825, 0.3387203432202709, 0.330978532604313, 0.32272060128062485, 0.31394654924920584, 0.3046563765100566, 0.2948500830631766, 0.2845276689085664, 0.2736891340462253, 0.2623344784761541, 0.250463702198352, 0.2380768052128197, 0.22517378751955652, 0.2117546491185628, 0.19781939000983895, 0.18336801019338422, 0.1684005096691994, 0.15291688843728357, 0.13691714649763775, 0.12040128385026083, 0.10336930049515392, 0.085821196432316, 0.06775697166174766, 0.0491766261834492, 0.030080159997419642, 0.010467573103660088, 0.009661134497830348, 0.03030596280705078, 0.05146691182400254, 0.07314398154868407, 0.0953371719810967, 0.11804648312123911, 0.14127191496911284, 0.16501346752471724, 0.18927114078805118, 0.21404493475911646, 0.2393348494379115, 0.2651408848244379, 0.291463040918694, 0.3183013177206815, 0.34565571523039873, 0.3735262334478471, 0.4019128723730252, 0.43081563200593465, 0.46023451234657475, 0.49016951339494463, 0.5206206351510456, 0.5515878776148764, 0.5830712407864385, 0.6150707246657303, 0.6475863292527535, 0.680618054547506, 0.7141659005499905, 0.7482298672602044, 0.7828099546781497, 0.8179061628038253, 0.8535184916372307, 0.8896469411783676, 0.9262915114272339, 0.9634522023838321, 1.0011290140481592, 1.0393219464202184, 1.0780309995000068, 1.1172561732875268, 1.1569974677827761, 1.1972548829857574, 1.238028418896469, 1.2793180755149098, 1.3211238528410827, 1.3634457508749849, 1.4062837696166186, 1.4496379090659812, 1.4935081692230763, 1.5378945500879002, 1.5827970516604561, 1.6282156739407414, 1.6741504169287582, 1.7206012806245057, 1.7675682650279825, 1.8150513701391908, 1.8630505959581285, 1.9115659424847977, 1.9605974097191967, 2.0101449976613273, 2.0602087063111867, 2.1107885356687786, 2.1618844857340993, 2.213496556507152, 2.265624747987935, 2.3182690601764473, 2.3714294930726916, 2.425106046676665, 2.4792987209883703, 2.5340075160078044, 2.589232431734971, 2.6449734681698662, 2.7012306253124936, 2.7580039031628516, 2.8152933017209385, 2.8730988209867574, 2.9314204609603056, 2.9902582216415854, 3.0496121030305945, 3.109482105127335, 3.169868227931805, 3.230770471444007, 3.2921888356639384, 3.3541233205916017, 3.416573926226995, 3.479540652570118, 3.543023499620973, 3.607022467379558 ], [ 3.6323123820583536, 3.5683134142997686, 3.5048305672489146, 3.441863840905792, 3.3794132352703983, 3.317478750342736, 3.2560603861228037, 3.1951581426106026, 3.1347720198061317, 3.074902017709391, 3.0155481363203815, 2.956710375639102, 2.898388735665553, 2.840583216399735, 2.7832938178416473, 2.7265205399912906, 2.6702633828486633, 2.614522346413768, 2.559297430686601, 2.504588635667166, 2.4503959613554613, 2.3967194077514877, 2.3435589748552443, 2.290914662666731, 2.238786471185948, 2.1871744004128963, 2.1360784503475747, 2.0854986209899833, 2.035434912340124, 1.9858873243979929, 1.9368558571635939, 1.888340510636925, 1.8403412848179865, 1.7928581797067782, 1.745891195303301, 1.6994403316075548, 1.653505588619538, 1.6080869663392523, 1.5631844647666968, 1.5187980839018724, 1.4749278237447778, 1.4315736842954143, 1.388735665553781, 1.3464137675198784, 1.3046079901937064, 1.2633183335752647, 1.2225447976645536, 1.1822873824615723, 1.142546087966323, 1.103320914178803, 1.0646118610990145, 1.0264189287269554, 0.9887421170626276, 0.9515814261060302, 0.9149368558571633, 0.8788084063160269, 0.843196077482621, 0.8080998693569457, 0.7735197819390003, 0.7394558152287865, 0.7059079692263024, 0.6728762439315494, 0.6403606393445263, 0.608361155465234, 0.5768777922936723, 0.5459105498298413, 0.5154594280737403, 0.48552442702537046, 0.4561055466847308, 0.4272027870518216, 0.39881614812664257, 0.37094562990919444, 0.343591232399477, 0.31675295559748995, 0.2904307995032336, 0.26462476411670743, 0.23933484943791195, 0.2145610554668469, 0.1903033822035125, 0.16656182964790878, 0.14333639780003482, 0.12062708665989219, 0.09843389622747978, 0.0767568265027978, 0.05559587748584649, 0.03495104917662584, 0.014822341575135622, 0.004790245318624153, 0.02388671150465349, 0.04246705698295217, 0.060531281753520405, 0.0780793858163582, 0.09511136917146545, 0.11162723181884204, 0.1276269737584882, 0.1431105949904038, 0.15807809551458885, 0.17252947533104335, 0.1864647344397674, 0.19988387284076103, 0.212786890534024, 0.22517378751955652, 0.2370445637973586, 0.24839921936743004, 0.2592377542297709, 0.26956016838438135, 0.27936646183126124, 0.2886566345704106, 0.2974306866018295, 0.3056886179255177, 0.3134304285414755, 0.3206561184497029, 0.3273656876501996, 0.33355913614296595, 0.33923646392800166, 0.3443976710053068, 0.34904275737488155, 0.3531717230367257, 0.35678456799083935, 0.3598812922372224, 0.36246189577587506, 0.36452637860679715, 0.3660747407299887, 0.3671069821454498, 0.36762310285318034, 0.36762310285318034, 0.3671069821454498, 0.3660747407299888, 0.36452637860679715, 0.36246189577587506, 0.35988129223722254, 0.35678456799083935, 0.35317172303672584, 0.34904275737488155, 0.34439767100530694, 0.33923646392800166, 0.33355913614296606, 0.3273656876501998, 0.3206561184497031, 0.31343042854147574, 0.3056886179255178, 0.2974306866018297, 0.2886566345704107, 0.27936646183126146, 0.26956016838438146, 0.25923775422977124, 0.24839921936743015, 0.23704456379735894, 0.22517378751955675, 0.21278689053402444, 0.19988387284076137, 0.18646473443976763, 0.1725294753310438, 0.15807809551458907, 0.14311059499040424, 0.12762697375848842, 0.11162723181884249, 0.09511136917146568, 0.07807938581635876, 0.06053128175352085, 0.04246705698295239, 0.023886711504653935, 0.0047902453186244864, 0.014822341575134956, 0.034951049176625615, 0.055595877485846046, 0.07675682650279758, 0.09843389622747911, 0.12062708665989175, 0.14333639780003438, 0.1665618296479079, 0.19030338220351228, 0.21456105546684645, 0.2393348494379115, 0.26462476411670677, 0.29043079950323314, 0.3167529555974893, 0.34359123239947653, 0.3709456299091938, 0.3988161481266421, 0.42720278705182047, 0.4561055466847299, 0.48552442702537, 0.5154594280737397, 0.5459105498298409, 0.5768777922936716, 0.6083611554652335, 0.6403606393445254, 0.6728762439315485, 0.7059079692263013, 0.7394558152287856, 0.7735197819389994, 0.8080998693569448, 0.8431960774826206, 0.878808406316026, 0.9149368558571629, 0.9515814261060291, 0.9887421170626272, 1.0264189287269545, 1.0646118610990136, 1.103320914178802, 1.142546087966322, 1.1822873824615714, 1.2225447976645523, 1.2633183335752642, 1.304607990193705, 1.346413767519878, 1.3887356655537797, 1.4315736842954134, 1.4749278237447765, 1.5187980839018715, 1.5631844647666955, 1.6080869663392514, 1.6535055886195362, 1.699440331607553, 1.745891195303301, 1.7928581797067773, 1.8403412848179856, 1.8883405106369233, 1.936855857163593, 1.985887324397992, 2.035434912340122, 2.0854986209899815, 2.136078450347574, 2.1871744004128946, 2.2387864711859473, 2.2909146626667303, 2.3435589748552426, 2.396719407751487, 2.4503959613554605, 2.504588635667165, 2.559297430686599, 2.614522346413766, 2.6702633828486615, 2.726520539991289, 2.7832938178416464, 2.8405832163997333, 2.898388735665552, 2.9567103756391004, 3.0155481363203807, 3.0749020177093893, 3.134772019806131, 3.195158142610601, 3.256060386122803, 3.317478750342734, 3.3794132352703974, 3.441863840905791, 3.504830567248913, 3.5683134142997677, 3.6323123820583536 ], [ 3.6581184174448795, 3.5941194496862954, 3.5306366026354414, 3.4676698762923177, 3.405219270656925, 3.343284785729262, 3.2818664215093296, 3.2209641779971285, 3.1605780551926577, 3.100708053095918, 3.0413541717069075, 2.982516411025628, 2.92419477105208, 2.866389251786262, 2.809099853228174, 2.7523265753778166, 2.696069418235189, 2.640328381800294, 2.585103466073128, 2.530394671053693, 2.476201996741988, 2.4225254431380137, 2.3693650102417703, 2.316720698053257, 2.264592506572475, 2.212980435799423, 2.1618844857341015, 2.11130465637651, 2.06124094772665, 2.0116933597845197, 1.9626618925501198, 1.914146546023451, 1.8661473202045125, 1.818664215093305, 1.7716972306898278, 1.7252463669940807, 1.679311624006064, 1.6338930017257791, 1.5889905001532227, 1.5446041192883992, 1.5007338591313042, 1.4573797196819402, 1.4145417009403074, 1.3722198029064048, 1.3304140255802324, 1.289124368961791, 1.24835083305108, 1.208093417848099, 1.1683521233528493, 1.1291269495653293, 1.0904178964855409, 1.0522249641134822, 1.0145481524491542, 0.9773874614925566, 0.9407428912436897, 0.9046144417025532, 0.8690021128691474, 0.833905904743472, 0.7993258173255267, 0.7652618506153128, 0.7317140046128288, 0.6986822793180758, 0.6661666747310526, 0.6341671908517603, 0.6026838276801987, 0.5717165852163677, 0.5412654634602667, 0.5113304624118968, 0.48191158207125717, 0.45300882243834795, 0.42462218351316894, 0.3967516652957208, 0.36939726778600335, 0.3425589909840163, 0.31623683488975995, 0.2904307995032338, 0.2651408848244383, 0.24036709085337327, 0.21610941759003888, 0.19236786503443515, 0.1691424331865612, 0.14643312204641856, 0.12423993161400615, 0.10256286188932418, 0.08140191287237286, 0.06075708456315221, 0.040628376961661994, 0.021015790067902218, 0.0019193238818728808, 0.016661021596425796, 0.034725246366994034, 0.05227335042983183, 0.06930533378493908, 0.08582119643231567, 0.10182093837196182, 0.11730455960387742, 0.13227206012806247, 0.14672343994451698, 0.16065869905324104, 0.17407783745423466, 0.18698085514749763, 0.19936775213303015, 0.21123852841083224, 0.22259318398090366, 0.23343171884324454, 0.24375413299785498, 0.25356042644473487, 0.2628505991838842, 0.2716246512153031, 0.27988258253899134, 0.28762439315494914, 0.2948500830631765, 0.3015596522636732, 0.3077531007564396, 0.3134304285414753, 0.31859163561878046, 0.3232367219883552, 0.32736568765019936, 0.330978532604313, 0.33407525685069606, 0.3366558603893487, 0.3387203432202708, 0.3402687053434623, 0.3413009467589234, 0.34181706746665397, 0.34181706746665397, 0.3413009467589234, 0.34026870534346243, 0.3387203432202708, 0.3366558603893487, 0.33407525685069617, 0.330978532604313, 0.32736568765019947, 0.3232367219883552, 0.31859163561878057, 0.3134304285414753, 0.3077531007564397, 0.30155965226367343, 0.2948500830631767, 0.28762439315494936, 0.27988258253899145, 0.2716246512153033, 0.2628505991838843, 0.2535604264447351, 0.2437541329978551, 0.23343171884324487, 0.22259318398090377, 0.21123852841083257, 0.19936775213303037, 0.18698085514749807, 0.174077837454235, 0.16065869905324126, 0.14672343994451742, 0.1322720601280627, 0.11730455960387787, 0.10182093837196204, 0.08582119643231612, 0.0693053337849393, 0.05227335042983239, 0.03472524636699448, 0.016661021596426018, 0.0019193238818724367, 0.021015790067901996, 0.04062837696166133, 0.060757084563151986, 0.08140191287237242, 0.10256286188932395, 0.12423993161400548, 0.14643312204641812, 0.16914243318656075, 0.19236786503443426, 0.21610941759003865, 0.24036709085337282, 0.2651408848244379, 0.29043079950323314, 0.3162368348897595, 0.34255899098401565, 0.3693972677860029, 0.39675166529572015, 0.4246221835131685, 0.45300882243834684, 0.4819115820712563, 0.5113304624118964, 0.541265463460266, 0.5717165852163673, 0.602683827680198, 0.6341671908517599, 0.6661666747310517, 0.6986822793180749, 0.7317140046128277, 0.7652618506153119, 0.7993258173255258, 0.8339059047434711, 0.869002112869147, 0.9046144417025523, 0.9407428912436893, 0.9773874614925555, 1.0145481524491533, 1.0522249641134809, 1.0904178964855396, 1.129126949565328, 1.1683521233528484, 1.2080934178480978, 1.248350833051079, 1.2891243689617902, 1.3304140255802315, 1.3722198029064039, 1.4145417009403065, 1.4573797196819402, 1.5007338591313029, 1.5446041192883975, 1.5889905001532219, 1.6338930017257773, 1.679311624006063, 1.7252463669940798, 1.7716972306898269, 1.8186642150933041, 1.8661473202045125, 1.9141465460234501, 1.962661892550119, 2.011693359784518, 2.061240947726649, 2.1113046563765083, 2.1618844857340997, 2.2129804357994205, 2.2645925065724732, 2.316720698053256, 2.3693650102417685, 2.4225254431380128, 2.4762019967419864, 2.530394671053692, 2.585103466073126, 2.640328381800292, 2.6960694182351874, 2.7523265753778148, 2.8090998532281732, 2.86638925178626, 2.924194771052079, 2.9825164110256273, 3.0413541717069066, 3.100708053095916, 3.1605780551926568, 3.2209641779971268, 3.2818664215093287, 3.34328478572926, 3.4052192706569233, 3.467669876292317, 3.5306366026354397, 3.5941194496862945, 3.6581184174448795 ], [ 3.6844405735391357, 3.6204416057805515, 3.5569587587296976, 3.493992032386574, 3.4315414267511812, 3.369606941823518, 3.3081885776035858, 3.2472863340913847, 3.186900211286914, 3.127030209190174, 3.0676763278011636, 3.0088385671198843, 2.950516927146336, 2.892711407880518, 2.8354220093224303, 2.7786487314720727, 2.7223915743294453, 2.66665053789455, 2.611425622167384, 2.556716827147949, 2.5025241528362443, 2.44884759923227, 2.3956871663360264, 2.3430428541475132, 2.290914662666731, 2.2393025918936793, 2.1882066418283577, 2.1376268124707662, 2.087563103820906, 2.038015515878776, 1.988984048644376, 1.9404687021177072, 1.8924694762987686, 1.8449863711875611, 1.798019386784084, 1.7515685230883369, 1.70563378010032, 1.6602151578200353, 1.6153126562474789, 1.5709262753826554, 1.5270560152255603, 1.4837018757761964, 1.4408638570345635, 1.398541959000661, 1.3567361816744885, 1.3154465250560472, 1.274672989145336, 1.2344155739423552, 1.1946742794471055, 1.1554491056595855, 1.116740052579797, 1.0785471202077384, 1.0408703085434103, 1.0037096175868125, 0.9670650473379458, 0.9309365977968094, 0.8953242689634036, 0.8602280608377282, 0.8256479734197828, 0.791584006709569, 0.7580361607070849, 0.725004435412332, 0.6924888308253088, 0.6604893469460165, 0.6290059837744548, 0.5980387413106238, 0.5675876195545229, 0.537652618506153, 0.5082337381655133, 0.4793309785326041, 0.4509443396074251, 0.42307382138997696, 0.3957194238802595, 0.36888114707827246, 0.3425589909840161, 0.31675295559748995, 0.29146304091869446, 0.2666892469476294, 0.24243157368429502, 0.2186900211286913, 0.19546458928081734, 0.1727552781406747, 0.1505620877082623, 0.12888501798358032, 0.107724068966629, 0.08707924065740835, 0.06695053305591814, 0.04733794616215836, 0.028241479976129025, 0.009661134497830348, 0.00840309027273789, 0.02595119433557569, 0.04298317769068294, 0.05949904033805953, 0.07549878227770568, 0.09098240350962128, 0.10594990403380633, 0.12040128385026083, 0.1343365429589849, 0.14775568135997852, 0.16065869905324148, 0.173045596038774, 0.1849163723165761, 0.19627102788664752, 0.2071095627489884, 0.21743197690359883, 0.22723827035047872, 0.23652844308962806, 0.24530249512104696, 0.2535604264447352, 0.261302237060693, 0.26852792696892036, 0.27523749616941706, 0.28143094466218344, 0.28710827244721915, 0.2922694795245243, 0.29691456589409904, 0.3010435315559432, 0.30465637651005684, 0.3077531007564399, 0.31033370429509255, 0.31239818712601464, 0.3139465492492062, 0.3149787906646673, 0.3154949113723978, 0.3154949113723978, 0.3149787906646673, 0.3139465492492063, 0.31239818712601464, 0.31033370429509255, 0.30775310075644, 0.30465637651005684, 0.3010435315559433, 0.29691456589409904, 0.2922694795245244, 0.28710827244721915, 0.28143094466218355, 0.2752374961694173, 0.2685279269689206, 0.2613022370606932, 0.2535604264447353, 0.24530249512104718, 0.23652844308962817, 0.22723827035047894, 0.21743197690359894, 0.20710956274898873, 0.19627102788664763, 0.18491637231657643, 0.17304559603877423, 0.16065869905324193, 0.14775568135997885, 0.13433654295898512, 0.12040128385026128, 0.10594990403380655, 0.09098240350962172, 0.0754987822777059, 0.05949904033805997, 0.04298317769068316, 0.025951194335576244, 0.008403090272738334, 0.009661134497830126, 0.02824147997612858, 0.04733794616215814, 0.06695053305591747, 0.08707924065740813, 0.10772406896662856, 0.1288850179835801, 0.15056208770826163, 0.17275527814067426, 0.1954645892808169, 0.2186900211286904, 0.2424315736842948, 0.26668924694762897, 0.291463040918694, 0.3167529555974893, 0.34255899098401565, 0.3688811470782718, 0.39571942388025905, 0.4230738213899763, 0.45094433960742464, 0.479330978532603, 0.5082337381655124, 0.5376526185061525, 0.5675876195545222, 0.5980387413106234, 0.6290059837744542, 0.660489346946016, 0.6924888308253079, 0.7250044354123311, 0.7580361607070838, 0.7915840067095681, 0.8256479734197819, 0.8602280608377273, 0.8953242689634031, 0.9309365977968085, 0.9670650473379454, 1.0037096175868117, 1.0408703085434095, 1.078547120207737, 1.1167400525797957, 1.1554491056595841, 1.1946742794471046, 1.234415573942354, 1.2746729891453352, 1.3154465250560463, 1.3567361816744876, 1.39854195900066, 1.4408638570345627, 1.4837018757761964, 1.527056015225559, 1.5709262753826536, 1.615312656247478, 1.6602151578200335, 1.7056337801003192, 1.751568523088336, 1.798019386784083, 1.8449863711875603, 1.8924694762987686, 1.9404687021177063, 1.988984048644375, 2.038015515878774, 2.087563103820905, 2.1376268124707645, 2.188206641828356, 2.2393025918936766, 2.2909146626667294, 2.3430428541475123, 2.3956871663360246, 2.448847599232269, 2.5025241528362425, 2.556716827147948, 2.611425622167382, 2.666650537894548, 2.7223915743294436, 2.778648731472071, 2.8354220093224294, 2.8927114078805163, 2.950516927146335, 3.0088385671198834, 3.0676763278011627, 3.1270302091901723, 3.186900211286913, 3.247286334091383, 3.308188577603585, 3.369606941823516, 3.4315414267511795, 3.493992032386573, 3.556958758729696, 3.6204416057805506, 3.6844405735391357 ], [ 3.711278850341123, 3.6472798825825388, 3.583797035531685, 3.520830309188561, 3.4583797035531685, 3.396445218625505, 3.335026854405573, 3.274124610893372, 3.213738488088901, 3.1538684859921613, 3.094514604603151, 3.0356768439218715, 2.9773552039483233, 2.9195496846825053, 2.8622602861244175, 2.8054870082740604, 2.749229851131433, 2.6934888146965377, 2.638263898969371, 2.5835551039499363, 2.5293624296382315, 2.4756858760342575, 2.422525443138014, 2.369881130949501, 2.3177529394687184, 2.2661408686956666, 2.215044918630345, 2.1644650892727535, 2.1144013806228936, 2.064853792680763, 2.0158223254463636, 1.9673069789196949, 1.9193077531007563, 1.8718246479895484, 1.8248576635860712, 1.7784067998903246, 1.7324720569023078, 1.6870534346220225, 1.6421509330494666, 1.5977645521846426, 1.5538942920275476, 1.510540152578184, 1.4677021338365508, 1.4253802358026482, 1.3835744584764762, 1.3422848018580344, 1.3015112659473234, 1.2612538507443425, 1.2215125562490927, 1.1822873824615727, 1.1435783293817843, 1.1053853970097256, 1.0677085853453976, 1.0305478943888002, 0.9939033241399331, 0.9577748745987966, 0.9221625457653908, 0.8870663376397157, 0.8524862502217703, 0.8184222835115564, 0.7848744375090724, 0.7518427122143194, 0.7193271076272962, 0.6873276237480039, 0.6558442605764423, 0.6248770181126111, 0.5944258963565103, 0.5644908953081402, 0.5350720149675006, 0.5061692553345916, 0.47778261640941233, 0.4499120981919644, 0.42255770068224674, 0.39571942388025994, 0.36939726778600335, 0.3435912323994774, 0.3183013177206817, 0.2935275237496169, 0.2692698504862825, 0.24552829793067854, 0.2223028660828048, 0.19959355494266195, 0.17740036451024954, 0.1557232947855678, 0.13456234576861648, 0.1139175174593956, 0.09378880985790539, 0.07417622296414561, 0.055079756778116495, 0.03649941129981782, 0.01843518652924958, 0.0008870824664115595, 0.01614490088869558, 0.03266076353607217, 0.04866050547571832, 0.06414412670763392, 0.07911162723181897, 0.09356300704827358, 0.10749826615699765, 0.12091740455799105, 0.13382042225125412, 0.14620731923678654, 0.15807809551458873, 0.16943275108466016, 0.18027128594700104, 0.19059370010161147, 0.20039999354849136, 0.2096901662876407, 0.2184642183190595, 0.22672214964274784, 0.23446396025870564, 0.241689650166933, 0.2483992193674297, 0.2545926678601961, 0.2602699956452318, 0.26543120272253695, 0.2700762890921117, 0.27420525475395585, 0.2778180997080695, 0.28091482395445255, 0.2834954274931052, 0.2855599103240273, 0.2871082724472188, 0.2881405138626799, 0.28865663457041046, 0.28865663457041046, 0.2881405138626799, 0.2871082724472189, 0.2855599103240273, 0.2834954274931052, 0.28091482395445266, 0.2778180997080695, 0.27420525475395596, 0.2700762890921117, 0.26543120272253706, 0.2602699956452318, 0.2545926678601962, 0.24839921936742992, 0.24168965016693322, 0.23446396025870586, 0.22672214964274795, 0.21846421831905982, 0.2096901662876408, 0.20039999354849158, 0.19059370010161159, 0.18027128594700137, 0.16943275108466027, 0.15807809551458907, 0.14620731923678698, 0.13382042225125468, 0.12091740455799149, 0.10749826615699776, 0.09356300704827392, 0.07911162723181919, 0.06414412670763436, 0.04866050547571854, 0.03266076353607272, 0.0161449008886958, 0.0008870824664111154, 0.018435186529249137, 0.036499411299817375, 0.05507975677811583, 0.07417622296414539, 0.09378880985790494, 0.11391751745939538, 0.1345623457686158, 0.15572329478556757, 0.1774003645102491, 0.19959355494266173, 0.22230286608280414, 0.24552829793067787, 0.26926985048628227, 0.2935275237496162, 0.3183013177206815, 0.34359123239947653, 0.3693972677860029, 0.39571942388025905, 0.4225577006822465, 0.44991209819196376, 0.4777826164094121, 0.5061692553345902, 0.5350720149674997, 0.5644908953081398, 0.5944258963565097, 0.6248770181126106, 0.6558442605764414, 0.6873276237480035, 0.7193271076272953, 0.7518427122143185, 0.784874437509071, 0.8184222835115555, 0.8524862502217694, 0.8870663376397148, 0.9221625457653904, 0.9577748745987957, 0.9939033241399327, 1.030547894388799, 1.0677085853453971, 1.1053853970097243, 1.1435783293817834, 1.1822873824615718, 1.2215125562490918, 1.2612538507443412, 1.3015112659473225, 1.342284801858034, 1.3835744584764749, 1.4253802358026477, 1.46770213383655, 1.5105401525781836, 1.5538942920275463, 1.5977645521846413, 1.6421509330494652, 1.6870534346220212, 1.7324720569023064, 1.7784067998903232, 1.8248576635860707, 1.8718246479895475, 1.9193077531007559, 1.9673069789196935, 2.0158223254463628, 2.0648537926807617, 2.1144013806228923, 2.1644650892727517, 2.2150449186303436, 2.2661408686956643, 2.317752939468717, 2.3698811309495, 2.4225254431380123, 2.4756858760342566, 2.52936242963823, 2.5835551039499354, 2.6382638989693694, 2.693488814696536, 2.7492298511314313, 2.8054870082740586, 2.8622602861244166, 2.9195496846825035, 2.9773552039483224, 3.0356768439218706, 3.09451460460315, 3.1538684859921595, 3.2137384880889, 3.27412461089337, 3.335026854405572, 3.3964452186255034, 3.4583797035531667, 3.52083030918856, 3.583797035531683, 3.647279882582538, 3.711278850341123 ], [ 3.7386332478508404, 3.6746342800922562, 3.6111514330414014, 3.5481847066982786, 3.485734101062885, 3.4237996161352227, 3.3623812519152905, 3.3014790084030894, 3.2410928855986185, 3.181222883501878, 3.1218690021128683, 3.063031241431589, 3.004709601458041, 2.9469040821922223, 2.8896146836341345, 2.8328414057837774, 2.77658424864115, 2.7208432122062547, 2.665618296479088, 2.6109095014596533, 2.5567168271479486, 2.5030402735439745, 2.449879840647731, 2.397235528459218, 2.3451073369784354, 2.2934952662053836, 2.242399316140062, 2.1918194867824705, 2.1417557781326106, 2.09220819019048, 2.0431767229560807, 1.9946613764294119, 1.9466621506104733, 1.8991790454992654, 1.8522120610957882, 1.8057611974000416, 1.7598264544120248, 1.7144078321317395, 1.6695053305591836, 1.6251189496943597, 1.581248689537265, 1.537894550087901, 1.4950565313462683, 1.4527346333123656, 1.4109288559861932, 1.369639199367752, 1.3288656634570408, 1.2886082482540595, 1.2488669537588102, 1.2096417799712897, 1.1709327268915013, 1.1327397945194426, 1.0950629828551146, 1.0579022918985173, 1.0212577216496506, 0.9851292721085139, 0.949516943275108, 0.9144207351494327, 0.8798406477314873, 0.8457766810212735, 0.8122288350187894, 0.7791971097240364, 0.7466815051370133, 0.7146820212577212, 0.6831986580861593, 0.6522314156223281, 0.6217802938662276, 0.5918452928178572, 0.5624264124772176, 0.5335236528443086, 0.5051370139191296, 0.47726649570168167, 0.449912098191964, 0.42307382138997696, 0.39675166529572037, 0.37094562990919444, 0.34565571523039895, 0.3208819212593341, 0.29662424799599973, 0.27288269544039556, 0.24965726359252205, 0.2269479524523792, 0.20475476201996679, 0.18307769229528503, 0.16191674327833372, 0.14127191496911284, 0.12114320736762263, 0.10153062047386285, 0.08243415428783352, 0.06385380880953484, 0.0457895840389666, 0.028241479976128803, 0.011209496621021664, 0.005306366026355036, 0.021306107966001187, 0.03678972919791679, 0.05175722972210184, 0.06620860953855634, 0.0801438686472804, 0.09356300704827403, 0.10646602474153699, 0.11885292172706952, 0.1307236980048716, 0.14207835357494303, 0.1529168884372839, 0.16323930259189434, 0.17304559603877423, 0.18233576877792357, 0.19110982080934247, 0.1993677521330307, 0.2071095627489885, 0.21433525265721587, 0.22104482185771257, 0.22723827035047894, 0.23291559813551466, 0.23807680521281982, 0.24272189158239454, 0.24685085724423872, 0.25046370219835234, 0.2535604264447354, 0.25614102998338806, 0.25820551281431015, 0.2597538749375017, 0.2607861163529628, 0.26130223706069333, 0.26130223706069333, 0.2607861163529628, 0.2597538749375018, 0.25820551281431015, 0.25614102998338806, 0.25356042644473553, 0.25046370219835234, 0.24685085724423883, 0.24272189158239454, 0.23807680521281993, 0.23291559813551466, 0.22723827035047905, 0.2210448218577128, 0.2143352526572161, 0.20710956274898873, 0.19936775213303082, 0.1911098208093427, 0.18233576877792368, 0.17304559603877445, 0.16323930259189445, 0.15291688843728424, 0.14207835357494314, 0.13072369800487194, 0.11885292172706974, 0.10646602474153744, 0.09356300704827436, 0.08014386864728062, 0.06620860953855678, 0.05175722972210206, 0.03678972919791723, 0.02130610796600141, 0.00530636602635548, 0.01120949662102122, 0.028241479976128137, 0.04578958403896616, 0.06385380880953462, 0.08243415428783307, 0.10153062047386241, 0.12114320736762196, 0.14127191496911262, 0.16191674327833305, 0.1830776922952846, 0.20475476201996612, 0.22694795245237875, 0.24965726359252138, 0.2728826954403951, 0.2966242479959993, 0.32088192125933324, 0.34565571523039873, 0.3709456299091938, 0.39675166529572015, 0.4230738213899763, 0.44991209819196376, 0.4772664957016808, 0.5051370139191294, 0.5335236528443075, 0.5624264124772169, 0.5918452928178568, 0.6217802938662267, 0.6522314156223277, 0.6831986580861584, 0.7146820212577207, 0.7466815051370124, 0.7791971097240356, 0.8122288350187883, 0.8457766810212726, 0.8798406477314864, 0.9144207351494318, 0.9495169432751076, 0.985129272108513, 1.0212577216496497, 1.0579022918985164, 1.0950629828551142, 1.1327397945194413, 1.1709327268915004, 1.2096417799712889, 1.2488669537588093, 1.2886082482540582, 1.3288656634570395, 1.369639199367751, 1.4109288559861923, 1.4527346333123647, 1.495056531346267, 1.5378945500879007, 1.5812486895372633, 1.6251189496943583, 1.6695053305591827, 1.7144078321317382, 1.7598264544120235, 1.8057611974000403, 1.8522120610957877, 1.8991790454992645, 1.9466621506104729, 1.9946613764294105, 2.0431767229560798, 2.0922081901904788, 2.1417557781326093, 2.1918194867824687, 2.2423993161400606, 2.2934952662053814, 2.345107336978434, 2.397235528459217, 2.4498798406477293, 2.5030402735439736, 2.5567168271479472, 2.6109095014596524, 2.6656182964790864, 2.720843212206253, 2.7765842486411483, 2.8328414057837756, 2.8896146836341337, 2.9469040821922206, 3.004709601458039, 3.063031241431588, 3.1218690021128674, 3.181222883501876, 3.2410928855986176, 3.3014790084030876, 3.3623812519152896, 3.423799616135221, 3.485734101062884, 3.5481847066982777, 3.6111514330413996, 3.6746342800922545, 3.7386332478508404 ], [ 3.766503766068289, 3.702504798309704, 3.63902195125885, 3.576055224915727, 3.5136046192803336, 3.4516701343526712, 3.390251770132739, 3.329349526620538, 3.268963403816067, 3.2090934017193264, 3.149739520330317, 3.0909017596490376, 3.0325801196754885, 2.974774600409671, 2.917485201851583, 2.860711924001226, 2.8044547668585986, 2.7487137304237033, 2.693488814696537, 2.638780019677102, 2.584587345365397, 2.530910791761423, 2.4777503588651797, 2.4251060466766665, 2.372977855195884, 2.321365784422832, 2.2702698343575105, 2.219690004999919, 2.169626296350059, 2.1200787084079287, 2.0710472411735292, 2.0225318946468605, 1.9745326688279219, 1.927049563716714, 1.8800825793132367, 1.8336317156174902, 1.7876969726294734, 1.742278350349188, 1.6973758487766322, 1.6529894679118082, 1.6091192077547132, 1.5657650683053497, 1.5229270495637164, 1.4806051515298138, 1.4387993742036418, 1.3975097175852, 1.356736181674489, 1.316478766471508, 1.2767374719762583, 1.2375122981887383, 1.1988032451089499, 1.1606103127368912, 1.1229335010725632, 1.0857728101159658, 1.0491282398670987, 1.0129997903259622, 0.9773874614925564, 0.9422912533668812, 0.9077111659489359, 0.873647199238722, 0.840099353236238, 0.807067627941485, 0.7745520233544618, 0.7425525394751695, 0.7110691763036079, 0.6801019338397767, 0.6496508120836759, 0.6197158110353058, 0.5902969306946662, 0.5613941710617572, 0.5330075321365779, 0.50513701391913, 0.47778261640941233, 0.4509443396074255, 0.42462218351316894, 0.398816148126643, 0.3735262334478473, 0.34875243947678247, 0.3244947662134481, 0.30075321365784413, 0.2775277818099704, 0.25481847066982755, 0.23262528023741513, 0.21094821051273338, 0.18978726149578207, 0.1691424331865612, 0.14901372558507098, 0.1294011386913112, 0.11030467250528209, 0.09172432702698341, 0.07366010225641517, 0.05611199819357715, 0.03908001483847001, 0.022564152191093534, 0.006564410251447272, 0.008919210980468328, 0.02388671150465338, 0.03833809132110799, 0.052273350429832055, 0.06569248883082546, 0.07859550652408853, 0.09098240350962095, 0.10285317978742314, 0.11420783535749457, 0.12504637021983545, 0.13536878437444588, 0.14517507782132577, 0.1544652505604751, 0.1632393025918939, 0.17149723391558225, 0.17923904453154005, 0.1864647344397674, 0.1931743036402641, 0.19936775213303048, 0.2050450799180662, 0.21020628699537136, 0.21485137336494609, 0.21898033902679026, 0.22259318398090389, 0.22568990822728696, 0.2282705117659396, 0.2303349945968617, 0.23188335672005322, 0.23291559813551432, 0.23343171884324487, 0.23343171884324487, 0.23291559813551432, 0.23188335672005334, 0.2303349945968617, 0.2282705117659396, 0.22568990822728707, 0.22259318398090389, 0.21898033902679037, 0.21485137336494609, 0.21020628699537147, 0.2050450799180662, 0.1993677521330306, 0.19317430364026433, 0.18646473443976763, 0.17923904453154027, 0.17149723391558236, 0.16323930259189423, 0.15446525056047522, 0.145175077821326, 0.135368784374446, 0.12504637021983578, 0.11420783535749468, 0.10285317978742348, 0.09098240350962139, 0.07859550652408909, 0.0656924888308259, 0.052273350429832166, 0.038338091321108325, 0.0238867115046536, 0.008919210980468772, 0.00656441025144705, 0.022564152191092868, 0.03908001483846979, 0.056111998193576706, 0.07366010225641473, 0.09172432702698297, 0.11030467250528142, 0.12940113869131098, 0.14901372558507053, 0.16914243318656097, 0.1897872614957814, 0.21094821051273316, 0.2326252802374147, 0.2548184706698273, 0.27752778180996973, 0.30075321365784347, 0.32449476621344786, 0.3487524394767818, 0.3735262334478471, 0.3988161481266421, 0.4246221835131685, 0.45094433960742464, 0.4777826164094121, 0.5051370139191294, 0.5330075321365777, 0.5613941710617558, 0.5902969306946653, 0.6197158110353054, 0.6496508120836753, 0.6801019338397762, 0.711069176303607, 0.7425525394751691, 0.7745520233544609, 0.8070676279414841, 0.8400993532362366, 0.8736471992387211, 0.907711165948935, 0.9422912533668804, 0.977387461492556, 1.0129997903259613, 1.0491282398670982, 1.0857728101159645, 1.1229335010725627, 1.1606103127368899, 1.198803245108949, 1.2375122981887374, 1.2767374719762574, 1.3164787664715067, 1.356736181674488, 1.3975097175851996, 1.4387993742036405, 1.4806051515298133, 1.5229270495637155, 1.5657650683053492, 1.6091192077547118, 1.652989467911807, 1.6973758487766308, 1.7422783503491868, 1.787696972629472, 1.8336317156174888, 1.8800825793132363, 1.927049563716713, 1.9745326688279214, 2.022531894646859, 2.0710472411735283, 2.1200787084079273, 2.169626296350058, 2.2196900049999173, 2.270269834357509, 2.32136578442283, 2.3729778551958827, 2.4251060466766656, 2.477750358865178, 2.530910791761422, 2.584587345365396, 2.638780019677101, 2.693488814696535, 2.7487137304237015, 2.804454766858597, 2.860711924001224, 2.917485201851582, 2.974774600409669, 3.0325801196754876, 3.090901759649036, 3.149739520330316, 3.2090934017193247, 3.268963403816066, 3.329349526620536, 3.390251770132738, 3.4516701343526695, 3.5136046192803327, 3.5760552249157262, 3.639021951258848, 3.702504798309703, 3.766503766068289 ], [ 3.794890404993467, 3.7308914372348827, 3.6674085901840288, 3.604441863840905, 3.5419912582055124, 3.480056773277849, 3.418638409057917, 3.357736165545716, 3.297350042741245, 3.2374800406445052, 3.178126159255495, 3.1192883985742155, 3.0609667586006672, 3.0031612393348492, 2.9458718407767615, 2.889098562926404, 2.8328414057837765, 2.777100369348881, 2.721875453621715, 2.66716665860228, 2.6129739842905755, 2.559297430686601, 2.5061369977903576, 2.4534926856018444, 2.4013644941210623, 2.3497524233480105, 2.298656473282689, 2.2480766439250974, 2.198012935275237, 2.148465347333107, 2.099433880098707, 2.0509185335720383, 2.0029193077531, 1.9554362026418923, 1.908469218238415, 1.862018354542668, 1.8160836115546513, 1.7706649892743664, 1.72576248770181, 1.6813761068369866, 1.6375058466798915, 1.5941517072305276, 1.5513136884888947, 1.508991790454992, 1.4671860131288197, 1.4258963565103784, 1.3851228205996673, 1.3448654053966864, 1.3051241109014367, 1.2658989371139167, 1.2271898840341282, 1.1889969516620695, 1.1513201399977415, 1.1141594490411437, 1.077514878792277, 1.0413864292511406, 1.0057741004177347, 0.9706778922920594, 0.936097804874114, 0.9020338381639001, 0.8684859921614161, 0.8354542668666631, 0.80293866227964, 0.7709391784003476, 0.739455815228786, 0.708488572764955, 0.678037451008854, 0.6481024499604842, 0.6186835696198445, 0.5897808099869353, 0.5613941710617563, 0.5335236528443081, 0.5061692553345907, 0.47933097853260365, 0.4530088224383473, 0.42720278705182113, 0.40191287237302564, 0.3771390784019606, 0.3528814051386262, 0.3291398525830225, 0.3059144207351485, 0.2832051095950059, 0.2610119191625935, 0.2393348494379115, 0.2181739004209602, 0.19752907211173953, 0.17740036451024932, 0.15778777761648954, 0.1386913114304602, 0.12011096595216153, 0.10204674118159329, 0.08449863711875549, 0.06746665376364813, 0.050950791116271654, 0.03495104917662539, 0.019467427944710014, 0.004499927420524852, 0.00995145239592965, 0.023886711504653713, 0.03730584990564734, 0.0502088675989103, 0.06259576458444283, 0.07446654086224491, 0.08582119643231634, 0.09665973129465721, 0.10698214544926765, 0.11678843889614754, 0.12607861163529688, 0.13485266366671578, 0.14311059499040402, 0.15085240560636182, 0.15807809551458918, 0.16478766471508588, 0.17098111320785225, 0.17665844099288797, 0.18181964807019313, 0.18646473443976785, 0.19059370010161203, 0.19420654505572565, 0.19730326930210873, 0.19988387284076137, 0.20194835567168345, 0.203496717794875, 0.2045289592103361, 0.20504507991806664, 0.20504507991806664, 0.2045289592103361, 0.2034967177948751, 0.20194835567168345, 0.19988387284076137, 0.19730326930210884, 0.19420654505572565, 0.19059370010161214, 0.18646473443976785, 0.18181964807019324, 0.17665844099288797, 0.17098111320785236, 0.1647876647150861, 0.1580780955145894, 0.15085240560636204, 0.14311059499040413, 0.134852663666716, 0.126078611635297, 0.11678843889614776, 0.10698214544926776, 0.09665973129465755, 0.08582119643231645, 0.07446654086224525, 0.06259576458444305, 0.050208867598910745, 0.03730584990564767, 0.023886711504653935, 0.009951452395930094, 0.00449992742052463, 0.01946742794470957, 0.03495104917662539, 0.05095079111627121, 0.06746665376364813, 0.08449863711875505, 0.10204674118159285, 0.12011096595216131, 0.13869131143045976, 0.15778777761648932, 0.17740036451024865, 0.1975290721117393, 0.21817390042095974, 0.23933484943791128, 0.2610119191625928, 0.28320510959500544, 0.3059144207351481, 0.3291398525830216, 0.352881405138626, 0.37713907840196015, 0.4019128723730252, 0.42720278705182047, 0.45300882243834684, 0.479330978532603, 0.5061692553345902, 0.5335236528443075, 0.5613941710617558, 0.5897808099869342, 0.6186835696198436, 0.6481024499604837, 0.6780374510088534, 0.7084885727649546, 0.7394558152287853, 0.7709391784003472, 0.8029386622796391, 0.8354542668666622, 0.868485992161415, 0.9020338381638993, 0.9360978048741131, 0.9706778922920585, 1.0057741004177343, 1.0413864292511397, 1.0775148787922766, 1.1141594490411428, 1.1513201399977406, 1.1889969516620682, 1.2271898840341269, 1.2658989371139153, 1.3051241109014358, 1.344865405396685, 1.3851228205996664, 1.4258963565103775, 1.4671860131288188, 1.5089917904549912, 1.5513136884888938, 1.5941517072305276, 1.6375058466798902, 1.6813761068369848, 1.7257624877018092, 1.7706649892743647, 1.8160836115546504, 1.8620183545426672, 1.9084692182384142, 1.9554362026418914, 2.0029193077531, 2.0509185335720375, 2.0994338800987062, 2.1484653473331052, 2.1980129352752362, 2.2480766439250957, 2.298656473282687, 2.349752423348008, 2.4013644941210606, 2.4534926856018435, 2.506136997790356, 2.5592974306866, 2.6129739842905737, 2.6671666586022793, 2.7218754536217133, 2.7771003693488794, 2.8328414057837747, 2.889098562926402, 2.9458718407767606, 3.0031612393348475, 3.0609667586006664, 3.1192883985742146, 3.178126159255494, 3.2374800406445035, 3.297350042741244, 3.357736165545714, 3.418638409057916, 3.4800567732778473, 3.5419912582055106, 3.604441863840904, 3.667408590184027, 3.730891437234882, 3.794890404993467 ], [ 3.8237931646263768, 3.7597941968677917, 3.6963113498169378, 3.633344623473815, 3.5708940178384214, 3.508959532910759, 3.447541168690827, 3.3866389251786257, 3.326252802374155, 3.2663828002774142, 3.2070289188884047, 3.1481911582071254, 3.0898695182335763, 3.0320639989677582, 2.9747746004096705, 2.9180013225593138, 2.8617441654166864, 2.806003128981791, 2.750778213254624, 2.696069418235189, 2.6418767439234845, 2.588200190319511, 2.5350397574232675, 2.4823954452347543, 2.4302672537539713, 2.3786551829809195, 2.327559232915598, 2.2769794035580064, 2.226915694908147, 2.177368106966016, 2.128336639731617, 2.0798212932049482, 2.0318220673860097, 1.9843389622748013, 1.937371977871324, 1.890921114175578, 1.8449863711875611, 1.7995677489072754, 1.75466524733472, 1.7102788664698956, 1.666408606312801, 1.6230544668634375, 1.5802164481218042, 1.5378945500879015, 1.4960887727617296, 1.4547991161432878, 1.4140255802325767, 1.3737681650295954, 1.334026870534346, 1.294801696746826, 1.2560926436670377, 1.2178997112949785, 1.1802228996306505, 1.1430622086740536, 1.1064176384251865, 1.07028918888405, 1.0346768600506442, 0.9995806519249688, 0.9650005645070234, 0.9309365977968096, 0.8973887517943255, 0.8643570264995726, 0.8318414219125494, 0.7998419380332571, 0.7683585748616955, 0.7373913323978645, 0.7069402106417635, 0.6770052095933936, 0.647586329252754, 0.6186835696198447, 0.5902969306946657, 0.5624264124772176, 0.5350720149675001, 0.5082337381655131, 0.4819115820712567, 0.4561055466847306, 0.4308156320059351, 0.40604183803487004, 0.38178416477153565, 0.3580426122159319, 0.33481718036805797, 0.31210786922791534, 0.2899146787955029, 0.26823760907082095, 0.24707666005386963, 0.22643183174464898, 0.20630312414315877, 0.186690537249399, 0.16759407106336965, 0.14901372558507098, 0.13094950081450274, 0.11340139675166494, 0.09636941339655758, 0.0798535507491811, 0.06385380880953484, 0.04837018757761946, 0.0334026870534343, 0.018951307236979797, 0.0050160481282557345, 0.00840309027273789, 0.021306107966000853, 0.03369300495153338, 0.045563781229335465, 0.05691843679940689, 0.06775697166174777, 0.0780793858163582, 0.08788567926323809, 0.09717585200238743, 0.10594990403380633, 0.11420783535749457, 0.12194964597345237, 0.12917533588167973, 0.13588490508217643, 0.1420783535749428, 0.14775568135997852, 0.15291688843728368, 0.1575619748068584, 0.16169094046870258, 0.1653037854228162, 0.16840050966919928, 0.17098111320785192, 0.173045596038774, 0.17459395816196555, 0.17562619957742664, 0.1761423202851572, 0.1761423202851572, 0.17562619957742664, 0.17459395816196566, 0.173045596038774, 0.17098111320785192, 0.1684005096691994, 0.1653037854228162, 0.1616909404687027, 0.1575619748068584, 0.1529168884372838, 0.14775568135997852, 0.14207835357494292, 0.13588490508217665, 0.12917533588167995, 0.12194964597345259, 0.11420783535749468, 0.10594990403380655, 0.09717585200238754, 0.08788567926323831, 0.07807938581635832, 0.0677569716617481, 0.056918436799407, 0.0455637812293358, 0.0336930049515336, 0.021306107966001298, 0.008403090272738223, 0.0050160481282555125, 0.018951307236979353, 0.03340268705343408, 0.04837018757761902, 0.06385380880953484, 0.07985355074918066, 0.09636941339655758, 0.1134013967516645, 0.1309495008145023, 0.14901372558507076, 0.1675940710633692, 0.18669053724939877, 0.2063031241431581, 0.22643183174464876, 0.2470766600538692, 0.2682376090708207, 0.28991467879550226, 0.3121078692279149, 0.3348171803680575, 0.35804261221593103, 0.38178416477153543, 0.4060418380348696, 0.43081563200593465, 0.4561055466847299, 0.4819115820712563, 0.5082337381655124, 0.5350720149674997, 0.5624264124772169, 0.5902969306946653, 0.6186835696198436, 0.6475863292527531, 0.6770052095933932, 0.7069402106417628, 0.737391332397864, 0.7683585748616948, 0.7998419380332566, 0.8318414219125485, 0.8643570264995717, 0.8973887517943244, 0.9309365977968087, 0.9650005645070225, 0.9995806519249679, 1.0346768600506437, 1.0702891888840491, 1.106417638425186, 1.1430622086740523, 1.1802228996306505, 1.2178997112949776, 1.2560926436670368, 1.2948016967468252, 1.3340268705343452, 1.3737681650295945, 1.4140255802325754, 1.4547991161432874, 1.4960887727617282, 1.537894550087901, 1.5802164481218028, 1.6230544668634366, 1.6664086063127996, 1.7102788664698947, 1.7546652473347186, 1.7995677489072746, 1.8449863711875594, 1.8909211141755762, 1.937371977871324, 1.9843389622748004, 2.031822067386009, 2.0798212932049465, 2.128336639731616, 2.177368106966015, 2.2269156949081452, 2.2769794035580047, 2.327559232915597, 2.3786551829809177, 2.4302672537539705, 2.4823954452347534, 2.5350397574232657, 2.58820019031951, 2.6418767439234836, 2.6960694182351883, 2.7507782132546224, 2.8060031289817893, 2.8617441654166846, 2.918001322559312, 2.9747746004096696, 3.0320639989677565, 3.0898695182335754, 3.1481911582071236, 3.207028918888404, 3.2663828002774125, 3.326252802374154, 3.386638925178624, 3.447541168690826, 3.5089595329107572, 3.5708940178384205, 3.633344623473814, 3.696311349816936, 3.759794196867791, 3.8237931646263768 ], [ 3.853212044967017, 3.789213077208432, 3.725730230157578, 3.662763503814455, 3.6003128981790615, 3.538378413251399, 3.476960049031467, 3.416057805519266, 3.355671682714795, 3.2958016806180543, 3.236447799229045, 3.1776100385477655, 3.1192883985742164, 3.0614828793083984, 3.0041934807503106, 2.9474202028999534, 2.891163045757326, 2.8354220093224307, 2.7801970935952642, 2.7254882985758293, 2.6712956242641246, 2.6176190706601505, 2.564458637763907, 2.511814325575394, 2.4596861340946115, 2.4080740633215596, 2.356978113256238, 2.3063982838986465, 2.2563345752487867, 2.206786987306656, 2.1577555200722567, 2.109240173545588, 2.0612409477266493, 2.0137578426154414, 1.9667908582119642, 1.9203399945162176, 1.8744052515282008, 1.8289866292479156, 1.7840841276753596, 1.7396977468105357, 1.695827486653441, 1.6524733472040771, 1.6096353284624443, 1.5673134304285417, 1.5255076531023692, 1.484217996483928, 1.4434444605732168, 1.4031870453702355, 1.3634457508749862, 1.3242205770874662, 1.2855115240076778, 1.2473185916356186, 1.2096417799712906, 1.1724810890146933, 1.1358365187658266, 1.09970806922469, 1.0640957403912843, 1.0289995322656087, 0.9944194448476633, 0.9603554781374495, 0.9268076321349654, 0.8937759068402125, 0.8612603022531893, 0.8292608183738972, 0.7977774552023353, 0.7668102127385044, 0.7363590909824036, 0.7064240899340335, 0.6770052095933938, 0.6481024499604846, 0.6197158110353058, 0.5918452928178577, 0.5644908953081402, 0.537652618506153, 0.5113304624118966, 0.48552442702537046, 0.4602345123465752, 0.43546071837551015, 0.41120304511217576, 0.3874614925565718, 0.3642360607086981, 0.3415267495685552, 0.31933355913614303, 0.29765648941146106, 0.27649554039450974, 0.2558507120852891, 0.23572200448379865, 0.21610941759003888, 0.19701295140400976, 0.17843260592571086, 0.16036838115514285, 0.14282027709230483, 0.1257882937371977, 0.10927243108982099, 0.09327268915017495, 0.07778906791825935, 0.0628215673940744, 0.04837018757761968, 0.03443492846889562, 0.021015790067902218, 0.008112772374639254, 0.004274124610893271, 0.016144900888695468, 0.027499556458766894, 0.03833809132110777, 0.04866050547571821, 0.058466798922598096, 0.06775697166174743, 0.07653102369316622, 0.08478895501685457, 0.09253076563281237, 0.09975645554103973, 0.10646602474153644, 0.11265947323430281, 0.11833680101933852, 0.12349800809664369, 0.1281430944662184, 0.13227206012806259, 0.1358849050821762, 0.1389816293285593, 0.14156223286721192, 0.143626715698134, 0.14517507782132555, 0.14620731923678665, 0.1467234399445172, 0.1467234399445172, 0.14620731923678665, 0.14517507782132566, 0.143626715698134, 0.14156223286721192, 0.1389816293285594, 0.1358849050821762, 0.1322720601280627, 0.1281430944662184, 0.1234980080966438, 0.11833680101933852, 0.11265947323430292, 0.10646602474153666, 0.09975645554103996, 0.0925307656328126, 0.08478895501685468, 0.07653102369316656, 0.06775697166174754, 0.05846679892259832, 0.04866050547571832, 0.0383380913211081, 0.027499556458767005, 0.0161449008886958, 0.004274124610893715, 0.008112772374638588, 0.021015790067901774, 0.03443492846889562, 0.04837018757761924, 0.06282156739407396, 0.0777890679182589, 0.09327268915017473, 0.10927243108982054, 0.12578829373719747, 0.14282027709230438, 0.16036838115514218, 0.17843260592571064, 0.1970129514040091, 0.21610941759003865, 0.2357220044837982, 0.25585071208528865, 0.2764955403945093, 0.29765648941146083, 0.31933355913614236, 0.341526749568555, 0.36423606070869763, 0.38746149255657114, 0.4112030451121753, 0.4354607183755095, 0.46023451234657475, 0.48552442702537, 0.5113304624118964, 0.5376526185061525, 0.5644908953081398, 0.5918452928178568, 0.6197158110353054, 0.6481024499604837, 0.6770052095933932, 0.706424089934033, 0.7363590909824027, 0.7668102127385039, 0.7977774552023347, 0.8292608183738968, 0.8612603022531884, 0.8937759068402116, 0.9268076321349645, 0.9603554781374486, 0.9944194448476624, 1.0289995322656078, 1.0640957403912839, 1.0997080692246892, 1.1358365187658261, 1.1724810890146924, 1.2096417799712902, 1.2473185916356178, 1.2855115240076764, 1.3242205770874649, 1.3634457508749853, 1.4031870453702346, 1.4434444605732155, 1.484217996483927, 1.5255076531023684, 1.5673134304285408, 1.609635328462443, 1.6524733472040767, 1.6958274866534397, 1.7396977468105344, 1.7840841276753587, 1.8289866292479142, 1.8744052515281995, 1.9203399945162163, 1.9667908582119638, 2.0137578426154406, 2.061240947726649, 2.1092401735455866, 2.157755520072256, 2.206786987306655, 2.2563345752487853, 2.3063982838986448, 2.3569781132562366, 2.4080740633215574, 2.45968613409461, 2.511814325575393, 2.5644586377639054, 2.6176190706601496, 2.6712956242641233, 2.7254882985758284, 2.7801970935952625, 2.835422009322429, 2.8911630457573243, 2.9474202028999517, 3.0041934807503097, 3.0614828793083966, 3.1192883985742155, 3.1776100385477637, 3.236447799229044, 3.2958016806180526, 3.355671682714794, 3.416057805519264, 3.476960049031466, 3.5383784132513973, 3.6003128981790606, 3.662763503814454, 3.725730230157576, 3.789213077208431, 3.853212044967017 ], [ 3.8831470460153863, 3.819148078256802, 3.7556652312059473, 3.6926985048628245, 3.630247899227431, 3.5683134142997686, 3.5068950500798364, 3.4459928065676353, 3.3856066837631644, 3.3257366816664238, 3.2663828002774142, 3.207545039596135, 3.1492233996225867, 3.0914178803567687, 3.03412848179868, 2.9773552039483233, 2.921098046805696, 2.8653570103708006, 2.810132094643634, 2.755423299624199, 2.7012306253124945, 2.6475540717085204, 2.594393638812277, 2.541749326623764, 2.4896211351429813, 2.4380090643699295, 2.386913114304608, 2.3363332849470164, 2.2862695762971565, 2.236721988355026, 2.1876905211206266, 2.139175174593958, 2.0911759487750192, 2.0436928436638113, 1.996725859260334, 1.9502749955645875, 1.9043402525765707, 1.8589216302962854, 1.8140191287237295, 1.7696327478589056, 1.725762487701811, 1.682408348252447, 1.6395703295108142, 1.5972484314769115, 1.5554426541507391, 1.5141529975322978, 1.4733794616215867, 1.4331220464186054, 1.393380751923356, 1.3541555781358356, 1.3154465250560472, 1.2772535926839885, 1.2395767810196605, 1.2024160900630632, 1.1657715198141965, 1.12964307027306, 1.0940307414396537, 1.0589345333139786, 1.0243544458960332, 0.9902904791858194, 0.9567426331833353, 0.9237109078885823, 0.8911953033015592, 0.8591958194222671, 0.8277124562507052, 0.796745213786874, 0.7662940920307735, 0.7363590909824032, 0.7069402106417635, 0.6780374510088545, 0.6496508120836755, 0.6217802938662276, 0.5944258963565099, 0.5675876195545229, 0.5412654634602663, 0.5154594280737403, 0.49016951339494486, 0.46539571942388, 0.44113804616054564, 0.41739649360494147, 0.39417106175706795, 0.3714617506169251, 0.3492685601845127, 0.32759149045983094, 0.3064305414428796, 0.28578571313365875, 0.26565700553216853, 0.24604441863840876, 0.22694795245237942, 0.20836760697408074, 0.1903033822035125, 0.1727552781406747, 0.15572329478556757, 0.13920743213819087, 0.12320769019854483, 0.107724068966629, 0.09275656844244407, 0.07830518862598956, 0.0643699295172655, 0.050950791116271876, 0.03804777342300891, 0.025660876437476388, 0.013790100159674301, 0.0024354445896028754, 0.008403090272738, 0.01872550442734844, 0.028531797874228326, 0.037821970613377665, 0.046596022644796564, 0.0548539539684848, 0.0625957645844426, 0.06982145449266997, 0.07653102369316667, 0.08272447218593304, 0.08840179997096875, 0.09356300704827392, 0.09820809341784864, 0.10233705907969282, 0.10594990403380644, 0.10904662828018952, 0.11162723181884215, 0.11369171464976424, 0.11524007677295578, 0.11627231818841688, 0.11678843889614743, 0.11678843889614743, 0.11627231818841688, 0.11524007677295589, 0.11369171464976424, 0.11162723181884215, 0.10904662828018963, 0.10594990403380644, 0.10233705907969293, 0.09820809341784864, 0.09356300704827403, 0.08840179997096875, 0.08272447218593315, 0.07653102369316689, 0.06982145449267019, 0.06259576458444283, 0.054853953968484914, 0.046596022644796786, 0.037821970613377776, 0.02853179787422855, 0.01872550442734855, 0.008403090272738334, 0.0024354445896026533, 0.013790100159674079, 0.025660876437476166, 0.03804777342300847, 0.050950791116271654, 0.06436992951726528, 0.07830518862598912, 0.09275656844244384, 0.10772406896662878, 0.12320769019854438, 0.13920743213819042, 0.15572329478556712, 0.17275527814067404, 0.19030338220351206, 0.20836760697408052, 0.22694795245237898, 0.2460444186384083, 0.26565700553216787, 0.2857857131336585, 0.30643054144287896, 0.3275914904598305, 0.349268560184512, 0.37146175061692466, 0.3941710617570673, 0.417396493604941, 0.4411380461605452, 0.46539571942387914, 0.49016951339494463, 0.5154594280737397, 0.541265463460266, 0.5675876195545222, 0.5944258963565097, 0.6217802938662267, 0.6496508120836753, 0.6780374510088534, 0.7069402106417628, 0.7363590909824027, 0.7662940920307726, 0.7967452137868736, 0.8277124562507043, 0.8591958194222666, 0.8911953033015583, 0.9237109078885815, 0.9567426331833342, 0.9902904791858185, 1.0243544458960323, 1.0589345333139777, 1.0940307414396537, 1.129643070273059, 1.1657715198141956, 1.2024160900630623, 1.23957678101966, 1.2772535926839872, 1.3154465250560463, 1.3541555781358348, 1.3933807519233552, 1.433122046418604, 1.4733794616215854, 1.514152997532297, 1.5554426541507382, 1.5972484314769106, 1.6395703295108128, 1.6824083482524466, 1.7257624877018092, 1.7696327478589042, 1.8140191287237286, 1.858921630296284, 1.9043402525765694, 1.9502749955645862, 1.9967258592603336, 2.0436928436638104, 2.091175948775019, 2.1391751745939565, 2.1876905211206257, 2.2367219883550247, 2.286269576297155, 2.3363332849470146, 2.3869131143046065, 2.4380090643699273, 2.48962113514298, 2.541749326623763, 2.5943936388122752, 2.6475540717085195, 2.701230625312493, 2.7554232996241983, 2.8101320946436323, 2.865357010370799, 2.921098046805694, 2.9773552039483215, 3.03412848179868, 3.091417880356767, 3.149223399622585, 3.207545039596134, 3.2663828002774133, 3.325736681666422, 3.3856066837631635, 3.4459928065676335, 3.5068950500798355, 3.568313414299767, 3.63024789922743, 3.6926985048628236, 3.7556652312059455, 3.8191480782568004, 3.8831470460153863 ], [ 3.9135981677714877, 3.8495992000129027, 3.7861163529620487, 3.723149626618926, 3.6606990209835324, 3.59876453605587, 3.537346171835938, 3.4764439283237367, 3.416057805519266, 3.356187803422525, 3.2968339220335157, 3.2379961613522363, 3.1796745213786872, 3.121869002112869, 3.0645796035547814, 3.0078063257044247, 2.951549168561797, 2.8958081321269016, 2.840583216399735, 2.7858744213803, 2.7316817470685955, 2.6780051934646214, 2.624844760568378, 2.572200448379865, 2.5200722568990823, 2.4684601861260305, 2.417364236060709, 2.3667844067031174, 2.3167206980532575, 2.267173110111127, 2.2181416428767275, 2.1696262963500588, 2.12162707053112, 2.0741439654199123, 2.027176981016435, 1.9807261173206885, 1.9347913743326717, 1.8893727520523864, 1.8444702504798305, 1.8000838696150065, 1.756213609457912, 1.712859470008548, 1.6700214512669151, 1.6276995532330125, 1.58589377590684, 1.5446041192883988, 1.5038305833776877, 1.4635731681747064, 1.423831873679457, 1.384606699891937, 1.3458976468121486, 1.3077047144400895, 1.2700279027757615, 1.2328672118191641, 1.1962226415702975, 1.160094192029161, 1.1244818631957552, 1.0893856550700796, 1.0548055676521342, 1.0207416009419203, 0.9871937549394363, 0.9541620296446833, 0.9216464250576601, 0.8896469411783681, 0.8581635780068062, 0.8271963355429752, 0.7967452137868745, 0.7668102127385044, 0.7373913323978647, 0.7084885727649555, 0.6801019338397767, 0.6522314156223286, 0.6248770181126111, 0.5980387413106238, 0.5717165852163675, 0.5459105498298413, 0.5206206351510461, 0.495846841179981, 0.4715891679166466, 0.4478476153610427, 0.42462218351316894, 0.4019128723730261, 0.3797196819406139, 0.3580426122159319, 0.3368816631989806, 0.31623683488975995, 0.2961081272882695, 0.27649554039450974, 0.2573990742084806, 0.23881872873018173, 0.2207545039596137, 0.2032063998967757, 0.18617441654166855, 0.16965855389429185, 0.1536588119546458, 0.1381751907227302, 0.12320769019854527, 0.10875631038209055, 0.09482105127336649, 0.08140191287237308, 0.06849889517911012, 0.056111998193577595, 0.04424122191577551, 0.03288656634570408, 0.022048031483363095, 0.011725617328752769, 0.0019193238818728808, 0.0073708488572765685, 0.016144900888695357, 0.024402832212383707, 0.03214464282834151, 0.03937033273656887, 0.04607990193706557, 0.052273350429831944, 0.05795067821486766, 0.06311188529217282, 0.06775697166174754, 0.07188593732359172, 0.07549878227770535, 0.07859550652408842, 0.08117611006274106, 0.08324059289366315, 0.08478895501685468, 0.08582119643231578, 0.08633731714004633, 0.08633731714004633, 0.08582119643231578, 0.0847889550168548, 0.08324059289366315, 0.08117611006274106, 0.07859550652408853, 0.07549878227770535, 0.07188593732359183, 0.06775697166174754, 0.06311188529217293, 0.05795067821486766, 0.052273350429832055, 0.04607990193706579, 0.03937033273656909, 0.03214464282834173, 0.024402832212383818, 0.01614490088869569, 0.0073708488572766795, 0.0019193238818724367, 0.011725617328752547, 0.022048031483362873, 0.03288656634570386, 0.044241221915775064, 0.05611199819357715, 0.06849889517910945, 0.08140191287237264, 0.09482105127336649, 0.1087563103820901, 0.12320769019854483, 0.13817519072272977, 0.1536588119546456, 0.1696585538942914, 0.18617441654166833, 0.20320639989677525, 0.22075450395961305, 0.2388187287301815, 0.25739907420847996, 0.2764955403945095, 0.2961081272882691, 0.3162368348897595, 0.33688166319898016, 0.3580426122159317, 0.37971968194061323, 0.40191287237302586, 0.4246221835131685, 0.447847615361042, 0.4715891679166462, 0.49584684117998035, 0.5206206351510456, 0.5459105498298409, 0.5717165852163673, 0.5980387413106234, 0.6248770181126106, 0.6522314156223277, 0.6801019338397762, 0.7084885727649546, 0.737391332397864, 0.7668102127385039, 0.7967452137868736, 0.8271963355429748, 0.8581635780068055, 0.8896469411783676, 0.9216464250576593, 0.9541620296446824, 0.9871937549394354, 1.0207416009419195, 1.0548055676521333, 1.0893856550700787, 1.1244818631957547, 1.16009419202916, 1.196222641570297, 1.2328672118191633, 1.270027902775761, 1.3077047144400886, 1.3458976468121473, 1.3846066998919357, 1.4238318736794562, 1.4635731681747055, 1.5038305833776864, 1.544604119288398, 1.5858937759068392, 1.6276995532330116, 1.6700214512669138, 1.7128594700085475, 1.7562136094579106, 1.8000838696150052, 1.8444702504798296, 1.889372752052385, 1.9347913743326703, 1.9807261173206872, 2.0271769810164346, 2.0741439654199114, 2.1216270705311198, 2.1696262963500574, 2.2181416428767267, 2.2671731101111257, 2.316720698053256, 2.3667844067031156, 2.4173642360607075, 2.4684601861260282, 2.520072256899081, 2.572200448379864, 2.6248447605683762, 2.6780051934646205, 2.731681747068594, 2.7858744213802993, 2.8405832163997333, 2.8958081321269, 2.951549168561795, 3.007806325704423, 3.0645796035547805, 3.1218690021128674, 3.1796745213786863, 3.2379961613522346, 3.2968339220335148, 3.3561878034225234, 3.416057805519265, 3.476443928323735, 3.537346171835937, 3.598764536055868, 3.6606990209835315, 3.723149626618925, 3.786116352962047, 3.849599200012902, 3.9135981677714877 ], [ 3.9445654102353185, 3.8805664424767334, 3.8170835954258795, 3.7541168690827567, 3.691666263447363, 3.6297317785197007, 3.5683134142997686, 3.5074111707875675, 3.4470250479830966, 3.387155045886356, 3.3278011644973464, 3.268963403816067, 3.210641763842518, 3.1528362445767, 3.095546846018612, 3.0387735681682555, 2.9825164110256277, 2.9267753745907323, 2.871550458863566, 2.816841663844131, 2.762648989532426, 2.708972435928452, 2.6558120030322088, 2.6031676908436956, 2.551039499362913, 2.499427428589861, 2.4483314785245396, 2.397751649166948, 2.3476879405170883, 2.2981403525749577, 2.2491088853405583, 2.2005935388138895, 2.152594312994951, 2.105111207883743, 2.058144223480266, 2.0116933597845192, 1.9657586167965024, 1.9203399945162172, 1.8754374929436612, 1.8310511120788373, 1.7871808519217427, 1.7438267124723787, 1.700988693730746, 1.6586667956968433, 1.6168610183706709, 1.5755713617522296, 1.5347978258415185, 1.4945404106385372, 1.4547991161432878, 1.4155739423557678, 1.3768648892759794, 1.3386719569039203, 1.3009951452395923, 1.263834454282995, 1.2271898840341282, 1.1910614344929917, 1.155449105659586, 1.1203528975339103, 1.085772810115965, 1.051708843405751, 1.018160997403267, 0.9851292721085141, 0.9526136675214909, 0.9206141836421988, 0.889130820470637, 0.858163578006806, 0.8277124562507052, 0.7977774552023351, 0.7683585748616955, 0.7394558152287862, 0.7110691763036074, 0.6831986580861593, 0.6558442605764419, 0.6290059837744546, 0.6026838276801982, 0.5768777922936721, 0.5515878776148768, 0.5268140836438118, 0.5025564103804774, 0.47881485782487343, 0.4555894259769997, 0.43288011483685684, 0.41068692440444465, 0.3890098546797627, 0.36784890566281137, 0.3472040773535907, 0.3270753697521003, 0.3074627828583405, 0.2883663166723114, 0.2697859711940125, 0.25172174642344447, 0.23417364236060645, 0.2171416590054993, 0.2006257963581226, 0.18462605441847657, 0.16914243318656097, 0.15417493266237603, 0.1397235528459213, 0.12578829373719724, 0.11236915533620384, 0.09946613764294088, 0.08707924065740835, 0.07520846437960627, 0.06385380880953484, 0.05301527394719385, 0.042692859792583526, 0.03288656634570364, 0.02359639360655419, 0.0148223415751354, 0.00656441025144705, 0.00117740036451075, 0.008403090272738112, 0.015112659473234813, 0.021306107966001187, 0.0269834357510369, 0.03214464282834206, 0.03678972919791679, 0.04091869485976096, 0.04453153981387459, 0.04762826406025766, 0.0502088675989103, 0.05227335042983239, 0.053821712553023926, 0.054853953968485025, 0.055370074676215575, 0.055370074676215575, 0.054853953968485025, 0.05382171255302404, 0.05227335042983239, 0.0502088675989103, 0.047628264060257774, 0.04453153981387459, 0.04091869485976107, 0.03678972919791679, 0.032144642828342174, 0.0269834357510369, 0.021306107966001298, 0.015112659473235035, 0.008403090272738334, 0.001177400364510972, 0.006564410251446828, 0.014822341575135178, 0.023596393606553967, 0.032886566345703194, 0.042692859792583304, 0.05301527394719363, 0.06385380880953462, 0.07520846437960582, 0.08707924065740791, 0.09946613764294021, 0.1123691553362034, 0.12578829373719724, 0.13972355284592086, 0.15417493266237559, 0.16914243318656053, 0.18462605441847635, 0.20062579635812217, 0.2171416590054991, 0.234173642360606, 0.2517217464234438, 0.26978597119401226, 0.2883663166723107, 0.3074627828583403, 0.32707536975209983, 0.34720407735359027, 0.3678489056628109, 0.38900985467976246, 0.410686924404444, 0.4328801148368566, 0.45558942597699925, 0.47881485782487276, 0.5025564103804769, 0.5268140836438111, 0.5515878776148764, 0.5768777922936716, 0.602683827680198, 0.6290059837744542, 0.6558442605764414, 0.6831986580861584, 0.711069176303607, 0.7394558152287853, 0.7683585748616948, 0.7977774552023347, 0.8277124562507043, 0.8581635780068055, 0.8891308204706363, 0.9206141836421984, 0.95261366752149, 0.9851292721085132, 1.0181609974032662, 1.0517088434057502, 1.085772810115964, 1.1203528975339094, 1.1554491056595855, 1.1910614344929908, 1.2271898840341278, 1.263834454282994, 1.3009951452395918, 1.3386719569039194, 1.376864889275978, 1.4155739423557665, 1.454799116143287, 1.4945404106385363, 1.5347978258415171, 1.5755713617522287, 1.61686101837067, 1.6586667956968424, 1.7009886937307446, 1.7438267124723783, 1.7871808519217414, 1.831051112078836, 1.8754374929436604, 1.9203399945162158, 1.965758616796501, 2.011693359784518, 2.0581442234802654, 2.105111207883742, 2.1525943129949505, 2.200593538813888, 2.2491088853405574, 2.2981403525749564, 2.347687940517087, 2.3977516491669464, 2.4483314785245383, 2.499427428589859, 2.5510394993629117, 2.6031676908436947, 2.655812003032207, 2.7089724359284513, 2.762648989532425, 2.81684166384413, 2.871550458863564, 2.9267753745907306, 2.982516411025626, 3.0387735681682537, 3.0955468460186113, 3.152836244576698, 3.210641763842517, 3.2689634038160653, 3.3278011644973455, 3.387155045886354, 3.4470250479830957, 3.5074111707875657, 3.5683134142997677, 3.629731778519699, 3.6916662634473623, 3.7541168690827558, 3.8170835954258777, 3.8805664424767325, 3.9445654102353185 ], [ 3.9760487734068803, 3.9120498056482953, 3.8485669585974414, 3.7856002322543185, 3.723149626618925, 3.6612151416912626, 3.5997967774713304, 3.5388945339591293, 3.4785084111546585, 3.418638409057918, 3.3592845276689083, 3.300446766987629, 3.24212512701408, 3.184319607748262, 3.127030209190174, 3.0702569313398174, 3.01399977419719, 2.9582587377622946, 2.903033822035128, 2.8483250270156932, 2.7941323527039885, 2.7404557991000145, 2.687295366203771, 2.634651054015258, 2.5825228625344754, 2.5309107917614235, 2.479814841696102, 2.4292350123385105, 2.3791713036886506, 2.32962371574652, 2.2805922485121206, 2.232076901985452, 2.1840776761665133, 2.1365945710553054, 2.089627586651828, 2.0431767229560815, 1.9972419799680647, 1.9518233576877795, 1.9069208561152236, 1.8625344752503996, 1.8186642150933046, 1.775310075643941, 1.7324720569023078, 1.6901501588684051, 1.6483443815422332, 1.6070547249237914, 1.5662811890130803, 1.5260237738100995, 1.4862824793148497, 1.4470573055273297, 1.4083482524475412, 1.3701553200754826, 1.3324785084111546, 1.2953178174545572, 1.25867324720569, 1.2225447976645536, 1.1869324688311478, 1.1518362607054726, 1.1172561732875272, 1.0831922065773134, 1.0496443605748293, 1.0166126352800764, 0.9840970306930532, 0.9520975468137609, 0.9206141836421993, 0.8896469411783681, 0.8591958194222673, 0.8292608183738972, 0.7998419380332575, 0.7709391784003485, 0.7425525394751693, 0.7146820212577214, 0.6873276237480037, 0.6604893469460169, 0.6341671908517603, 0.6083611554652344, 0.5830712407864387, 0.5582974468153739, 0.5340397735520395, 0.5102982209964355, 0.4870727891485618, 0.46436347800841893, 0.4421702875760065, 0.42049321785132476, 0.39933226883437345, 0.3786874405251526, 0.35855873292366236, 0.3389461460299026, 0.31984967984387347, 0.3012693343655748, 0.28320510959500655, 0.26565700553216853, 0.2486250221770614, 0.23210915952968492, 0.21610941759003865, 0.20062579635812305, 0.1856582958339379, 0.1712069160174834, 0.15727165690875933, 0.14385251850776593, 0.13094950081450296, 0.11856260382897044, 0.10669182755116835, 0.09533717198109692, 0.08449863711875594, 0.07417622296414561, 0.06436992951726572, 0.05507975677811627, 0.046305704746697485, 0.038047773423009135, 0.030305962807051223, 0.023080272898823972, 0.01637070369832716, 0.010177255205561009, 0.004499927420525296, 0.0006612796567799784, 0.005306366026354703, 0.009435331688198878, 0.013048176642312503, 0.01614490088869558, 0.018725504427348216, 0.020789987258270304, 0.02233834938146184, 0.02337059079692294, 0.02388671150465349, 0.02388671150465349, 0.02337059079692294, 0.022338349381461953, 0.020789987258270304, 0.018725504427348216, 0.01614490088869569, 0.013048176642312503, 0.009435331688198989, 0.005306366026354703, 0.0006612796567800894, 0.004499927420525074, 0.010177255205560787, 0.01637070369832716, 0.02308027289882375, 0.030305962807051, 0.03804777342300891, 0.04630570474669726, 0.05507975677811605, 0.06436992951726528, 0.07417622296414539, 0.08449863711875572, 0.0953371719810967, 0.1066918275511679, 0.11856260382896999, 0.1309495008145023, 0.14385251850776548, 0.1572716569087591, 0.17120691601748295, 0.1856582958339379, 0.2006257963581226, 0.21610941759003843, 0.23210915952968425, 0.24862502217706117, 0.2656570055321681, 0.2832051095950061, 0.30126933436557435, 0.3198496798438728, 0.33894614602990236, 0.3585587329236619, 0.37868744052515235, 0.3993322688343728, 0.42049321785132454, 0.44217028757600607, 0.4643634780084187, 0.4870727891485611, 0.5102982209964348, 0.5340397735520392, 0.5582974468153732, 0.5830712407864385, 0.6083611554652335, 0.6341671908517599, 0.660489346946016, 0.6873276237480035, 0.7146820212577207, 0.7425525394751691, 0.7709391784003472, 0.7998419380332566, 0.8292608183738968, 0.8591958194222666, 0.8896469411783676, 0.9206141836421984, 0.9520975468137605, 0.9840970306930523, 1.0166126352800755, 1.049644360574828, 1.0831922065773125, 1.1172561732875264, 1.1518362607054717, 1.1869324688311473, 1.2225447976645527, 1.2586732472056896, 1.2953178174545559, 1.3324785084111541, 1.3701553200754812, 1.4083482524475404, 1.4470573055273288, 1.4862824793148488, 1.5260237738100981, 1.5662811890130794, 1.607054724923791, 1.6483443815422318, 1.6901501588684047, 1.7324720569023069, 1.7753100756439406, 1.8186642150933032, 1.8625344752503983, 1.9069208561152222, 1.9518233576877781, 1.9972419799680634, 2.04317672295608, 2.0896275866518277, 2.1365945710553045, 2.184077676166513, 2.2320769019854505, 2.2805922485121197, 2.3296237157465187, 2.3791713036886493, 2.4292350123385087, 2.4798148416961006, 2.5309107917614213, 2.582522862534474, 2.634651054015257, 2.6872953662037693, 2.7404557991000136, 2.794132352703987, 2.8483250270156923, 2.9030338220351264, 2.958258737762293, 3.0139997741971882, 3.0702569313398156, 3.127030209190173, 3.18431960774826, 3.242125127014079, 3.300446766987627, 3.3592845276689074, 3.418638409057916, 3.4785084111546576, 3.5388945339591276, 3.5997967774713295, 3.661215141691261, 3.723149626618924, 3.7856002322543176, 3.8485669585974396, 3.9120498056482944, 3.9760487734068803 ], [ 4.0080482572861715, 3.9440492895275874, 3.8805664424767334, 3.8175997161336106, 3.755149110498217, 3.6932146255705547, 3.6317962613506225, 3.5708940178384214, 3.5105078950339497, 3.45063789293721, 3.3912840115481995, 3.332446250866921, 3.274124610893372, 3.216319091627554, 3.159029693069466, 3.1022564152191094, 3.045999258076481, 2.9902582216415863, 2.93503330591442, 2.880324510894985, 2.82613183658328, 2.772455282979306, 2.7192948500830627, 2.6666505378945495, 2.614522346413767, 2.562910275640715, 2.5118143255753935, 2.461234496217802, 2.4111707875679422, 2.3616231996258117, 2.3125917323914122, 2.2640763858647435, 2.216077160045805, 2.168594054934597, 2.1216270705311198, 2.075176206835373, 2.0292414638473564, 1.9838228415670711, 1.9389203399945152, 1.8945339591296912, 1.8506636989725962, 1.8073095595232327, 1.7644715407815994, 1.7221496427476968, 1.6803438654215248, 1.639054208803083, 1.598280672892372, 1.558023257689391, 1.5182819631941413, 1.4790567894066218, 1.4403477363268333, 1.4021548039547742, 1.3644779922904462, 1.3273173013338488, 1.2906727310849817, 1.2545442815438452, 1.2189319527104399, 1.1838357445847643, 1.1492556571668189, 1.115191690456605, 1.081643844454121, 1.048612119159368, 1.0160965145723448, 0.9840970306930528, 0.9526136675214909, 0.9216464250576597, 0.8911953033015592, 0.8612603022531888, 0.8318414219125492, 0.8029386622796402, 0.7745520233544612, 0.7466815051370133, 0.7193271076272956, 0.6924888308253085, 0.666166674731052, 0.640360639344526, 0.6150707246657305, 0.5902969306946657, 0.5660392574313313, 0.5422977048757271, 0.5190722730278536, 0.4963629618877108, 0.47416977145529837, 0.4524927017306166, 0.4313317527136653, 0.41068692440444443, 0.3905582168029542, 0.37094562990919444, 0.3518491637231651, 0.3332688182448664, 0.3152045934742982, 0.2976564894114604, 0.28062450605635325, 0.26410864340897655, 0.2481089014693305, 0.2326252802374147, 0.21765777971322975, 0.20320639989677525, 0.18927114078805118, 0.17585200238705756, 0.1629489846937946, 0.15056208770826207, 0.13869131143045998, 0.12733665586038856, 0.11649812099804757, 0.10617570684343725, 0.09636941339655736, 0.08707924065740791, 0.07830518862598912, 0.07004725730230077, 0.06230544668634308, 0.05507975677811583, 0.04837018757761902, 0.042176739084852644, 0.03649941129981693, 0.031338204222511656, 0.026693117852937043, 0.022564152191092868, 0.018951307236979353, 0.015854582990596056, 0.01327397945194364, 0.011209496621021442, 0.009661134497829904, 0.008628893082368805, 0.008112772374638366, 0.008112772374638366, 0.008628893082368805, 0.009661134497829904, 0.011209496621021442, 0.013273979451943418, 0.015854582990596056, 0.01895130723697913, 0.022564152191092868, 0.026693117852937043, 0.031338204222511656, 0.03649941129981693, 0.04217673908485242, 0.048370187577618795, 0.055079756778115385, 0.06230544668634286, 0.07004725730230077, 0.0783051886259889, 0.08707924065740791, 0.09636941339655714, 0.10617570684343702, 0.11649812099804735, 0.12733665586038834, 0.13869131143045976, 0.15056208770826185, 0.16294898469379415, 0.17585200238705734, 0.18927114078805096, 0.2032063998967748, 0.21765777971322953, 0.23262528023741447, 0.24810890146933007, 0.2641086434089761, 0.2806245060563528, 0.2976564894114597, 0.31520459347429775, 0.3332688182448662, 0.35184916372316466, 0.370945629909194, 0.39055821680295355, 0.4106869244044442, 0.43133175271366464, 0.4524927017306162, 0.4741697714552977, 0.49636296188771034, 0.519072273027853, 0.5422977048757267, 0.5660392574313309, 0.5902969306946648, 0.6150707246657303, 0.6403606393445254, 0.6661666747310517, 0.6924888308253079, 0.7193271076272953, 0.7466815051370124, 0.7745520233544609, 0.8029386622796391, 0.8318414219125485, 0.8612603022531884, 0.8911953033015583, 0.9216464250576593, 0.95261366752149, 0.9840970306930523, 1.016096514572344, 1.0486121191593671, 1.0816438444541197, 1.1151916904566042, 1.149255657166818, 1.1838357445847634, 1.218931952710439, 1.2545442815438443, 1.2906727310849817, 1.3273173013338475, 1.3644779922904458, 1.4021548039547733, 1.440347736326832, 1.4790567894066204, 1.5182819631941404, 1.5580232576893902, 1.598280672892371, 1.6390542088030826, 1.6803438654215235, 1.7221496427476963, 1.7644715407815985, 1.8073095595232322, 1.8506636989725953, 1.89453395912969, 1.9389203399945139, 1.9838228415670698, 2.029241463847355, 2.075176206835372, 2.1216270705311193, 2.168594054934596, 2.2160771600458045, 2.264076385864742, 2.3125917323914114, 2.3616231996258104, 2.411170787567941, 2.4612344962178003, 2.511814325575392, 2.562910275640713, 2.6145223464137657, 2.6666505378945486, 2.719294850083061, 2.772455282979305, 2.826131836583279, 2.880324510894984, 2.935033305914418, 2.9902582216415845, 3.0459992580764794, 3.1022564152191077, 3.1590296930694652, 3.216319091627552, 3.274124610893371, 3.3324462508669193, 3.3912840115481995, 3.450637892937208, 3.5105078950339497, 3.5708940178384196, 3.6317962613506207, 3.693214625570553, 3.755149110498216, 3.817599716133609, 3.8805664424767317, 3.9440492895275865, 4.0080482572861715 ], [ 4.040563861873196, 3.9765648941146106, 3.9130820470637566, 3.850115320720633, 3.7876647150852403, 3.725730230157577, 3.664311865937645, 3.6034096224254437, 3.5430234996209737, 3.483153497524233, 3.4237996161352235, 3.3649618554539433, 3.306640215480395, 3.248834696214577, 3.1915452976564893, 3.1347720198061317, 3.0785148626635053, 3.02277382622861, 2.967548910501443, 2.912840115482008, 2.8586474411703033, 2.8049708875663293, 2.751810454670086, 2.6991661424815727, 2.64703795100079, 2.5954258802277383, 2.5443299301624167, 2.4937501008048253, 2.4436863921549654, 2.394138804212835, 2.3451073369784354, 2.2965919904517667, 2.248592764632828, 2.20110965952162, 2.154142675118143, 2.1076918114223964, 2.0617570684343796, 2.0163384461540943, 1.9714359445815384, 1.9270495637167144, 1.8831793035596194, 1.8398251641102559, 1.7969871453686226, 1.75466524733472, 1.712859470008548, 1.6715698133901062, 1.6307962774793952, 1.5905388622764143, 1.5507975677811645, 1.511572393993645, 1.4728633409138565, 1.4346704085417974, 1.3969935968774694, 1.359832905920872, 1.323188335672005, 1.2870598861308684, 1.251447557297463, 1.2163513491717874, 1.181771261753842, 1.1477072950436282, 1.1141594490411442, 1.0811277237463912, 1.048612119159368, 1.016612635280076, 0.9851292721085141, 0.9541620296446829, 0.9237109078885823, 0.893775906840212, 0.8643570264995724, 0.8354542668666634, 0.8070676279414843, 0.7791971097240364, 0.7518427122143188, 0.7250044354123317, 0.6986822793180751, 0.6728762439315492, 0.6475863292527537, 0.6228125352816889, 0.5985548620183545, 0.5748133094627503, 0.5515878776148768, 0.528878566474734, 0.5066853760423216, 0.4850083063176398, 0.4638473573006885, 0.4432025289914676, 0.4230738213899774, 0.4034612344962176, 0.3843647683101883, 0.3657844228318896, 0.3477201980613214, 0.3301720939984836, 0.31314011064337643, 0.29662424799599973, 0.2806245060563537, 0.2651408848244379, 0.25017338430025293, 0.23572200448379843, 0.22178674537507437, 0.20836760697408074, 0.19546458928081778, 0.18307769229528525, 0.17120691601748317, 0.15985226044741174, 0.14901372558507076, 0.13869131143046043, 0.12888501798358054, 0.11959484524443109, 0.1108207932130123, 0.10256286188932395, 0.09482105127336626, 0.08759536136513901, 0.0808857921646422, 0.07469234367187583, 0.06901501588684011, 0.06385380880953484, 0.059208722439960226, 0.05507975677811605, 0.05146691182400254, 0.04837018757761924, 0.045789584038966824, 0.043725101208044626, 0.04217673908485309, 0.04114449766939199, 0.04062837696166155, 0.04062837696166155, 0.04114449766939199, 0.04217673908485309, 0.043725101208044626, 0.0457895840389666, 0.04837018757761924, 0.051466911824002315, 0.05507975677811605, 0.059208722439960226, 0.06385380880953484, 0.06901501588684011, 0.0746923436718756, 0.08088579216464198, 0.08759536136513857, 0.09482105127336604, 0.10256286188932395, 0.11082079321301208, 0.11959484524443109, 0.12888501798358032, 0.1386913114304602, 0.14901372558507053, 0.15985226044741152, 0.17120691601748295, 0.18307769229528503, 0.19546458928081734, 0.20836760697408052, 0.22178674537507415, 0.235722004483798, 0.2501733843002527, 0.26514088482443765, 0.28062450605635325, 0.2966242479959993, 0.313140110643376, 0.3301720939984829, 0.34772019806132093, 0.3657844228318894, 0.38436476831018784, 0.4034612344962172, 0.42307382138997673, 0.4432025289914674, 0.4638473573006878, 0.48500830631763936, 0.5066853760423209, 0.5288785664747335, 0.5515878776148762, 0.5748133094627499, 0.5985548620183541, 0.622812535281688, 0.6475863292527535, 0.6728762439315485, 0.6986822793180749, 0.7250044354123311, 0.7518427122143185, 0.7791971097240356, 0.8070676279414841, 0.8354542668666622, 0.8643570264995717, 0.8937759068402116, 0.9237109078885815, 0.9541620296446824, 0.9851292721085132, 1.0166126352800755, 1.0486121191593671, 1.0811277237463903, 1.1141594490411428, 1.1477072950436273, 1.1817712617538412, 1.2163513491717866, 1.2514475572974622, 1.2870598861308675, 1.323188335672005, 1.3598329059208707, 1.396993596877469, 1.4346704085417965, 1.4728633409138552, 1.5115723939936436, 1.5507975677811636, 1.5905388622764134, 1.6307962774793943, 1.6715698133901058, 1.7128594700085467, 1.7546652473347195, 1.7969871453686217, 1.8398251641102554, 1.8831793035596185, 1.927049563716713, 1.971435944581537, 2.016338446154093, 2.0617570684343782, 2.107691811422395, 2.1541426751181425, 2.2011096595216193, 2.2485927646328276, 2.2965919904517653, 2.3451073369784345, 2.3941388042128335, 2.443686392154964, 2.4937501008048235, 2.5443299301624154, 2.595425880227736, 2.647037951000789, 2.699166142481572, 2.751810454670084, 2.8049708875663284, 2.858647441170302, 2.912840115482007, 2.967548910501441, 3.022773826228608, 3.0785148626635035, 3.13477201980613, 3.1915452976564884, 3.2488346962145753, 3.306640215480394, 3.3649618554539424, 3.4237996161352218, 3.4831534975242313, 3.543023499620972, 3.603409622425442, 3.664311865937645, 3.725730230157575, 3.7876647150852385, 3.850115320720633, 3.913082047063755, 3.9765648941146097, 4.040563861873196 ], [ 4.073595587167948, 4.009596619409363, 3.946113772358509, 3.8831470460153863, 3.820696440379993, 3.7587619554523304, 3.697343591232398, 3.636441347720197, 3.5760552249157262, 3.5161852228189856, 3.456831341429976, 3.3979935807486967, 3.3396719407751476, 3.2818664215093296, 3.224577022951242, 3.167803745100885, 3.111546587958258, 3.0558055515233624, 3.0005806357961955, 2.9458718407767606, 2.891679166465056, 2.8380026128610822, 2.784842179964839, 2.7321978677763257, 2.6800696762955427, 2.628457605522491, 2.577361655457169, 2.526781826099578, 2.4767181174497184, 2.4271705295075874, 2.3781390622731884, 2.3296237157465196, 2.281624489927581, 2.2341413848163727, 2.1871744004128955, 2.1407235367171493, 2.0947887937291325, 2.049370171448847, 2.0044676698762913, 1.960081289011467, 1.9162110288543723, 1.8728568894050088, 1.8300188706633755, 1.787696972629473, 1.745891195303301, 1.7046015386848592, 1.663828002774148, 1.6235705875711668, 1.5838292930759175, 1.5446041192883975, 1.505895066208609, 1.46770213383655, 1.430025322172222, 1.392864631215625, 1.3562200609667578, 1.3200916114256214, 1.2844792825922156, 1.2493830744665404, 1.2148029870485946, 1.1807390203383807, 1.1471911743358971, 1.1141594490411437, 1.0816438444541205, 1.0496443605748285, 1.0181609974032666, 0.9871937549394358, 0.9567426331833349, 0.926807632134965, 0.8973887517943253, 0.8684859921614161, 0.8400993532362371, 0.812228835018789, 0.7848744375090715, 0.7580361607070845, 0.7317140046128281, 0.705907969226302, 0.6806180545475065, 0.6558442605764414, 0.631586587313107, 0.6078450347575033, 0.5846196029096293, 0.5619102917694867, 0.5397171013370743, 0.5180400316123923, 0.496879082595441, 0.47623425428622035, 0.45610554668473013, 0.43649295979097036, 0.417396493604941, 0.39881614812664234, 0.3807519233560741, 0.3632038192932363, 0.34617183593812895, 0.32965597329075247, 0.3136562313511062, 0.29817261011919083, 0.28320510959500567, 0.26875372977855116, 0.2548184706698271, 0.24139933226883348, 0.2284963145755705, 0.216109417590038, 0.2042386413122359, 0.19288398574216448, 0.1820454508798235, 0.17172303672521316, 0.16191674327833327, 0.15262657053918405, 0.14385251850776504, 0.1355945871840767, 0.127852776568119, 0.12062708665989175, 0.11391751745939493, 0.10772406896662856, 0.10204674118159285, 0.09688553410428757, 0.09224044773471296, 0.08811148207286879, 0.08449863711875527, 0.08140191287237197, 0.07882130933371956, 0.07675682650279736, 0.07520846437960582, 0.07417622296414472, 0.07366010225641428, 0.07366010225641428, 0.07417622296414472, 0.07520846437960582, 0.07675682650279736, 0.07882130933371934, 0.08140191287237197, 0.08449863711875505, 0.08811148207286879, 0.09224044773471296, 0.09688553410428757, 0.10204674118159285, 0.10772406896662834, 0.11391751745939471, 0.1206270866598913, 0.12785277656811878, 0.1355945871840767, 0.14385251850776481, 0.15262657053918383, 0.16191674327833305, 0.17172303672521294, 0.18204545087982327, 0.19288398574216425, 0.20423864131223568, 0.21610941759003777, 0.22849631457557007, 0.24139933226883326, 0.2548184706698269, 0.2687537297785507, 0.28320510959500544, 0.2981726101191904, 0.3136562313511062, 0.329655973290752, 0.34617183593812895, 0.36320381929323586, 0.38075192335607366, 0.3988161481266421, 0.4173964936049406, 0.43649295979097014, 0.45610554668472947, 0.4762342542862201, 0.49687908259544056, 0.5180400316123921, 0.5397171013370736, 0.5619102917694863, 0.5846196029096289, 0.6078450347575024, 0.6315865873131068, 0.655844260576441, 0.680618054547506, 0.7059079692263013, 0.7317140046128277, 0.7580361607070838, 0.784874437509071, 0.8122288350187883, 0.8400993532362366, 0.868485992161415, 0.8973887517943244, 0.9268076321349645, 0.9567426331833342, 0.9871937549394354, 1.0181609974032662, 1.049644360574828, 1.0816438444541197, 1.1141594490411428, 1.1471911743358958, 1.1807390203383799, 1.2148029870485937, 1.2493830744665395, 1.284479282592215, 1.3200916114256205, 1.3562200609667574, 1.3928646312156236, 1.430025322172222, 1.467702133836549, 1.5058950662086081, 1.5446041192883966, 1.5838292930759166, 1.623570587571166, 1.6638280027741468, 1.7046015386848588, 1.7458911953032996, 1.7876969726294725, 1.8300188706633742, 1.872856889405008, 1.916211028854371, 1.960081289011466, 2.00446766987629, 2.049370171448846, 2.0947887937291307, 2.1407235367171475, 2.1871744004128955, 2.234141384816372, 2.28162448992758, 2.329623715746518, 2.3781390622731875, 2.4271705295075865, 2.4767181174497166, 2.526781826099576, 2.5773616554571683, 2.628457605522489, 2.680069676295542, 2.732197867776325, 2.784842179964837, 2.8380026128610814, 2.891679166465055, 2.9458718407767597, 3.0005806357961937, 3.0558055515233606, 3.111546587958256, 3.1678037451008834, 3.224577022951241, 3.281866421509328, 3.3396719407751467, 3.397993580748695, 3.456831341429975, 3.516185222818984, 3.5760552249157254, 3.6364413477201953, 3.6973435912323973, 3.7587619554523286, 3.820696440379992, 3.8831470460153854, 3.9461137723585074, 4.009596619409362, 4.073595587167948 ], [ 4.107143433170432, 4.043144465411848, 3.9796616183609936, 3.916694892017871, 3.8542442863824773, 3.792309801454815, 3.7308914372348827, 3.6699891937226816, 3.60960307091821, 3.54973306882147, 3.4903791874324597, 3.4315414267511812, 3.373219786777632, 3.315414267511814, 3.2581248689537263, 3.2013515911033696, 3.1450944339607414, 3.089353397525846, 3.03412848179868, 2.979419686779245, 2.9252270124675404, 2.8715504588635663, 2.818390025967323, 2.7657457137788097, 2.713617522298027, 2.6620054515249754, 2.6109095014596537, 2.5603296721020623, 2.5102659634522024, 2.460718375510072, 2.4116869082756724, 2.3631715617490037, 2.315172335930065, 2.267689230818857, 2.22072224641538, 2.1742713827196334, 2.1283366397316166, 2.0829180174513313, 2.0380155158787754, 1.9936291350139514, 1.9497588748568564, 1.906404735407493, 1.8635667166658596, 1.821244818631957, 1.779439041305785, 1.7381493846873433, 1.6973758487766322, 1.6571184335736513, 1.6173771390784015, 1.578151965290882, 1.5394429122110935, 1.5012499798390344, 1.4635731681747064, 1.426412477218109, 1.389767906969242, 1.3536394574281054, 1.3180271285947, 1.2829309204690245, 1.248350833051079, 1.2142868663408652, 1.1807390203383812, 1.1477072950436282, 1.115191690456605, 1.083192206577313, 1.051708843405751, 1.02074160094192, 0.9902904791858194, 0.960355478137449, 0.9309365977968094, 0.9020338381639004, 0.8736471992387214, 0.8457766810212735, 0.8184222835115558, 0.7915840067095687, 0.7652618506153122, 0.7394558152287862, 0.7141659005499907, 0.6893921065789259, 0.6651344333155915, 0.6413928807599873, 0.6181674489121138, 0.595458137771971, 0.5732649473395586, 0.5515878776148768, 0.5304269285979255, 0.5097821002887046, 0.4896533926872144, 0.47004080579345464, 0.4509443396074253, 0.4323639941291266, 0.4142997693585584, 0.3967516652957206, 0.37971968194061345, 0.36320381929323675, 0.3472040773535907, 0.3317204561216749, 0.31675295559748995, 0.30230157578103545, 0.2883663166723114, 0.27494717827131776, 0.2620441605780548, 0.24965726359252227, 0.23778648731472019, 0.22643183174464876, 0.21559329688230777, 0.20527088272769745, 0.19546458928081756, 0.1861744165416681, 0.17740036451024932, 0.16914243318656097, 0.16140062257060328, 0.15417493266237603, 0.14746536346187922, 0.14127191496911284, 0.13559458718407713, 0.13043338010677186, 0.12578829373719724, 0.12165932807535307, 0.11804648312123955, 0.11494975887485626, 0.11236915533620384, 0.11030467250528164, 0.1087563103820901, 0.107724068966629, 0.10720794825889857, 0.10720794825889857, 0.107724068966629, 0.1087563103820901, 0.11030467250528164, 0.11236915533620362, 0.11494975887485626, 0.11804648312123933, 0.12165932807535307, 0.12578829373719724, 0.13043338010677186, 0.13559458718407713, 0.14127191496911262, 0.147465363461879, 0.15417493266237559, 0.16140062257060306, 0.16914243318656097, 0.1774003645102491, 0.1861744165416681, 0.19546458928081734, 0.20527088272769722, 0.21559329688230755, 0.22643183174464854, 0.23778648731471996, 0.24965726359252205, 0.26204416057805435, 0.27494717827131754, 0.28836631667231116, 0.302301575781035, 0.3167529555974897, 0.33172045612167467, 0.34720407735359027, 0.3632038192932363, 0.379719681940613, 0.3967516652957199, 0.41429976935855795, 0.4323639941291264, 0.45094433960742486, 0.4700408057934542, 0.48965339268721375, 0.5097821002887044, 0.5304269285979248, 0.5515878776148764, 0.5732649473395579, 0.5954581377719705, 0.6181674489121132, 0.6413928807599869, 0.6651344333155911, 0.689392106578925, 0.7141659005499905, 0.7394558152287856, 0.7652618506153119, 0.7915840067095681, 0.8184222835115555, 0.8457766810212726, 0.8736471992387211, 0.9020338381638993, 0.9309365977968087, 0.9603554781374486, 0.9902904791858185, 1.0207416009419195, 1.0517088434057502, 1.0831922065773125, 1.1151916904566042, 1.1477072950436273, 1.1807390203383799, 1.2142868663408644, 1.2483508330510782, 1.2829309204690236, 1.3180271285946992, 1.3536394574281045, 1.389767906969242, 1.4264124772181077, 1.463573168174706, 1.5012499798390335, 1.5394429122110922, 1.5781519652908806, 1.6173771390784006, 1.6571184335736504, 1.6973758487766313, 1.7381493846873428, 1.7794390413057837, 1.8212448186319565, 1.8635667166658587, 1.9064047354074924, 1.9497588748568555, 1.9936291350139501, 2.038015515878774, 2.08291801745133, 2.1283366397316152, 2.174271382719632, 2.2207222464153795, 2.2676892308188563, 2.3151723359300647, 2.3631715617490023, 2.4116869082756716, 2.4607183755100706, 2.510265963452201, 2.5603296721020605, 2.6109095014596524, 2.662005451524973, 2.713617522298026, 2.765745713778809, 2.818390025967321, 2.8715504588635654, 2.925227012467539, 2.979419686779244, 3.0341284817986782, 3.0893533975258443, 3.1450944339607396, 3.201351591103368, 3.2581248689537254, 3.3154142675118123, 3.3732197867776312, 3.4315414267511795, 3.4903791874324597, 3.5497330688214683, 3.60960307091821, 3.66998919372268, 3.730891437234881, 3.792309801454813, 3.8542442863824764, 3.916694892017869, 3.979661618360992, 4.043144465411847, 4.107143433170432 ], [ 4.141207399880646, 4.077208432122061, 4.0137255850712075, 3.9507588587280846, 3.888308253092691, 3.8263737681650287, 3.7649554039450965, 3.7040531604328955, 3.6436670376284237, 3.583797035531684, 3.5244431541426735, 3.465605393461395, 3.407283753487846, 3.349478234222028, 3.29218883566394, 3.2354155578135835, 3.1791584006709552, 3.12341736423606, 3.068192448508894, 3.013483653489459, 2.959290979177754, 2.90561442557378, 2.8524539926775367, 2.7998096804890236, 2.747681489008241, 2.696069418235189, 2.6449734681698676, 2.594393638812276, 2.5443299301624163, 2.4947823422202857, 2.4457508749858863, 2.3972355284592175, 2.349236302640279, 2.301753197529071, 2.254786213125594, 2.208335349429847, 2.1624006064418304, 2.116981984161545, 2.072079482588989, 2.0276931017241653, 1.9838228415670702, 1.9404687021177067, 1.8976306833760734, 1.8553087853421708, 1.8135030080159988, 1.772213351397557, 1.731439815486846, 1.6911824002838651, 1.6514411057886154, 1.6122159320010958, 1.5735068789213074, 1.5353139465492482, 1.4976371348849202, 1.4604764439283229, 1.4238318736794557, 1.3877034241383193, 1.352091095304914, 1.3169948871792383, 1.282414799761293, 1.248350833051079, 1.214802987048595, 1.181771261753842, 1.1492556571668189, 1.1172561732875268, 1.085772810115965, 1.0548055676521337, 1.0243544458960332, 0.9944194448476629, 0.9650005645070232, 0.9360978048741142, 0.9077111659489352, 0.8798406477314873, 0.8524862502217696, 0.8256479734197826, 0.799325817325526, 0.7735197819390001, 0.7482298672602046, 0.7234560732891397, 0.6991984000258054, 0.6754568474702012, 0.6522314156223277, 0.6295221044821848, 0.6073289140497724, 0.5856518443250907, 0.5644908953081393, 0.5438460669989185, 0.5237173593974283, 0.5041047725036685, 0.48500830631763914, 0.46642796083934046, 0.4483637360687722, 0.4308156320059344, 0.4137836486508273, 0.3972677860034506, 0.38126804406380455, 0.3657844228318887, 0.3508169223077038, 0.3363655424912493, 0.3224302833825252, 0.3090111449815316, 0.29610812728826863, 0.2837212303027361, 0.271850454024934, 0.2604957984548626, 0.2496572635925216, 0.23933484943791128, 0.2295285559910314, 0.22023838325188194, 0.21146433122046315, 0.2032063998967748, 0.1954645892808171, 0.18823889937258986, 0.18152933017209305, 0.17533588167932668, 0.16965855389429096, 0.1644973468169857, 0.15985226044741108, 0.1557232947855669, 0.1521104498314534, 0.1490137255850701, 0.14643312204641767, 0.14436863921549548, 0.14282027709230394, 0.14178803567684284, 0.1412719149691124, 0.1412719149691124, 0.14178803567684284, 0.14282027709230394, 0.14436863921549548, 0.14643312204641745, 0.1490137255850701, 0.15211044983145317, 0.1557232947855669, 0.15985226044741108, 0.1644973468169857, 0.16965855389429096, 0.17533588167932646, 0.18152933017209283, 0.18823889937258942, 0.1954645892808169, 0.2032063998967748, 0.21146433122046293, 0.22023838325188194, 0.22952855599103117, 0.23933484943791106, 0.24965726359252138, 0.26049579845486237, 0.2718504540249338, 0.2837212303027359, 0.2961081272882682, 0.30901114498153137, 0.322430283382525, 0.33636554249124884, 0.35081692230770356, 0.3657844228318885, 0.3812680440638041, 0.39726778600345014, 0.41378364865082684, 0.43081563200593376, 0.4483637360687718, 0.46642796083934024, 0.4850083063176387, 0.504104772503668, 0.5237173593974276, 0.5438460669989182, 0.5644908953081387, 0.5856518443250902, 0.6073289140497717, 0.6295221044821844, 0.652231415622327, 0.6754568474702007, 0.6991984000258049, 0.7234560732891389, 0.7482298672602044, 0.7735197819389994, 0.7993258173255258, 0.8256479734197819, 0.8524862502217694, 0.8798406477314864, 0.907711165948935, 0.9360978048741131, 0.9650005645070225, 0.9944194448476624, 1.0243544458960323, 1.0548055676521333, 1.085772810115964, 1.1172561732875264, 1.149255657166818, 1.1817712617538412, 1.2148029870485937, 1.2483508330510782, 1.282414799761292, 1.3169948871792374, 1.352091095304913, 1.3877034241383184, 1.4238318736794557, 1.4604764439283215, 1.4976371348849198, 1.5353139465492474, 1.573506878921306, 1.6122159320010945, 1.6514411057886145, 1.6911824002838642, 1.7314398154868451, 1.7722133513975566, 1.8135030080159975, 1.8553087853421704, 1.8976306833760725, 1.9404687021177063, 1.9838228415670693, 2.027693101724164, 2.072079482588988, 2.116981984161544, 2.162400606441829, 2.208335349429846, 2.2547862131255934, 2.30175319752907, 2.3492363026402785, 2.397235528459216, 2.4457508749858854, 2.4947823422202844, 2.544329930162415, 2.5943936388122744, 2.6449734681698662, 2.696069418235187, 2.7476814890082397, 2.7998096804890227, 2.852453992677535, 2.9056144255737792, 2.959290979177753, 3.013483653489458, 3.068192448508892, 3.123417364236058, 3.1791584006709535, 3.2354155578135817, 3.2921888356639393, 3.349478234222026, 3.407283753487845, 3.4656053934613933, 3.5244431541426735, 3.583797035531682, 3.6436670376284237, 3.7040531604328937, 3.7649554039450948, 3.826373768165027, 3.8883082530926902, 3.950758858728083, 4.013725585071206, 4.0772084321220605, 4.141207399880646 ], [ 4.175787487298591, 4.111788519540006, 4.048305672489153, 3.9853389461460296, 3.922888340510637, 3.8609538555829737, 3.7995354913630415, 3.7386332478508404, 3.6782471250463695, 3.6183771229496298, 3.5590232415606193, 3.50018548087934, 3.441863840905791, 3.384058321639973, 3.326768923081886, 3.2699956452315284, 3.213738488088901, 3.1579974516540057, 3.1027725359268388, 3.048063740907404, 2.9938710665956996, 2.9401945129917255, 2.887034080095482, 2.834389767906969, 2.7822615764261864, 2.7306495056531346, 2.679553555587813, 2.6289737262302215, 2.5789100175803616, 2.529362429638231, 2.4803309624038317, 2.431815615877163, 2.3838163900582243, 2.3363332849470164, 2.289366300543539, 2.2429154368477926, 2.196980693859776, 2.1515620715794905, 2.1066595700069346, 2.0622731891421107, 2.018402928985016, 1.975048789535652, 1.9322107707940193, 1.8898888727601166, 1.8480830954339442, 1.806793438815503, 1.7660199029047918, 1.7257624877018105, 1.6860211932065612, 1.6467960194190407, 1.6080869663392523, 1.5698940339671936, 1.5322172223028656, 1.4950565313462683, 1.4584119610974016, 1.422283511556265, 1.3866711827228588, 1.3515749745971837, 1.3169948871792383, 1.2829309204690245, 1.2493830744665404, 1.2163513491717874, 1.1838357445847643, 1.1518362607054722, 1.1203528975339103, 1.0893856550700791, 1.0589345333139786, 1.0289995322656083, 0.9995806519249686, 0.9706778922920596, 0.9422912533668806, 0.9144207351494327, 0.887066337639715, 0.860228060837728, 0.8339059047434714, 0.8080998693569454, 0.78280995467815, 0.7580361607070851, 0.7337784874437507, 0.7100369348881466, 0.686811503040273, 0.6641021919001302, 0.6419090014677178, 0.620231931743036, 0.5990709827260847, 0.5784261544168638, 0.5582974468153736, 0.5386848599216139, 0.5195883937355845, 0.5010080482572858, 0.4829438234867176, 0.4653957194238798, 0.44836373606877267, 0.43184787342139597, 0.4158481314817499, 0.4003645102498341, 0.38539700972564916, 0.37094562990919466, 0.3570103708004706, 0.343591232399477, 0.330688214706214, 0.3183013177206815, 0.3064305414428794, 0.295075885872808, 0.284237351010467, 0.27391493685585666, 0.2641086434089768, 0.2548184706698273, 0.24604441863840854, 0.23778648731472019, 0.2300446766987625, 0.22281898679053525, 0.21610941759003843, 0.20991596909727206, 0.20423864131223635, 0.19907743423493107, 0.19443234786535646, 0.19030338220351228, 0.18669053724939877, 0.18359381300301547, 0.18101320946436306, 0.17894872663344086, 0.17740036451024932, 0.17636812309478822, 0.17585200238705778, 0.17585200238705778, 0.17636812309478822, 0.17740036451024932, 0.17894872663344086, 0.18101320946436283, 0.18359381300301547, 0.18669053724939855, 0.19030338220351228, 0.19443234786535646, 0.19907743423493107, 0.20423864131223635, 0.20991596909727184, 0.2161094175900382, 0.2228189867905348, 0.23004467669876227, 0.23778648731472019, 0.2460444186384083, 0.2548184706698273, 0.26410864340897655, 0.27391493685585644, 0.28423735101046677, 0.29507588587280775, 0.3064305414428792, 0.31830131772068126, 0.33068821470621357, 0.34359123239947675, 0.3570103708004704, 0.3709456299091942, 0.38539700972564894, 0.4003645102498339, 0.4158481314817495, 0.4318478734213955, 0.4483637360687722, 0.46539571942387914, 0.48294382348671716, 0.5010080482572856, 0.5195883937355841, 0.5386848599216134, 0.558297446815373, 0.5784261544168636, 0.5990709827260841, 0.6202319317430356, 0.6419090014677171, 0.6641021919001298, 0.6868115030402724, 0.7100369348881461, 0.7337784874437503, 0.7580361607070842, 0.7828099546781497, 0.8080998693569448, 0.8339059047434711, 0.8602280608377273, 0.8870663376397148, 0.9144207351494318, 0.9422912533668804, 0.9706778922920585, 0.9995806519249679, 1.0289995322656078, 1.0589345333139777, 1.0893856550700787, 1.1203528975339094, 1.1518362607054717, 1.1838357445847634, 1.2163513491717866, 1.2493830744665395, 1.2829309204690236, 1.3169948871792374, 1.3515749745971828, 1.3866711827228588, 1.4222835115562642, 1.4584119610974007, 1.4950565313462674, 1.5322172223028652, 1.5698940339671923, 1.6080869663392514, 1.6467960194190399, 1.6860211932065603, 1.7257624877018092, 1.7660199029047905, 1.806793438815502, 1.8480830954339433, 1.8898888727601157, 1.932210770794018, 1.9750487895356517, 2.0184029289850143, 2.0622731891421093, 2.1066595700069337, 2.151562071579489, 2.1969806938597745, 2.2429154368477913, 2.2893663005435387, 2.3363332849470155, 2.383816390058224, 2.4318156158771616, 2.4803309624038308, 2.5293624296382298, 2.5789100175803603, 2.6289737262302197, 2.6795535555878116, 2.7306495056531324, 2.782261576426185, 2.834389767906968, 2.8870340800954803, 2.9401945129917246, 2.9938710665956982, 3.048063740907404, 3.102772535926837, 3.157997451654004, 3.2137384880888993, 3.2699956452315266, 3.326768923081884, 3.384058321639971, 3.441863840905791, 3.5001854808793382, 3.5590232415606184, 3.618377122949628, 3.6782471250463686, 3.7386332478508386, 3.7995354913630406, 3.860953855582972, 3.922888340510635, 3.9853389461460287, 4.0483056724891515, 4.111788519540006, 4.175787487298591 ], [ 4.210883695424267, 4.146884727665682, 4.0834018806148284, 4.020435154271706, 3.957984548636312, 3.8960500637086497, 3.8346316994887175, 3.7737294559765164, 3.7133433331720456, 3.653473331075305, 3.5941194496862954, 3.535281689005016, 3.476960049031467, 3.419154529765649, 3.361865131207561, 3.3050918533572045, 3.248834696214577, 3.1930936597796817, 3.137868744052515, 3.08315994903308, 3.028967274721375, 2.9752907211174016, 2.922130288221158, 2.869485976032645, 2.817357784551862, 2.76574571377881, 2.7146497637134885, 2.664069934355897, 2.6140062257060377, 2.5644586377639067, 2.5154271705295077, 2.466911824002839, 2.4189125981839004, 2.371429493072692, 2.3244625086692148, 2.2780116449734686, 2.232076901985452, 2.186658279705166, 2.1417557781326106, 2.0973693972677863, 2.0534991371106917, 2.010144997661328, 1.9673069789196949, 1.9249850808857922, 1.8831793035596203, 1.8418896469411785, 1.8011161110304674, 1.760858695827486, 1.7211174013322368, 1.6818922275447168, 1.6431831744649283, 1.6049902420928692, 1.5673134304285412, 1.5301527394719443, 1.4935081692230772, 1.4573797196819407, 1.4217673908485349, 1.3866711827228597, 1.352091095304914, 1.3180271285947, 1.2844792825922164, 1.251447557297463, 1.2189319527104399, 1.1869324688311478, 1.155449105659586, 1.1244818631957552, 1.0940307414396542, 1.0640957403912843, 1.0346768600506446, 1.0057741004177352, 0.9773874614925564, 0.9495169432751083, 0.9221625457653908, 0.8953242689634038, 0.8690021128691474, 0.8431960774826213, 0.8179061628038258, 0.7931323688327607, 0.7688746955694263, 0.7451331430138226, 0.7219077111659487, 0.699198400025806, 0.6770052095933936, 0.6553281398687116, 0.6341671908517603, 0.6135223625425397, 0.5933936549410495, 0.5737810680472897, 0.5546846018612603, 0.5361042563829617, 0.5180400316123934, 0.5004919275495556, 0.48345994419444827, 0.4669440815470718, 0.4509443396074255, 0.43546071837551015, 0.420493217851325, 0.4060418380348705, 0.3921065789261464, 0.3786874405251528, 0.36578442283188983, 0.3533975258463573, 0.3415267495685552, 0.3301720939984838, 0.3193335591361428, 0.3090111449815325, 0.2992048515346526, 0.28991467879550337, 0.28114062676408436, 0.272882695440396, 0.2651408848244383, 0.25791519491621107, 0.25120562571571425, 0.24501217722294788, 0.23933484943791217, 0.2341736423606069, 0.22952855599103228, 0.2253995903291881, 0.2217867453750746, 0.2186900211286913, 0.21610941759003888, 0.21404493475911668, 0.21249657263592514, 0.21146433122046404, 0.2109482105127336, 0.2109482105127336, 0.21146433122046404, 0.21249657263592514, 0.21404493475911668, 0.21610941759003865, 0.2186900211286913, 0.22178674537507437, 0.2253995903291881, 0.22952855599103228, 0.2341736423606069, 0.23933484943791217, 0.24501217722294766, 0.25120562571571403, 0.2579151949162106, 0.2651408848244381, 0.272882695440396, 0.28114062676408413, 0.28991467879550314, 0.29920485153465237, 0.30901114498153226, 0.3193335591361426, 0.3301720939984836, 0.341526749568555, 0.3533975258463571, 0.3657844228318894, 0.3786874405251526, 0.3921065789261462, 0.40604183803487004, 0.42049321785132476, 0.4354607183755097, 0.4509443396074255, 0.46694408154707134, 0.48345994419444827, 0.5004919275495552, 0.518040031612393, 0.5361042563829614, 0.5546846018612599, 0.5737810680472895, 0.5933936549410488, 0.6135223625425394, 0.6341671908517599, 0.6553281398687114, 0.6770052095933929, 0.6991984000258056, 0.7219077111659482, 0.7451331430138217, 0.7688746955694261, 0.7931323688327603, 0.8179061628038253, 0.8431960774826206, 0.869002112869147, 0.8953242689634031, 0.9221625457653904, 0.9495169432751076, 0.977387461492556, 1.0057741004177343, 1.0346768600506437, 1.0640957403912839, 1.0940307414396537, 1.1244818631957547, 1.1554491056595855, 1.1869324688311473, 1.218931952710439, 1.2514475572974622, 1.284479282592215, 1.3180271285946992, 1.352091095304913, 1.3866711827228588, 1.4217673908485344, 1.4573797196819398, 1.4935081692230767, 1.530152739471943, 1.5673134304285412, 1.6049902420928683, 1.6431831744649275, 1.681892227544716, 1.721117401332236, 1.7608586958274852, 1.801116111030466, 1.841889646941178, 1.883179303559619, 1.9249850808857918, 1.9673069789196935, 2.0101449976613273, 2.0534991371106903, 2.0973693972677854, 2.1417557781326093, 2.1866582797051652, 2.23207690198545, 2.278011644973467, 2.3244625086692148, 2.371429493072691, 2.4189125981838995, 2.466911824002837, 2.515427170529507, 2.564458637763906, 2.614006225706036, 2.6640699343558953, 2.7146497637134877, 2.7657457137788084, 2.817357784551861, 2.869485976032644, 2.9221302882211564, 2.9752907211174007, 3.0289672747213743, 3.083159949033079, 3.137868744052513, 3.19309365977968, 3.2488346962145753, 3.3050918533572027, 3.3618651312075603, 3.419154529765647, 3.476960049031466, 3.5352816890050143, 3.5941194496862945, 3.653473331075303, 3.7133433331720447, 3.7737294559765147, 3.8346316994887166, 3.896050063708648, 3.957984548636311, 4.020435154271705, 4.083401880614827, 4.1468847276656815, 4.210883695424267 ], [ 4.246496024257673, 4.182497056499088, 4.119014209448234, 4.056047483105111, 3.9935968774697175, 3.931662392542055, 3.870244028322123, 3.809341784809922, 3.748955662005451, 3.6890856599087103, 3.6297317785197007, 3.5708940178384214, 3.5125723778648723, 3.4547668585990543, 3.3974774600409665, 3.34070418219061, 3.2844470250479825, 3.228705988613087, 3.17348107288592, 3.1187722778664853, 3.0645796035547805, 3.010903049950807, 2.9577426170545635, 2.9050983048660504, 2.8529701133852674, 2.8013580426122155, 2.750262092546894, 2.6996822631893025, 2.649618554539443, 2.600070966597312, 2.551039499362913, 2.5025241528362443, 2.4545249270173057, 2.4070418219060974, 2.36007483750262, 2.313623973806874, 2.267689230818857, 2.2222706085385715, 2.177368106966016, 2.1329817261011916, 2.089111465944097, 2.0457573264947335, 2.0029193077531002, 1.9605974097191976, 1.9187916323930256, 1.8775019757745839, 1.8367284398638728, 1.7964710246608915, 1.7567297301656422, 1.7175045563781222, 1.6787955032983337, 1.6406025709262746, 1.6029257592619466, 1.5657650683053497, 1.5291204980564825, 1.492992048515346, 1.4573797196819402, 1.422283511556265, 1.3877034241383193, 1.3536394574281054, 1.3200916114256218, 1.2870598861308684, 1.2545442815438452, 1.2225447976645532, 1.1910614344929913, 1.1600941920291605, 1.1296430702730595, 1.0997080692246897, 1.07028918888405, 1.0413864292511406, 1.0129997903259618, 0.9851292721085136, 0.9577748745987962, 0.9309365977968092, 0.9046144417025528, 0.8788084063160266, 0.8535184916372311, 0.8287446976661661, 0.8044870244028317, 0.780745471847228, 0.757520039999354, 0.7348107288592114, 0.712617538426799, 0.690940468702117, 0.6697795196851657, 0.649134691375945, 0.6290059837744548, 0.609393396880695, 0.5902969306946657, 0.571716585216367, 0.5536523604457988, 0.536104256382961, 0.5190722730278536, 0.5025564103804772, 0.4865566684408309, 0.4710730472089155, 0.45610554668473036, 0.44165416686827585, 0.4277189077595518, 0.41429976935855817, 0.4013967516652952, 0.3890098546797627, 0.3771390784019606, 0.36578442283188917, 0.3549458879695482, 0.34462347381493785, 0.33481718036805797, 0.32552700762890874, 0.3167529555974897, 0.3084950242738014, 0.3007532136578437, 0.29352752374961644, 0.2868179545491196, 0.28062450605635325, 0.27494717827131754, 0.26978597119401226, 0.26514088482443765, 0.2610119191625935, 0.25739907420847996, 0.25430234996209666, 0.25172174642344425, 0.24965726359252205, 0.2481089014693305, 0.2470766600538694, 0.24656053934613897, 0.24656053934613897, 0.2470766600538694, 0.2481089014693305, 0.24965726359252205, 0.251721746423444, 0.25430234996209666, 0.25739907420847974, 0.2610119191625935, 0.26514088482443765, 0.26978597119401226, 0.27494717827131754, 0.28062450605635303, 0.2868179545491194, 0.293527523749616, 0.30075321365784347, 0.3084950242738014, 0.3167529555974895, 0.3255270076289085, 0.33481718036805774, 0.34462347381493763, 0.35494588796954796, 0.36578442283188894, 0.37713907840196037, 0.38900985467976246, 0.40139675166529476, 0.41429976935855795, 0.42771890775955157, 0.4416541668682754, 0.45610554668473013, 0.4710730472089151, 0.4865566684408309, 0.5025564103804767, 0.5190722730278536, 0.5361042563829606, 0.5536523604457984, 0.5717165852163668, 0.5902969306946653, 0.6093933968806948, 0.6290059837744542, 0.6491346913759448, 0.6697795196851652, 0.6909404687021168, 0.7126175384267983, 0.734810728859211, 0.7575200399993536, 0.7807454718472271, 0.8044870244028315, 0.8287446976661657, 0.8535184916372307, 0.878808406316026, 0.9046144417025523, 0.9309365977968085, 0.9577748745987957, 0.985129272108513, 1.0129997903259613, 1.0413864292511397, 1.0702891888840491, 1.0997080692246892, 1.129643070273059, 1.16009419202916, 1.1910614344929908, 1.2225447976645527, 1.2545442815438443, 1.2870598861308675, 1.3200916114256205, 1.3536394574281045, 1.3877034241383184, 1.4222835115562642, 1.4573797196819398, 1.4929920485153452, 1.529120498056482, 1.5657650683053483, 1.6029257592619466, 1.6406025709262737, 1.6787955032983328, 1.7175045563781213, 1.7567297301656413, 1.7964710246608906, 1.8367284398638715, 1.8775019757745834, 1.9187916323930243, 1.9605974097191972, 2.002919307753099, 2.0457573264947326, 2.0891114659440957, 2.1329817261011907, 2.1773681069660147, 2.2222706085385706, 2.2676892308188554, 2.3136239738068722, 2.36007483750262, 2.4070418219060965, 2.454524927017305, 2.5025241528362425, 2.551039499362912, 2.600070966597311, 2.6496185545394413, 2.6996822631893007, 2.750262092546893, 2.8013580426122138, 2.8529701133852665, 2.9050983048660495, 2.9577426170545618, 3.010903049950806, 3.0645796035547797, 3.1187722778664844, 3.1734810728859184, 3.2287059886130853, 3.2844470250479807, 3.340704182190608, 3.3974774600409656, 3.4547668585990525, 3.5125723778648714, 3.5708940178384196, 3.6297317785197, 3.6890856599087085, 3.74895566200545, 3.80934178480992, 3.870244028322122, 3.9316623925420533, 3.9935968774697166, 4.05604748310511, 4.119014209448232, 4.182497056499087, 4.246496024257673 ], [ 4.282624473798809, 4.218625506040225, 4.155142658989371, 4.0921759326462475, 4.029725327010855, 3.9677908420831915, 3.9063724778632594, 3.8454702343510583, 3.7850841115465874, 3.7252141094498477, 3.6658602280608372, 3.607022467379558, 3.5487008274060097, 3.4908953081401917, 3.433605909582104, 3.3768326317317463, 3.320575474589119, 3.2648344381542236, 3.2096095224270575, 3.1549007274076226, 3.100708053095918, 3.0470314994919434, 2.9938710665957, 2.941226754407187, 2.8890985629264048, 2.837486492153353, 2.7863905420880313, 2.73581071273044, 2.6857470040805795, 2.6361994161384494, 2.5871679489040496, 2.5386526023773808, 2.490653376558442, 2.4431702714472348, 2.3962032870437575, 2.3497524233480105, 2.3038176803599937, 2.258399058079709, 2.2134965565071525, 2.169110175642329, 2.125239915485234, 2.08188577603587, 2.039047757294237, 1.9967258592603345, 1.9549200819341621, 1.9136304253157208, 1.8728568894050097, 1.8325994742020288, 1.792858179706779, 1.753633005919259, 1.7149239528394706, 1.676731020467412, 1.639054208803084, 1.6018935178464861, 1.5652489475976195, 1.529120498056483, 1.4935081692230772, 1.4584119610974016, 1.4238318736794566, 1.3897679069692428, 1.3562200609667583, 1.3231883356720058, 1.2906727310849826, 1.25867324720569, 1.2271898840341287, 1.1962226415702975, 1.1657715198141965, 1.1358365187658266, 1.106417638425187, 1.077514878792278, 1.0491282398670987, 1.0212577216496506, 0.9939033241399331, 0.9670650473379461, 0.9407428912436897, 0.9149368558571636, 0.8896469411783681, 0.864873147207303, 0.8406154739439686, 0.8168739213883649, 0.7936484895404909, 0.7709391784003483, 0.7487459879679359, 0.7270689182432539, 0.7059079692263026, 0.685263140917082, 0.6651344333155917, 0.645521846421832, 0.6264253802358026, 0.607845034757504, 0.5897808099869357, 0.5722327059240979, 0.5552007225689906, 0.5386848599216141, 0.5226851179819678, 0.5072014967500524, 0.4922339962258673, 0.4777826164094128, 0.4638473573006887, 0.4504282188996951, 0.4375252012064321, 0.4251383042208996, 0.4132675279430975, 0.4019128723730261, 0.3910743375106851, 0.3807519233560748, 0.3709456299091949, 0.36165545717004566, 0.35288140513862665, 0.3446234738149383, 0.3368816631989806, 0.32965597329075336, 0.32294640409025654, 0.31675295559749017, 0.31107562781245446, 0.3059144207351492, 0.30126933436557457, 0.2971403687037304, 0.2935275237496169, 0.2904307995032336, 0.28785019596458117, 0.28578571313365897, 0.28423735101046743, 0.28320510959500633, 0.2826889888872759, 0.2826889888872759, 0.28320510959500633, 0.28423735101046743, 0.28578571313365897, 0.28785019596458095, 0.2904307995032336, 0.29352752374961666, 0.2971403687037304, 0.30126933436557457, 0.3059144207351492, 0.31107562781245446, 0.31675295559748995, 0.3229464040902563, 0.3296559732907529, 0.3368816631989804, 0.3446234738149383, 0.3528814051386264, 0.36165545717004544, 0.37094562990919466, 0.38075192335607455, 0.3910743375106849, 0.40191287237302586, 0.4132675279430973, 0.4251383042208994, 0.4375252012064317, 0.45042821889969487, 0.4638473573006885, 0.47778261640941233, 0.49223399622586705, 0.507201496750052, 0.5226851179819678, 0.5386848599216136, 0.5552007225689906, 0.5722327059240975, 0.5897808099869353, 0.6078450347575037, 0.6264253802358022, 0.6455218464218317, 0.6651344333155911, 0.6852631409170817, 0.7059079692263022, 0.7270689182432537, 0.7487459879679352, 0.7709391784003479, 0.7936484895404905, 0.816873921388364, 0.8406154739439684, 0.8648731472073026, 0.8896469411783676, 0.9149368558571629, 0.9407428912436893, 0.9670650473379454, 0.9939033241399327, 1.0212577216496497, 1.0491282398670982, 1.0775148787922766, 1.106417638425186, 1.1358365187658261, 1.1657715198141956, 1.196222641570297, 1.2271898840341278, 1.2586732472056896, 1.2906727310849817, 1.323188335672005, 1.3562200609667574, 1.389767906969242, 1.4238318736794557, 1.4584119610974007, 1.4935081692230767, 1.529120498056482, 1.565248947597619, 1.6018935178464853, 1.639054208803083, 1.6767310204674106, 1.7149239528394693, 1.7536330059192577, 1.7928581797067782, 1.8325994742020275, 1.8728568894050088, 1.91363042531572, 1.9549200819341612, 1.9967258592603336, 2.0390477572942363, 2.08188577603587, 2.1252399154852326, 2.169110175642327, 2.2134965565071516, 2.258399058079707, 2.303817680359993, 2.3497524233480096, 2.3962032870437566, 2.443170271447234, 2.490653376558442, 2.53865260237738, 2.5871679489040487, 2.6361994161384477, 2.6857470040805786, 2.735810712730438, 2.7863905420880295, 2.8374864921533502, 2.889098562926403, 2.941226754407186, 2.9938710665956982, 3.0470314994919425, 3.100708053095916, 3.1549007274076217, 3.2096095224270558, 3.264834438154222, 3.320575474589117, 3.3768326317317445, 3.433605909582103, 3.49089530814019, 3.548700827406009, 3.607022467379557, 3.6658602280608363, 3.725214109449846, 3.7850841115465865, 3.8454702343510565, 3.9063724778632585, 3.9677908420831898, 4.029725327010853, 4.092175932646247, 4.155142658989369, 4.218625506040224, 4.282624473798809 ], [ 4.319269044047676, 4.255270076289091, 4.191787229238237, 4.128820502895114, 4.066369897259721, 4.004435412332058, 3.943017048112126, 3.882114804599925, 3.821728681795454, 3.7618586796987135, 3.702504798309704, 3.6436670376284246, 3.5853453976548755, 3.5275398783890575, 3.4702504798309697, 3.413477201980613, 3.3572200448379856, 3.3014790084030903, 3.2462540926759234, 3.1915452976564884, 3.1373526233447837, 3.08367606974081, 3.0305156368445667, 2.9778713246560535, 2.9257431331752706, 2.8741310624022187, 2.823035112336897, 2.7724552829793057, 2.7223915743294462, 2.6728439863873152, 2.6238125191529162, 2.5752971726262475, 2.527297946807309, 2.4798148416961006, 2.4328478572926233, 2.386396993596877, 2.3404622506088604, 2.2950436283285747, 2.250141126756019, 2.205754745891195, 2.1618844857341, 2.1185303462847367, 2.0756923275431034, 2.0333704295092008, 1.9915646521830288, 1.950274995564587, 1.909501459653876, 1.8692440444508946, 1.8295027499556453, 1.7902775761681253, 1.7515685230883369, 1.7133755907162778, 1.6756987790519497, 1.6385380880953528, 1.6018935178464857, 1.5657650683053492, 1.5301527394719434, 1.4950565313462683, 1.4604764439283224, 1.4264124772181086, 1.392864631215625, 1.3598329059208716, 1.3273173013338484, 1.2953178174545563, 1.2638344542829945, 1.2328672118191637, 1.2024160900630627, 1.1724810890146928, 1.1430622086740532, 1.1141594490411437, 1.085772810115965, 1.0579022918985168, 1.0305478943887993, 1.0037096175868125, 0.977387461492556, 0.9515814261060298, 0.9262915114272343, 0.9015177174561693, 0.8772600441928349, 0.8535184916372311, 0.8302930597893572, 0.8075837486492146, 0.7853905582168021, 0.7637134884921202, 0.7425525394751689, 0.7219077111659482, 0.701779003564458, 0.6821664166706982, 0.6630699504846689, 0.6444896050063702, 0.626425380235802, 0.6088772761729642, 0.5918452928178568, 0.5753294301704803, 0.5593296882308341, 0.5438460669989187, 0.5288785664747335, 0.514427186658279, 0.500491927549555, 0.48707278914856134, 0.47416977145529837, 0.46178287446976585, 0.44991209819196376, 0.43855744262189233, 0.42771890775955135, 0.417396493604941, 0.40759020015806113, 0.3983000274189119, 0.3895259753874929, 0.38126804406380455, 0.37352623344784686, 0.3663005435396196, 0.3595909743391228, 0.3533975258463564, 0.3477201980613207, 0.34255899098401543, 0.3379139046144408, 0.33378493895259664, 0.33017209399848313, 0.32707536975209983, 0.3244947662134474, 0.3224302833825252, 0.3208819212593337, 0.3198496798438726, 0.31933355913614214, 0.31933355913614214, 0.3198496798438726, 0.3208819212593337, 0.3224302833825252, 0.3244947662134472, 0.32707536975209983, 0.3301720939984829, 0.33378493895259664, 0.3379139046144408, 0.34255899098401543, 0.3477201980613207, 0.3533975258463562, 0.35959097433912257, 0.36630054353961916, 0.37352623344784663, 0.38126804406380455, 0.3895259753874927, 0.3983000274189117, 0.4075902001580609, 0.4173964936049408, 0.4277189077595511, 0.4385574426218921, 0.44991209819196354, 0.4617828744697656, 0.47416977145529793, 0.4870727891485611, 0.5004919275495547, 0.5144271866582786, 0.5288785664747333, 0.5438460669989182, 0.5593296882308341, 0.5753294301704799, 0.5918452928178568, 0.6088772761729637, 0.6264253802358015, 0.64448960500637, 0.6630699504846684, 0.682166416670698, 0.7017790035644573, 0.721907711165948, 0.7425525394751684, 0.76371348849212, 0.7853905582168015, 0.8075837486492141, 0.8302930597893567, 0.8535184916372303, 0.8772600441928347, 0.9015177174561688, 0.9262915114272339, 0.9515814261060291, 0.9773874614925555, 1.0037096175868117, 1.030547894388799, 1.0579022918985164, 1.0857728101159645, 1.1141594490411428, 1.1430622086740523, 1.1724810890146924, 1.2024160900630623, 1.2328672118191633, 1.263834454282994, 1.2953178174545559, 1.3273173013338475, 1.3598329059208707, 1.3928646312156236, 1.4264124772181077, 1.4604764439283215, 1.4950565313462674, 1.530152739471943, 1.5657650683053483, 1.6018935178464853, 1.6385380880953515, 1.6756987790519497, 1.7133755907162769, 1.751568523088336, 1.7902775761681244, 1.8295027499556444, 1.8692440444508938, 1.9095014596538746, 1.9502749955645866, 1.9915646521830275, 2.0333704295092003, 2.075692327543102, 2.118530346284736, 2.161884485734099, 2.205754745891194, 2.250141126756018, 2.295043628328574, 2.3404622506088586, 2.3863969935968754, 2.4328478572926233, 2.4798148416960997, 2.527297946807308, 2.5752971726262457, 2.6238125191529154, 2.6728439863873144, 2.7223915743294445, 2.772455282979304, 2.823035112336896, 2.874131062402217, 2.9257431331752697, 2.9778713246560526, 3.030515636844565, 3.083676069740809, 3.137352623344783, 3.1915452976564875, 3.2462540926759216, 3.3014790084030885, 3.357220044837984, 3.413477201980611, 3.470250479830969, 3.5275398783890557, 3.5853453976548746, 3.643667037628423, 3.702504798309703, 3.7618586796987117, 3.821728681795453, 3.882114804599923, 3.943017048112125, 4.0044354123320565, 4.06636989725972, 4.128820502895113, 4.191787229238235, 4.25527007628909, 4.319269044047676 ], [ 4.356429735004274, 4.292430767245689, 4.228947920194836, 4.165981193851712, 4.103530588216319, 4.041596103288656, 3.980177739068724, 3.9192754955565228, 3.858889372752052, 3.799019370655312, 3.7396654892663017, 3.6808277285850224, 3.6225060886114733, 3.5647005693456553, 3.5074111707875684, 3.450637892937211, 3.3943807357945834, 3.338639699359688, 3.283414783632521, 3.228705988613086, 3.1745133143013824, 3.120836760697408, 3.0676763278011645, 3.0150320156126513, 2.962903824131869, 2.911291753358817, 2.8601958032934953, 2.809615973935904, 2.759552265286044, 2.7100046773439135, 2.660973210109514, 2.6124578635828453, 2.5644586377639067, 2.516975532652699, 2.4700085482492216, 2.423557684553475, 2.377622941565458, 2.332204319285173, 2.287301817712617, 2.242915436847793, 2.1990451766906984, 2.1556910372413345, 2.1128530184997016, 2.070531120465799, 2.0287253431396266, 1.9874356865211853, 1.9466621506104742, 1.906404735407493, 1.8666634409122436, 1.8274382671247231, 1.7887292140449347, 1.750536281672876, 1.712859470008548, 1.6756987790519506, 1.639054208803084, 1.6029257592619475, 1.5673134304285412, 1.532217222302866, 1.4976371348849207, 1.4635731681747068, 1.4300253221722228, 1.3969935968774698, 1.3644779922904466, 1.3324785084111546, 1.3009951452395927, 1.2700279027757615, 1.239576781019661, 1.2096417799712906, 1.180222899630651, 1.151320139997742, 1.1229335010725627, 1.095062982855115, 1.0677085853453976, 1.0408703085434103, 1.0145481524491538, 0.9887421170626278, 0.9634522023838323, 0.9386784084127675, 0.9144207351494331, 0.8906791825938289, 0.8674537507459554, 0.8447444396058126, 0.8225512491734002, 0.8008741794487184, 0.7797132304317671, 0.7590684021225462, 0.738939694521056, 0.7193271076272962, 0.7002306414412669, 0.6816502959629682, 0.6635860711924, 0.6460379671295622, 0.629005983774455, 0.6124901211270783, 0.5964903791874323, 0.5810067579555165, 0.5660392574313315, 0.551587877614877, 0.537652618506153, 0.5242334801051594, 0.5113304624118964, 0.49894356542636387, 0.4870727891485618, 0.47571813357849035, 0.46487959871614937, 0.45455718456153904, 0.44475089111465915, 0.4354607183755097, 0.4266866663440909, 0.41842873502040256, 0.4106869244044449, 0.4034612344962176, 0.3967516652957208, 0.39055821680295444, 0.3848808890179187, 0.37971968194061345, 0.37507459557103884, 0.37094562990919466, 0.36733278495508115, 0.36423606070869785, 0.36165545717004544, 0.35959097433912324, 0.3580426122159317, 0.3570103708004706, 0.35649425009274016, 0.35649425009274016, 0.3570103708004706, 0.3580426122159317, 0.35959097433912324, 0.3616554571700452, 0.36423606070869785, 0.3673327849550809, 0.37094562990919466, 0.37507459557103884, 0.37971968194061345, 0.3848808890179187, 0.3905582168029542, 0.3967516652957206, 0.4034612344962172, 0.41068692440444465, 0.41842873502040256, 0.4266866663440907, 0.4354607183755097, 0.44475089111465893, 0.4545571845615388, 0.46487959871614914, 0.47571813357849013, 0.48707278914856156, 0.49894356542636364, 0.511330462411896, 0.5242334801051591, 0.5376526185061528, 0.5515878776148766, 0.5660392574313313, 0.5810067579555163, 0.5964903791874319, 0.6124901211270779, 0.6290059837744546, 0.6460379671295615, 0.6635860711923995, 0.681650295962968, 0.7002306414412665, 0.7193271076272958, 0.7389396945210553, 0.759068402122546, 0.7797132304317664, 0.800874179448718, 0.8225512491733995, 0.8447444396058121, 0.8674537507459548, 0.8906791825938285, 0.9144207351494327, 0.9386784084127666, 0.9634522023838321, 0.9887421170626272, 1.0145481524491533, 1.0408703085434095, 1.0677085853453971, 1.0950629828551142, 1.1229335010725627, 1.1513201399977406, 1.1802228996306505, 1.2096417799712902, 1.23957678101966, 1.270027902775761, 1.3009951452395918, 1.3324785084111541, 1.3644779922904458, 1.396993596877469, 1.430025322172222, 1.463573168174706, 1.4976371348849198, 1.5322172223028652, 1.5673134304285412, 1.6029257592619466, 1.639054208803083, 1.6756987790519497, 1.7128594700085475, 1.7505362816728747, 1.7887292140449338, 1.8274382671247222, 1.8666634409122427, 1.9064047354074916, 1.9466621506104729, 1.9874356865211844, 2.0287253431396257, 2.070531120465798, 2.1128530184997003, 2.155691037241334, 2.1990451766906967, 2.2429154368477917, 2.287301817712616, 2.3322043192851716, 2.377622941565457, 2.4235576845534736, 2.470008548249221, 2.516975532652698, 2.5644586377639063, 2.612457863582844, 2.660973210109513, 2.710004677343912, 2.7595522652860427, 2.809615973935902, 2.860195803293494, 2.9112917533588147, 2.9629038241318675, 3.0150320156126504, 3.0676763278011627, 3.120836760697407, 3.1745133143013806, 3.228705988613086, 3.2834147836325194, 3.3386396993596863, 3.3943807357945817, 3.450637892937209, 3.5074111707875666, 3.5647005693456535, 3.6225060886114733, 3.6808277285850206, 3.739665489266301, 3.7990193706553104, 3.858889372752051, 3.919275495556521, 3.980177739068723, 4.041596103288654, 4.1035305882163176, 4.165981193851711, 4.228947920194834, 4.292430767245689, 4.356429735004274 ], [ 4.394106546668601, 4.330107578910017, 4.266624731859163, 4.203658005516039, 4.1412073998806465, 4.079272914952983, 4.017854550733051, 3.95695230722085, 3.896566184416379, 3.8366961823196393, 3.777342300930629, 3.7185045402493495, 3.6601829002758013, 3.6023773810099833, 3.5450879824518955, 3.488314704601538, 3.4320575474589106, 3.376316511024015, 3.321091595296849, 3.2663828002774142, 3.2121901259657095, 3.158513572361735, 3.1053531394654916, 3.0527088272769785, 3.0005806357961964, 2.9489685650231445, 2.897872614957823, 2.8472927856002315, 2.797229076950371, 2.747681489008241, 2.698650021773841, 2.6501346752471724, 2.602135449428234, 2.5546523443170264, 2.507685359913549, 2.461234496217802, 2.4152997532297853, 2.3698811309495005, 2.324978629376944, 2.2805922485121206, 2.2367219883550256, 2.1933678489056616, 2.1505298301640288, 2.108207932130126, 2.0664021548039537, 2.0251124981855124, 1.9843389622748013, 1.9440815470718205, 1.9043402525765707, 1.8651150787890507, 1.8264060257092622, 1.7882130933372036, 1.7505362816728756, 1.7133755907162778, 1.676731020467411, 1.6406025709262746, 1.6049902420928688, 1.5698940339671932, 1.5353139465492482, 1.5012499798390344, 1.46770213383655, 1.4346704085417974, 1.4021548039547742, 1.3701553200754817, 1.3386719569039203, 1.307704714440089, 1.277253592683988, 1.2473185916356182, 1.2178997112949785, 1.1889969516620695, 1.1606103127368903, 1.1327397945194422, 1.1053853970097247, 1.0785471202077375, 1.0522249641134813, 1.0264189287269554, 1.0011290140481597, 0.9763552200770946, 0.9520975468137602, 0.9283559942581565, 0.9051305624102826, 0.8824212512701399, 0.8602280608377275, 0.8385509911130455, 0.8173900420960942, 0.7967452137868736, 0.7766165061853834, 0.7570039192916236, 0.7379074531055942, 0.7193271076272956, 0.7012628828567273, 0.6837147787938895, 0.6666827954387822, 0.6501669327914057, 0.6341671908517594, 0.618683569619844, 0.6037160690956589, 0.5892646892792044, 0.5753294301704803, 0.5619102917694867, 0.5490072740762237, 0.5366203770906912, 0.5247496008128891, 0.5133949452428177, 0.5025564103804767, 0.4922339962258664, 0.4824277027789865, 0.4731375300398373, 0.46436347800841826, 0.4561055466847299, 0.4483637360687722, 0.44113804616054497, 0.43442847696004816, 0.4282350284672818, 0.4225577006822461, 0.4173964936049408, 0.4127514072353662, 0.408622441573522, 0.4050095966194085, 0.4019128723730252, 0.3993322688343728, 0.3972677860034506, 0.39571942388025905, 0.39468718246479795, 0.3941710617570675, 0.3941710617570675, 0.39468718246479795, 0.39571942388025905, 0.3972677860034506, 0.39933226883437256, 0.4019128723730252, 0.4050095966194083, 0.408622441573522, 0.4127514072353662, 0.4173964936049408, 0.4225577006822461, 0.42823502846728156, 0.43442847696004794, 0.44113804616054453, 0.448363736068772, 0.4561055466847299, 0.46436347800841804, 0.47313753003983705, 0.4824277027789863, 0.49223399622586617, 0.5025564103804765, 0.5133949452428175, 0.5247496008128889, 0.536620377090691, 0.5490072740762233, 0.5619102917694865, 0.5753294301704801, 0.589264689279204, 0.6037160690956587, 0.6186835696198436, 0.6341671908517594, 0.6501669327914052, 0.6666827954387822, 0.6837147787938891, 0.7012628828567269, 0.7193271076272953, 0.7379074531055938, 0.7570039192916234, 0.7766165061853827, 0.7967452137868734, 0.8173900420960938, 0.8385509911130453, 0.8602280608377268, 0.8824212512701395, 0.9051305624102821, 0.9283559942581556, 0.95209754681376, 0.9763552200770942, 1.0011290140481592, 1.0264189287269545, 1.0522249641134809, 1.078547120207737, 1.1053853970097243, 1.1327397945194413, 1.1606103127368899, 1.1889969516620682, 1.2178997112949776, 1.2473185916356178, 1.2772535926839872, 1.3077047144400886, 1.3386719569039194, 1.3701553200754812, 1.4021548039547733, 1.4346704085417965, 1.467702133836549, 1.5012499798390335, 1.5353139465492474, 1.5698940339671923, 1.6049902420928683, 1.6406025709262737, 1.6767310204674106, 1.7133755907162769, 1.7505362816728747, 1.7882130933372022, 1.826406025709261, 1.8651150787890494, 1.9043402525765698, 1.9440815470718191, 1.9843389622748004, 2.0251124981855115, 2.066402154803953, 2.1082079321301253, 2.150529830164028, 2.1933678489056616, 2.2367219883550242, 2.280592248512119, 2.324978629376943, 2.3698811309494987, 2.4152997532297844, 2.461234496217801, 2.5076853599135482, 2.5546523443170255, 2.602135449428234, 2.6501346752471715, 2.6986500217738403, 2.7476814890082393, 2.7972290769503703, 2.8472927856002297, 2.897872614957821, 2.948968565023142, 3.0005806357961946, 3.0527088272769776, 3.10535313946549, 3.158513572361734, 3.2121901259657077, 3.2663828002774133, 3.3210915952968474, 3.3763165110240134, 3.432057547458909, 3.488314704601536, 3.5450879824518946, 3.6023773810099815, 3.6601829002758004, 3.7185045402493486, 3.777342300930628, 3.8366961823196375, 3.896566184416378, 3.956952307220848, 4.01785455073305, 4.079272914952981, 4.141207399880645, 4.203658005516038, 4.266624731859161, 4.330107578910016, 4.394106546668601 ], [ 4.43229947904066, 4.368300511282076, 4.304817664231221, 4.241850937888098, 4.179400332252705, 4.117465847325042, 4.05604748310511, 3.995145239592909, 3.934759116788438, 3.8748891146916975, 3.815535233302688, 3.7566974726214086, 3.6983758326478604, 3.6405703133820424, 3.5832809148239537, 3.526507636973597, 3.4702504798309697, 3.4145094433960743, 3.3592845276689083, 3.3045757326494734, 3.2503830583377677, 3.196706504733794, 3.1435460718375507, 3.0909017596490376, 3.0387735681682546, 2.987161497395203, 2.9360655473298816, 2.88548571797229, 2.8354220093224303, 2.7858744213802997, 2.7368429541459003, 2.6883276076192315, 2.640328381800293, 2.592845276689085, 2.545878292285608, 2.499427428589861, 2.4534926856018444, 2.408074063321559, 2.3631715617490032, 2.3187851808841793, 2.2749149207270847, 2.2315607812777207, 2.188722762536088, 2.1464008645021853, 2.104595087176013, 2.0633054305575715, 2.0225318946468605, 1.9822744794438791, 1.9425331849486298, 1.9033080111611094, 1.864598958081321, 1.8264060257092622, 1.7887292140449342, 1.7515685230883369, 1.7149239528394702, 1.6787955032983337, 1.6431831744649275, 1.6080869663392523, 1.573506878921307, 1.539442912211093, 1.505895066208609, 1.472863340913856, 1.4403477363268329, 1.4083482524475408, 1.376864889275979, 1.3458976468121477, 1.3154465250560472, 1.2855115240076769, 1.2560926436670372, 1.2271898840341282, 1.198803245108949, 1.1709327268915013, 1.1435783293817838, 1.1167400525797966, 1.09041789648554, 1.064611861099014, 1.0393219464202188, 1.0145481524491538, 0.9902904791858194, 0.9665489266302152, 0.9433234947823417, 0.9206141836421988, 0.8984209932097864, 0.8767439234851047, 0.8555829744681533, 0.8349381461589325, 0.8148094385574423, 0.7951968516636825, 0.7761003854776531, 0.7575200399993545, 0.7394558152287862, 0.7219077111659484, 0.7048757278108413, 0.6883598651634646, 0.6723601232238186, 0.6568765019919027, 0.6419090014677178, 0.6274576216512633, 0.6135223625425392, 0.6001032241415456, 0.5872002064482826, 0.5748133094627501, 0.562942533184948, 0.5515878776148766, 0.5407493427525356, 0.5304269285979253, 0.5206206351510454, 0.511330462411896, 0.5025564103804772, 0.4942984790567888, 0.4865566684408311, 0.47933097853260387, 0.47262140933210706, 0.4664279608393407, 0.46075063305430497, 0.4555894259769997, 0.4509443396074251, 0.4468153739455809, 0.4432025289914674, 0.4401058047450841, 0.4375252012064317, 0.4354607183755095, 0.43391235625231794, 0.43288011483685684, 0.4323639941291264, 0.4323639941291264, 0.43288011483685684, 0.43391235625231794, 0.4354607183755095, 0.43752520120643146, 0.4401058047450841, 0.44320252899146717, 0.4468153739455809, 0.4509443396074251, 0.4555894259769997, 0.46075063305430497, 0.46642796083934046, 0.47262140933210683, 0.4793309785326034, 0.4865566684408309, 0.4942984790567888, 0.5025564103804769, 0.511330462411896, 0.5206206351510452, 0.5304269285979251, 0.5407493427525354, 0.5515878776148764, 0.5629425331849478, 0.5748133094627499, 0.5872002064482822, 0.6001032241415454, 0.613522362542539, 0.6274576216512628, 0.6419090014677176, 0.6568765019919025, 0.6723601232238181, 0.6883598651634641, 0.7048757278108408, 0.7219077111659478, 0.7394558152287858, 0.7575200399993542, 0.7761003854776527, 0.795196851663682, 0.8148094385574416, 0.8349381461589322, 0.8555829744681527, 0.8767439234851042, 0.8984209932097857, 0.9206141836421984, 0.943323494782341, 0.9665489266302147, 0.9902904791858189, 1.0145481524491529, 1.0393219464202184, 1.0646118610990136, 1.0904178964855396, 1.1167400525797957, 1.1435783293817834, 1.1709327268915004, 1.198803245108949, 1.2271898840341269, 1.2560926436670368, 1.2855115240076764, 1.3154465250560463, 1.3458976468121473, 1.376864889275978, 1.4083482524475404, 1.440347736326832, 1.4728633409138552, 1.5058950662086081, 1.5394429122110922, 1.573506878921306, 1.6080869663392514, 1.6431831744649275, 1.6787955032983328, 1.7149239528394693, 1.751568523088336, 1.7887292140449338, 1.826406025709261, 1.86459895808132, 1.9033080111611085, 1.942533184948629, 1.9822744794438778, 2.022531894646859, 2.0633054305575707, 2.104595087176012, 2.1464008645021844, 2.1887227625360866, 2.2315607812777203, 2.274914920727083, 2.318785180884178, 2.3631715617490023, 2.408074063321558, 2.453492685601843, 2.49942742858986, 2.5458782922856074, 2.592845276689084, 2.6403283818002925, 2.68832760761923, 2.7368429541458994, 2.7858744213802984, 2.835422009322429, 2.8854857179722884, 2.9360655473298802, 2.987161497395201, 3.0387735681682537, 3.0909017596490367, 3.143546071837549, 3.1967065047337933, 3.250383058337767, 3.3045757326494716, 3.3592845276689065, 3.4145094433960725, 3.470250479830968, 3.5265076369735953, 3.5832809148239537, 3.6405703133820406, 3.6983758326478586, 3.7566974726214077, 3.815535233302687, 3.8748891146916957, 3.9347591167884373, 3.9951452395929072, 4.056047483105109, 4.1174658473250405, 4.179400332252704, 4.241850937888097, 4.304817664231219, 4.368300511282074, 4.43229947904066 ], [ 4.4710085321204485, 4.407009564361864, 4.3435267173110095, 4.280559990967887, 4.218109385332493, 4.156174900404831, 4.0947565361848985, 4.0338542926726975, 3.9734681698682266, 3.913598167771486, 3.8542442863824764, 3.795406525701197, 3.737084885727649, 3.679279366461831, 3.621989967903742, 3.5652166900533855, 3.508959532910758, 3.4532184964758628, 3.3979935807486967, 3.343284785729262, 3.289092111417556, 3.2354155578135826, 3.182255124917339, 3.129610812728826, 3.077482621248043, 3.025870550474991, 2.97477460040967, 2.9241947710520786, 2.8741310624022187, 2.824583474460088, 2.7755520072256887, 2.72703666069902, 2.6790374348800814, 2.6315543297688735, 2.5845873453653962, 2.5381364816696497, 2.492201738681633, 2.4467831164013476, 2.4018806148287917, 2.3574942339639677, 2.313623973806873, 2.270269834357509, 2.2274318156158763, 2.1851099175819737, 2.1433041402558013, 2.10201448363736, 2.061240947726649, 2.0209835325236676, 1.9812422380284183, 1.9420170642408978, 1.9033080111611094, 1.8651150787890507, 1.8274382671247227, 1.7902775761681253, 1.7536330059192586, 1.7175045563781222, 1.681892227544716, 1.6467960194190407, 1.6122159320010954, 1.5781519652908815, 1.5446041192883975, 1.5115723939936445, 1.4790567894066213, 1.4470573055273293, 1.4155739423557674, 1.3846066998919362, 1.3541555781358356, 1.3242205770874653, 1.2948016967468257, 1.2658989371139167, 1.2375122981887374, 1.2096417799712897, 1.1822873824615723, 1.155449105659585, 1.1291269495653284, 1.1033209141788025, 1.0780309995000072, 1.0532572055289422, 1.0289995322656078, 1.0052579797100036, 0.9820325478621301, 0.9593232367219873, 0.9371300462895749, 0.9154529765648931, 0.8942920275479418, 0.8736471992387209, 0.8535184916372307, 0.8339059047434709, 0.8148094385574416, 0.7962290930791429, 0.7781648683085747, 0.7606167642457369, 0.7435847808906297, 0.727068918243253, 0.711069176303607, 0.6955855550716912, 0.6806180545475062, 0.6661666747310517, 0.6522314156223277, 0.638812277221334, 0.6259092595280711, 0.6135223625425386, 0.6016515862647365, 0.590296930694665, 0.5794583958323241, 0.5691359816777137, 0.5593296882308338, 0.5500395154916844, 0.5412654634602656, 0.5330075321365773, 0.5252657215206196, 0.5180400316123923, 0.5113304624118955, 0.5051370139191291, 0.4994596861340934, 0.49429847905678814, 0.48965339268721353, 0.48552442702536935, 0.48191158207125584, 0.47881485782487254, 0.4762342542862201, 0.47416977145529793, 0.4726214093321064, 0.4715891679166453, 0.47107304720891485, 0.47107304720891485, 0.4715891679166453, 0.4726214093321064, 0.47416977145529793, 0.4762342542862199, 0.47881485782487254, 0.4819115820712556, 0.48552442702536935, 0.48965339268721353, 0.49429847905678814, 0.4994596861340934, 0.5051370139191289, 0.5113304624118953, 0.5180400316123919, 0.5252657215206193, 0.5330075321365773, 0.5412654634602654, 0.5500395154916844, 0.5593296882308336, 0.5691359816777135, 0.5794583958323238, 0.5902969306946648, 0.6016515862647362, 0.6135223625425383, 0.6259092595280706, 0.6388122772213338, 0.6522314156223274, 0.6661666747310513, 0.680618054547506, 0.695585555071691, 0.7110691763036066, 0.7270689182432526, 0.7435847808906293, 0.7606167642457362, 0.7781648683085742, 0.7962290930791427, 0.8148094385574411, 0.8339059047434705, 0.85351849163723, 0.8736471992387207, 0.8942920275479411, 0.9154529765648927, 0.9371300462895742, 0.9593232367219868, 0.9820325478621295, 1.0052579797100032, 1.0289995322656074, 1.0532572055289413, 1.0780309995000068, 1.103320914178802, 1.129126949565328, 1.1554491056595841, 1.1822873824615718, 1.2096417799712889, 1.2375122981887374, 1.2658989371139153, 1.2948016967468252, 1.3242205770874649, 1.3541555781358348, 1.3846066998919357, 1.4155739423557665, 1.4470573055273288, 1.4790567894066204, 1.5115723939936436, 1.5446041192883966, 1.5781519652908806, 1.6122159320010945, 1.6467960194190399, 1.681892227544716, 1.7175045563781213, 1.7536330059192577, 1.7902775761681244, 1.8274382671247222, 1.8651150787890494, 1.9033080111611085, 1.942017064240897, 1.9812422380284174, 2.0209835325236662, 2.0612409477266476, 2.102014483637359, 2.1433041402558004, 2.185109917581973, 2.227431815615875, 2.2702698343575087, 2.3136239738068713, 2.3574942339639664, 2.401880614828791, 2.4467831164013463, 2.4922017386816315, 2.5381364816696483, 2.584587345365396, 2.6315543297688726, 2.679037434880081, 2.7270366606990186, 2.775552007225688, 2.824583474460087, 2.8741310624022174, 2.924194771052077, 2.9747746004096687, 3.0258705504749894, 3.077482621248042, 3.129610812728825, 3.1822551249173374, 3.2354155578135817, 3.2890921114175553, 3.34328478572926, 3.397993580748695, 3.453218496475861, 3.5089595329107564, 3.5652166900533837, 3.621989967903742, 3.679279366461829, 3.737084885727647, 3.795406525701196, 3.8542442863824755, 3.913598167771484, 3.9734681698682257, 4.033854292672696, 4.094756536184898, 4.156174900404829, 4.218109385332492, 4.280559990967886, 4.343526717311008, 4.4070095643618625, 4.4710085321204485 ], [ 4.510233705907969, 4.446234738149384, 4.38275189109853, 4.319785164755407, 4.257334559120014, 4.195400074192351, 4.133981709972419, 4.073079466460218, 4.012693343655747, 3.9528233415590064, 3.893469460169997, 3.8346316994887175, 3.7763100595151684, 3.7185045402493504, 3.6612151416912626, 3.604441863840906, 3.5481847066982786, 3.492443670263383, 3.4372187545362163, 3.3825099595167814, 3.3283172852050766, 3.274640731601103, 3.2214802987048596, 3.1688359865163465, 3.1167077950355635, 3.0650957242625116, 3.01399977419719, 2.9634199448395986, 2.913356236189739, 2.863808648247608, 2.814777181013209, 2.7662618344865404, 2.718262608667602, 2.6707795035563935, 2.6238125191529162, 2.57736165545717, 2.5314269124691533, 2.4860082901888676, 2.441105788616312, 2.3967194077514877, 2.352849147594393, 2.3094950081450296, 2.2666569894033963, 2.2243350913694937, 2.1825293140433217, 2.14123965742488, 2.100466121514169, 2.0602087063111876, 2.0204674118159383, 1.9812422380284183, 1.9425331849486298, 1.9043402525765707, 1.8666634409122427, 1.8295027499556458, 1.7928581797067786, 1.7567297301656422, 1.7211174013322363, 1.6860211932065612, 1.6514411057886154, 1.6173771390784015, 1.583829293075918, 1.5507975677811645, 1.5182819631941413, 1.4862824793148492, 1.4547991161432874, 1.4238318736794566, 1.3933807519233556, 1.3634457508749858, 1.334026870534346, 1.3051241109014367, 1.2767374719762579, 1.2488669537588097, 1.2215125562490923, 1.1946742794471055, 1.1683521233528489, 1.1425460879663225, 1.1172561732875272, 1.0924823793164622, 1.0682247060531278, 1.044483153497524, 1.0212577216496501, 0.9985484105095075, 0.9763552200770951, 0.9546781503524131, 0.9335172013354618, 0.9128723730262411, 0.8927436654247509, 0.8731310785309911, 0.8540346123449618, 0.8354542668666631, 0.8173900420960949, 0.7998419380332571, 0.7828099546781497, 0.7662940920307733, 0.750294350091127, 0.7348107288592116, 0.7198432283350265, 0.705391848518572, 0.6914565894098479, 0.6780374510088543, 0.6651344333155913, 0.6527475363300588, 0.6408767600522567, 0.6295221044821853, 0.6186835696198443, 0.608361155465234, 0.5985548620183541, 0.5892646892792048, 0.5804906372477858, 0.5722327059240975, 0.5644908953081398, 0.5572652053999125, 0.5505556361994157, 0.5443621877066493, 0.5386848599216136, 0.5335236528443084, 0.5288785664747337, 0.5247496008128896, 0.5211367558587761, 0.5180400316123928, 0.5154594280737403, 0.5133949452428181, 0.5118465831196266, 0.5108143417041655, 0.5102982209964351, 0.5102982209964351, 0.5108143417041655, 0.5118465831196266, 0.5133949452428181, 0.5154594280737401, 0.5180400316123928, 0.5211367558587758, 0.5247496008128896, 0.5288785664747337, 0.5335236528443084, 0.5386848599216136, 0.5443621877066491, 0.5505556361994155, 0.5572652053999121, 0.5644908953081396, 0.5722327059240975, 0.5804906372477856, 0.5892646892792046, 0.5985548620183538, 0.6083611554652337, 0.618683569619844, 0.629522104482185, 0.6408767600522565, 0.6527475363300586, 0.6651344333155909, 0.678037451008854, 0.6914565894098477, 0.7053918485185715, 0.7198432283350262, 0.7348107288592112, 0.750294350091127, 0.7662940920307728, 0.7828099546781497, 0.7998419380332566, 0.8173900420960944, 0.8354542668666629, 0.8540346123449614, 0.8731310785309909, 0.8927436654247503, 0.9128723730262409, 0.9335172013354613, 0.9546781503524129, 0.9763552200770944, 0.998548410509507, 1.0212577216496497, 1.0444831534975232, 1.0682247060531278, 1.0924823793164617, 1.1172561732875268, 1.142546087966322, 1.1683521233528484, 1.1946742794471046, 1.2215125562490918, 1.2488669537588093, 1.2767374719762574, 1.3051241109014358, 1.3340268705343452, 1.3634457508749853, 1.3933807519233552, 1.4238318736794562, 1.454799116143287, 1.4862824793148488, 1.5182819631941404, 1.5507975677811636, 1.5838292930759166, 1.6173771390784006, 1.6514411057886145, 1.6860211932065603, 1.721117401332236, 1.7567297301656413, 1.7928581797067782, 1.8295027499556444, 1.8666634409122427, 1.9043402525765698, 1.942533184948629, 1.9812422380284174, 2.0204674118159374, 2.0602087063111867, 2.1004661215141676, 2.1412396574248795, 2.1825293140433204, 2.2243350913694933, 2.266656989403395, 2.3094950081450287, 2.352849147594392, 2.396719407751487, 2.441105788616311, 2.4860082901888667, 2.5314269124691515, 2.5773616554571683, 2.6238125191529162, 2.6707795035563926, 2.718262608667601, 2.7662618344865386, 2.8147771810132083, 2.8638086482476073, 2.9133562361897374, 2.963419944839597, 3.013999774197189, 3.06509572426251, 3.1167077950355626, 3.1688359865163456, 3.221480298704858, 3.274640731601102, 3.3283172852050757, 3.3825099595167805, 3.4372187545362145, 3.4924436702633814, 3.548184706698277, 3.604441863840904, 3.6612151416912617, 3.7185045402493486, 3.7763100595151675, 3.8346316994887157, 3.893469460169996, 3.9528233415590046, 4.012693343655746, 4.073079466460216, 4.133981709972418, 4.195400074192349, 4.257334559120013, 4.319785164755406, 4.382751891098528, 4.446234738149383, 4.510233705907969 ], [ 4.549975000403218, 4.485976032644634, 4.42249318559378, 4.359526459250656, 4.297075853615263, 4.2351413686876, 4.173723004467668, 4.112820760955467, 4.052434638150996, 3.992564636054256, 3.9332107546652457, 3.8743729939839664, 3.816051354010418, 3.7582458347446, 3.7009564361865124, 3.644183158336155, 3.5879260011935274, 3.532184964758632, 3.476960049031466, 3.422251254012031, 3.3680585797003264, 3.314382026096352, 3.2612215932001085, 3.2085772810115953, 3.1564490895308133, 3.1048370187577614, 3.0537410686924398, 3.0031612393348484, 2.953097530684988, 2.903549942742858, 2.854518475508458, 2.8060031289817893, 2.7580039031628507, 2.7105207980516433, 2.663553813648166, 2.617102949952419, 2.571168206964402, 2.5257495846841174, 2.480847083111561, 2.4364607022467375, 2.3925904420896424, 2.3492363026402785, 2.3063982838986457, 2.264076385864743, 2.2222706085385706, 2.1809809519201293, 2.140207416009418, 2.0999500008064373, 2.0602087063111876, 2.0209835325236676, 1.9822744794438791, 1.9440815470718205, 1.9064047354074924, 1.8692440444508946, 1.832599474202028, 1.7964710246608915, 1.7608586958274857, 1.72576248770181, 1.6911824002838651, 1.6571184335736513, 1.6235705875711668, 1.5905388622764143, 1.558023257689391, 1.5260237738100986, 1.4945404106385372, 1.463573168174706, 1.433122046418605, 1.403187045370235, 1.3737681650295954, 1.3448654053966864, 1.3164787664715072, 1.288608248254059, 1.2612538507443416, 1.2344155739423543, 1.2080934178480982, 1.1822873824615723, 1.1569974677827766, 1.1322236738117115, 1.1079660005483771, 1.0842244479927734, 1.0609990161448994, 1.0382897050047566, 1.0160965145723444, 0.9944194448476624, 0.9732584958307111, 0.9526136675214905, 0.9324849599200002, 0.9128723730262405, 0.8937759068402111, 0.8751955613619125, 0.8571313365913442, 0.8395832325285064, 0.8225512491733991, 0.8060353865260226, 0.7900356445863763, 0.7745520233544609, 0.7595845228302758, 0.7451331430138213, 0.7311978839050972, 0.7177787455041036, 0.7048757278108406, 0.6924888308253081, 0.680618054547506, 0.6692633989774346, 0.6584248641150936, 0.6481024499604833, 0.6382961565136034, 0.6290059837744542, 0.6202319317430351, 0.6119740004193468, 0.6042321898033891, 0.5970064998951619, 0.590296930694665, 0.5841034822018987, 0.578426154416863, 0.5732649473395577, 0.5686198609699831, 0.5644908953081389, 0.5608780503540254, 0.5577813261076421, 0.5552007225689897, 0.5531362397380675, 0.5515878776148759, 0.5505556361994148, 0.5500395154916844, 0.5500395154916844, 0.5505556361994148, 0.5515878776148759, 0.5531362397380675, 0.5552007225689894, 0.5577813261076421, 0.5608780503540252, 0.5644908953081389, 0.5686198609699831, 0.5732649473395577, 0.578426154416863, 0.5841034822018984, 0.5902969306946648, 0.5970064998951614, 0.6042321898033889, 0.6119740004193468, 0.6202319317430349, 0.6290059837744539, 0.6382961565136032, 0.648102449960483, 0.6584248641150934, 0.6692633989774344, 0.6806180545475058, 0.6924888308253079, 0.7048757278108402, 0.7177787455041034, 0.731197883905097, 0.7451331430138208, 0.7595845228302756, 0.7745520233544605, 0.7900356445863763, 0.8060353865260221, 0.8225512491733991, 0.839583232528506, 0.8571313365913438, 0.8751955613619122, 0.8937759068402107, 0.9128723730262402, 0.9324849599199996, 0.9526136675214902, 0.9732584958307107, 0.9944194448476622, 1.016096514572344, 1.0382897050047566, 1.060999016144899, 1.0842244479927725, 1.1079660005483767, 1.132223673811711, 1.1569974677827761, 1.1822873824615714, 1.2080934178480978, 1.234415573942354, 1.2612538507443412, 1.2886082482540582, 1.3164787664715067, 1.344865405396685, 1.3737681650295945, 1.4031870453702346, 1.433122046418604, 1.4635731681747055, 1.4945404106385363, 1.5260237738100981, 1.5580232576893902, 1.5905388622764134, 1.623570587571166, 1.6571184335736504, 1.6911824002838642, 1.7257624877018092, 1.7608586958274852, 1.7964710246608906, 1.8325994742020275, 1.8692440444508938, 1.9064047354074916, 1.9440815470718191, 1.9822744794438778, 2.0209835325236662, 2.0602087063111867, 2.099950000806436, 2.1402074160094173, 2.1809809519201284, 2.2222706085385697, 2.264076385864742, 2.3063982838986448, 2.3492363026402785, 2.392590442089641, 2.4364607022467357, 2.48084708311156, 2.5257495846841156, 2.5711682069644013, 2.617102949952418, 2.663553813648165, 2.7105207980516424, 2.7580039031628507, 2.8060031289817884, 2.854518475508457, 2.903549942742856, 2.953097530684987, 3.0031612393348466, 3.053741068692438, 3.1048370187577587, 3.1564490895308115, 3.2085772810115945, 3.2612215932001067, 3.314382026096351, 3.3680585797003246, 3.4222512540120302, 3.4769600490314643, 3.5321849647586303, 3.5879260011935257, 3.644183158336153, 3.7009564361865115, 3.7582458347445984, 3.8160513540104173, 3.8743729939839655, 3.933210754665245, 3.9925646360542544, 4.052434638150995, 4.112820760955465, 4.173723004467667, 4.235141368687598, 4.297075853615262, 4.359526459250655, 4.422493185593778, 4.485976032644633, 4.549975000403218 ], [ 4.590232415606199, 4.5262334478476145, 4.462750600796761, 4.399783874453638, 4.337333268818244, 4.275398783890582, 4.21398041967065, 4.1530781761584485, 4.092692053353977, 4.032822051257237, 3.9734681698682266, 3.914630409186948, 3.856308769213399, 3.798503249947581, 3.7412138513894933, 3.6844405735391366, 3.6281834163965083, 3.572442379961613, 3.517217464234447, 3.462508669215012, 3.4083159949033073, 3.3546394412993337, 3.3014790084030903, 3.248834696214576, 3.196706504733794, 3.1450944339607423, 3.0939984838954206, 3.0434186545378292, 2.9933549458879694, 2.943807357945839, 2.8947758907114394, 2.8462605441847706, 2.798261318365832, 2.750778213254624, 2.703811228851147, 2.6573603651554003, 2.6114256221673835, 2.5660069998870982, 2.5211044983145423, 2.4767181174497184, 2.4328478572926233, 2.38949371784326, 2.3466556991016265, 2.304333801067724, 2.262528023741552, 2.22123836712311, 2.180464831212399, 2.140207416009418, 2.1004661215141684, 2.061240947726649, 2.0225318946468605, 1.9843389622748013, 1.9466621506104733, 1.909501459653876, 1.8728568894050088, 1.8367284398638724, 1.801116111030467, 1.7660199029047914, 1.731439815486846, 1.6973758487766322, 1.663828002774148, 1.6307962774793952, 1.598280672892372, 1.5662811890130799, 1.534797825841518, 1.5038305833776868, 1.4733794616215863, 1.443444460573216, 1.4140255802325763, 1.3851228205996673, 1.3567361816744885, 1.3288656634570404, 1.3015112659473225, 1.2746729891453357, 1.248350833051079, 1.2225447976645532, 1.1972548829857574, 1.1724810890146928, 1.1482234157513584, 1.1244818631957543, 1.1012564313478808, 1.078547120207738, 1.0563539297753257, 1.0346768600506437, 1.0135159110336924, 0.9928710827244716, 0.9727423751229813, 0.9531297882292216, 0.9340333220431922, 0.9154529765648936, 0.8973887517943253, 0.8798406477314875, 0.8628086643763804, 0.8462928017290037, 0.8302930597893576, 0.8148094385574418, 0.7998419380332569, 0.7853905582168024, 0.7714552991080783, 0.7580361607070847, 0.7451331430138217, 0.7327462460282892, 0.7208754697504871, 0.7095208141804157, 0.6986822793180747, 0.6883598651634644, 0.6785535717165845, 0.669263398977435, 0.6604893469460162, 0.6522314156223279, 0.6444896050063702, 0.637263915098143, 0.6305543458976461, 0.6243608974048798, 0.618683569619844, 0.6135223625425388, 0.6088772761729642, 0.60474831051112, 0.6011354655570065, 0.5980387413106232, 0.5954581377719708, 0.5933936549410486, 0.591845292817857, 0.5908130514023959, 0.5902969306946655, 0.5902969306946655, 0.5908130514023959, 0.591845292817857, 0.5933936549410486, 0.5954581377719705, 0.5980387413106232, 0.6011354655570063, 0.60474831051112, 0.6088772761729642, 0.6135223625425388, 0.618683569619844, 0.6243608974048795, 0.6305543458976459, 0.6372639150981425, 0.64448960500637, 0.6522314156223279, 0.660489346946016, 0.669263398977435, 0.6785535717165843, 0.6883598651634641, 0.6986822793180745, 0.7095208141804155, 0.7208754697504869, 0.732746246028289, 0.7451331430138213, 0.7580361607070845, 0.7714552991080781, 0.7853905582168019, 0.7998419380332566, 0.8148094385574416, 0.8302930597893572, 0.8462928017290032, 0.8628086643763799, 0.8798406477314868, 0.8973887517943249, 0.9154529765648933, 0.9340333220431918, 0.9531297882292211, 0.9727423751229807, 0.9928710827244713, 1.013515911033692, 1.0346768600506433, 1.0563539297753248, 1.0785471202077375, 1.1012564313478803, 1.1244818631957538, 1.148223415751358, 1.172481089014692, 1.1972548829857574, 1.2225447976645523, 1.248350833051079, 1.2746729891453352, 1.3015112659473225, 1.3288656634570395, 1.356736181674488, 1.3851228205996664, 1.4140255802325754, 1.4434444605732155, 1.4733794616215854, 1.5038305833776864, 1.5347978258415171, 1.5662811890130794, 1.598280672892371, 1.6307962774793943, 1.6638280027741468, 1.6973758487766313, 1.7314398154868451, 1.7660199029047905, 1.801116111030466, 1.8367284398638715, 1.8728568894050088, 1.9095014596538746, 1.9466621506104729, 1.9843389622748004, 2.022531894646859, 2.0612409477266476, 2.1004661215141676, 2.1402074160094173, 2.180464831212398, 2.2212383671231097, 2.2625280237415506, 2.3043338010677235, 2.3466556991016256, 2.3894937178432594, 2.4328478572926224, 2.476718117449717, 2.521104498314541, 2.566006999887097, 2.611425622167382, 2.657360365155399, 2.7038112288511464, 2.7507782132546232, 2.7982613183658316, 2.8462605441847693, 2.8947758907114385, 2.9438073579458375, 2.993354945887968, 3.0434186545378275, 3.093998483895419, 3.1450944339607396, 3.1967065047337933, 3.248834696214576, 3.3014790084030885, 3.354639441299332, 3.4083159949033064, 3.462508669215011, 3.517217464234445, 3.572442379961611, 3.6281834163965065, 3.684440573539135, 3.7412138513894924, 3.7985032499475793, 3.856308769213398, 3.9146304091869464, 3.9734681698682266, 4.032822051257235, 4.092692053353977, 4.153078176158447, 4.213980419670648, 4.27539878389058, 4.337333268818243, 4.399783874453636, 4.462750600796759, 4.526233447847614, 4.590232415606199 ], [ 4.631005951516911, 4.567006983758326, 4.5035241367074725, 4.440557410364349, 4.378106804728956, 4.316172319801293, 4.254753955581361, 4.19385171206916, 4.133465589264689, 4.073595587167949, 4.014241705778939, 3.9554039450976592, 3.89708230512411, 3.839276785858292, 3.7819873873002052, 3.7252141094498477, 3.6689569523072203, 3.613215915872325, 3.557991000145158, 3.503282205125723, 3.4490895308140193, 3.3954129772100448, 3.3422525443138014, 3.289608232125288, 3.237480040644506, 3.1858679698714543, 3.1347720198061317, 3.0841921904485403, 3.034128481798681, 2.9845808938565503, 2.935549426622151, 2.887034080095482, 2.8390348542765436, 2.7915517491653357, 2.7445847647618584, 2.698133901066112, 2.652199158078095, 2.6067805357978098, 2.561878034225254, 2.51749165336043, 2.4736213932033353, 2.4302672537539713, 2.3874292350123385, 2.345107336978436, 2.3033015596522635, 2.262011903033822, 2.221238367123111, 2.1809809519201298, 2.1412396574248804, 2.10201448363736, 2.0633054305575715, 2.025112498185513, 1.9874356865211849, 1.9502749955645875, 1.9136304253157208, 1.8775019757745843, 1.841889646941178, 1.806793438815503, 1.7722133513975575, 1.7381493846873437, 1.7046015386848596, 1.6715698133901067, 1.6390542088030835, 1.6070547249237914, 1.5755713617522296, 1.5446041192883984, 1.5141529975322978, 1.4842179964839275, 1.4547991161432878, 1.4258963565103788, 1.3975097175851996, 1.369639199367752, 1.3422848018580344, 1.3154465250560472, 1.2891243689617906, 1.2633183335752647, 1.2380284188964694, 1.2132546249254044, 1.18899695166207, 1.1652553991064658, 1.1420299672585923, 1.1193206561184494, 1.0971274656860368, 1.0754503959613553, 1.054289446944404, 1.0336446186351829, 1.0135159110336929, 0.9939033241399331, 0.9748068579539038, 0.9562265124756051, 0.9381622877050368, 0.920614183642199, 0.9035822002870919, 0.8870663376397152, 0.8710665957000692, 0.8555829744681533, 0.8406154739439684, 0.8261640941275139, 0.8122288350187898, 0.7988096966177962, 0.7859066789245333, 0.7735197819390007, 0.7616490056611986, 0.7502943500911272, 0.7394558152287862, 0.7291334010741759, 0.719327107627296, 0.7100369348881466, 0.7012628828567278, 0.6930049515330394, 0.6852631409170817, 0.6780374510088545, 0.6713278818083577, 0.6651344333155913, 0.6594571055305556, 0.6542958984532503, 0.6496508120836757, 0.6455218464218315, 0.641909001467718, 0.6388122772213347, 0.6362316736826823, 0.6341671908517601, 0.6326188287285686, 0.6315865873131075, 0.631070466605377, 0.631070466605377, 0.6315865873131075, 0.6326188287285686, 0.6341671908517601, 0.6362316736826821, 0.6388122772213347, 0.6419090014677178, 0.6455218464218315, 0.6496508120836757, 0.6542958984532503, 0.6594571055305556, 0.6651344333155911, 0.6713278818083575, 0.678037451008854, 0.6852631409170815, 0.6930049515330394, 0.7012628828567276, 0.7100369348881466, 0.7193271076272958, 0.7291334010741757, 0.739455815228786, 0.750294350091127, 0.7616490056611984, 0.7735197819390005, 0.7859066789245328, 0.798809696617796, 0.8122288350187896, 0.8261640941275135, 0.8406154739439682, 0.8555829744681531, 0.8710665957000687, 0.8870663376397148, 0.9035822002870915, 0.9206141836421984, 0.9381622877050364, 0.9562265124756049, 0.9748068579539033, 0.9939033241399327, 1.0135159110336924, 1.0336446186351829, 1.054289446944403, 1.0754503959613548, 1.0971274656860364, 1.119320656118449, 1.1420299672585914, 1.1652553991064654, 1.1889969516620695, 1.2132546249254035, 1.238028418896469, 1.2633183335752642, 1.2891243689617902, 1.3154465250560463, 1.342284801858034, 1.369639199367751, 1.3975097175851996, 1.4258963565103775, 1.4547991161432874, 1.484217996483927, 1.514152997532297, 1.544604119288398, 1.5755713617522287, 1.607054724923791, 1.6390542088030826, 1.6715698133901058, 1.7046015386848588, 1.7381493846873428, 1.7722133513975566, 1.806793438815502, 1.841889646941178, 1.8775019757745834, 1.91363042531572, 1.9502749955645866, 1.9874356865211844, 2.0251124981855115, 2.0633054305575707, 2.102014483637359, 2.1412396574248795, 2.1809809519201284, 2.2212383671231097, 2.2620119030338213, 2.3033015596522626, 2.345107336978435, 2.387429235012337, 2.430267253753971, 2.4736213932033335, 2.5174916533604286, 2.561878034225253, 2.6067805357978084, 2.6521991580780937, 2.6981339010661105, 2.744584764761858, 2.7915517491653348, 2.839034854276543, 2.887034080095481, 2.93554942662215, 2.984580893856549, 3.03412848179868, 3.0841921904485385, 3.134772019806131, 3.1858679698714516, 3.2374800406445043, 3.2896082321252873, 3.3422525443137996, 3.395412977210044, 3.4490895308140175, 3.503282205125723, 3.5579910001451562, 3.613215915872323, 3.6689569523072185, 3.725214109449846, 3.7819873873002035, 3.8392767858582904, 3.89708230512411, 3.9554039450976575, 4.014241705778938, 4.073595587167947, 4.133465589264688, 4.193851712069158, 4.25475395558136, 4.316172319801291, 4.378106804728954, 4.440557410364348, 4.503524136707471, 4.567006983758326, 4.631005951516911 ], [ 4.672295608135352, 4.608296640376767, 4.544813793325913, 4.48184706698279, 4.419396461347397, 4.357461976419734, 4.296043612199802, 4.235141368687601, 4.17475524588313, 4.114885243786389, 4.05553136239738, 3.9966936017161006, 3.9383719617425514, 3.8805664424767334, 3.8232770439186456, 3.766503766068289, 3.7102466089256616, 3.6545055724907662, 3.5992806567635993, 3.5445718617441644, 3.4903791874324597, 3.436702633828486, 3.3835422009322427, 3.3308978887437295, 3.2787696972629465, 3.2271576264898947, 3.176061676424573, 3.1254818470669816, 3.075418138417122, 3.025870550474991, 2.976839083240592, 2.9283237367139234, 2.880324510894985, 2.8328414057837765, 2.7858744213802993, 2.739423557684553, 2.6934888146965363, 2.6480701924162506, 2.603167690843695, 2.5587813099788708, 2.514911049821776, 2.4715569103724127, 2.4287188916307794, 2.3863969935968767, 2.3445912162707048, 2.303301559652263, 2.262528023741552, 2.2222706085385706, 2.1825293140433213, 2.1433041402558013, 2.104595087176013, 2.0664021548039537, 2.0287253431396257, 1.9915646521830288, 1.9549200819341617, 1.9187916323930252, 1.8831793035596194, 1.8480830954339442, 1.8135030080159984, 1.7794390413057846, 1.745891195303301, 1.7128594700085475, 1.6803438654215244, 1.6483443815422323, 1.6168610183706704, 1.5858937759068397, 1.5554426541507387, 1.5255076531023688, 1.4960887727617291, 1.4671860131288197, 1.438799374203641, 1.4109288559861928, 1.3835744584764753, 1.3567361816744885, 1.330414025580232, 1.3046079901937055, 1.2793180755149103, 1.2545442815438452, 1.2302866082805108, 1.2065450557249071, 1.1833196238770332, 1.1606103127368903, 1.1384171223044781, 1.1167400525797961, 1.0955791035628448, 1.0749342752536242, 1.0548055676521337, 1.035192980758374, 1.0160965145723448, 0.9975161690940462, 0.9794519443234779, 0.9619038402606401, 0.9448718569055328, 0.9283559942581563, 0.91235625231851, 0.8968726310865947, 0.8819051305624095, 0.867453750745955, 0.8535184916372309, 0.8400993532362373, 0.8271963355429743, 0.8148094385574418, 0.8029386622796397, 0.7915840067095683, 0.7807454718472273, 0.770423057692617, 0.7606167642457371, 0.7513265915065879, 0.7425525394751689, 0.7342946081514805, 0.7265527975355228, 0.7193271076272956, 0.7126175384267988, 0.7064240899340324, 0.7007467621489967, 0.6955855550716914, 0.6909404687021168, 0.6868115030402726, 0.6831986580861591, 0.6801019338397758, 0.6775213303011234, 0.6754568474702012, 0.6739084853470096, 0.6728762439315485, 0.6723601232238181, 0.6723601232238181, 0.6728762439315485, 0.6739084853470096, 0.6754568474702012, 0.6775213303011232, 0.6801019338397758, 0.6831986580861589, 0.6868115030402726, 0.6909404687021168, 0.6955855550716914, 0.7007467621489967, 0.7064240899340322, 0.7126175384267985, 0.7193271076272951, 0.7265527975355226, 0.7342946081514805, 0.7425525394751686, 0.7513265915065876, 0.7606167642457369, 0.7704230576926168, 0.7807454718472271, 0.7915840067095681, 0.8029386622796395, 0.8148094385574416, 0.8271963355429739, 0.8400993532362371, 0.8535184916372307, 0.8674537507459545, 0.8819051305624093, 0.8968726310865942, 0.91235625231851, 0.9283559942581558, 0.9448718569055328, 0.9619038402606397, 0.9794519443234775, 0.997516169094046, 1.0160965145723444, 1.035192980758374, 1.0548055676521333, 1.0749342752536237, 1.0955791035628444, 1.1167400525797961, 1.1384171223044777, 1.1606103127368903, 1.1833196238770327, 1.2065450557249062, 1.2302866082805108, 1.2545442815438448, 1.2793180755149098, 1.304607990193705, 1.3304140255802315, 1.3567361816744876, 1.3835744584764749, 1.4109288559861923, 1.4387993742036405, 1.4671860131288188, 1.4960887727617282, 1.5255076531023684, 1.5554426541507382, 1.5858937759068392, 1.61686101837067, 1.6483443815422318, 1.6803438654215235, 1.7128594700085467, 1.7458911953032996, 1.7794390413057837, 1.8135030080159975, 1.8480830954339433, 1.883179303559619, 1.9187916323930243, 1.9549200819341612, 1.9915646521830275, 2.0287253431396257, 2.066402154803953, 2.104595087176012, 2.1433041402558004, 2.1825293140433204, 2.2222706085385697, 2.2625280237415506, 2.3033015596522626, 2.3445912162707034, 2.3863969935968763, 2.428718891630778, 2.4715569103724118, 2.514911049821775, 2.55878130997887, 2.603167690843694, 2.6480701924162497, 2.6934888146965346, 2.7394235576845514, 2.7858744213802993, 2.8328414057837756, 2.880324510894984, 2.9283237367139217, 2.9768390832405913, 3.0258705504749903, 3.0754181384171204, 3.12548184706698, 3.176061676424572, 3.227157626489893, 3.2787696972629456, 3.3308978887437286, 3.383542200932241, 3.436702633828485, 3.490379187432459, 3.5445718617441635, 3.5992806567635975, 3.6545055724907645, 3.71024660892566, 3.766503766068287, 3.8232770439186448, 3.8805664424767317, 3.9383719617425506, 3.9966936017160988, 4.055531362397379, 4.114885243786388, 4.174755245883129, 4.235141368687599, 4.296043612199801, 4.357461976419732, 4.419396461347396, 4.481847066982789, 4.544813793325911, 4.608296640376766, 4.672295608135352 ], [ 4.714101385461524, 4.650102417702939, 4.586619570652086, 4.5236528443089625, 4.46120223867357, 4.399267753745907, 4.337849389525974, 4.276947146013773, 4.2165610232093025, 4.156691021112563, 4.097337139723552, 4.038499379042273, 3.980177739068724, 3.922372219802906, 3.865082821244819, 3.8083095433944614, 3.752052386251834, 3.6963113498169387, 3.6410864340897717, 3.586377639070337, 3.532184964758633, 3.4785084111546585, 3.425347978258415, 3.372703666069902, 3.32057547458912, 3.268963403816068, 3.2178674537507455, 3.167287624393154, 3.1172239157432946, 3.0676763278011645, 3.0186448605667646, 2.970129514040096, 2.9221302882211573, 2.8746471831099494, 2.827680198706472, 2.7812293350107256, 2.7352945920227087, 2.6898759697424235, 2.6449734681698676, 2.6005870873050436, 2.556716827147949, 2.513362687698585, 2.470524668956952, 2.4282027709230496, 2.386396993596877, 2.345107336978436, 2.304333801067725, 2.2640763858647435, 2.224335091369494, 2.1851099175819737, 2.1464008645021853, 2.1082079321301266, 2.0705311204657986, 2.033370429509201, 1.9967258592603345, 1.960597409719198, 1.9249850808857918, 1.8898888727601166, 1.8553087853421713, 1.8212448186319574, 1.7876969726294734, 1.7546652473347204, 1.7221496427476972, 1.6901501588684051, 1.6586667956968433, 1.627699553233012, 1.5972484314769115, 1.5673134304285412, 1.5378945500879015, 1.5089917904549925, 1.4806051515298133, 1.4527346333123656, 1.4253802358026482, 1.398541959000661, 1.3722198029064043, 1.3464137675198784, 1.3211238528410831, 1.296350058870018, 1.2720923856066837, 1.2483508330510795, 1.225125401203206, 1.2024160900630632, 1.1802228996306505, 1.158545829905969, 1.1373848808890177, 1.1167400525797966, 1.0966113449783066, 1.0769987580845468, 1.0579022918985177, 1.0393219464202188, 1.0212577216496506, 1.0037096175868125, 0.9866776342317056, 0.9701617715843289, 0.9541620296446829, 0.9386784084127671, 0.9237109078885821, 0.9092595280721276, 0.8953242689634036, 0.8819051305624099, 0.869002112869147, 0.8566152158836144, 0.8447444396058124, 0.8333897840357409, 0.8225512491734, 0.8122288350187896, 0.8024225415719097, 0.7931323688327603, 0.7843583168013415, 0.7761003854776531, 0.7683585748616955, 0.7611328849534682, 0.7544233157529714, 0.748229867260205, 0.7425525394751693, 0.737391332397864, 0.7327462460282894, 0.7286172803664452, 0.7250044354123317, 0.7219077111659484, 0.719327107627296, 0.7172626247963738, 0.7157142626731823, 0.7146820212577212, 0.7141659005499907, 0.7141659005499907, 0.7146820212577212, 0.7157142626731823, 0.7172626247963738, 0.7193271076272958, 0.7219077111659484, 0.7250044354123315, 0.7286172803664452, 0.7327462460282894, 0.737391332397864, 0.7425525394751693, 0.7482298672602048, 0.7544233157529712, 0.7611328849534678, 0.7683585748616952, 0.7761003854776531, 0.7843583168013413, 0.7931323688327603, 0.8024225415719095, 0.8122288350187894, 0.8225512491733997, 0.8333897840357407, 0.8447444396058121, 0.8566152158836142, 0.8690021128691465, 0.8819051305624097, 0.8953242689634033, 0.9092595280721272, 0.9237109078885819, 0.9386784084127668, 0.9541620296446824, 0.9701617715843285, 0.9866776342317052, 1.003709617586812, 1.0212577216496501, 1.0393219464202184, 1.0579022918985168, 1.0769987580845464, 1.0966113449783061, 1.1167400525797966, 1.1373848808890168, 1.1585458299059685, 1.18022289963065, 1.2024160900630627, 1.2251254012032051, 1.248350833051079, 1.2720923856066833, 1.2963500588700172, 1.3211238528410827, 1.346413767519878, 1.3722198029064039, 1.39854195900066, 1.4253802358026477, 1.4527346333123647, 1.4806051515298133, 1.5089917904549912, 1.537894550087901, 1.5673134304285408, 1.5972484314769106, 1.6276995532330116, 1.6586667956968424, 1.6901501588684047, 1.7221496427476963, 1.7546652473347195, 1.7876969726294725, 1.8212448186319565, 1.8553087853421704, 1.8898888727601157, 1.9249850808857918, 1.9605974097191972, 1.9967258592603336, 2.0333704295092003, 2.070531120465798, 2.1082079321301253, 2.1464008645021844, 2.185109917581973, 2.2243350913694933, 2.264076385864742, 2.3043338010677235, 2.345107336978435, 2.3863969935968763, 2.4282027709230487, 2.470524668956951, 2.5133626876985846, 2.5567168271479472, 2.6005870873050423, 2.6449734681698667, 2.689875969742422, 2.7352945920227074, 2.7812293350107242, 2.8276801987064717, 2.8746471831099485, 2.922130288221157, 2.9701295140400945, 3.0186448605667637, 3.0676763278011627, 3.1172239157432937, 3.1672876243931523, 3.2178674537507446, 3.2689634038160653, 3.320575474589118, 3.372703666069901, 3.4253479782584133, 3.4785084111546576, 3.532184964758631, 3.586377639070337, 3.64108643408977, 3.696311349816937, 3.7520523862518322, 3.8083095433944596, 3.865082821244817, 3.922372219802904, 3.980177739068724, 4.038499379042271, 4.097337139723551, 4.156691021112561, 4.216561023209302, 4.276947146013772, 4.3378493895259735, 4.399267753745905, 4.461202238673568, 4.523652844308962, 4.5866195706520845, 4.650102417702939, 4.714101385461524 ], [ 4.756423283495426, 4.692424315736842, 4.628941468685988, 4.565974742342865, 4.503524136707472, 4.441589651779809, 4.380171287559877, 4.319269044047676, 4.258882921243204, 4.1990129191464645, 4.139659037757454, 4.080821277076176, 4.0224996371026265, 3.9646941178368085, 3.9074047192787207, 3.850631441428364, 3.7943742842857358, 3.7386332478508404, 3.6834083321236744, 3.6286995371042394, 3.5745068627925347, 3.520830309188561, 3.4676698762923177, 3.4150255641038036, 3.3628973726230216, 3.3112853018499697, 3.260189351784648, 3.2096095224270567, 3.1595458137771963, 3.1099982258350662, 3.0609667586006672, 3.0124514120739985, 2.9644521862550595, 2.9169690811438516, 2.8700020967403743, 2.8235512330446277, 2.777616490056611, 2.7321978677763257, 2.6872953662037697, 2.642908985338946, 2.5990387251818508, 2.5556845857324872, 2.512846566990854, 2.4705246689569513, 2.4287188916307794, 2.3874292350123376, 2.3466556991016265, 2.3063982838986457, 2.266656989403396, 2.2274318156158763, 2.188722762536088, 2.1505298301640288, 2.1128530184997008, 2.0756923275431034, 2.0390477572942363, 2.0029193077531, 1.9673069789196944, 1.9322107707940188, 1.8976306833760734, 1.8635667166658596, 1.8300188706633755, 1.7969871453686226, 1.7644715407815994, 1.7324720569023073, 1.7009886937307455, 1.6700214512669143, 1.6395703295108137, 1.6096353284624434, 1.5802164481218037, 1.5513136884888947, 1.522927049563716, 1.4950565313462678, 1.46770213383655, 1.440863857034563, 1.4145417009403065, 1.3887356655537806, 1.3634457508749849, 1.3386719569039203, 1.3144142836405859, 1.2906727310849817, 1.2674472992371082, 1.2447379880969653, 1.2225447976645532, 1.2008677279398712, 1.1797067789229199, 1.1590619506136992, 1.1389332430122088, 1.119320656118449, 1.1002241899324199, 1.081643844454121, 1.0635796196835527, 1.0460315156207147, 1.0289995322656078, 1.012483669618231, 0.9964839276785851, 0.9810003064466692, 0.9660328059224843, 0.9515814261060298, 0.9376461669973057, 0.9242270285963121, 0.9113240109030492, 0.8989371139175166, 0.8870663376397145, 0.8757116820696431, 0.8648731472073021, 0.8545507330526918, 0.8447444396058119, 0.8354542668666625, 0.8266802148352437, 0.8184222835115553, 0.8106804728955976, 0.8034547829873704, 0.7967452137868736, 0.7905517652941072, 0.7848744375090715, 0.7797132304317662, 0.7750681440621916, 0.7709391784003474, 0.7673263334462339, 0.7642296091998506, 0.7616490056611982, 0.759584522830276, 0.7580361607070845, 0.7570039192916234, 0.7564877985838929, 0.7564877985838929, 0.7570039192916234, 0.7580361607070845, 0.759584522830276, 0.761649005661198, 0.7642296091998506, 0.7673263334462337, 0.7709391784003474, 0.7750681440621916, 0.7797132304317662, 0.7848744375090715, 0.790551765294107, 0.7967452137868734, 0.8034547829873699, 0.8106804728955974, 0.8184222835115553, 0.8266802148352435, 0.8354542668666625, 0.8447444396058117, 0.8545507330526916, 0.8648731472073019, 0.8757116820696429, 0.8870663376397143, 0.8989371139175164, 0.9113240109030487, 0.9242270285963119, 0.9376461669973055, 0.9515814261060294, 0.9660328059224841, 0.981000306446669, 0.9964839276785846, 1.0124836696182307, 1.0289995322656074, 1.0460315156207143, 1.0635796196835523, 1.0816438444541205, 1.100224189932419, 1.1193206561184486, 1.1389332430122083, 1.1590619506136988, 1.1797067789229194, 1.2008677279398707, 1.2225447976645523, 1.244737988096965, 1.2674472992371077, 1.2906727310849813, 1.3144142836405854, 1.3386719569039194, 1.3634457508749849, 1.3887356655537797, 1.4145417009403065, 1.4408638570345627, 1.46770213383655, 1.495056531346267, 1.5229270495637155, 1.5513136884888938, 1.5802164481218028, 1.609635328462443, 1.6395703295108128, 1.6700214512669138, 1.7009886937307446, 1.7324720569023069, 1.7644715407815985, 1.7969871453686217, 1.8300188706633742, 1.8635667166658587, 1.8976306833760725, 1.932210770794018, 1.9673069789196935, 2.002919307753099, 2.0390477572942363, 2.075692327543102, 2.1128530184997003, 2.150529830164028, 2.1887227625360866, 2.227431815615875, 2.266656989403395, 2.3063982838986448, 2.3466556991016256, 2.387429235012337, 2.428718891630778, 2.470524668956951, 2.512846566990853, 2.555684585732487, 2.59903872518185, 2.6429089853389445, 2.6872953662037684, 2.7321978677763243, 2.7776164900566096, 2.8235512330446264, 2.870002096740374, 2.9169690811438507, 2.964452186255059, 3.0124514120739967, 3.0609667586006655, 3.1099982258350654, 3.1595458137771955, 3.209609522427055, 3.2601893517846463, 3.311285301849967, 3.3628973726230207, 3.4150255641038036, 3.467669876292316, 3.5208303091885593, 3.574506862792534, 3.6286995371042385, 3.6834083321236726, 3.7386332478508386, 3.794374284285734, 3.8506314414283622, 3.90740471927872, 3.9646941178368067, 4.022499637102626, 4.080821277076174, 4.139659037757454, 4.199012919146463, 4.258882921243204, 4.319269044047674, 4.380171287559875, 4.4415896517798075, 4.503524136707471, 4.565974742342863, 4.628941468685986, 4.692424315736841, 4.756423283495426 ], [ 4.79926130223706, 4.735262334478476, 4.671779487427622, 4.608812761084499, 4.546362155449105, 4.484427670521443, 4.423009306301511, 4.36210706278931, 4.301720939984838, 4.241850937888098, 4.182497056499088, 4.123659295817809, 4.06533765584426, 4.007532136578442, 3.9502427380203544, 3.8934694601699977, 3.8372123030273695, 3.781471266592474, 3.726246350865308, 3.671537555845873, 3.6173448815341684, 3.563668327930195, 3.5105078950339514, 3.4578635828454374, 3.4057353913646553, 3.3541233205916035, 3.303027370526282, 3.2524475411686904, 3.20238383251883, 3.1528362445767, 3.103804777342301, 3.055289430815632, 3.0072902049966928, 2.9598070998854853, 2.912840115482008, 2.8663892517862615, 2.8204545087982447, 2.7750358865179594, 2.7301333849454035, 2.6857470040805795, 2.6418767439234845, 2.598522604474121, 2.5556845857324877, 2.513362687698585, 2.471556910372413, 2.4302672537539713, 2.3894937178432603, 2.3492363026402794, 2.3094950081450296, 2.27026983435751, 2.2315607812777216, 2.1933678489056625, 2.1556910372413345, 2.118530346284737, 2.08188577603587, 2.0457573264947335, 2.010144997661328, 1.9750487895356525, 1.9404687021177072, 1.9064047354074933, 1.8728568894050093, 1.8398251641102563, 1.8073095595232331, 1.775310075643941, 1.7438267124723792, 1.712859470008548, 1.6824083482524474, 1.6524733472040771, 1.6230544668634375, 1.5941517072305285, 1.5657650683053497, 1.5378945500879015, 1.5105401525781836, 1.4837018757761968, 1.4573797196819402, 1.4315736842954143, 1.4062837696166186, 1.381509975645554, 1.3572523023822196, 1.3335107498266154, 1.310285317978742, 1.287576006838599, 1.2653828164061869, 1.243705746681505, 1.2225447976645536, 1.201899969355333, 1.1817712617538425, 1.1621586748600827, 1.1430622086740536, 1.1244818631957547, 1.1064176384251865, 1.0888695343623485, 1.0718375510072415, 1.0553216883598648, 1.0393219464202188, 1.023838325188303, 1.0088708246641183, 0.9944194448476635, 0.9804841857389395, 0.9670650473379458, 0.9541620296446829, 0.9417751326591504, 0.9299043563813483, 0.9185497008112768, 0.9077111659489359, 0.8973887517943255, 0.8875824583474456, 0.8782922856082962, 0.8695182335768774, 0.8612603022531891, 0.8535184916372314, 0.8462928017290041, 0.8395832325285073, 0.8333897840357409, 0.8277124562507052, 0.8225512491734, 0.8179061628038253, 0.8137771971419812, 0.8101643521878676, 0.8070676279414843, 0.8044870244028319, 0.8024225415719097, 0.8008741794487182, 0.7998419380332571, 0.7993258173255267, 0.7993258173255267, 0.7998419380332571, 0.8008741794487182, 0.8024225415719097, 0.8044870244028317, 0.8070676279414843, 0.8101643521878674, 0.8137771971419812, 0.8179061628038253, 0.8225512491734, 0.8277124562507052, 0.8333897840357407, 0.8395832325285071, 0.8462928017290037, 0.8535184916372311, 0.8612603022531891, 0.8695182335768772, 0.8782922856082962, 0.8875824583474454, 0.8973887517943253, 0.9077111659489356, 0.9185497008112766, 0.929904356381348, 0.9417751326591501, 0.9541620296446824, 0.9670650473379456, 0.9804841857389393, 0.9944194448476631, 1.0088708246641178, 1.0238383251883025, 1.0393219464202184, 1.0553216883598644, 1.071837551007241, 1.088869534362348, 1.106417638425186, 1.1244818631957543, 1.1430622086740527, 1.1621586748600823, 1.181771261753842, 1.2018999693553325, 1.2225447976645532, 1.2437057466815045, 1.265382816406186, 1.2875760068385986, 1.3102853179787415, 1.333510749826615, 1.3572523023822192, 1.3815099756455531, 1.4062837696166186, 1.4315736842954134, 1.4573797196819402, 1.4837018757761964, 1.5105401525781836, 1.5378945500879007, 1.5657650683053492, 1.5941517072305276, 1.6230544668634366, 1.6524733472040767, 1.6824083482524466, 1.7128594700085475, 1.7438267124723783, 1.7753100756439406, 1.8073095595232322, 1.8398251641102554, 1.872856889405008, 1.9064047354074924, 1.9404687021177063, 1.9750487895356517, 2.0101449976613273, 2.0457573264947326, 2.08188577603587, 2.118530346284736, 2.155691037241334, 2.1933678489056616, 2.2315607812777203, 2.2702698343575087, 2.3094950081450287, 2.3492363026402785, 2.3894937178432594, 2.430267253753971, 2.4715569103724118, 2.5133626876985846, 2.555684585732487, 2.5985226044741205, 2.6418767439234836, 2.685747004080578, 2.730133384945402, 2.775035886517958, 2.8204545087982433, 2.86638925178626, 2.9128401154820076, 2.9598070998854844, 3.0072902049966928, 3.0552894308156304, 3.103804777342299, 3.152836244576699, 3.202383832518829, 3.2524475411686886, 3.30302737052628, 3.354123320591601, 3.4057353913646544, 3.4578635828454374, 3.5105078950339497, 3.563668327930193, 3.6173448815341676, 3.6715375558458723, 3.7262463508653063, 3.7814712665924723, 3.8372123030273677, 3.893469460169996, 3.9502427380203535, 4.00753213657844, 4.065337655844259, 4.1236592958178075, 4.182497056499088, 4.241850937888096, 4.301720939984838, 4.362107062789308, 4.423009306301509, 4.484427670521441, 4.5463621554491045, 4.608812761084497, 4.67177948742762, 4.735262334478475, 4.79926130223706 ], [ 4.842615441686423, 4.778616473927839, 4.715133626876985, 4.652166900533861, 4.589716294898468, 4.527781809970805, 4.466363445750873, 4.405461202238672, 4.345075079434201, 4.285205077337461, 4.225851195948451, 4.1670134352671715, 4.108691795293623, 4.050886276027805, 3.9935968774697175, 3.93682359961936, 3.8805664424767325, 3.824825406041837, 3.769600490314671, 3.714891695295236, 3.6606990209835315, 3.607022467379557, 3.5538620344833136, 3.5012177222948004, 3.4490895308140184, 3.3974774600409665, 3.346381509975645, 3.2958016806180535, 3.245737971968193, 3.196190384026063, 3.147158916791663, 3.0986435702649944, 3.050644344446056, 3.0031612393348484, 2.956194254931371, 2.909743391235624, 2.8638086482476073, 2.8183900259673225, 2.773487524394766, 2.7291011435299426, 2.6852308833728475, 2.6418767439234836, 2.5990387251818508, 2.556716827147948, 2.5149110498217757, 2.4736213932033344, 2.4328478572926233, 2.3925904420896424, 2.3528491475943927, 2.3136239738068727, 2.2749149207270842, 2.2367219883550256, 2.1990451766906975, 2.1618844857340997, 2.125239915485233, 2.0891114659440966, 2.0534991371106908, 2.018402928985015, 1.9838228415670702, 1.9497588748568564, 1.916211028854372, 1.8831793035596194, 1.8506636989725962, 1.8186642150933037, 1.7871808519217423, 1.756213609457911, 1.72576248770181, 1.6958274866534402, 1.6664086063128005, 1.6375058466798915, 1.6091192077547123, 1.5812486895372642, 1.5538942920275467, 1.5270560152255594, 1.5007338591313033, 1.4749278237447774, 1.4496379090659817, 1.4248641150949166, 1.4006064418315822, 1.3768648892759785, 1.3536394574281045, 1.3309301462879617, 1.3087369558555495, 1.2870598861308675, 1.2658989371139162, 1.2452541088046956, 1.2251254012032051, 1.2055128143094453, 1.1864163481234162, 1.1678360026451173, 1.1497717778745495, 1.1322236738117115, 1.1151916904566042, 1.0986758278092275, 1.0826760858695814, 1.067192464637666, 1.0522249641134809, 1.0377735842970264, 1.023838325188302, 1.010419186787309, 0.9975161690940457, 0.9851292721085132, 0.9732584958307111, 0.9619038402606397, 0.9510653053982987, 0.9407428912436884, 0.9309365977968085, 0.9216464250576593, 0.9128723730262402, 0.9046144417025519, 0.8968726310865942, 0.889646941178367, 0.8829373719778701, 0.8767439234851038, 0.8710665957000681, 0.8659053886227628, 0.8612603022531882, 0.857131336591344, 0.8535184916372305, 0.8504217673908472, 0.8478411638521948, 0.8457766810212726, 0.844228318898081, 0.8431960774826199, 0.8426799567748895, 0.8426799567748895, 0.8431960774826199, 0.844228318898081, 0.8457766810212726, 0.8478411638521945, 0.8504217673908472, 0.8535184916372303, 0.857131336591344, 0.8612603022531882, 0.8659053886227628, 0.8710665957000681, 0.8767439234851035, 0.8829373719778699, 0.8896469411783665, 0.896872631086594, 0.9046144417025519, 0.91287237302624, 0.921646425057659, 0.9309365977968083, 0.9407428912436882, 0.9510653053982985, 0.9619038402606395, 0.9732584958307109, 0.985129272108513, 0.9975161690940453, 1.0104191867873085, 1.023838325188302, 1.037773584297026, 1.0522249641134804, 1.0671924646376656, 1.0826760858695814, 1.098675827809227, 1.1151916904566042, 1.132223673811711, 1.149771777874549, 1.1678360026451173, 1.1864163481234158, 1.2055128143094453, 1.2251254012032047, 1.2452541088046951, 1.2658989371139158, 1.2870598861308675, 1.308736955855549, 1.3309301462879617, 1.353639457428104, 1.3768648892759776, 1.4006064418315818, 1.4248641150949162, 1.4496379090659812, 1.4749278237447765, 1.5007338591313029, 1.527056015225559, 1.5538942920275463, 1.5812486895372633, 1.6091192077547118, 1.6375058466798902, 1.6664086063127996, 1.6958274866534397, 1.7257624877018092, 1.7562136094579106, 1.7871808519217414, 1.8186642150933032, 1.8506636989725953, 1.8831793035596185, 1.916211028854371, 1.9497588748568555, 1.9838228415670693, 2.0184029289850143, 2.0534991371106903, 2.0891114659440957, 2.1252399154852326, 2.161884485734099, 2.1990451766906967, 2.2367219883550242, 2.274914920727083, 2.3136239738068713, 2.352849147594392, 2.392590442089641, 2.4328478572926224, 2.4736213932033335, 2.514911049821775, 2.5567168271479472, 2.59903872518185, 2.6418767439234836, 2.685230883372846, 2.729101143529941, 2.773487524394765, 2.8183900259673207, 2.8638086482476064, 2.909743391235623, 2.9561942549313702, 3.0031612393348475, 3.050644344446056, 3.0986435702649935, 3.1471589167916623, 3.1961903840260613, 3.2457379719681922, 3.2958016806180517, 3.346381509975643, 3.397477460040964, 3.4490895308140166, 3.5012177222947996, 3.553862034483312, 3.607022467379556, 3.6606990209835297, 3.7148916952952353, 3.7696004903146694, 3.8248254060418354, 3.8805664424767308, 3.936823599619358, 3.9935968774697166, 4.0508862760278035, 4.108691795293622, 4.167013435267171, 4.22585119594845, 4.2852050773374595, 4.3450750794342, 4.40546120223867, 4.466363445750872, 4.527781809970803, 4.589716294898467, 4.65216690053386, 4.715133626876983, 4.778616473927838, 4.842615441686423 ], [ 4.886485701843518, 4.822486734084933, 4.75900388703408, 4.696037160690956, 4.6335865550555635, 4.5716520701279, 4.510233705907968, 4.449331462395767, 4.388945339591296, 4.329075337494556, 4.269721456105546, 4.2108836954242665, 4.152562055450717, 4.094756536184899, 4.0374671376268125, 3.980693859776455, 3.9244367026338276, 3.8686956661989322, 3.8134707504717653, 3.7587619554523304, 3.7045692811406266, 3.650892727536652, 3.5977322946404087, 3.5450879824518955, 3.4929597909711134, 3.4413477201980616, 3.390251770132739, 3.3396719407751476, 3.289608232125288, 3.240060644183158, 3.191029176948758, 3.1425138304220894, 3.094514604603151, 3.0470314994919434, 3.000064515088466, 2.953613651392719, 2.9076789084047023, 2.862260286124417, 2.817357784551861, 2.772971403687037, 2.7291011435299426, 2.6857470040805786, 2.642908985338946, 2.600587087305043, 2.5587813099788708, 2.5174916533604295, 2.4767181174497184, 2.436460702246737, 2.3967194077514877, 2.3574942339639673, 2.318785180884179, 2.28059224851212, 2.242915436847792, 2.205754745891195, 2.169110175642328, 2.1329817261011916, 2.0973693972677854, 2.06227318914211, 2.027693101724165, 1.993629135013951, 1.960081289011467, 1.927049563716714, 1.8945339591296908, 1.8625344752503987, 1.8310511120788369, 1.8000838696150057, 1.7696327478589051, 1.7396977468105348, 1.7102788664698951, 1.6813761068369861, 1.652989467911807, 1.6251189496943592, 1.5977645521846418, 1.5709262753826545, 1.544604119288398, 1.518798083901872, 1.4935081692230767, 1.4687343752520117, 1.4444767019886773, 1.420735149433073, 1.3975097175851996, 1.3748004064450567, 1.352607216012644, 1.3309301462879626, 1.3097691972710113, 1.2891243689617902, 1.2689956613603002, 1.2493830744665404, 1.2302866082805113, 1.2117062628022124, 1.1936420380316441, 1.1760939339688061, 1.1590619506136992, 1.1425460879663225, 1.1265463460266765, 1.1110627247947606, 1.0960952242705755, 1.081643844454121, 1.0677085853453971, 1.0542894469444035, 1.0413864292511406, 1.0289995322656083, 1.0171287559878062, 1.0057741004177347, 0.9949355655553935, 0.9846131514007832, 0.9748068579539033, 0.9655166852147539, 0.9567426331833351, 0.9484847018596467, 0.940742891243689, 0.9335172013354618, 0.926807632134965, 0.9206141836421986, 0.9149368558571629, 0.9097756487798576, 0.905130562410283, 0.9010015967484388, 0.8973887517943253, 0.894292027547942, 0.8917114240092896, 0.8896469411783674, 0.8880985790551759, 0.8870663376397148, 0.8865502169319843, 0.8865502169319843, 0.8870663376397148, 0.8880985790551759, 0.8896469411783674, 0.8917114240092894, 0.894292027547942, 0.8973887517943251, 0.9010015967484388, 0.905130562410283, 0.9097756487798576, 0.9149368558571629, 0.9206141836421984, 0.9268076321349648, 0.9335172013354613, 0.9407428912436888, 0.9484847018596467, 0.9567426331833349, 0.9655166852147539, 0.9748068579539031, 0.984613151400783, 0.9949355655553933, 1.0057741004177343, 1.0171287559878057, 1.0289995322656078, 1.0413864292511401, 1.054289446944403, 1.0677085853453967, 1.0816438444541205, 1.0960952242705755, 1.1110627247947602, 1.126546346026676, 1.142546087966322, 1.1590619506136988, 1.1760939339688057, 1.1936420380316437, 1.211706262802212, 1.2302866082805104, 1.24938307446654, 1.2689956613602997, 1.2891243689617902, 1.3097691972710104, 1.3309301462879621, 1.3526072160126437, 1.3748004064450563, 1.3975097175851987, 1.4207351494330727, 1.4444767019886768, 1.4687343752520108, 1.4935081692230763, 1.5187980839018715, 1.5446041192883975, 1.5709262753826536, 1.5977645521846413, 1.6251189496943583, 1.652989467911807, 1.6813761068369848, 1.7102788664698947, 1.7396977468105344, 1.7696327478589042, 1.8000838696150052, 1.831051112078836, 1.8625344752503983, 1.89453395912969, 1.927049563716713, 1.960081289011466, 1.9936291350139501, 2.027693101724164, 2.0622731891421093, 2.0973693972677854, 2.1329817261011907, 2.169110175642327, 2.205754745891194, 2.2429154368477917, 2.280592248512119, 2.318785180884178, 2.3574942339639664, 2.396719407751487, 2.4364607022467357, 2.476718117449717, 2.5174916533604286, 2.55878130997887, 2.6005870873050423, 2.6429089853389445, 2.685747004080578, 2.729101143529941, 2.772971403687036, 2.8173577845518603, 2.8622602861244157, 2.907678908404701, 2.953613651392718, 3.0000645150884653, 3.0470314994919416, 3.09451460460315, 3.1425138304220877, 3.1910291769487573, 3.2400606441831563, 3.2896082321252873, 3.339671940775146, 3.390251770132738, 3.441347720198059, 3.4929597909711116, 3.5450879824518946, 3.597732294640407, 3.650892727536651, 3.704569281140625, 3.7587619554523304, 3.8134707504717635, 3.8686956661989305, 3.924436702633826, 3.980693859776453, 4.037467137626811, 4.094756536184898, 4.152562055450717, 4.210883695424265, 4.269721456105545, 4.3290753374945545, 4.388945339591295, 4.449331462395765, 4.510233705907967, 4.571652070127898, 4.633586555055562, 4.696037160690955, 4.759003887034078, 4.822486734084933, 4.886485701843518 ], [ 4.930872082708342, 4.866873114949757, 4.803390267898903, 4.7404235415557805, 4.677972935920387, 4.616038450992725, 4.554620086772792, 4.493717843260591, 4.4333317204561205, 4.37346171835938, 4.31410783697037, 4.255270076289091, 4.196948436315542, 4.139142917049724, 4.081853518491636, 4.025080240641279, 3.968823083498652, 3.9130820470637566, 3.8578571313365897, 3.8031483363171548, 3.74895566200545, 3.6952791084014764, 3.642118675505233, 3.58947436331672, 3.537346171835937, 3.485734101062885, 3.4346381509975634, 3.384058321639972, 3.3339946129901126, 3.2844470250479816, 3.2354155578135826, 3.186900211286914, 3.1389009854679752, 3.091417880356767, 3.0444508959532897, 2.9980000322575435, 2.9520652892695267, 2.906646666989241, 2.8617441654166855, 2.817357784551861, 2.7734875243947665, 2.730133384945403, 2.6872953662037697, 2.644973468169867, 2.603167690843695, 2.5618780342252534, 2.5211044983145423, 2.480847083111561, 2.4411057886163117, 2.4018806148287917, 2.3631715617490032, 2.324978629376944, 2.287301817712616, 2.250141126756019, 2.213496556507152, 2.1773681069660156, 2.1417557781326098, 2.1066595700069346, 2.0720794825889888, 2.038015515878775, 2.0044676698762913, 1.971435944581538, 1.9389203399945147, 1.9069208561152227, 1.8754374929436608, 1.84447025047983, 1.814019128723729, 1.7840841276753592, 1.7546652473347195, 1.72576248770181, 1.6973758487766313, 1.6695053305591832, 1.6421509330494657, 1.6153126562474789, 1.5889905001532223, 1.563184464766696, 1.5378945500879007, 1.5131207561168356, 1.4888630828535012, 1.4651215302978975, 1.4418960984500235, 1.4191867873098807, 1.3969935968774685, 1.3753165271527865, 1.3541555781358352, 1.3335107498266145, 1.3133820422251241, 1.2937694553313643, 1.2746729891453352, 1.2560926436670368, 1.2380284188964685, 1.2204803148336305, 1.2034483314785231, 1.186932468831147, 1.1709327268915004, 1.155449105659585, 1.1404816051353999, 1.1260302253189454, 1.112094966210221, 1.098675827809228, 1.085772810115965, 1.0733859131304322, 1.06151513685263, 1.0501604812825587, 1.039321946420218, 1.0289995322656074, 1.0191932388187275, 1.0099030660795782, 1.0011290140481592, 0.9928710827244709, 0.9851292721085132, 0.977903582200286, 0.9711940129997891, 0.9650005645070228, 0.959323236721987, 0.9541620296446818, 0.9495169432751072, 0.945387977613263, 0.9417751326591495, 0.9386784084127662, 0.9360978048741138, 0.9340333220431916, 0.93248495992, 0.9314527185045389, 0.9309365977968085, 0.9309365977968085, 0.9314527185045389, 0.93248495992, 0.9340333220431916, 0.9360978048741135, 0.9386784084127662, 0.9417751326591493, 0.945387977613263, 0.9495169432751072, 0.9541620296446818, 0.959323236721987, 0.9650005645070225, 0.9711940129997889, 0.9779035822002855, 0.985129272108513, 0.9928710827244709, 1.0011290140481592, 1.0099030660795778, 1.019193238818727, 1.0289995322656074, 1.0393219464202175, 1.0501604812825587, 1.0615151368526297, 1.0733859131304317, 1.085772810115964, 1.0986758278092275, 1.112094966210221, 1.126030225318945, 1.1404816051353999, 1.1554491056595846, 1.1709327268915004, 1.186932468831146, 1.2034483314785231, 1.22048031483363, 1.2380284188964676, 1.2560926436670363, 1.2746729891453348, 1.2937694553313643, 1.3133820422251237, 1.333510749826614, 1.3541555781358348, 1.3753165271527865, 1.396993596877468, 1.4191867873098807, 1.441896098450023, 1.4651215302978966, 1.4888630828535012, 1.5131207561168352, 1.5378945500879002, 1.5631844647666955, 1.5889905001532219, 1.615312656247478, 1.6421509330494652, 1.6695053305591827, 1.6973758487766308, 1.7257624877018092, 1.7546652473347186, 1.7840841276753587, 1.8140191287237286, 1.8444702504798296, 1.8754374929436604, 1.9069208561152222, 1.9389203399945139, 1.971435944581537, 2.00446766987629, 2.038015515878774, 2.072079482588988, 2.1066595700069337, 2.1417557781326093, 2.1773681069660147, 2.2134965565071516, 2.250141126756018, 2.287301817712616, 2.324978629376943, 2.3631715617490023, 2.401880614828791, 2.441105788616311, 2.48084708311156, 2.521104498314541, 2.561878034225253, 2.603167690843694, 2.6449734681698667, 2.6872953662037684, 2.730133384945402, 2.773487524394765, 2.8173577845518603, 2.861744165416684, 2.90664666698924, 2.952065289269525, 2.9980000322575417, 3.0444508959532897, 3.091417880356766, 3.1389009854679744, 3.186900211286912, 3.2354155578135817, 3.2844470250479807, 3.333994612990111, 3.3840583216399702, 3.4346381509975625, 3.4857341010628833, 3.537346171835936, 3.589474363316719, 3.6421186755052313, 3.6952791084014756, 3.748955662005449, 3.803148336317154, 3.857857131336588, 3.913082047063755, 3.96882308349865, 4.025080240641278, 4.081853518491635, 4.139142917049722, 4.196948436315541, 4.255270076289089, 4.314107836970369, 4.373461718359378, 4.43333172045612, 4.4937178432605895, 4.5546200867727915, 4.616038450992723, 4.677972935920386, 4.74042354155578, 4.8033902678989016, 4.866873114949756, 4.930872082708342 ], [ 4.975774584280898, 4.911775616522313, 4.84829276947146, 4.785326043128336, 4.722875437492943, 4.66094095256528, 4.599522588345348, 4.538620344833147, 4.478234222028676, 4.418364219931936, 4.359010338542926, 4.300172577861646, 4.241850937888097, 4.184045418622279, 4.126756020064192, 4.069982742213835, 4.0137255850712075, 3.957984548636312, 3.902759632909145, 3.8480508378897103, 3.7938581635780064, 3.740181609974032, 3.6870211770777885, 3.6343768648892754, 3.5822486734084933, 3.5306366026354414, 3.479540652570119, 3.4289608232125275, 3.378897114562668, 3.329349526620538, 3.280318059386138, 3.2318027128594693, 3.1838034870405307, 3.1363203819293233, 3.089353397525846, 3.042902533830099, 2.996967790842082, 2.951549168561797, 2.906646666989241, 2.862260286124417, 2.8183900259673225, 2.7750358865179585, 2.7321978677763257, 2.689875969742423, 2.6480701924162506, 2.6067805357978093, 2.5660069998870982, 2.525749584684117, 2.4860082901888676, 2.446783116401347, 2.4080740633215587, 2.3698811309495, 2.332204319285172, 2.2950436283285747, 2.258399058079708, 2.2222706085385715, 2.1866582797051652, 2.15156207157949, 2.1169819841615447, 2.082918017451331, 2.049370171448847, 2.016338446154094, 1.9838228415670707, 1.9518233576877786, 1.9203399945162167, 1.8893727520523855, 1.858921630296285, 1.8289866292479147, 1.799567748907275, 1.770664989274366, 1.7422783503491868, 1.714407832131739, 1.6870534346220216, 1.6602151578200344, 1.6338930017257778, 1.6080869663392519, 1.5827970516604566, 1.5580232576893915, 1.5337655844260571, 1.510024031870453, 1.4867986000225795, 1.4640892888824366, 1.441896098450024, 1.4202190287253424, 1.3990580797083911, 1.37841325139917, 1.35828454379768, 1.3386719569039203, 1.3195754907178912, 1.3009951452395923, 1.282930920469024, 1.265382816406186, 1.248350833051079, 1.2318349704037024, 1.2158352284640563, 1.2003516072321405, 1.1853841067079554, 1.1709327268915009, 1.156997467782777, 1.1435783293817834, 1.1306753116885204, 1.1182884147029881, 1.106417638425186, 1.0950629828551146, 1.0842244479927734, 1.0739020338381633, 1.0640957403912834, 1.0548055676521337, 1.0460315156207152, 1.0377735842970268, 1.0300317736810687, 1.0228060837728417, 1.0160965145723448, 1.0099030660795787, 1.0042257382945428, 0.9990645312172375, 0.9944194448476629, 0.9902904791858187, 0.9866776342317052, 0.9835809099853219, 0.9810003064466695, 0.9789358236157473, 0.9773874614925557, 0.9763552200770946, 0.9758390993693642, 0.9758390993693642, 0.9763552200770946, 0.9773874614925557, 0.9789358236157473, 0.9810003064466692, 0.9835809099853219, 0.986677634231705, 0.9902904791858187, 0.9944194448476629, 0.9990645312172375, 1.0042257382945428, 1.0099030660795782, 1.0160965145723448, 1.0228060837728412, 1.0300317736810687, 1.0377735842970264, 1.0460315156207147, 1.0548055676521337, 1.064095740391283, 1.0739020338381629, 1.0842244479927734, 1.0950629828551142, 1.1064176384251856, 1.1182884147029877, 1.13067531168852, 1.143578329381783, 1.1569974677827766, 1.1709327268915004, 1.1853841067079554, 1.20035160723214, 1.215835228464056, 1.231834970403702, 1.2483508330510786, 1.2653828164061856, 1.2829309204690236, 1.3009951452395918, 1.3195754907178903, 1.3386719569039198, 1.3582845437976796, 1.37841325139917, 1.3990580797083902, 1.420219028725342, 1.4418960984500235, 1.4640892888824362, 1.4867986000225786, 1.5100240318704525, 1.5337655844260567, 1.5580232576893907, 1.5827970516604561, 1.6080869663392514, 1.6338930017257773, 1.6602151578200335, 1.6870534346220212, 1.7144078321317382, 1.7422783503491868, 1.7706649892743647, 1.7995677489072746, 1.8289866292479142, 1.858921630296284, 1.889372752052385, 1.9203399945162158, 1.9518233576877781, 1.9838228415670698, 2.016338446154093, 2.049370171448846, 2.08291801745133, 2.116981984161544, 2.151562071579489, 2.1866582797051652, 2.2222706085385706, 2.258399058079707, 2.295043628328574, 2.3322043192851716, 2.3698811309494987, 2.408074063321558, 2.4467831164013463, 2.4860082901888667, 2.5257495846841156, 2.566006999887097, 2.6067805357978084, 2.6480701924162497, 2.689875969742422, 2.7321978677763243, 2.775035886517958, 2.8183900259673207, 2.8622602861244157, 2.90664666698924, 2.9515491685617956, 2.996967790842081, 3.042902533830098, 3.089353397525845, 3.1363203819293215, 3.18380348704053, 3.2318027128594675, 3.280318059386137, 3.329349526620536, 3.378897114562667, 3.4289608232125257, 3.479540652570118, 3.5306366026354388, 3.5822486734084915, 3.6343768648892745, 3.6870211770777868, 3.740181609974031, 3.7938581635780046, 3.8480508378897103, 3.9027596329091434, 3.9579845486363103, 4.013725585071206, 4.069982742213833, 4.126756020064191, 4.1840454186222775, 4.241850937888097, 4.300172577861645, 4.359010338542925, 4.418364219931934, 4.478234222028675, 4.538620344833145, 4.599522588345347, 4.660940952565278, 4.722875437492942, 4.785326043128335, 4.848292769471458, 4.911775616522313, 4.975774584280898 ], [ 5.021193206561183, 4.9571942388025985, 4.8937113917517445, 4.830744665408622, 4.768294059773228, 4.706359574845566, 4.644941210625634, 4.5840389671134325, 4.523652844308961, 4.463782842212221, 4.404428960823211, 4.345591200141932, 4.287269560168383, 4.229464040902565, 4.172174642344477, 4.1154013644941205, 4.059144207351492, 4.003403170916597, 3.948178255189431, 3.893469460169996, 3.8392767858582912, 3.7856002322543176, 3.7324397993580742, 3.67979548716956, 3.627667295688778, 3.5760552249157262, 3.5249592748504046, 3.474379445492813, 3.424315736842953, 3.3747681489008228, 3.3257366816664238, 3.277221335139755, 3.2292221093208155, 3.181739004209608, 3.134772019806131, 3.088321156110384, 3.042386413122367, 2.996967790842082, 2.9520652892695263, 2.9076789084047023, 2.8638086482476073, 2.8204545087982438, 2.7776164900566105, 2.735294592022708, 2.693488814696536, 2.652199158078094, 2.611425622167383, 2.571168206964402, 2.5314269124691524, 2.492201738681633, 2.4534926856018444, 2.4152997532297853, 2.3776229415654573, 2.34046225060886, 2.303817680359993, 2.2676892308188563, 2.232076901985451, 2.1969806938597753, 2.16240060644183, 2.128336639731616, 2.094788793729132, 2.061757068434379, 2.029241463847356, 1.9972419799680639, 1.965758616796502, 1.9347913743326708, 1.9043402525765702, 1.8744052515282, 1.8449863711875603, 1.8160836115546513, 1.7876969726294725, 1.7598264544120243, 1.7324720569023064, 1.7056337801003196, 1.679311624006063, 1.6535055886195371, 1.6282156739407414, 1.6034418799696768, 1.5791842067063424, 1.5554426541507382, 1.5322172223028647, 1.5095079111627219, 1.4873147207303097, 1.4656376510056277, 1.4444767019886764, 1.4238318736794557, 1.4037031660779653, 1.3840905791842055, 1.3649941129981764, 1.3464137675198775, 1.3283495427493093, 1.3108014386864713, 1.2937694553313643, 1.2772535926839876, 1.2612538507443416, 1.2457702295124258, 1.230802728988241, 1.2163513491717861, 1.2024160900630623, 1.1889969516620686, 1.1760939339688057, 1.1637070369832734, 1.1518362607054713, 1.1404816051353999, 1.1296430702730587, 1.1193206561184486, 1.1095143626715687, 1.100224189932419, 1.0914501379010004, 1.083192206577312, 1.075450395961354, 1.068224706053127, 1.06151513685263, 1.055321688359864, 1.049644360574828, 1.0444831534975227, 1.0398380671279481, 1.0357091014661042, 1.0320962565119904, 1.0289995322656074, 1.0264189287269545, 1.0243544458960328, 1.0228060837728408, 1.02177384235738, 1.0212577216496492, 1.0212577216496492, 1.02177384235738, 1.0228060837728408, 1.0243544458960323, 1.0264189287269545, 1.0289995322656074, 1.0320962565119904, 1.0357091014661037, 1.0398380671279481, 1.0444831534975227, 1.049644360574828, 1.0553216883598635, 1.06151513685263, 1.0682247060531265, 1.075450395961354, 1.0831922065773116, 1.091450137901, 1.100224189932419, 1.1095143626715682, 1.119320656118448, 1.1296430702730587, 1.1404816051353994, 1.1518362607054708, 1.163707036983273, 1.1760939339688052, 1.1889969516620682, 1.2024160900630623, 1.2163513491717857, 1.2308027289882406, 1.2457702295124253, 1.2612538507443412, 1.2772535926839872, 1.293769455331364, 1.3108014386864708, 1.3283495427493088, 1.346413767519877, 1.3649941129981755, 1.384090579184205, 1.4037031660779649, 1.4238318736794553, 1.444476701988676, 1.4656376510056273, 1.4873147207303088, 1.5095079111627214, 1.5322172223028643, 1.5554426541507378, 1.579184206706342, 1.603441879969676, 1.6282156739407414, 1.6535055886195362, 1.679311624006063, 1.7056337801003192, 1.7324720569023064, 1.7598264544120235, 1.787696972629472, 1.8160836115546504, 1.8449863711875594, 1.8744052515281995, 1.9043402525765694, 1.9347913743326703, 1.965758616796501, 1.9972419799680634, 2.029241463847355, 2.0617570684343782, 2.0947887937291307, 2.1283366397316152, 2.162400606441829, 2.1969806938597745, 2.23207690198545, 2.2676892308188554, 2.303817680359993, 2.3404622506088586, 2.377622941565457, 2.4152997532297844, 2.453492685601843, 2.4922017386816315, 2.5314269124691515, 2.5711682069644013, 2.611425622167382, 2.6521991580780937, 2.6934888146965346, 2.7352945920227074, 2.7776164900566096, 2.8204545087982433, 2.8638086482476064, 2.907678908404701, 2.952065289269525, 2.996967790842081, 3.042386413122366, 3.088321156110383, 3.13477201980613, 3.181739004209607, 3.2292221093208155, 3.2772213351397532, 3.325736681666422, 3.374768148900822, 3.424315736842952, 3.4743794454928114, 3.524959274850403, 3.5760552249157236, 3.627667295688777, 3.67979548716956, 3.7324397993580725, 3.785600232254316, 3.8392767858582904, 3.893469460169995, 3.948178255189429, 4.003403170916595, 4.0591442073514905, 4.115401364494119, 4.172174642344476, 4.229464040902563, 4.287269560168382, 4.34559120014193, 4.404428960823211, 4.463782842212219, 4.523652844308961, 4.584038967113431, 4.644941210625632, 4.706359574845564, 4.768294059773227, 4.83074466540862, 4.893711391751743, 4.957194238802598, 5.021193206561183 ], [ 5.067127949549199, 5.003128981790615, 4.939646134739761, 4.8766794083966385, 4.814228802761245, 4.752294317833583, 4.69087595361365, 4.629973710101449, 4.569587587296978, 4.509717585200238, 4.450363703811227, 4.391525943129949, 4.3332043031564, 4.275398783890582, 4.218109385332494, 4.161336107482137, 4.105078950339509, 4.049337913904614, 3.9941129981774477, 3.9394042031580128, 3.885211528846308, 3.8315349752423344, 3.778374542346091, 3.725730230157577, 3.673602038676795, 3.621989967903743, 3.5708940178384214, 3.52031418848083, 3.4702504798309697, 3.4207028918888396, 3.3716714246544406, 3.323156078127772, 3.2751568523088324, 3.227673747197625, 3.1807067627941477, 3.1342558990984006, 3.088321156110384, 3.042902533830099, 2.998000032257543, 2.953613651392719, 2.909743391235624, 2.8663892517862606, 2.8235512330446273, 2.7812293350107247, 2.7394235576845527, 2.698133901066111, 2.6573603651554, 2.617102949952419, 2.577361655457169, 2.5381364816696497, 2.499427428589861, 2.461234496217802, 2.423557684553474, 2.3863969935968767, 2.3497524233480096, 2.313623973806873, 2.2780116449734678, 2.242915436847792, 2.2083353494298468, 2.174271382719633, 2.140723536717149, 2.107691811422396, 2.0751762068353727, 2.0431767229560807, 2.011693359784519, 1.9807261173206876, 1.950274995564587, 1.9203399945162167, 1.890921114175577, 1.862018354542668, 1.8336317156174893, 1.8057611974000412, 1.7784067998903232, 1.7515685230883364, 1.7252463669940798, 1.699440331607554, 1.6741504169287582, 1.6493766229576936, 1.6251189496943592, 1.601377397138755, 1.5781519652908815, 1.5554426541507387, 1.5332494637183265, 1.5115723939936445, 1.4904114449766932, 1.4697666166674725, 1.449637909065982, 1.4300253221722223, 1.4109288559861932, 1.3923485105078943, 1.374284285737326, 1.356736181674488, 1.3397041983193811, 1.3231883356720044, 1.3071885937323584, 1.2917049725004426, 1.2767374719762579, 1.262286092159803, 1.248350833051079, 1.2349316946500855, 1.2220286769568225, 1.2096417799712902, 1.197771003693488, 1.1864163481234167, 1.1755778132610755, 1.1652553991064654, 1.1554491056595855, 1.1461589329204358, 1.1373848808890172, 1.1291269495653289, 1.1213851389493708, 1.1141594490411437, 1.107449879840647, 1.1012564313478808, 1.0955791035628448, 1.0904178964855396, 1.085772810115965, 1.081643844454121, 1.0780309995000072, 1.0749342752536242, 1.0723536717149713, 1.0702891888840496, 1.0687408267608576, 1.0677085853453967, 1.067192464637666, 1.067192464637666, 1.0677085853453967, 1.0687408267608576, 1.0702891888840491, 1.0723536717149713, 1.0749342752536242, 1.0780309995000072, 1.0816438444541205, 1.085772810115965, 1.0904178964855396, 1.0955791035628448, 1.1012564313478803, 1.107449879840647, 1.1141594490411433, 1.1213851389493708, 1.1291269495653284, 1.1373848808890168, 1.1461589329204358, 1.155449105659585, 1.165255399106465, 1.1755778132610755, 1.1864163481234162, 1.1977710036934877, 1.2096417799712897, 1.222028676956822, 1.234931694650085, 1.248350833051079, 1.2622860921598025, 1.2767374719762574, 1.2917049725004421, 1.307188593732358, 1.323188335672004, 1.3397041983193807, 1.3567361816744876, 1.3742842857373256, 1.3923485105078939, 1.4109288559861923, 1.430025322172222, 1.4496379090659817, 1.469766616667472, 1.4904114449766928, 1.511572393993644, 1.5332494637183256, 1.5554426541507382, 1.578151965290881, 1.6013773971387546, 1.6251189496943588, 1.6493766229576927, 1.6741504169287582, 1.699440331607553, 1.7252463669940798, 1.751568523088336, 1.7784067998903232, 1.8057611974000403, 1.8336317156174888, 1.8620183545426672, 1.8909211141755762, 1.9203399945162163, 1.9502749955645862, 1.9807261173206872, 2.011693359784518, 2.04317672295608, 2.075176206835372, 2.107691811422395, 2.1407235367171475, 2.174271382719632, 2.208335349429846, 2.2429154368477913, 2.278011644973467, 2.3136239738068722, 2.3497524233480096, 2.3863969935968754, 2.4235576845534736, 2.461234496217801, 2.49942742858986, 2.5381364816696483, 2.5773616554571683, 2.617102949952418, 2.657360365155399, 2.6981339010661105, 2.7394235576845514, 2.7812293350107242, 2.8235512330446264, 2.86638925178626, 2.909743391235623, 2.953613651392718, 2.9980000322575417, 3.042902533830098, 3.088321156110383, 3.1342558990983997, 3.1807067627941468, 3.227673747197624, 3.2751568523088324, 3.32315607812777, 3.371671424654439, 3.4207028918888387, 3.470250479830969, 3.520314188480828, 3.5708940178384196, 3.6219899679037404, 3.673602038676794, 3.725730230157577, 3.7783745423460893, 3.8315349752423327, 3.885211528846307, 3.939404203158012, 3.994112998177446, 4.049337913904612, 4.105078950339507, 4.161336107482136, 4.218109385332493, 4.27539878389058, 4.333204303156399, 4.391525943129947, 4.450363703811227, 4.509717585200236, 4.569587587296978, 4.6299737101014475, 4.690875953613649, 4.752294317833581, 4.814228802761244, 4.876679408396637, 4.9396461347397596, 5.003128981790614, 5.067127949549199 ], [ 5.113578813244947, 5.049579845486363, 4.986096998435508, 4.9231302720923855, 4.860679666456992, 4.79874518152933, 4.737326817309397, 4.676424573797196, 4.6160384509927255, 4.556168448895985, 4.496814567506975, 4.437976806825696, 4.379655166852148, 4.32184964758633, 4.264560249028241, 4.207786971177884, 4.151529814035257, 4.095788777600362, 4.040563861873196, 3.9858550668537607, 3.931662392542055, 3.8779858389380815, 3.824825406041838, 3.772181093853325, 3.720052902372542, 3.66844083159949, 3.6173448815341693, 3.566765052176578, 3.5167013435267176, 3.4671537555845866, 3.4181222883501876, 3.369606941823519, 3.3216077160045803, 3.274124610893372, 3.2271576264898947, 3.1807067627941485, 3.1347720198061317, 3.089353397525846, 3.0444508959532905, 3.000064515088466, 2.956194254931372, 2.912840115482008, 2.870002096740375, 2.8276801987064726, 2.7858744213803, 2.744584764761859, 2.7038112288511478, 2.6635538136481665, 2.623812519152917, 2.5845873453653967, 2.5458782922856082, 2.5076853599135496, 2.4700085482492216, 2.432847857292624, 2.3962032870437575, 2.360074837502621, 2.3244625086692148, 2.2893663005435396, 2.2547862131255942, 2.2207222464153804, 2.1871744004128963, 2.1541426751181434, 2.12162707053112, 2.089627586651828, 2.0581442234802663, 2.027176981016435, 1.9967258592603345, 1.9667908582119642, 1.9373719778713245, 1.9084692182384155, 1.8800825793132363, 1.8522120610957886, 1.8248576635860712, 1.798019386784084, 1.7716972306898273, 1.7458911953033014, 1.7206012806245061, 1.695827486653441, 1.6715698133901067, 1.6478282608345025, 1.624602828986629, 1.6018935178464861, 1.5797003274140735, 1.558023257689392, 1.5368623086724407, 1.5162174803632196, 1.4960887727617296, 1.4764761858679698, 1.4573797196819407, 1.4387993742036418, 1.4207351494330736, 1.4031870453702355, 1.3861550620151286, 1.369639199367752, 1.3536394574281059, 1.33815583619619, 1.323188335672005, 1.3087369558555504, 1.2948016967468265, 1.281382558345833, 1.26847954065257, 1.2560926436670377, 1.2442218673892356, 1.2328672118191641, 1.222028676956823, 1.2117062628022128, 1.201899969355333, 1.1926097966161833, 1.1838357445847647, 1.1755778132610764, 1.1678360026451182, 1.1606103127368912, 1.1539007435363944, 1.1477072950436282, 1.1420299672585923, 1.136868760181287, 1.1322236738117124, 1.1280947081498685, 1.1244818631957547, 1.1213851389493716, 1.1188045354107188, 1.116740052579797, 1.115191690456605, 1.1141594490411442, 1.1136433283334135, 1.1136433283334135, 1.1141594490411442, 1.115191690456605, 1.1167400525797966, 1.1188045354107188, 1.1213851389493716, 1.1244818631957547, 1.128094708149868, 1.1322236738117124, 1.136868760181287, 1.1420299672585923, 1.1477072950436278, 1.1539007435363944, 1.1606103127368907, 1.1678360026451182, 1.175577813261076, 1.1838357445847643, 1.1926097966161833, 1.2018999693553325, 1.2117062628022124, 1.222028676956823, 1.2328672118191637, 1.2442218673892351, 1.2560926436670372, 1.2684795406525695, 1.2813825583458325, 1.294801696746826, 1.30873695585555, 1.323188335672005, 1.3381558361961896, 1.3536394574281054, 1.3696391993677515, 1.3861550620151282, 1.403187045370235, 1.420735149433073, 1.4387993742036413, 1.4573797196819398, 1.4764761858679694, 1.4960887727617291, 1.5162174803632196, 1.5368623086724398, 1.5580232576893915, 1.579700327414073, 1.6018935178464857, 1.6246028289866281, 1.647828260834502, 1.6715698133901062, 1.6958274866534402, 1.7206012806245057, 1.745891195303301, 1.7716972306898269, 1.798019386784083, 1.8248576635860707, 1.8522120610957877, 1.8800825793132363, 1.9084692182384142, 1.937371977871324, 1.9667908582119638, 1.9967258592603336, 2.0271769810164346, 2.0581442234802654, 2.0896275866518277, 2.1216270705311193, 2.1541426751181425, 2.1871744004128955, 2.2207222464153795, 2.2547862131255934, 2.2893663005435387, 2.3244625086692148, 2.36007483750262, 2.3962032870437566, 2.4328478572926233, 2.470008548249221, 2.5076853599135482, 2.5458782922856074, 2.584587345365396, 2.6238125191529162, 2.663553813648165, 2.7038112288511464, 2.744584764761858, 2.7858744213802993, 2.8276801987064717, 2.870002096740374, 2.9128401154820076, 2.9561942549313702, 3.0000645150884653, 3.0444508959532897, 3.089353397525845, 3.13477201980613, 3.1807067627941468, 3.2271576264898947, 3.274124610893372, 3.3216077160045803, 3.369606941823518, 3.4181222883501867, 3.4671537555845857, 3.516701343526716, 3.566765052176576, 3.6173448815341676, 3.6684408315994883, 3.720052902372541, 3.772181093853324, 3.8248254060418363, 3.8779858389380806, 3.931662392542054, 3.985855066853759, 4.040563861873194, 4.09578877760036, 4.151529814035255, 4.207786971177883, 4.264560249028241, 4.321849647586328, 4.379655166852146, 4.437976806825695, 4.496814567506974, 4.556168448895983, 4.616038450992725, 4.676424573797195, 4.7373268173093965, 4.798745181529328, 4.860679666456991, 4.923130272092385, 4.986096998435507, 5.049579845486361, 5.113578813244947 ], [ 5.160545797648425, 5.0965468298898395, 5.033063982838986, 4.970097256495862, 4.907646650860469, 4.845712165932806, 4.784293801712874, 4.723391558200673, 4.663005435396203, 4.603135433299462, 4.5437815519104525, 4.484943791229172, 4.426622151255624, 4.368816631989806, 4.311527233431718, 4.254753955581361, 4.198496798438734, 4.142755762003839, 4.087530846276672, 4.032822051257237, 3.9786293769455323, 3.924952823341558, 3.8717923904453144, 3.819148078256802, 3.767019886776019, 3.7154078160029673, 3.6643118659376457, 3.6137320365800543, 3.563668327930195, 3.514120739988064, 3.465089272753664, 3.416573926226995, 3.3685747004080575, 3.321091595296849, 3.274124610893372, 3.227673747197626, 3.181739004209609, 3.1363203819293233, 3.091417880356767, 3.0470314994919434, 3.0031612393348484, 2.959807099885485, 2.9169690811438516, 2.874647183109949, 2.832841405783777, 2.791551749165335, 2.750778213254624, 2.7105207980516433, 2.6707795035563935, 2.631554329768874, 2.5928452766890855, 2.5546523443170264, 2.5169755326526984, 2.479814841696101, 2.443170271447234, 2.4070418219060974, 2.371429493072692, 2.3363332849470164, 2.301753197529071, 2.267689230818857, 2.234141384816373, 2.20110965952162, 2.168594054934597, 2.136594571055305, 2.105111207883743, 2.074143965419912, 2.0436928436638113, 2.013757842615441, 1.9843389622748013, 1.9554362026418923, 1.9270495637167135, 1.8991790454992654, 1.8718246479895475, 1.8449863711875607, 1.8186642150933041, 1.7928581797067782, 1.7675682650279825, 1.7427944710569179, 1.7185367977935835, 1.6947952452379793, 1.6715698133901058, 1.648860502249963, 1.6266673118175508, 1.6049902420928688, 1.5838292930759175, 1.5631844647666968, 1.5430557571652064, 1.5234431702714466, 1.5043467040854175, 1.4857663586071186, 1.4677021338365503, 1.4501540297737123, 1.4331220464186054, 1.4166061837712287, 1.4006064418315827, 1.3851228205996668, 1.3701553200754821, 1.3557039402590272, 1.3417686811503033, 1.3283495427493097, 1.3154465250560468, 1.3030596280705145, 1.2911888517927124, 1.279834196222641, 1.2689956613602997, 1.2586732472056896, 1.2488669537588097, 1.23957678101966, 1.2308027289882415, 1.2225447976645532, 1.214802987048595, 1.207577297140368, 1.2008677279398712, 1.194674279447105, 1.188996951662069, 1.1838357445847638, 1.1791906582151892, 1.1750616925533452, 1.1714488475992315, 1.1683521233528484, 1.1657715198141956, 1.1637070369832738, 1.1621586748600818, 1.161126433444621, 1.1606103127368903, 1.1606103127368903, 1.161126433444621, 1.1621586748600818, 1.1637070369832734, 1.1657715198141956, 1.1683521233528484, 1.1714488475992315, 1.1750616925533448, 1.1791906582151892, 1.1838357445847638, 1.188996951662069, 1.1946742794471046, 1.2008677279398712, 1.2075772971403675, 1.214802987048595, 1.2225447976645527, 1.230802728988241, 1.23957678101966, 1.2488669537588093, 1.2586732472056892, 1.2689956613602997, 1.2798341962226405, 1.291188851792712, 1.303059628070514, 1.3154465250560463, 1.3283495427493093, 1.3417686811503033, 1.3557039402590267, 1.3701553200754817, 1.3851228205996664, 1.4006064418315822, 1.4166061837712283, 1.433122046418605, 1.4501540297737119, 1.46770213383655, 1.4857663586071181, 1.5043467040854166, 1.5234431702714462, 1.543055757165206, 1.5631844647666964, 1.583829293075917, 1.6049902420928683, 1.6266673118175499, 1.6488605022499625, 1.6715698133901054, 1.6947952452379789, 1.718536797793583, 1.742794471056917, 1.7675682650279825, 1.7928581797067773, 1.8186642150933041, 1.8449863711875603, 1.8718246479895475, 1.8991790454992645, 1.927049563716713, 1.9554362026418914, 1.9843389622748004, 2.0137578426154406, 2.0436928436638104, 2.0741439654199114, 2.105111207883742, 2.1365945710553045, 2.168594054934596, 2.2011096595216193, 2.234141384816372, 2.2676892308188563, 2.30175319752907, 2.3363332849470155, 2.371429493072691, 2.4070418219060965, 2.443170271447234, 2.4798148416960997, 2.516975532652698, 2.5546523443170255, 2.592845276689084, 2.6315543297688726, 2.6707795035563926, 2.7105207980516424, 2.7507782132546232, 2.7915517491653348, 2.8328414057837756, 2.8746471831099485, 2.9169690811438507, 2.9598070998854844, 3.0031612393348475, 3.0470314994919416, 3.091417880356766, 3.1363203819293215, 3.181739004209607, 3.227673747197624, 3.274124610893372, 3.3210915952968483, 3.3685747004080566, 3.4165739262269943, 3.465089272753664, 3.514120739988062, 3.563668327930193, 3.6137320365800525, 3.664311865937645, 3.7154078160029655, 3.7670198867760174, 3.8191480782568004, 3.8717923904453126, 3.924952823341558, 3.9786293769455305, 4.032822051257236, 4.08753084627667, 4.142755762003837, 4.1984967984387325, 4.254753955581359, 4.311527233431717, 4.368816631989804, 4.426622151255623, 4.484943791229171, 4.543781551910451, 4.60313543329946, 4.663005435396201, 4.723391558200671, 4.784293801712874, 4.845712165932804, 4.9076466508604675, 4.970097256495862, 5.033063982838984, 5.096546829889839, 5.160545797648425 ], [ 5.208028902759633, 5.144029935001048, 5.080547087950194, 5.01758036160707, 4.955129755971678, 4.893195271044014, 4.831776906824082, 4.770874663311881, 4.710488540507411, 4.65061853841067, 4.591264657021661, 4.532426896340381, 4.474105256366832, 4.416299737101014, 4.359010338542927, 4.302237060692569, 4.245979903549943, 4.190238867115047, 4.13501395138788, 4.080305156368445, 4.026112482056741, 3.972435928452766, 3.9192754955565228, 3.8666311833680105, 3.8145029918872275, 3.7628909211141757, 3.711794971048854, 3.6612151416912626, 3.611151433041403, 3.561603845099272, 3.5125723778648723, 3.4640570313382035, 3.416057805519266, 3.3685747004080575, 3.3216077160045803, 3.275156852308834, 3.2292221093208173, 3.1838034870405316, 3.1389009854679752, 3.0945146046031518, 3.0506443444460567, 3.0072902049966928, 2.96445218625506, 2.9221302882211573, 2.8803245108949853, 2.8390348542765436, 2.7982613183658325, 2.7580039031628516, 2.718262608667602, 2.6790374348800823, 2.640328381800294, 2.6021354494282347, 2.5644586377639067, 2.5272979468073093, 2.490653376558442, 2.4545249270173057, 2.4189125981839004, 2.3838163900582248, 2.3492363026402794, 2.3151723359300656, 2.2816244899275815, 2.2485927646328285, 2.2160771600458053, 2.1840776761665133, 2.1525943129949514, 2.12162707053112, 2.0911759487750197, 2.0612409477266493, 2.0318220673860097, 2.0029193077531007, 1.9745326688279219, 1.9466621506104738, 1.9193077531007559, 1.892469476298769, 1.8661473202045125, 1.8403412848179865, 1.8150513701391908, 1.7902775761681262, 1.7660199029047918, 1.7422783503491877, 1.7190529185013141, 1.6963436073611713, 1.674150416928759, 1.6524733472040771, 1.6313123981871258, 1.6106675698779052, 1.5905388622764147, 1.570926275382655, 1.5518298091966258, 1.533249463718327, 1.5151852389477587, 1.4976371348849207, 1.4806051515298138, 1.464089288882437, 1.448089546942791, 1.4326059257108752, 1.4176384251866905, 1.4031870453702355, 1.3892517862615117, 1.375832647860518, 1.362929630167255, 1.3505427331817228, 1.3386719569039207, 1.3273173013338493, 1.316478766471508, 1.306156352316898, 1.296350058870018, 1.2870598861308684, 1.2782858340994498, 1.2700279027757615, 1.2622860921598034, 1.2550604022515763, 1.2483508330510795, 1.2421573845583134, 1.2364800567732774, 1.2313188496959722, 1.2266737633263975, 1.2225447976645536, 1.2189319527104399, 1.2158352284640568, 1.213254624925404, 1.2111901420944822, 1.2096417799712902, 1.2086095385558293, 1.2080934178480986, 1.2080934178480986, 1.2086095385558293, 1.2096417799712902, 1.2111901420944817, 1.213254624925404, 1.2158352284640568, 1.2189319527104399, 1.2225447976645532, 1.2266737633263975, 1.2313188496959722, 1.2364800567732774, 1.242157384558313, 1.2483508330510795, 1.255060402251576, 1.2622860921598034, 1.270027902775761, 1.2782858340994494, 1.2870598861308684, 1.2963500588700176, 1.3061563523168975, 1.316478766471508, 1.3273173013338488, 1.3386719569039203, 1.3505427331817224, 1.3629296301672547, 1.3758326478605176, 1.3892517862615117, 1.403187045370235, 1.41763842518669, 1.4326059257108748, 1.4480895469427906, 1.4640892888824366, 1.4806051515298133, 1.4976371348849202, 1.5151852389477583, 1.5332494637183265, 1.551829809196625, 1.5709262753826545, 1.5905388622764143, 1.6106675698779047, 1.6313123981871254, 1.6524733472040767, 1.6741504169287582, 1.6963436073611708, 1.7190529185013137, 1.7422783503491872, 1.7660199029047914, 1.7902775761681253, 1.8150513701391908, 1.8403412848179856, 1.8661473202045125, 1.8924694762987686, 1.9193077531007559, 1.9466621506104729, 1.9745326688279214, 2.0029193077531, 2.031822067386009, 2.061240947726649, 2.091175948775019, 2.1216270705311198, 2.1525943129949505, 2.184077676166513, 2.2160771600458045, 2.2485927646328276, 2.28162448992758, 2.3151723359300647, 2.3492363026402785, 2.383816390058224, 2.4189125981838995, 2.454524927017305, 2.490653376558442, 2.527297946807308, 2.5644586377639063, 2.602135449428234, 2.6403283818002925, 2.679037434880081, 2.718262608667601, 2.7580039031628507, 2.7982613183658316, 2.839034854276543, 2.880324510894984, 2.922130288221157, 2.964452186255059, 3.0072902049966928, 3.050644344446056, 3.09451460460315, 3.1389009854679744, 3.18380348704053, 3.2292221093208155, 3.2751568523088324, 3.3216077160045803, 3.3685747004080566, 3.416057805519265, 3.4640570313382026, 3.5125723778648723, 3.5616038450992704, 3.6111514330414014, 3.661215141691261, 3.711794971048853, 3.762890921114174, 3.8145029918872257, 3.8666311833680087, 3.919275495556521, 3.972435928452766, 4.026112482056739, 4.0803051563684445, 4.1350139513878785, 4.1902388671150455, 4.245979903549941, 4.302237060692567, 4.359010338542926, 4.416299737101013, 4.4741052563668315, 4.53242689634038, 4.591264657021659, 4.650618538410669, 4.710488540507409, 4.770874663311879, 4.831776906824082, 4.8931952710440125, 4.955129755971676, 5.01758036160707, 5.080547087950192, 5.144029935001047, 5.208028902759633 ], [ 5.256028128578571, 5.192029160819986, 5.128546313769132, 5.065579587426008, 5.003128981790615, 4.941194496862952, 4.87977613264302, 4.818873889130819, 4.758487766326349, 4.698617764229608, 4.6392638828405985, 4.580426122159318, 4.52210448218577, 4.464298962919952, 4.407009564361864, 4.350236286511507, 4.29397912936888, 4.238238092933985, 4.183013177206818, 4.128304382187383, 4.074111707875678, 4.020435154271704, 3.9672747213754604, 3.914630409186948, 3.862502217706165, 3.8108901469331133, 3.7597941968677917, 3.7092143675102003, 3.659150658860341, 3.60960307091821, 3.56057160368381, 3.512056257157141, 3.4640570313382035, 3.416573926226995, 3.369606941823518, 3.323156078127772, 3.277221335139755, 3.2318027128594693, 3.186900211286913, 3.1425138304220894, 3.0986435702649944, 3.0552894308156304, 3.0124514120739976, 2.970129514040095, 2.928323736713923, 2.8870340800954812, 2.84626054418477, 2.8060031289817893, 2.7662618344865395, 2.72703666069902, 2.6883276076192315, 2.6501346752471724, 2.6124578635828444, 2.575297172626247, 2.53865260237738, 2.5025241528362434, 2.466911824002838, 2.4318156158771624, 2.397235528459217, 2.3631715617490032, 2.329623715746519, 2.296591990451766, 2.264076385864743, 2.232076901985451, 2.200593538813889, 2.169626296350058, 2.1391751745939573, 2.109240173545587, 2.0798212932049474, 2.0509185335720383, 2.0225318946468596, 1.9946613764294114, 1.9673069789196935, 1.9404687021177067, 1.9141465460234501, 1.8883405106369242, 1.8630505959581285, 1.838276801987064, 1.8140191287237295, 1.7902775761681253, 1.7670521443202518, 1.744342833180109, 1.7221496427476968, 1.7004725730230148, 1.6793116240060635, 1.6586667956968428, 1.6385380880953524, 1.6189255012015926, 1.5998290350155635, 1.5812486895372646, 1.5631844647666964, 1.5456363607038583, 1.5286043773487514, 1.5120885147013747, 1.4960887727617287, 1.4806051515298129, 1.4656376510056282, 1.4511862711891732, 1.4372510120804494, 1.4238318736794557, 1.4109288559861928, 1.3985419590006605, 1.3866711827228584, 1.375316527152787, 1.3644779922904458, 1.3541555781358356, 1.3443492846889558, 1.335059111949806, 1.3262850599183875, 1.3180271285946992, 1.310285317978741, 1.303059628070514, 1.2963500588700172, 1.290156610377251, 1.284479282592215, 1.2793180755149098, 1.2746729891453352, 1.2705440234834913, 1.2669311785293775, 1.2638344542829945, 1.2612538507443416, 1.2591893679134198, 1.2576410057902279, 1.256608764374767, 1.2560926436670363, 1.2560926436670363, 1.256608764374767, 1.2576410057902279, 1.2591893679134194, 1.2612538507443416, 1.2638344542829945, 1.2669311785293775, 1.2705440234834908, 1.2746729891453352, 1.2793180755149098, 1.284479282592215, 1.2901566103772506, 1.2963500588700172, 1.3030596280705136, 1.310285317978741, 1.3180271285946987, 1.326285059918387, 1.335059111949806, 1.3443492846889553, 1.3541555781358352, 1.3644779922904458, 1.3753165271527865, 1.386671182722858, 1.39854195900066, 1.4109288559861923, 1.4238318736794553, 1.4372510120804494, 1.4511862711891728, 1.4656376510056277, 1.4806051515298124, 1.4960887727617282, 1.5120885147013743, 1.528604377348751, 1.545636360703858, 1.563184464766696, 1.5812486895372642, 1.5998290350155626, 1.6189255012015922, 1.638538088095352, 1.6586667956968424, 1.679311624006063, 1.7004725730230144, 1.7221496427476959, 1.7443428331801085, 1.7670521443202514, 1.7902775761681249, 1.814019128723729, 1.838276801987063, 1.8630505959581285, 1.8883405106369233, 1.9141465460234501, 1.9404687021177063, 1.9673069789196935, 1.9946613764294105, 2.022531894646859, 2.0509185335720375, 2.0798212932049465, 2.1092401735455866, 2.1391751745939565, 2.1696262963500574, 2.200593538813888, 2.2320769019854505, 2.264076385864742, 2.2965919904517653, 2.329623715746518, 2.3631715617490023, 2.397235528459216, 2.4318156158771616, 2.466911824002837, 2.5025241528362425, 2.53865260237738, 2.5752971726262457, 2.612457863582844, 2.6501346752471715, 2.68832760761923, 2.7270366606990186, 2.7662618344865386, 2.8060031289817884, 2.8462605441847693, 2.887034080095481, 2.9283237367139217, 2.9701295140400945, 3.0124514120739967, 3.0552894308156304, 3.0986435702649935, 3.1425138304220877, 3.186900211286912, 3.2318027128594675, 3.2772213351397532, 3.32315607812777, 3.369606941823518, 3.4165739262269943, 3.4640570313382026, 3.5120562571571403, 3.56057160368381, 3.609603070918208, 3.659150658860339, 3.7092143675101985, 3.759794196867791, 3.8108901469331116, 3.8625022177061634, 3.9146304091869464, 3.9672747213754587, 4.020435154271704, 4.074111707875677, 4.128304382187382, 4.183013177206816, 4.238238092933983, 4.2939791293688785, 4.350236286511505, 4.407009564361863, 4.46429896291995, 4.522104482185769, 4.580426122159317, 4.639263882840597, 4.698617764229606, 4.758487766326347, 4.818873889130817, 4.87977613264302, 4.94119449686295, 5.0031289817906135, 5.065579587426008, 5.12854631376913, 5.192029160819985, 5.256028128578571 ], [ 5.304543475105239, 5.240544507346655, 5.1770616602958, 5.114094933952678, 5.051644328317284, 4.989709843389622, 4.9282914791696895, 4.867389235657488, 4.8070031128530175, 4.747133110756277, 4.687779229367267, 4.628941468685988, 4.57061982871244, 4.512814309446622, 4.455524910888533, 4.398751633038176, 4.342494475895549, 4.286753439460654, 4.231528523733488, 4.176819728714053, 4.122627054402347, 4.0689505007983735, 4.01579006790213, 3.963145755713617, 3.911017564232834, 3.859405493459782, 3.8083095433944614, 3.75772971403687, 3.7076660053870096, 3.6581184174448786, 3.6090869502104796, 3.560571603683811, 3.5125723778648723, 3.465089272753664, 3.4181222883501867, 3.3716714246544406, 3.3257366816664238, 3.280318059386138, 3.2354155578135826, 3.191029176948758, 3.147158916791664, 3.1038047773423, 3.0609667586006672, 3.0186448605667646, 2.976839083240592, 2.935549426622151, 2.89477589071144, 2.8545184755084585, 2.814777181013209, 2.7755520072256887, 2.7368429541459003, 2.6986500217738416, 2.6609732101095136, 2.6238125191529162, 2.5871679489040496, 2.551039499362913, 2.515427170529507, 2.4803309624038317, 2.4457508749858863, 2.4116869082756724, 2.3781390622731884, 2.3451073369784354, 2.3125917323914122, 2.28059224851212, 2.2491088853405583, 2.218141642876727, 2.1876905211206266, 2.1577555200722562, 2.1283366397316166, 2.0994338800987076, 2.0710472411735283, 2.0431767229560807, 2.015822325446363, 1.988984048644376, 1.9626618925501194, 1.9368558571635934, 1.9115659424847982, 1.8867921485137331, 1.8625344752503987, 1.8387929226947946, 1.815567490846921, 1.7928581797067782, 1.7706649892743656, 1.748987919549684, 1.7278269705327327, 1.7071821422235116, 1.6870534346220216, 1.6674408477282618, 1.6483443815422327, 1.6297640360639338, 1.6116998112933656, 1.5941517072305276, 1.5771197238754207, 1.560603861228044, 1.544604119288398, 1.529120498056482, 1.514152997532297, 1.4997016177158424, 1.4857663586071186, 1.472347220206125, 1.459444202512862, 1.4470573055273297, 1.4351865292495276, 1.4238318736794562, 1.412993338817115, 1.4026709246625049, 1.392864631215625, 1.3835744584764753, 1.3748004064450567, 1.3665424751213684, 1.3588006645054103, 1.3515749745971832, 1.3448654053966864, 1.3386719569039203, 1.3329946291188843, 1.327833422041579, 1.3231883356720044, 1.3190593700101605, 1.3154465250560468, 1.3123498008096637, 1.3097691972710108, 1.307704714440089, 1.306156352316897, 1.3051241109014362, 1.3046079901937055, 1.3046079901937055, 1.3051241109014362, 1.306156352316897, 1.3077047144400886, 1.3097691972710108, 1.3123498008096637, 1.3154465250560468, 1.31905937001016, 1.3231883356720044, 1.327833422041579, 1.3329946291188843, 1.3386719569039198, 1.3448654053966864, 1.3515749745971828, 1.3588006645054103, 1.366542475121368, 1.3748004064450563, 1.3835744584764753, 1.3928646312156245, 1.4026709246625044, 1.412993338817115, 1.4238318736794557, 1.4351865292495272, 1.4470573055273293, 1.4594442025128616, 1.4723472202061245, 1.4857663586071181, 1.499701617715842, 1.514152997532297, 1.5291204980564816, 1.5446041192883975, 1.5606038612280435, 1.5771197238754202, 1.5941517072305271, 1.6116998112933651, 1.6297640360639334, 1.6483443815422318, 1.6674408477282614, 1.6870534346220212, 1.7071821422235116, 1.7278269705327318, 1.7489879195496836, 1.770664989274365, 1.7928581797067777, 1.8155674908469202, 1.838792922694794, 1.8625344752503983, 1.8867921485137322, 1.9115659424847977, 1.936855857163593, 1.962661892550119, 1.988984048644375, 2.0158223254463628, 2.0431767229560798, 2.0710472411735283, 2.0994338800987062, 2.128336639731616, 2.157755520072256, 2.1876905211206257, 2.2181416428767267, 2.2491088853405574, 2.2805922485121197, 2.3125917323914114, 2.3451073369784345, 2.3781390622731875, 2.4116869082756716, 2.4457508749858854, 2.4803309624038308, 2.515427170529507, 2.551039499362912, 2.5871679489040487, 2.6238125191529154, 2.660973210109513, 2.6986500217738403, 2.7368429541458994, 2.775552007225688, 2.8147771810132083, 2.854518475508457, 2.8947758907114385, 2.93554942662215, 2.9768390832405913, 3.0186448605667637, 3.0609667586006655, 3.103804777342299, 3.1471589167916623, 3.1910291769487573, 3.2354155578135817, 3.280318059386137, 3.325736681666422, 3.371671424654439, 3.4181222883501867, 3.465089272753664, 3.5125723778648723, 3.56057160368381, 3.6090869502104788, 3.6581184174448778, 3.707666005387008, 3.757729714036868, 3.8083095433944596, 3.8594054934597803, 3.911017564232833, 3.963145755713616, 4.015790067902128, 4.068950500798373, 4.122627054402346, 4.176819728714051, 4.231528523733486, 4.286753439460652, 4.342494475895547, 4.398751633038175, 4.455524910888533, 4.51281430944662, 4.570619828712438, 4.628941468685987, 4.687779229367266, 4.747133110756275, 4.807003112853017, 4.867389235657487, 4.928291479169689, 4.98970984338962, 5.051644328317283, 5.114094933952677, 5.177061660295799, 5.2405445073466534, 5.304543475105239 ], [ 5.353574942339638, 5.289575974581053, 5.2260931275302, 5.1631264011870766, 5.100675795551684, 5.038741310624021, 4.9773229464040885, 4.916420702891887, 4.8560345800874165, 4.796164577990677, 4.736810696601666, 4.677972935920387, 4.619651295946838, 4.56184577668102, 4.504556378122933, 4.447783100272575, 4.391525943129948, 4.335784906695053, 4.280559990967886, 4.225851195948451, 4.171658521636747, 4.1179819680327725, 4.064821535136529, 4.012177222948016, 3.960049031467234, 3.908436960694182, 3.8573410106288595, 3.806761181271268, 3.7566974726214086, 3.7071498846792785, 3.6581184174448786, 3.60960307091821, 3.5616038450992713, 3.514120739988064, 3.4671537555845866, 3.4207028918888396, 3.3747681489008228, 3.329349526620538, 3.2844470250479816, 3.240060644183158, 3.196190384026063, 3.152836244576699, 3.1099982258350662, 3.0676763278011636, 3.025870550474991, 2.98458089385655, 2.943807357945839, 2.9035499427428575, 2.863808648247608, 2.8245834744600877, 2.7858744213802993, 2.7476814890082406, 2.7100046773439126, 2.6728439863873152, 2.6361994161384485, 2.600070966597312, 2.564458637763906, 2.5293624296382307, 2.4947823422202853, 2.4607183755100714, 2.4271705295075874, 2.3941388042128344, 2.3616231996258112, 2.329623715746519, 2.2981403525749573, 2.267173110111126, 2.2367219883550256, 2.2067869873066552, 2.1773681069660156, 2.1484653473331066, 2.1200787084079273, 2.0922081901904797, 2.064853792680762, 2.038015515878775, 2.0116933597845184, 1.9858873243979924, 1.9605974097191972, 1.935823615748132, 1.9115659424847977, 1.8878243899291935, 1.86459895808132, 1.8418896469411772, 1.8196964565087645, 1.798019386784083, 1.7768584377671317, 1.7562136094579106, 1.7360849018564206, 1.7164723149626608, 1.6973758487766317, 1.6787955032983328, 1.6607312785277646, 1.6431831744649266, 1.6261511911098196, 1.609635328462443, 1.593635586522797, 1.578151965290881, 1.563184464766696, 1.5487330849502414, 1.5347978258415176, 1.521378687440524, 1.508475669747261, 1.4960887727617287, 1.4842179964839266, 1.4728633409138552, 1.462024806051514, 1.4517023918969039, 1.441896098450024, 1.4326059257108743, 1.4238318736794557, 1.4155739423557674, 1.4078321317398093, 1.4006064418315822, 1.3938968726310854, 1.3877034241383193, 1.3820260963532833, 1.376864889275978, 1.3722198029064034, 1.3680908372445595, 1.3644779922904458, 1.3613812680440627, 1.3588006645054098, 1.356736181674488, 1.355187819551296, 1.3541555781358352, 1.3536394574281045, 1.3536394574281045, 1.3541555781358352, 1.355187819551296, 1.3567361816744876, 1.3588006645054098, 1.3613812680440627, 1.3644779922904458, 1.368090837244559, 1.3722198029064034, 1.376864889275978, 1.3820260963532833, 1.3877034241383188, 1.3938968726310854, 1.4006064418315818, 1.4078321317398093, 1.415573942355767, 1.4238318736794553, 1.4326059257108743, 1.4418960984500235, 1.4517023918969034, 1.462024806051514, 1.4728633409138547, 1.4842179964839262, 1.4960887727617282, 1.5084756697472606, 1.5213786874405235, 1.5347978258415171, 1.548733084950241, 1.563184464766696, 1.5781519652908806, 1.5936355865227965, 1.6096353284624425, 1.6261511911098192, 1.6431831744649261, 1.6607312785277641, 1.6787955032983324, 1.6973758487766308, 1.7164723149626604, 1.7360849018564202, 1.7562136094579106, 1.7768584377671308, 1.7980193867840826, 1.819696456508764, 1.8418896469411767, 1.8645989580813191, 1.887824389929193, 1.9115659424847973, 1.9358236157481312, 1.9605974097191967, 1.985887324397992, 2.011693359784518, 2.038015515878774, 2.0648537926807617, 2.0922081901904788, 2.1200787084079273, 2.1484653473331052, 2.177368106966015, 2.206786987306655, 2.2367219883550247, 2.2671731101111257, 2.2981403525749564, 2.3296237157465187, 2.3616231996258104, 2.3941388042128335, 2.4271705295075865, 2.4607183755100706, 2.4947823422202844, 2.5293624296382298, 2.564458637763906, 2.600070966597311, 2.6361994161384477, 2.6728439863873144, 2.710004677343912, 2.7476814890082393, 2.7858744213802984, 2.824583474460087, 2.8638086482476073, 2.903549942742856, 2.9438073579458375, 2.984580893856549, 3.0258705504749903, 3.0676763278011627, 3.1099982258350654, 3.152836244576699, 3.1961903840260613, 3.2400606441831563, 3.2844470250479807, 3.329349526620536, 3.374768148900822, 3.4207028918888387, 3.4671537555845857, 3.514120739988062, 3.5616038450992704, 3.609603070918208, 3.6581184174448778, 3.7071498846792768, 3.7566974726214077, 3.8067611812712663, 3.8573410106288586, 3.9084369606941793, 3.960049031467232, 4.012177222948015, 4.064821535136527, 4.117981968032772, 4.171658521636745, 4.225851195948451, 4.280559990967884, 4.335784906695051, 4.391525943129946, 4.447783100272574, 4.504556378122931, 4.561845776681018, 4.619651295946838, 4.677972935920385, 4.736810696601665, 4.796164577990675, 4.856034580087416, 4.916420702891886, 4.977322946404088, 5.038741310624019, 5.100675795551682, 5.163126401187076, 5.2260931275301985, 5.289575974581053, 5.353574942339638 ], [ 5.4031225302817685, 5.339123562523184, 5.27564071547233, 5.2126739891292075, 5.150223383493814, 5.088288898566152, 5.026870534346219, 4.965968290834018, 4.905582168029547, 4.845712165932807, 4.786358284543796, 4.727520523862518, 4.669198883888969, 4.611393364623151, 4.554103966065063, 4.497330688214706, 4.441073531072078, 4.385332494637183, 4.330107578910017, 4.275398783890582, 4.221206109578877, 4.1675295559749035, 4.11436912307866, 4.061724810890146, 4.009596619409364, 3.957984548636312, 3.9068885985709905, 3.856308769213399, 3.8062450605635387, 3.7566974726214086, 3.7076660053870096, 3.659150658860341, 3.6111514330414014, 3.563668327930194, 3.5167013435267167, 3.4702504798309697, 3.424315736842953, 3.378897114562668, 3.3339946129901126, 3.289608232125288, 3.245737971968193, 3.20238383251883, 3.1595458137771963, 3.1172239157432937, 3.075418138417122, 3.03412848179868, 2.993354945887969, 2.953097530684988, 2.9133562361897383, 2.8741310624022187, 2.8354220093224303, 2.797229076950371, 2.759552265286043, 2.722391574329446, 2.6857470040805786, 2.649618554539442, 2.614006225706037, 2.578910017580361, 2.544329930162416, 2.510265963452202, 2.476718117449718, 2.443686392154965, 2.411170787567942, 2.3791713036886497, 2.347687940517088, 2.3167206980532566, 2.286269576297156, 2.256334575248786, 2.226915694908146, 2.198012935275237, 2.1696262963500583, 2.14175577813261, 2.1144013806228923, 2.0875631038209055, 2.061240947726649, 2.035434912340123, 2.0101449976613273, 1.9853712036902627, 1.9611135304269283, 1.937371977871324, 1.9141465460234506, 1.8914372348833077, 1.8692440444508955, 1.8475669747262136, 1.8264060257092622, 1.8057611974000416, 1.7856324897985512, 1.7660199029047914, 1.7469234367187623, 1.7283430912404634, 1.7102788664698951, 1.692730762407057, 1.6756987790519502, 1.6591829164045735, 1.6431831744649275, 1.6276995532330116, 1.612732052708827, 1.598280672892372, 1.5843454137836481, 1.5709262753826545, 1.5580232576893915, 1.5456363607038592, 1.5337655844260571, 1.5224109288559857, 1.5115723939936445, 1.5012499798390344, 1.4914436863921545, 1.4821535136530049, 1.4733794616215863, 1.465121530297898, 1.4573797196819398, 1.4501540297737128, 1.443444460573216, 1.4372510120804498, 1.4315736842954139, 1.4264124772181086, 1.421767390848534, 1.41763842518669, 1.4140255802325763, 1.4109288559861932, 1.4083482524475404, 1.4062837696166186, 1.4047354074934266, 1.4037031660779657, 1.403187045370235, 1.403187045370235, 1.4037031660779657, 1.4047354074934266, 1.4062837696166182, 1.4083482524475404, 1.4109288559861932, 1.4140255802325763, 1.4176384251866896, 1.421767390848534, 1.4264124772181086, 1.4315736842954139, 1.4372510120804494, 1.443444460573216, 1.4501540297737123, 1.4573797196819398, 1.4651215302978975, 1.4733794616215858, 1.4821535136530049, 1.491443686392154, 1.501249979839034, 1.5115723939936445, 1.5224109288559853, 1.5337655844260567, 1.5456363607038588, 1.558023257689391, 1.570926275382654, 1.5843454137836481, 1.5982806728923715, 1.6127320527088265, 1.6276995532330112, 1.643183174464927, 1.659182916404573, 1.6756987790519497, 1.6927307624070567, 1.7102788664698947, 1.728343091240463, 1.7469234367187614, 1.766019902904791, 1.7856324897985507, 1.8057611974000412, 1.8264060257092618, 1.8475669747262131, 1.8692440444508946, 1.8914372348833073, 1.9141465460234501, 1.9373719778713236, 1.9611135304269278, 1.9853712036902618, 2.0101449976613273, 2.035434912340122, 2.061240947726649, 2.087563103820905, 2.1144013806228923, 2.1417557781326093, 2.169626296350058, 2.1980129352752362, 2.2269156949081452, 2.2563345752487853, 2.286269576297155, 2.316720698053256, 2.347687940517087, 2.3791713036886493, 2.411170787567941, 2.443686392154964, 2.4767181174497166, 2.510265963452201, 2.544329930162415, 2.5789100175803603, 2.614006225706036, 2.6496185545394413, 2.6857470040805786, 2.7223915743294445, 2.7595522652860427, 2.7972290769503703, 2.835422009322429, 2.8741310624022174, 2.9133562361897374, 2.953097530684987, 2.993354945887968, 3.03412848179868, 3.0754181384171204, 3.1172239157432937, 3.1595458137771955, 3.202383832518829, 3.2457379719681922, 3.2896082321252873, 3.333994612990111, 3.378897114562667, 3.424315736842952, 3.470250479830969, 3.516701343526716, 3.563668327930193, 3.6111514330414014, 3.659150658860339, 3.707666005387008, 3.7566974726214077, 3.806245060563538, 3.8563087692133973, 3.9068885985709887, 3.9579845486363094, 4.009596619409363, 4.061724810890146, 4.114369123078658, 4.167529555974902, 4.221206109578876, 4.275398783890581, 4.330107578910015, 4.385332494637181, 4.441073531072076, 4.497330688214705, 4.554103966065062, 4.611393364623149, 4.669198883888968, 4.727520523862516, 4.786358284543796, 4.845712165932805, 4.905582168029547, 4.965968290834017, 5.026870534346218, 5.08828889856615, 5.150223383493813, 5.212673989129206, 5.275640715472329, 5.339123562523183, 5.4031225302817685 ], [ 5.453186238931629, 5.389187271173044, 5.32570442412219, 5.262737697779066, 5.2002870921436735, 5.13835260721601, 5.076934242996078, 5.016031999483877, 4.955645876679407, 4.895775874582666, 4.836421993193657, 4.7775842325123765, 4.719262592538828, 4.66145707327301, 4.6041676747149225, 4.547394396864565, 4.4911372397219385, 4.435396203287043, 4.380171287559876, 4.325462492540441, 4.2712698182287365, 4.217593264624762, 4.164432831728519, 4.111788519540006, 4.059660328059223, 4.0080482572861715, 3.95695230722085, 3.9063724778632585, 3.856308769213399, 3.806761181271268, 3.757729714036868, 3.7092143675101994, 3.6612151416912617, 3.6137320365800534, 3.566765052176576, 3.52031418848083, 3.474379445492813, 3.4289608232125275, 3.384058321639971, 3.3396719407751476, 3.2958016806180526, 3.2524475411686886, 3.2096095224270558, 3.167287624393153, 3.1254818470669807, 3.0841921904485394, 3.0434186545378283, 3.0031612393348475, 2.9634199448395977, 2.924194771052078, 2.8854857179722897, 2.8472927856002306, 2.8096159739359026, 2.772455282979305, 2.735810712730438, 2.6996822631893016, 2.6640699343558962, 2.6289737262302206, 2.5943936388122752, 2.5603296721020614, 2.5267818260995774, 2.4937501008048244, 2.461234496217801, 2.429235012338509, 2.3977516491669473, 2.366784406703116, 2.3363332849470155, 2.306398283898645, 2.2769794035580055, 2.2480766439250965, 2.2196900049999178, 2.1918194867824696, 2.1644650892727517, 2.137626812470765, 2.1113046563765083, 2.0854986209899824, 2.0602087063111867, 2.035434912340122, 2.0111772390767877, 1.9874356865211835, 1.96421025467331, 1.9415009435331672, 1.919307753100755, 1.897630683376073, 1.8764697343591217, 1.855824906049901, 1.8356961984484106, 1.8160836115546508, 1.7969871453686217, 1.7784067998903228, 1.7603425751197546, 1.7427944710569165, 1.7257624877018096, 1.709246625054433, 1.6932468831147869, 1.677763261882871, 1.6627957613586863, 1.6483443815422314, 1.6344091224335076, 1.620989984032514, 1.608086966339251, 1.5957000693537187, 1.5838292930759166, 1.5724746375058452, 1.561636102643504, 1.5513136884888938, 1.541507395042014, 1.5322172223028643, 1.5234431702714457, 1.5151852389477574, 1.5074434283317992, 1.5002177384235722, 1.4935081692230754, 1.4873147207303092, 1.4816373929452733, 1.476476185867968, 1.4718310994983934, 1.4677021338365495, 1.4640892888824357, 1.4609925646360526, 1.4584119610973998, 1.456347478266478, 1.454799116143286, 1.4537668747278252, 1.4532507540200945, 1.4532507540200945, 1.4537668747278252, 1.454799116143286, 1.4563474782664776, 1.4584119610973998, 1.4609925646360526, 1.4640892888824357, 1.467702133836549, 1.4718310994983934, 1.476476185867968, 1.4816373929452733, 1.4873147207303088, 1.4935081692230754, 1.5002177384235718, 1.5074434283317992, 1.515185238947757, 1.5234431702714453, 1.5322172223028643, 1.5415073950420135, 1.5513136884888934, 1.561636102643504, 1.5724746375058447, 1.5838292930759161, 1.5957000693537182, 1.6080869663392505, 1.6209899840325135, 1.6344091224335076, 1.648344381542231, 1.662795761358686, 1.6777632618828706, 1.6932468831147864, 1.7092466250544325, 1.7257624877018092, 1.742794471056916, 1.7603425751197541, 1.7784067998903224, 1.7969871453686208, 1.8160836115546504, 1.8356961984484101, 1.8558249060499006, 1.8764697343591212, 1.8976306833760725, 1.919307753100754, 1.9415009435331667, 1.9642102546733096, 1.987435686521183, 2.0111772390767872, 2.035434912340121, 2.0602087063111867, 2.0854986209899815, 2.1113046563765083, 2.1376268124707645, 2.1644650892727517, 2.1918194867824687, 2.2196900049999173, 2.2480766439250957, 2.2769794035580047, 2.3063982838986448, 2.3363332849470146, 2.3667844067031156, 2.3977516491669464, 2.4292350123385087, 2.4612344962178003, 2.4937501008048235, 2.526781826099576, 2.5603296721020605, 2.5943936388122744, 2.6289737262302197, 2.6640699343558953, 2.6996822631893007, 2.735810712730438, 2.772455282979304, 2.809615973935902, 2.8472927856002297, 2.8854857179722884, 2.924194771052077, 2.963419944839597, 3.0031612393348466, 3.0434186545378275, 3.0841921904485385, 3.12548184706698, 3.1672876243931523, 3.209609522427055, 3.2524475411686886, 3.2958016806180517, 3.339671940775146, 3.3840583216399702, 3.4289608232125257, 3.4743794454928114, 3.520314188480828, 3.566765052176576, 3.6137320365800525, 3.661215141691261, 3.7092143675101985, 3.757729714036868, 3.8067611812712663, 3.8563087692133973, 3.9063724778632567, 3.956952307220849, 4.00804825728617, 4.059660328059222, 4.111788519540005, 4.164432831728517, 4.217593264624762, 4.271269818228735, 4.32546249254044, 4.380171287559874, 4.435396203287041, 4.491137239721937, 4.547394396864563, 4.604167674714922, 4.6614570732730085, 4.719262592538827, 4.777584232512376, 4.836421993193655, 4.8957758745826645, 4.955645876679405, 5.016031999483875, 5.076934242996078, 5.138352607216008, 5.200287092143672, 5.262737697779066, 5.325704424122188, 5.389187271173043, 5.453186238931629 ], [ 5.50376606828922, 5.439767100530636, 5.376284253479781, 5.313317527136658, 5.250866921501265, 5.1889324365736025, 5.12751407235367, 5.066611828841469, 5.006225706036998, 4.946355703940258, 4.887001822551248, 4.828164061869969, 4.769842421896421, 4.712036902630603, 4.654747504072514, 4.597974226222157, 4.54171706907953, 4.4859760326446345, 4.4307511169174685, 4.3760423218980335, 4.321849647586328, 4.268173093982354, 4.215012661086111, 4.162368348897598, 4.110240157416815, 4.058628086643763, 4.007532136578442, 3.956952307220851, 3.9068885985709905, 3.8573410106288595, 3.8083095433944605, 3.7597941968677917, 3.711794971048853, 3.664311865937645, 3.6173448815341676, 3.5708940178384214, 3.5249592748504046, 3.479540652570119, 3.4346381509975634, 3.390251770132739, 3.346381509975645, 3.303027370526281, 3.260189351784648, 3.2178674537507455, 3.176061676424573, 3.1347720198061317, 3.0939984838954206, 3.053741068692439, 3.01399977419719, 2.9747746004096696, 2.936065547329881, 2.8978726149578224, 2.8601958032934944, 2.823035112336897, 2.7863905420880304, 2.750262092546894, 2.7146497637134877, 2.6795535555878125, 2.644973468169867, 2.6109095014596533, 2.577361655457169, 2.5443299301624163, 2.511814325575393, 2.479814841696101, 2.448331478524539, 2.417364236060708, 2.3869131143046074, 2.356978113256237, 2.3275592329155974, 2.2986564732826884, 2.270269834357509, 2.2423993161400615, 2.215044918630344, 2.188206641828357, 2.1618844857341, 2.1360784503475743, 2.110788535668779, 2.086014741697714, 2.0617570684343796, 2.0380155158787754, 2.014790084030902, 1.992080772890759, 1.9698875824583464, 1.9482105127336649, 1.9270495637167135, 1.9064047354074924, 1.8862760278060025, 1.8666634409122427, 1.8475669747262136, 1.8289866292479147, 1.8109224044773464, 1.7933743004145084, 1.7763423170594015, 1.7598264544120248, 1.7438267124723787, 1.728343091240463, 1.7133755907162778, 1.6989242108998233, 1.6849889517910994, 1.6715698133901058, 1.6586667956968428, 1.6462798987113105, 1.6344091224335084, 1.623054466863437, 1.6122159320010958, 1.6018935178464857, 1.5920872243996058, 1.5827970516604561, 1.5740229996290376, 1.5657650683053492, 1.558023257689391, 1.550797567781164, 1.5440879985806673, 1.537894550087901, 1.5322172223028652, 1.52705601522556, 1.5224109288559853, 1.5182819631941413, 1.5146691182400276, 1.5115723939936445, 1.5089917904549917, 1.50692730762407, 1.505378945500878, 1.504346704085417, 1.5038305833776864, 1.5038305833776864, 1.504346704085417, 1.505378945500878, 1.5069273076240695, 1.5089917904549917, 1.5115723939936445, 1.5146691182400276, 1.5182819631941409, 1.5224109288559853, 1.52705601522556, 1.5322172223028652, 1.5378945500879007, 1.5440879985806673, 1.5507975677811636, 1.558023257689391, 1.5657650683053488, 1.5740229996290371, 1.5827970516604561, 1.5920872243996054, 1.6018935178464853, 1.6122159320010958, 1.6230544668634366, 1.634409122433508, 1.64627989871131, 1.6586667956968424, 1.6715698133901054, 1.684988951791099, 1.6989242108998228, 1.7133755907162778, 1.7283430912404625, 1.7438267124723783, 1.7598264544120243, 1.776342317059401, 1.793374300414508, 1.810922404477346, 1.8289866292479142, 1.8475669747262127, 1.8666634409122422, 1.886276027806002, 1.9064047354074924, 1.9270495637167127, 1.9482105127336644, 1.969887582458346, 1.9920807728907586, 2.014790084030901, 2.038015515878775, 2.061757068434379, 2.086014741697713, 2.1107885356687786, 2.136078450347574, 2.1618844857340997, 2.188206641828356, 2.2150449186303436, 2.2423993161400606, 2.270269834357509, 2.298656473282687, 2.327559232915597, 2.3569781132562366, 2.3869131143046065, 2.4173642360607075, 2.4483314785245383, 2.4798148416961006, 2.511814325575392, 2.5443299301624154, 2.5773616554571683, 2.6109095014596524, 2.6449734681698662, 2.6795535555878116, 2.7146497637134877, 2.750262092546893, 2.7863905420880295, 2.823035112336896, 2.860195803293494, 2.897872614957821, 2.9360655473298802, 2.9747746004096687, 3.013999774197189, 3.053741068692438, 3.093998483895419, 3.134772019806131, 3.176061676424572, 3.2178674537507446, 3.2601893517846463, 3.30302737052628, 3.346381509975643, 3.390251770132738, 3.4346381509975625, 3.479540652570118, 3.524959274850403, 3.5708940178384196, 3.6173448815341676, 3.664311865937645, 3.711794971048853, 3.759794196867791, 3.8083095433944596, 3.8573410106288586, 3.9068885985709887, 3.956952307220849, 4.00753213657844, 4.058628086643761, 4.110240157416814, 4.162368348897597, 4.215012661086109, 4.2681730939823534, 4.321849647586327, 4.376042321898032, 4.430751116917467, 4.485976032644633, 4.541717069079528, 4.5979742262221555, 4.654747504072514, 4.712036902630601, 4.769842421896419, 4.828164061869968, 4.887001822551247, 4.946355703940256, 5.0062257060369975, 5.066611828841467, 5.127514072353669, 5.188932436573601, 5.250866921501264, 5.3133175271366575, 5.3762842534797795, 5.439767100530634, 5.50376606828922 ], [ 5.554862018354541, 5.490863050595957, 5.427380203545102, 5.364413477201979, 5.301962871566586, 5.240028386638923, 5.178610022418991, 5.11770777890679, 5.057321656102319, 4.9974516540055784, 4.938097772616569, 4.87926001193529, 4.820938371961741, 4.763132852695923, 4.705843454137835, 4.649070176287478, 4.592813019144851, 4.537071982709955, 4.481847066982789, 4.427138271963354, 4.372945597651649, 4.319269044047675, 4.266108611151432, 4.2134642989629185, 4.161336107482136, 4.109724036709084, 4.058628086643763, 4.0080482572861715, 3.957984548636311, 3.9084369606941802, 3.8594054934597812, 3.8108901469331125, 3.762890921114174, 3.7154078160029655, 3.6684408315994883, 3.621989967903742, 3.5760552249157254, 3.5306366026354397, 3.485734101062884, 3.44134772019806, 3.3974774600409656, 3.3541233205916017, 3.311285301849969, 3.268963403816066, 3.227157626489894, 3.1858679698714525, 3.1450944339607414, 3.1048370187577596, 3.0650957242625108, 3.0258705504749903, 2.987161497395202, 2.948968565023143, 2.911291753358815, 2.874131062402218, 2.837486492153351, 2.8013580426122147, 2.7657457137788084, 2.7306495056531332, 2.696069418235188, 2.662005451524974, 2.62845760552249, 2.595425880227737, 2.562910275640714, 2.5309107917614218, 2.49942742858986, 2.4684601861260287, 2.438009064369928, 2.408074063321558, 2.378655182980918, 2.349752423348009, 2.32136578442283, 2.2934952662053822, 2.266140868695665, 2.2393025918936775, 2.212980435799421, 2.187174400412895, 2.1618844857340997, 2.1371106917630347, 2.1128530184997003, 2.089111465944096, 2.0658860340962226, 2.0431767229560798, 2.020983532523667, 1.9993064627989856, 1.9781455137820343, 1.9575006854728132, 1.9373719778713232, 1.9177593909775634, 1.8986629247915343, 1.8800825793132354, 1.8620183545426672, 1.8444702504798292, 1.8274382671247222, 1.8109224044773455, 1.7949226625376995, 1.7794390413057837, 1.7644715407815985, 1.750020160965144, 1.7360849018564202, 1.7226657634554265, 1.7097627457621636, 1.6973758487766313, 1.6855050724988292, 1.6741504169287578, 1.6633118820664166, 1.6529894679118065, 1.6431831744649266, 1.633893001725777, 1.6251189496943583, 1.61686101837067, 1.6091192077547118, 1.6018935178464848, 1.595183948645988, 1.5889905001532219, 1.583313172368186, 1.5781519652908806, 1.573506878921306, 1.569377913259462, 1.5657650683053483, 1.5626683440589653, 1.5600877405203124, 1.5580232576893907, 1.5564748955661987, 1.5554426541507378, 1.5549265334430071, 1.5549265334430071, 1.5554426541507378, 1.5564748955661987, 1.5580232576893902, 1.5600877405203124, 1.5626683440589653, 1.5657650683053483, 1.5693779132594616, 1.573506878921306, 1.5781519652908806, 1.583313172368186, 1.5889905001532214, 1.595183948645988, 1.6018935178464844, 1.6091192077547118, 1.6168610183706695, 1.6251189496943579, 1.633893001725777, 1.6431831744649261, 1.652989467911806, 1.6633118820664166, 1.6741504169287573, 1.6855050724988287, 1.6973758487766308, 1.7097627457621631, 1.722665763455426, 1.7360849018564197, 1.7500201609651436, 1.7644715407815985, 1.7794390413057832, 1.794922662537699, 1.810922404477345, 1.8274382671247218, 1.8444702504798287, 1.8620183545426667, 1.880082579313235, 1.8986629247915334, 1.917759390977563, 1.9373719778713228, 1.9575006854728132, 1.9781455137820334, 1.9993064627989852, 2.0209835325236667, 2.0431767229560793, 2.0658860340962217, 2.0891114659440957, 2.1128530184997, 2.137110691763034, 2.1618844857340993, 2.1871744004128946, 2.2129804357994205, 2.2393025918936766, 2.2661408686956643, 2.2934952662053814, 2.32136578442283, 2.349752423348008, 2.3786551829809177, 2.4080740633215574, 2.4380090643699273, 2.4684601861260282, 2.499427428589859, 2.5309107917614213, 2.562910275640713, 2.595425880227736, 2.628457605522489, 2.662005451524973, 2.696069418235187, 2.7306495056531324, 2.7657457137788084, 2.8013580426122138, 2.8374864921533502, 2.874131062402217, 2.9112917533588147, 2.948968565023142, 2.987161497395201, 3.0258705504749894, 3.06509572426251, 3.1048370187577587, 3.1450944339607396, 3.1858679698714516, 3.227157626489893, 3.2689634038160653, 3.311285301849967, 3.354123320591601, 3.397477460040964, 3.441347720198059, 3.4857341010628833, 3.5306366026354388, 3.5760552249157236, 3.6219899679037404, 3.6684408315994883, 3.7154078160029655, 3.762890921114174, 3.8108901469331116, 3.8594054934597803, 3.9084369606941793, 3.9579845486363094, 4.00804825728617, 4.058628086643761, 4.109724036709082, 4.161336107482135, 4.213464298962918, 4.26610861115143, 4.319269044047674, 4.372945597651648, 4.4271382719633525, 4.4818470669827875, 4.5370719827099535, 4.592813019144849, 4.649070176287476, 4.705843454137835, 4.763132852695922, 4.82093837196174, 4.879260011935289, 4.938097772616568, 4.997451654005577, 5.057321656102318, 5.117707778906788, 5.17861002241899, 5.2400283866389215, 5.301962871566585, 5.364413477201978, 5.4273802035451, 5.490863050595955, 5.554862018354541 ], [ 5.606474089127594, 5.542475121369009, 5.478992274318156, 5.416025547975032, 5.353574942339639, 5.291640457411976, 5.230222093192044, 5.169319849679843, 5.108933726875372, 5.049063724778632, 4.989709843389622, 4.930872082708342, 4.872550442734793, 4.814744923468975, 4.757455524910888, 4.700682247060531, 4.644425089917903, 4.588684053483008, 4.533459137755841, 4.478750342736406, 4.424557668424702, 4.370881114820728, 4.317720681924484, 4.265076369735971, 4.212948178255189, 4.161336107482137, 4.110240157416815, 4.059660328059223, 4.009596619409364, 3.960049031467234, 3.911017564232834, 3.862502217706165, 3.8145029918872266, 3.767019886776019, 3.720052902372542, 3.673602038676795, 3.627667295688778, 3.5822486734084933, 3.537346171835937, 3.4929597909711134, 3.4490895308140184, 3.4057353913646544, 3.3628973726230216, 3.320575474589119, 3.2787696972629465, 3.2374800406445052, 3.196706504733794, 3.1564490895308133, 3.1167077950355635, 3.077482621248043, 3.0387735681682546, 3.0005806357961955, 2.962903824131868, 2.9257431331752706, 2.889098562926404, 2.8529701133852674, 2.817357784551861, 2.782261576426186, 2.7476814890082406, 2.7136175222980268, 2.6800696762955427, 2.6470379510007898, 2.6145223464137666, 2.5825228625344745, 2.5510394993629126, 2.5200722568990814, 2.489621135142981, 2.4596861340946106, 2.430267253753971, 2.401364494121062, 2.3729778551958827, 2.345107336978435, 2.3177529394687175, 2.2909146626667303, 2.2645925065724737, 2.2387864711859478, 2.2134965565071525, 2.1887227625360874, 2.164465089272753, 2.140723536717149, 2.1174981048692754, 2.0947887937291325, 2.07259560329672, 2.0509185335720383, 2.029757584555087, 2.009112756245866, 1.988984048644376, 1.9693714617506162, 1.950274995564587, 1.9316946500862882, 1.91363042531572, 1.896082321252882, 1.879050337897775, 1.8625344752503983, 1.8465347333107522, 1.8310511120788364, 1.8160836115546513, 1.8016322317381968, 1.787696972629473, 1.7742778342284793, 1.7613748165352163, 1.748987919549684, 1.737117143271882, 1.7257624877018105, 1.7149239528394693, 1.7046015386848592, 1.6947952452379793, 1.6855050724988296, 1.676731020467411, 1.6684730891437227, 1.6607312785277646, 1.6535055886195376, 1.6467960194190407, 1.6406025709262746, 1.6349252431412387, 1.6297640360639334, 1.6251189496943588, 1.6209899840325148, 1.617377139078401, 1.614280414832018, 1.6116998112933651, 1.6096353284624434, 1.6080869663392514, 1.6070547249237905, 1.6065386042160599, 1.6065386042160599, 1.6070547249237905, 1.6080869663392514, 1.609635328462443, 1.6116998112933651, 1.614280414832018, 1.617377139078401, 1.6209899840325144, 1.6251189496943588, 1.6297640360639334, 1.6349252431412387, 1.6406025709262742, 1.6467960194190407, 1.6535055886195371, 1.6607312785277646, 1.6684730891437223, 1.6767310204674106, 1.6855050724988296, 1.6947952452379789, 1.7046015386848588, 1.7149239528394693, 1.72576248770181, 1.7371171432718815, 1.7489879195496836, 1.7613748165352159, 1.7742778342284788, 1.7876969726294725, 1.8016322317381963, 1.8160836115546513, 1.831051112078836, 1.8465347333107518, 1.8625344752503978, 1.8790503378977745, 1.8960823212528815, 1.9136304253157195, 1.9316946500862877, 1.9502749955645862, 1.9693714617506157, 1.9889840486443755, 2.009112756245866, 2.029757584555086, 2.050918533572038, 2.0725956032967194, 2.094788793729132, 2.1174981048692745, 2.1407235367171484, 2.1644650892727526, 2.1887227625360866, 2.213496556507152, 2.2387864711859473, 2.2645925065724732, 2.2909146626667294, 2.317752939468717, 2.345107336978434, 2.3729778551958827, 2.4013644941210606, 2.4302672537539705, 2.45968613409461, 2.48962113514298, 2.520072256899081, 2.5510394993629117, 2.582522862534474, 2.6145223464137657, 2.647037951000789, 2.680069676295542, 2.713617522298026, 2.7476814890082397, 2.782261576426185, 2.817357784551861, 2.8529701133852665, 2.889098562926403, 2.9257431331752697, 2.9629038241318675, 3.0005806357961946, 3.0387735681682537, 3.077482621248042, 3.1167077950355626, 3.1564490895308115, 3.1967065047337933, 3.2374800406445043, 3.2787696972629456, 3.320575474589118, 3.3628973726230207, 3.4057353913646544, 3.4490895308140166, 3.4929597909711116, 3.537346171835936, 3.5822486734084915, 3.627667295688777, 3.673602038676794, 3.720052902372541, 3.7670198867760174, 3.8145029918872257, 3.8625022177061634, 3.911017564232833, 3.960049031467232, 4.009596619409363, 4.059660328059222, 4.110240157416814, 4.161336107482135, 4.212948178255187, 4.26507636973597, 4.317720681924483, 4.370881114820727, 4.4245576684247006, 4.478750342736406, 4.533459137755839, 4.588684053483006, 4.644425089917902, 4.700682247060529, 4.7574555249108865, 4.814744923468973, 4.872550442734793, 4.9308720827083405, 4.989709843389621, 5.04906372477863, 5.108933726875371, 5.169319849679841, 5.230222093192043, 5.291640457411974, 5.3535749423396375, 5.416025547975031, 5.478992274318154, 5.542475121369009, 5.606474089127594 ], [ 5.658602280608377, 5.594603312849792, 5.531120465798939, 5.468153739455815, 5.405703133820422, 5.343768648892759, 5.282350284672827, 5.221448041160626, 5.161061918356155, 5.101191916259415, 5.041838034870405, 4.983000274189125, 4.924678634215576, 4.866873114949758, 4.809583716391671, 4.752810438541314, 4.696553281398686, 4.640812244963791, 4.585587329236624, 4.530878534217189, 4.476685859905485, 4.423009306301511, 4.369848873405267, 4.317204561216754, 4.265076369735972, 4.21346429896292, 4.162368348897598, 4.111788519540006, 4.061724810890147, 4.012177222948017, 3.963145755713617, 3.914630409186948, 3.8666311833680096, 3.819148078256802, 3.772181093853325, 3.725730230157578, 3.679795487169561, 3.6343768648892762, 3.58947436331672, 3.5450879824518964, 3.5012177222948013, 3.4578635828454374, 3.4150255641038045, 3.372703666069902, 3.3308978887437295, 3.289608232125288, 3.248834696214577, 3.2085772810115962, 3.1688359865163465, 3.129610812728826, 3.0909017596490376, 3.0527088272769785, 3.0150320156126504, 2.9778713246560535, 2.941226754407187, 2.9050983048660504, 2.869485976032644, 2.834389767906969, 2.7998096804890236, 2.7657457137788097, 2.7321978677763257, 2.6991661424815727, 2.6666505378945495, 2.6346510540152575, 2.6031676908436956, 2.5722004483798644, 2.541749326623764, 2.5118143255753935, 2.482395445234754, 2.453492685601845, 2.4251060466766656, 2.397235528459218, 2.3698811309495005, 2.3430428541475132, 2.3167206980532566, 2.2909146626667307, 2.2656247479879355, 2.2408509540168704, 2.216593280753536, 2.192851728197932, 2.1696262963500583, 2.1469169852099155, 2.124723794777503, 2.1030467250528213, 2.08188577603587, 2.061240947726649, 2.041112240125159, 2.021499653231399, 2.00240318704537, 1.9838228415670711, 1.9657586167965029, 1.9482105127336649, 1.931178529378558, 1.9146626667311812, 1.8986629247915352, 1.8831793035596194, 1.8682118030354342, 1.8537604232189797, 1.8398251641102559, 1.8264060257092622, 1.8135030080159993, 1.801116111030467, 1.789245334752665, 1.7778906791825935, 1.7670521443202523, 1.7567297301656422, 1.7469234367187623, 1.7376332639796126, 1.728859211948194, 1.7206012806245057, 1.7128594700085475, 1.7056337801003205, 1.6989242108998237, 1.6927307624070576, 1.6870534346220216, 1.6818922275447163, 1.6772471411751417, 1.6731181755132978, 1.669505330559184, 1.666408606312801, 1.663828002774148, 1.6617635199432264, 1.6602151578200344, 1.6591829164045735, 1.6586667956968428, 1.6586667956968428, 1.6591829164045735, 1.6602151578200344, 1.661763519943226, 1.663828002774148, 1.666408606312801, 1.669505330559184, 1.6731181755132973, 1.6772471411751417, 1.6818922275447163, 1.6870534346220216, 1.692730762407057, 1.6989242108998237, 1.70563378010032, 1.7128594700085475, 1.7206012806245052, 1.7288592119481936, 1.7376332639796126, 1.7469234367187618, 1.7567297301656417, 1.7670521443202523, 1.777890679182593, 1.7892453347526645, 1.8011161110304665, 1.8135030080159988, 1.8264060257092618, 1.8398251641102554, 1.8537604232189793, 1.8682118030354342, 1.883179303559619, 1.8986629247915348, 1.9146626667311808, 1.9311785293785575, 1.9482105127336644, 1.9657586167965024, 1.9838228415670707, 2.002403187045369, 2.0214996532313987, 2.0411122401251585, 2.061240947726649, 2.081885776035869, 2.103046725052821, 2.1247237947775024, 2.146916985209915, 2.1696262963500574, 2.1928517281979314, 2.2165932807535356, 2.2408509540168695, 2.265624747987935, 2.2909146626667303, 2.316720698053256, 2.3430428541475123, 2.3698811309495, 2.397235528459217, 2.4251060466766656, 2.4534926856018435, 2.4823954452347534, 2.511814325575393, 2.541749326623763, 2.572200448379864, 2.6031676908436947, 2.634651054015257, 2.6666505378945486, 2.699166142481572, 2.732197867776325, 2.765745713778809, 2.7998096804890227, 2.834389767906968, 2.869485976032644, 2.9050983048660495, 2.941226754407186, 2.9778713246560526, 3.0150320156126504, 3.0527088272769776, 3.0909017596490367, 3.129610812728825, 3.1688359865163456, 3.2085772810115945, 3.248834696214576, 3.2896082321252873, 3.3308978887437286, 3.372703666069901, 3.4150255641038036, 3.4578635828454374, 3.5012177222947996, 3.5450879824518946, 3.589474363316719, 3.6343768648892745, 3.67979548716956, 3.725730230157577, 3.772181093853324, 3.8191480782568004, 3.8666311833680087, 3.9146304091869464, 3.963145755713616, 4.012177222948015, 4.061724810890146, 4.111788519540005, 4.162368348897597, 4.213464298962918, 4.26507636973597, 4.317204561216753, 4.369848873405266, 4.42300930630151, 4.4766858599054835, 4.530878534217189, 4.585587329236622, 4.640812244963789, 4.6965532813986846, 4.752810438541312, 4.8095837163916695, 4.866873114949756, 4.924678634215576, 4.9830002741891235, 5.041838034870404, 5.101191916259413, 5.161061918356154, 5.221448041160624, 5.282350284672826, 5.343768648892757, 5.4057031338204204, 5.468153739455814, 5.531120465798937, 5.594603312849792, 5.658602280608377 ], [ 5.711246592796889, 5.647247625038304, 5.583764777987451, 5.520798051644327, 5.4583474460089345, 5.396412961081271, 5.334994596861339, 5.274092353349138, 5.213706230544667, 5.153836228447927, 5.094482347058917, 5.035644586377638, 4.9773229464040885, 4.9195174271382704, 4.8622280285801835, 4.805454750729826, 4.749197593587199, 4.693456557152303, 4.638231641425136, 4.583522846405701, 4.529330172093998, 4.475653618490023, 4.42249318559378, 4.3698488734052665, 4.317720681924484, 4.266108611151433, 4.21501266108611, 4.164432831728519, 4.114369123078659, 4.064821535136529, 4.015790067902129, 3.9672747213754604, 3.919275495556522, 3.8717923904453144, 3.824825406041837, 3.77837454234609, 3.7324397993580734, 3.6870211770777885, 3.642118675505232, 3.5977322946404087, 3.5538620344833136, 3.5105078950339497, 3.467669876292317, 3.425347978258414, 3.383542200932242, 3.3422525443138005, 3.3014790084030894, 3.2612215932001085, 3.2214802987048587, 3.1822551249173383, 3.14354607183755, 3.1053531394654907, 3.0676763278011627, 3.030515636844566, 2.993871066595699, 2.9577426170545627, 2.9221302882211564, 2.8870340800954812, 2.852453992677536, 2.818390025967322, 2.784842179964838, 2.751810454670085, 2.719294850083062, 2.6872953662037697, 2.655812003032208, 2.6248447605683767, 2.594393638812276, 2.564458637763906, 2.535039757423266, 2.506136997790357, 2.477750358865178, 2.4498798406477302, 2.4225254431380128, 2.3956871663360255, 2.369365010241769, 2.343558974855243, 2.3182690601764477, 2.2934952662053827, 2.2692375929420483, 2.245496040386444, 2.2222706085385706, 2.1995612973984278, 2.177368106966015, 2.1556910372413336, 2.1345300882243823, 2.113885259915161, 2.093756552313671, 2.0741439654199114, 2.0550474992338823, 2.0364671537555834, 2.018402928985015, 2.000854824922177, 1.9838228415670702, 1.9673069789196935, 1.9513072369800475, 1.9358236157481317, 1.9208561152239465, 1.906404735407492, 1.8924694762987682, 1.8790503378977745, 1.8661473202045116, 1.8537604232189793, 1.8418896469411772, 1.8305349913711058, 1.8196964565087645, 1.8093740423541544, 1.7995677489072746, 1.7902775761681249, 1.7815035241367063, 1.773245592813018, 1.7655037821970598, 1.7582780922888328, 1.751568523088336, 1.7453750745955698, 1.739697746810534, 1.7345365397332286, 1.729891453363654, 1.72576248770181, 1.7221496427476963, 1.7190529185013133, 1.7164723149626604, 1.7144078321317386, 1.7128594700085467, 1.7118272285930858, 1.7113111078853551, 1.7113111078853551, 1.7118272285930858, 1.7128594700085467, 1.7144078321317382, 1.7164723149626604, 1.7190529185013133, 1.7221496427476963, 1.7257624877018096, 1.729891453363654, 1.7345365397332286, 1.739697746810534, 1.7453750745955694, 1.751568523088336, 1.7582780922888324, 1.7655037821970598, 1.7732455928130175, 1.7815035241367059, 1.7902775761681249, 1.7995677489072741, 1.809374042354154, 1.8196964565087645, 1.8305349913711053, 1.8418896469411767, 1.8537604232189788, 1.8661473202045111, 1.879050337897774, 1.8924694762987677, 1.9064047354074916, 1.9208561152239465, 1.9358236157481312, 1.951307236980047, 1.967306978919693, 1.9838228415670698, 2.0008548249221767, 2.0184029289850147, 2.036467153755583, 2.0550474992338814, 2.074143965419911, 2.0937565523136707, 2.113885259915161, 2.1345300882243814, 2.155691037241333, 2.1773681069660147, 2.1995612973984273, 2.2222706085385697, 2.2454960403864437, 2.269237592942048, 2.293495266205382, 2.3182690601764473, 2.3435589748552426, 2.3693650102417685, 2.3956871663360246, 2.4225254431380123, 2.4498798406477293, 2.477750358865178, 2.506136997790356, 2.5350397574232657, 2.5644586377639054, 2.5943936388122752, 2.6248447605683762, 2.655812003032207, 2.6872953662037693, 2.719294850083061, 2.751810454670084, 2.784842179964837, 2.818390025967321, 2.852453992677535, 2.8870340800954803, 2.9221302882211564, 2.9577426170545618, 2.9938710665956982, 3.030515636844565, 3.0676763278011627, 3.10535313946549, 3.143546071837549, 3.1822551249173374, 3.221480298704858, 3.2612215932001067, 3.3014790084030885, 3.3422525443137996, 3.383542200932241, 3.4253479782584133, 3.467669876292316, 3.5105078950339497, 3.553862034483312, 3.597732294640407, 3.6421186755052313, 3.6870211770777868, 3.7324397993580725, 3.7783745423460893, 3.8248254060418363, 3.8717923904453126, 3.919275495556521, 3.9672747213754587, 4.015790067902128, 4.064821535136527, 4.114369123078658, 4.164432831728517, 4.215012661086109, 4.26610861115143, 4.317720681924483, 4.369848873405266, 4.422493185593778, 4.475653618490022, 4.529330172093996, 4.583522846405701, 4.6382316414251346, 4.6934565571523015, 4.749197593587197, 4.805454750729824, 4.862228028580182, 4.919517427138269, 4.9773229464040885, 5.035644586377636, 5.094482347058916, 5.1538362284479255, 5.213706230544666, 5.274092353349136, 5.334994596861338, 5.396412961081269, 5.458347446008933, 5.520798051644326, 5.583764777987449, 5.647247625038304, 5.711246592796889 ], [ 5.764407025693133, 5.700408057934549, 5.636925210883694, 5.573958484540571, 5.511507878905178, 5.4495733939775155, 5.388155029757583, 5.327252786245382, 5.266866663440911, 5.206996661344171, 5.147642779955161, 5.088805019273882, 5.030483379300334, 4.972677860034516, 4.915388461476427, 4.85861518362607, 4.802358026483443, 4.7466169900485475, 4.6913920743213815, 4.636683279301947, 4.582490604990241, 4.528814051386267, 4.475653618490024, 4.423009306301511, 4.370881114820728, 4.319269044047676, 4.268173093982355, 4.217593264624764, 4.1675295559749035, 4.1179819680327725, 4.0689505007983735, 4.020435154271705, 3.972435928452766, 3.924952823341558, 3.8779858389380806, 3.8315349752423344, 3.7856002322543176, 3.740181609974032, 3.6952791084014764, 3.650892727536652, 3.607022467379558, 3.563668327930194, 3.520830309188561, 3.4785084111546585, 3.436702633828486, 3.3954129772100448, 3.3546394412993337, 3.314382026096352, 3.274640731601103, 3.2354155578135826, 3.196706504733794, 3.158513572361736, 3.120836760697408, 3.08367606974081, 3.0470314994919434, 3.010903049950807, 2.9752907211174007, 2.9401945129917255, 2.90561442557378, 2.8715504588635663, 2.8380026128610822, 2.8049708875663293, 2.772455282979306, 2.740455799100014, 2.708972435928452, 2.678005193464621, 2.6475540717085204, 2.61761907066015, 2.5882001903195104, 2.5592974306866014, 2.530910791761422, 2.5030402735439745, 2.475685876034257, 2.44884759923227, 2.422525443138013, 2.3967194077514873, 2.371429493072692, 2.346655699101627, 2.3223980258382926, 2.2986564732826884, 2.275431041434815, 2.252721730294672, 2.2305285398622594, 2.208851470137578, 2.1876905211206266, 2.1670456928114055, 2.1469169852099155, 2.1273043983161557, 2.1082079321301266, 2.0896275866518277, 2.0715633618812594, 2.0540152578184214, 2.0369832744633145, 2.020467411815938, 2.0044676698762918, 1.988984048644376, 1.9740165481201908, 1.9595651683037363, 1.9456299091950124, 1.9322107707940188, 1.9193077531007559, 1.9069208561152236, 1.8950500798374215, 1.88369542426735, 1.8728568894050088, 1.8625344752503987, 1.8527281818035188, 1.8434380090643692, 1.8346639570329506, 1.8264060257092622, 1.8186642150933041, 1.811438525185077, 1.8047289559845803, 1.7985355074918141, 1.7928581797067782, 1.787696972629473, 1.7830518862598983, 1.7789229205980543, 1.7753100756439406, 1.7722133513975575, 1.7696327478589047, 1.767568265027983, 1.766019902904791, 1.76498766148933, 1.7644715407815994, 1.7644715407815994, 1.76498766148933, 1.766019902904791, 1.7675682650279825, 1.7696327478589047, 1.7722133513975575, 1.7753100756439406, 1.778922920598054, 1.7830518862598983, 1.787696972629473, 1.7928581797067782, 1.7985355074918137, 1.8047289559845803, 1.8114385251850766, 1.8186642150933041, 1.8264060257092618, 1.8346639570329502, 1.8434380090643692, 1.8527281818035184, 1.8625344752503983, 1.8728568894050088, 1.8836954242673496, 1.895050079837421, 1.906920856115223, 1.9193077531007554, 1.9322107707940184, 1.945629909195012, 1.9595651683037358, 1.9740165481201908, 1.9889840486443755, 2.0044676698762913, 2.0204674118159374, 2.036983274463314, 2.054015257818421, 2.071563361881259, 2.0896275866518272, 2.1082079321301257, 2.1273043983161553, 2.146916985209915, 2.1670456928114055, 2.1876905211206257, 2.2088514701375774, 2.230528539862259, 2.2527217302946716, 2.275431041434814, 2.298656473282688, 2.322398025838292, 2.346655699101626, 2.3714294930726916, 2.396719407751487, 2.4225254431380128, 2.448847599232269, 2.4756858760342566, 2.5030402735439736, 2.530910791761422, 2.5592974306866, 2.58820019031951, 2.6176190706601496, 2.6475540717085195, 2.6780051934646205, 2.7089724359284513, 2.7404557991000136, 2.772455282979305, 2.8049708875663284, 2.8380026128610814, 2.8715504588635654, 2.9056144255737792, 2.9401945129917246, 2.9752907211174007, 3.010903049950806, 3.0470314994919425, 3.083676069740809, 3.120836760697407, 3.158513572361734, 3.1967065047337933, 3.2354155578135817, 3.274640731601102, 3.314382026096351, 3.354639441299332, 3.395412977210044, 3.436702633828485, 3.4785084111546576, 3.5208303091885593, 3.563668327930193, 3.607022467379556, 3.650892727536651, 3.6952791084014756, 3.740181609974031, 3.785600232254316, 3.8315349752423327, 3.8779858389380806, 3.924952823341558, 3.972435928452766, 4.020435154271704, 4.068950500798373, 4.117981968032772, 4.167529555974902, 4.217593264624762, 4.2681730939823534, 4.319269044047674, 4.370881114820727, 4.42300930630151, 4.475653618490022, 4.5288140513862665, 4.58249060499024, 4.636683279301945, 4.69139207432138, 4.746616990048546, 4.802358026483441, 4.8586151836260685, 4.915388461476427, 4.972677860034514, 5.030483379300332, 5.088805019273881, 5.14764277995516, 5.206996661344169, 5.2668666634409105, 5.3272527862453805, 5.388155029757582, 5.449573393977514, 5.511507878905177, 5.5739584845405705, 5.6369252108836925, 5.700408057934547, 5.764407025693133 ], [ 5.818083579297107, 5.754084611538522, 5.690601764487669, 5.627635038144545, 5.565184432509152, 5.503249947581489, 5.441831583361557, 5.380929339849356, 5.320543217044885, 5.260673214948145, 5.201319333559135, 5.1424815728778555, 5.084159932904306, 5.026354413638488, 4.969065015080401, 4.912291737230044, 4.8560345800874165, 4.800293543652521, 4.745068627925354, 4.690359832905919, 4.6361671585942155, 4.582490604990241, 4.529330172093998, 4.476685859905484, 4.424557668424702, 4.3729455976516505, 4.321849647586328, 4.2712698182287365, 4.221206109578877, 4.171658521636747, 4.122627054402347, 4.074111707875678, 4.02611248205674, 3.9786293769455323, 3.931662392542055, 3.885211528846308, 3.8392767858582912, 3.7938581635780064, 3.74895566200545, 3.7045692811406266, 3.6606990209835315, 3.6173448815341676, 3.5745068627925347, 3.532184964758632, 3.4903791874324597, 3.4490895308140184, 3.4083159949033073, 3.3680585797003264, 3.3283172852050766, 3.289092111417556, 3.2503830583377677, 3.2121901259657086, 3.1745133143013806, 3.1373526233447837, 3.100708053095917, 3.0645796035547805, 3.0289672747213743, 2.993871066595699, 2.9592909791777537, 2.92522701246754, 2.891679166465056, 2.858647441170303, 2.8261318365832797, 2.7941323527039876, 2.7626489895324258, 2.7316817470685946, 2.701230625312494, 2.6712956242641237, 2.641876743923484, 2.612973984290575, 2.584587345365396, 2.556716827147948, 2.5293624296382307, 2.5025241528362434, 2.476201996741987, 2.450395961355461, 2.4251060466766656, 2.4003322527056006, 2.376074579442266, 2.352333026886662, 2.3291075950387885, 2.3063982838986457, 2.284205093466233, 2.2625280237415515, 2.2413670747246, 2.220722246415379, 2.200593538813889, 2.1809809519201293, 2.1618844857341, 2.1433041402558013, 2.125239915485233, 2.107691811422395, 2.090659828067288, 2.0741439654199114, 2.0581442234802654, 2.0426606022483496, 2.0276931017241644, 2.01324172190771, 1.999306462798986, 1.9858873243979924, 1.9729843067047295, 1.9605974097191972, 1.948726633441395, 1.9373719778713236, 1.9265334430089824, 1.9162110288543723, 1.9064047354074924, 1.8971145626683428, 1.8883405106369242, 1.8800825793132359, 1.8723407686972777, 1.8651150787890507, 1.8584055095885539, 1.8522120610957877, 1.8465347333107518, 1.8413735262334465, 1.836728439863872, 1.832599474202028, 1.8289866292479142, 1.8258899050015311, 1.8233093014628783, 1.8212448186319565, 1.8196964565087645, 1.8186642150933037, 1.818148094385573, 1.818148094385573, 1.8186642150933037, 1.8196964565087645, 1.821244818631956, 1.8233093014628783, 1.8258899050015311, 1.8289866292479142, 1.8325994742020275, 1.836728439863872, 1.8413735262334465, 1.8465347333107518, 1.8522120610957873, 1.8584055095885539, 1.8651150787890503, 1.8723407686972777, 1.8800825793132354, 1.8883405106369238, 1.8971145626683428, 1.906404735407492, 1.916211028854372, 1.9265334430089824, 1.9373719778713232, 1.9487266334413946, 1.9605974097191967, 1.972984306704729, 1.985887324397992, 1.9993064627989856, 2.0132417219077094, 2.0276931017241644, 2.042660602248349, 2.058144223480265, 2.074143965419911, 2.0906598280672877, 2.1076918114223946, 2.1252399154852326, 2.143304140255801, 2.1618844857340993, 2.180980951920129, 2.2005935388138886, 2.220722246415379, 2.2413670747245993, 2.262528023741551, 2.2842050934662326, 2.306398283898645, 2.3291075950387876, 2.3523330268866616, 2.3760745794422657, 2.4003322527055997, 2.425106046676665, 2.4503959613554605, 2.4762019967419864, 2.5025241528362425, 2.52936242963823, 2.5567168271479472, 2.584587345365396, 2.6129739842905737, 2.6418767439234836, 2.6712956242641233, 2.701230625312493, 2.731681747068594, 2.762648989532425, 2.794132352703987, 2.826131836583279, 2.858647441170302, 2.891679166465055, 2.925227012467539, 2.959290979177753, 2.9938710665956982, 3.0289672747213743, 3.0645796035547797, 3.100708053095916, 3.137352623344783, 3.1745133143013806, 3.2121901259657077, 3.250383058337767, 3.2890921114175553, 3.3283172852050757, 3.3680585797003246, 3.4083159949033064, 3.4490895308140175, 3.490379187432459, 3.532184964758631, 3.574506862792534, 3.6173448815341676, 3.6606990209835297, 3.704569281140625, 3.748955662005449, 3.7938581635780046, 3.8392767858582904, 3.885211528846307, 3.931662392542054, 3.9786293769455305, 4.026112482056739, 4.074111707875677, 4.122627054402346, 4.171658521636745, 4.221206109578876, 4.271269818228735, 4.321849647586327, 4.372945597651648, 4.4245576684247006, 4.4766858599054835, 4.529330172093996, 4.58249060499024, 4.636167158594214, 4.690359832905919, 4.7450686279253524, 4.800293543652519, 4.856034580087415, 4.912291737230042, 4.9690650150804, 5.026354413638487, 5.084159932904306, 5.142481572877854, 5.201319333559134, 5.260673214948143, 5.320543217044884, 5.380929339849354, 5.441831583361556, 5.503249947581487, 5.565184432509151, 5.627635038144544, 5.690601764487667, 5.754084611538522, 5.818083579297107 ], [ 5.872276253608812, 5.808277285850227, 5.7447944387993735, 5.681827712456251, 5.619377106820857, 5.557442621893195, 5.4960242576732625, 5.435122014161061, 5.37473589135659, 5.31486588925985, 5.2555120078708395, 5.196674247189561, 5.138352607216012, 5.080547087950194, 5.023257689392106, 4.9664844115417495, 4.910227254399121, 4.854486217964226, 4.79926130223706, 4.744552507217625, 4.69035983290592, 4.636683279301947, 4.583522846405703, 4.530878534217189, 4.478750342736407, 4.427138271963355, 4.3760423218980335, 4.325462492540442, 4.275398783890582, 4.225851195948452, 4.176819728714053, 4.128304382187384, 4.0803051563684445, 4.032822051257237, 3.98585506685376, 3.9394042031580128, 3.893469460169996, 3.848050837889711, 3.8031483363171557, 3.7587619554523313, 3.714891695295236, 3.671537555845873, 3.6286995371042394, 3.586377639070337, 3.5445718617441653, 3.503282205125723, 3.462508669215012, 3.422251254012031, 3.3825099595167814, 3.343284785729262, 3.3045757326494734, 3.2663828002774142, 3.228705988613086, 3.1915452976564893, 3.1549007274076217, 3.1187722778664853, 3.08315994903308, 3.048063740907404, 3.013483653489459, 2.979419686779245, 2.945871840776761, 2.912840115482008, 2.880324510894985, 2.848325027015693, 2.816841663844131, 2.7858744213802997, 2.755423299624199, 2.725488298575829, 2.696069418235189, 2.66716665860228, 2.6387800196771014, 2.6109095014596533, 2.5835551039499354, 2.5567168271479486, 2.530394671053692, 2.504588635667166, 2.4792987209883703, 2.4545249270173057, 2.4302672537539713, 2.406525701198367, 2.3833002693504937, 2.360590958210351, 2.3383977677779386, 2.3167206980532566, 2.2955597490363053, 2.2749149207270847, 2.2547862131255942, 2.2351736262318345, 2.2160771600458053, 2.1974968145675065, 2.179432589796938, 2.1618844857341, 2.1448525023789933, 2.1283366397316166, 2.1123368977919705, 2.0968532765600547, 2.08188577603587, 2.067434396219415, 2.053499137110691, 2.0400799987096976, 2.0271769810164346, 2.0147900840309023, 2.0029193077531002, 1.9915646521830288, 1.9807261173206876, 1.9704037031660775, 1.9605974097191976, 1.951307236980048, 1.9425331849486294, 1.934275253624941, 1.9265334430089829, 1.9193077531007559, 1.912598183900259, 1.906404735407493, 1.900727407622457, 1.8955662005451517, 1.890921114175577, 1.8867921485137331, 1.8831793035596194, 1.8800825793132363, 1.8775019757745834, 1.8754374929436617, 1.8738891308204697, 1.8728568894050088, 1.8723407686972782, 1.8723407686972782, 1.8728568894050088, 1.8738891308204697, 1.8754374929436612, 1.8775019757745834, 1.8800825793132363, 1.8831793035596194, 1.8867921485137327, 1.890921114175577, 1.8955662005451517, 1.900727407622457, 1.9064047354074924, 1.912598183900259, 1.9193077531007554, 1.9265334430089829, 1.9342752536249406, 1.942533184948629, 1.951307236980048, 1.9605974097191972, 1.970403703166077, 1.9807261173206876, 1.9915646521830284, 2.0029193077531, 2.014790084030902, 2.027176981016434, 2.040079998709697, 2.053499137110691, 2.0674343962194146, 2.0818857760358696, 2.0968532765600543, 2.11233689779197, 2.128336639731616, 2.144852502378993, 2.1618844857340997, 2.1794325897969378, 2.197496814567506, 2.2160771600458045, 2.235173626231834, 2.254786213125594, 2.2749149207270842, 2.295559749036305, 2.316720698053256, 2.3383977677779377, 2.3605909582103504, 2.383300269350493, 2.4065257011983667, 2.430267253753971, 2.454524927017305, 2.4792987209883703, 2.504588635667165, 2.530394671053692, 2.556716827147948, 2.5835551039499354, 2.6109095014596524, 2.638780019677101, 2.6671666586022793, 2.6960694182351883, 2.7254882985758284, 2.7554232996241983, 2.7858744213802993, 2.81684166384413, 2.8483250270156923, 2.880324510894984, 2.912840115482007, 2.9458718407767597, 2.979419686779244, 3.013483653489458, 3.048063740907404, 3.083159949033079, 3.1187722778664844, 3.1549007274076217, 3.1915452976564875, 3.228705988613086, 3.2663828002774133, 3.3045757326494716, 3.34328478572926, 3.3825099595167805, 3.4222512540120302, 3.462508669215011, 3.503282205125723, 3.5445718617441635, 3.586377639070337, 3.6286995371042385, 3.6715375558458723, 3.7148916952952353, 3.7587619554523304, 3.803148336317154, 3.8480508378897103, 3.893469460169995, 3.939404203158012, 3.985855066853759, 4.032822051257236, 4.0803051563684445, 4.128304382187382, 4.176819728714051, 4.225851195948451, 4.275398783890581, 4.32546249254044, 4.376042321898032, 4.4271382719633525, 4.478750342736406, 4.530878534217189, 4.583522846405701, 4.636683279301945, 4.690359832905919, 4.744552507217624, 4.799261302237058, 4.854486217964224, 4.9102272543991194, 4.966484411541748, 5.023257689392105, 5.080547087950192, 5.138352607216011, 5.196674247189559, 5.2555120078708395, 5.314865889259848, 5.37473589135659, 5.43512201416106, 5.496024257673261, 5.557442621893193, 5.619377106820856, 5.681827712456249, 5.744794438799372, 5.8082772858502265, 5.872276253608812 ], [ 5.9269850486282465, 5.862986080869661, 5.7995032338188075, 5.736536507475684, 5.674085901840291, 5.612151416912628, 5.550733052692696, 5.489830809180495, 5.429444686376025, 5.369574684279284, 5.310220802890274, 5.251383042208994, 5.193061402235446, 5.135255882969628, 5.07796648441154, 5.021193206561183, 4.964936049418556, 4.909195012983661, 4.853970097256494, 4.799261302237059, 4.745068627925354, 4.69139207432138, 4.638231641425136, 4.585587329236624, 4.533459137755841, 4.481847066982789, 4.430751116917468, 4.380171287559876, 4.330107578910017, 4.280559990967886, 4.231528523733486, 4.183013177206817, 4.135013951387879, 4.087530846276671, 4.040563861873194, 3.9941129981774477, 3.948178255189431, 3.902759632909145, 3.857857131336589, 3.8134707504717653, 3.7696004903146703, 3.7262463508653063, 3.6834083321236735, 3.641086434089771, 3.5992806567635984, 3.557991000145157, 3.517217464234446, 3.476960049031465, 3.4372187545362154, 3.397993580748696, 3.3592845276689074, 3.3210915952968483, 3.2834147836325203, 3.2462540926759225, 3.2096095224270558, 3.1734810728859193, 3.137868744052514, 3.1027725359268388, 3.068192448508893, 3.034128481798679, 3.0005806357961955, 2.967548910501442, 2.935033305914419, 2.903033822035127, 2.871550458863565, 2.8405832163997338, 2.8101320946436332, 2.780197093595263, 2.7507782132546232, 2.7218754536217142, 2.6934888146965354, 2.6656182964790873, 2.6382638989693694, 2.6114256221673826, 2.585103466073126, 2.5592974306866, 2.5340075160078044, 2.5092337220367398, 2.4849760487734054, 2.461234496217801, 2.4380090643699277, 2.415299753229785, 2.3931065627973727, 2.3714294930726907, 2.3502685440557394, 2.3296237157465187, 2.3094950081450283, 2.2898824212512685, 2.2707859550652394, 2.2522056095869405, 2.2341413848163723, 2.2165932807535342, 2.1995612973984273, 2.1830454347510506, 2.1670456928114046, 2.1515620715794888, 2.136594571055304, 2.122143191238849, 2.1082079321301253, 2.0947887937291316, 2.0818857760358687, 2.0694988790503364, 2.0576281027725343, 2.046273447202463, 2.0354349123401216, 2.0251124981855115, 2.0153062047386316, 2.006016031999482, 1.9972419799680634, 1.988984048644375, 1.981242238028417, 1.97401654812019, 1.967306978919693, 1.961113530426927, 1.955436202641891, 1.9502749955645857, 1.945629909195011, 1.9415009435331672, 1.9378880985790534, 1.9347913743326703, 1.9322107707940175, 1.9301462879630957, 1.9285979258399037, 1.9275656844244429, 1.9270495637167122, 1.9270495637167122, 1.9275656844244429, 1.9285979258399037, 1.9301462879630953, 1.9322107707940175, 1.9347913743326703, 1.9378880985790534, 1.9415009435331667, 1.945629909195011, 1.9502749955645857, 1.955436202641891, 1.9611135304269265, 1.967306978919693, 1.9740165481201895, 1.981242238028417, 1.9889840486443746, 1.997241979968063, 2.006016031999482, 2.015306204738631, 2.025112498185511, 2.0354349123401216, 2.0462734472024624, 2.057628102772534, 2.069498879050336, 2.081885776035868, 2.094788793729131, 2.1082079321301253, 2.1221431912388486, 2.1365945710553036, 2.1515620715794883, 2.167045692811404, 2.18304543475105, 2.199561297398427, 2.216593280753534, 2.234141384816372, 2.25220560958694, 2.2707859550652385, 2.289882421251268, 2.309495008145028, 2.3296237157465183, 2.350268544055739, 2.3714294930726902, 2.3931065627973718, 2.4152997532297844, 2.4380090643699273, 2.4612344962178008, 2.484976048773405, 2.509233722036739, 2.5340075160078044, 2.559297430686599, 2.585103466073126, 2.611425622167382, 2.6382638989693694, 2.6656182964790864, 2.693488814696535, 2.7218754536217133, 2.7507782132546224, 2.7801970935952625, 2.8101320946436323, 2.8405832163997333, 2.871550458863564, 2.9030338220351264, 2.935033305914418, 2.967548910501441, 3.0005806357961937, 3.0341284817986782, 3.068192448508892, 3.102772535926837, 3.137868744052513, 3.1734810728859184, 3.2096095224270558, 3.2462540926759216, 3.2834147836325194, 3.3210915952968474, 3.3592845276689065, 3.397993580748695, 3.4372187545362145, 3.4769600490314643, 3.517217464234445, 3.5579910001451562, 3.5992806567635975, 3.64108643408977, 3.6834083321236726, 3.7262463508653063, 3.7696004903146694, 3.8134707504717635, 3.857857131336588, 3.9027596329091434, 3.948178255189429, 3.994112998177446, 4.040563861873194, 4.08753084627667, 4.1350139513878785, 4.183013177206816, 4.231528523733486, 4.280559990967884, 4.330107578910015, 4.380171287559874, 4.430751116917467, 4.4818470669827875, 4.533459137755839, 4.585587329236622, 4.6382316414251346, 4.69139207432138, 4.7450686279253524, 4.799261302237058, 4.853970097256492, 4.909195012983659, 4.964936049418554, 5.021193206561181, 5.077966484411539, 5.135255882969626, 5.193061402235445, 5.251383042208993, 5.310220802890273, 5.369574684279282, 5.429444686376023, 5.489830809180493, 5.550733052692696, 5.612151416912626, 5.674085901840289, 5.736536507475684, 5.799503233818806, 5.8629860808696606, 5.9269850486282465 ], [ 5.9822099643554125, 5.918210996596828, 5.8547281495459735, 5.791761423202851, 5.729310817567457, 5.667376332639795, 5.605957968419863, 5.5450557249076615, 5.484669602103191, 5.42479960000645, 5.3654457186174405, 5.306607957936161, 5.248286317962613, 5.190480798696795, 5.133191400138706, 5.0764181222883495, 5.020160965145722, 4.964419928710827, 4.909195012983661, 4.854486217964226, 4.80029354365252, 4.746616990048547, 4.693456557152303, 4.64081224496379, 4.588684053483007, 4.537071982709955, 4.4859760326446345, 4.435396203287043, 4.385332494637183, 4.335784906695052, 4.286753439460653, 4.238238092933984, 4.1902388671150455, 4.142755762003837, 4.09578877760036, 4.049337913904614, 4.003403170916597, 3.957984548636311, 3.9130820470637557, 3.8686956661989313, 3.824825406041837, 3.7814712665924732, 3.7386332478508404, 3.6963113498169378, 3.6545055724907654, 3.613215915872324, 3.572442379961613, 3.532184964758631, 3.4924436702633823, 3.453218496475862, 3.4145094433960734, 3.376316511024015, 3.338639699359687, 3.3014790084030894, 3.2648344381542227, 3.228705988613086, 3.19309365977968, 3.157997451654005, 3.12341736423606, 3.089353397525846, 3.0558055515233615, 3.022773826228608, 2.9902582216415854, 2.9582587377622933, 2.9267753745907314, 2.8958081321269002, 2.8653570103707997, 2.8354220093224294, 2.8060031289817897, 2.7771003693488807, 2.7487137304237015, 2.720843212206254, 2.6934888146965363, 2.666650537894549, 2.6403283818002925, 2.6145223464137666, 2.5892324317349713, 2.5644586377639063, 2.540200964500572, 2.5164594119449677, 2.493233980097094, 2.4705246689569513, 2.4483314785245387, 2.426654408799857, 2.405493459782906, 2.3848486314736848, 2.3647199238721948, 2.345107336978435, 2.326010870792406, 2.307430525314107, 2.2893663005435387, 2.2718181964807007, 2.254786213125594, 2.238270350478217, 2.222270608538571, 2.2067869873066552, 2.19181948678247, 2.1773681069660156, 2.1634328478572917, 2.150013709456298, 2.137110691763035, 2.124723794777503, 2.1128530184997008, 2.1014983629296293, 2.090659828067288, 2.080337413912678, 2.070531120465798, 2.0612409477266485, 2.05246689569523, 2.0442089643715415, 2.0364671537555834, 2.0292414638473564, 2.0225318946468596, 2.0163384461540934, 2.0106611183690575, 2.005499911291752, 2.0008548249221776, 1.9967258592603336, 1.99311301430622, 1.9900162900598368, 1.987435686521184, 1.9853712036902622, 1.9838228415670702, 1.9827906001516094, 1.9822744794438787, 1.9822744794438787, 1.9827906001516094, 1.9838228415670702, 1.9853712036902618, 1.987435686521184, 1.9900162900598368, 1.99311301430622, 1.9967258592603332, 2.0008548249221776, 2.005499911291752, 2.0106611183690575, 2.016338446154093, 2.0225318946468596, 2.029241463847356, 2.0364671537555834, 2.044208964371541, 2.0524668956952294, 2.0612409477266485, 2.0705311204657977, 2.0803374139126776, 2.090659828067288, 2.101498362929629, 2.1128530184997003, 2.1247237947775024, 2.1371106917630347, 2.1500137094562977, 2.1634328478572913, 2.177368106966015, 2.19181948678247, 2.206786987306655, 2.2222706085385706, 2.2382703504782167, 2.2547862131255934, 2.2718181964807003, 2.2893663005435383, 2.3074305253141065, 2.326010870792405, 2.3451073369784345, 2.3647199238721943, 2.3848486314736848, 2.405493459782905, 2.4266544087998567, 2.4483314785245383, 2.470524668956951, 2.4932339800970933, 2.5164594119449673, 2.5402009645005714, 2.5644586377639054, 2.589232431734971, 2.614522346413766, 2.640328381800292, 2.666650537894548, 2.693488814696536, 2.720843212206253, 2.7487137304237015, 2.7771003693488794, 2.8060031289817893, 2.835422009322429, 2.865357010370799, 2.8958081321269, 2.9267753745907306, 2.958258737762293, 2.9902582216415845, 3.022773826228608, 3.0558055515233606, 3.0893533975258443, 3.123417364236058, 3.157997451654004, 3.19309365977968, 3.2287059886130853, 3.264834438154222, 3.3014790084030885, 3.3386396993596863, 3.3763165110240134, 3.4145094433960725, 3.453218496475861, 3.4924436702633814, 3.5321849647586303, 3.572442379961611, 3.613215915872323, 3.6545055724907645, 3.696311349816937, 3.7386332478508386, 3.7814712665924723, 3.8248254060418354, 3.8686956661989305, 3.913082047063755, 3.9579845486363103, 4.003403170916595, 4.049337913904612, 4.09578877760036, 4.142755762003837, 4.1902388671150455, 4.238238092933983, 4.286753439460652, 4.335784906695051, 4.385332494637181, 4.435396203287041, 4.485976032644633, 4.5370719827099535, 4.588684053483006, 4.640812244963789, 4.6934565571523015, 4.746616990048546, 4.800293543652519, 4.854486217964224, 4.909195012983659, 4.964419928710825, 5.02016096514572, 5.076418122288348, 5.133191400138706, 5.190480798696793, 5.248286317962611, 5.30660795793616, 5.36544571861744, 5.424799600006448, 5.48466960210319, 5.54505572490766, 5.605957968419862, 5.667376332639793, 5.729310817567456, 5.79176142320285, 5.854728149545972, 5.918210996596827, 5.9822099643554125 ], [ 6.037951000790308, 5.973952033031724, 5.910469185980869, 5.847502459637746, 5.785051854002353, 5.72311736907469, 5.661699004854758, 5.600796761342557, 5.540410638538086, 5.480540636441345, 5.421186755052336, 5.3623489943710565, 5.304027354397508, 5.24622183513169, 5.188932436573602, 5.132159158723245, 5.0759020015806176, 5.020160965145722, 4.964936049418556, 4.910227254399121, 4.856034580087416, 4.802358026483442, 4.749197593587199, 4.696553281398685, 4.6444250899179025, 4.592813019144851, 4.54171706907953, 4.4911372397219385, 4.441073531072078, 4.391525943129947, 4.342494475895548, 4.293979129368879, 4.245979903549941, 4.1984967984387325, 4.151529814035255, 4.105078950339509, 4.059144207351492, 4.013725585071207, 3.968823083498651, 3.9244367026338267, 3.8805664424767325, 3.8372123030273686, 3.7943742842857358, 3.752052386251833, 3.7102466089256607, 3.6689569523072194, 3.6281834163965083, 3.5879260011935266, 3.5481847066982777, 3.5089595329107572, 3.470250479830969, 3.4320575474589106, 3.3943807357945825, 3.3572200448379848, 3.320575474589118, 3.2844470250479816, 3.2488346962145753, 3.2137384880889, 3.1791584006709552, 3.1450944339607414, 3.111546587958257, 3.0785148626635035, 3.045999258076481, 3.0139997741971882, 2.982516411025627, 2.9515491685617956, 2.921098046805695, 2.8911630457573247, 2.861744165416685, 2.832841405783776, 2.804454766858597, 2.776584248641149, 2.7492298511314317, 2.7223915743294445, 2.696069418235188, 2.670263382848662, 2.6449734681698667, 2.6201996741988016, 2.5959420009354672, 2.572200448379863, 2.5489750165319895, 2.5262657053918467, 2.504072514959434, 2.4823954452347525, 2.461234496217801, 2.44058966790858, 2.42046096030709, 2.4008483734133303, 2.3817519072273012, 2.3631715617490023, 2.345107336978434, 2.327559232915596, 2.310527249560489, 2.2940113869131125, 2.2780116449734664, 2.2625280237415506, 2.2475605232173654, 2.233109143400911, 2.219173884292187, 2.2057547458911935, 2.1928517281979305, 2.180464831212398, 2.168594054934596, 2.1572393993645247, 2.1464008645021835, 2.1360784503475734, 2.1262721569006935, 2.116981984161544, 2.1082079321301253, 2.099950000806437, 2.0922081901904788, 2.0849825002822517, 2.078272931081755, 2.0720794825889888, 2.066402154803953, 2.0612409477266476, 2.056595861357073, 2.052466895695229, 2.0488540507411153, 2.045757326494732, 2.0431767229560793, 2.0411122401251576, 2.0395638780019656, 2.0385316365865047, 2.038015515878774, 2.038015515878774, 2.0385316365865047, 2.0395638780019656, 2.041112240125157, 2.0431767229560793, 2.045757326494732, 2.0488540507411153, 2.0524668956952286, 2.056595861357073, 2.0612409477266476, 2.066402154803953, 2.0720794825889883, 2.078272931081755, 2.0849825002822513, 2.0922081901904788, 2.0999500008064365, 2.108207932130125, 2.116981984161544, 2.126272156900693, 2.136078450347573, 2.1464008645021835, 2.1572393993645242, 2.1685940549345957, 2.1804648312123978, 2.19285172819793, 2.205754745891193, 2.2191738842921866, 2.2331091434009105, 2.2475605232173654, 2.26252802374155, 2.278011644973466, 2.294011386913112, 2.3105272495604887, 2.3275592329155956, 2.3451073369784337, 2.363171561749002, 2.3817519072273003, 2.40084837341333, 2.4204609603070897, 2.44058966790858, 2.4612344962178003, 2.482395445234752, 2.5040725149594336, 2.5262657053918463, 2.5489750165319887, 2.5722004483798626, 2.595942000935467, 2.6201996741988007, 2.6449734681698662, 2.6702633828486615, 2.6960694182351874, 2.7223915743294436, 2.7492298511314313, 2.7765842486411483, 2.804454766858597, 2.8328414057837747, 2.8617441654166846, 2.8911630457573243, 2.921098046805694, 2.951549168561795, 2.982516411025626, 3.0139997741971882, 3.0459992580764794, 3.0785148626635035, 3.111546587958256, 3.1450944339607396, 3.1791584006709535, 3.2137384880888993, 3.2488346962145753, 3.2844470250479807, 3.320575474589117, 3.357220044837984, 3.3943807357945817, 3.432057547458909, 3.470250479830968, 3.5089595329107564, 3.548184706698277, 3.5879260011935257, 3.6281834163965065, 3.6689569523072185, 3.71024660892566, 3.7520523862518322, 3.794374284285734, 3.8372123030273677, 3.8805664424767308, 3.924436702633826, 3.96882308349865, 4.013725585071206, 4.0591442073514905, 4.105078950339507, 4.151529814035255, 4.1984967984387325, 4.245979903549941, 4.2939791293688785, 4.342494475895547, 4.391525943129946, 4.441073531072076, 4.491137239721937, 4.541717069079528, 4.592813019144849, 4.644425089917902, 4.6965532813986846, 4.749197593587197, 4.802358026483441, 4.856034580087415, 4.9102272543991194, 4.964936049418554, 5.02016096514572, 5.075902001580616, 5.132159158723243, 5.188932436573602, 5.2462218351316885, 5.3040273543975065, 5.362348994371056, 5.421186755052335, 5.480540636441344, 5.540410638538085, 5.600796761342555, 5.661699004854757, 5.723117369074688, 5.785051854002352, 5.847502459637745, 5.910469185980867, 5.973952033031722, 6.037951000790308 ], [ 6.094208157932935, 6.03020919017435, 5.966726343123497, 5.903759616780373, 5.841309011144981, 5.7793745262173175, 5.717956161997385, 5.657053918485184, 5.596667795680713, 5.536797793583974, 5.477443912194963, 5.418606151513684, 5.360284511540135, 5.302478992274317, 5.24518959371623, 5.188416315865872, 5.132159158723245, 5.0764181222883495, 5.021193206561183, 4.966484411541748, 4.912291737230044, 4.858615183626069, 4.805454750729826, 4.752810438541313, 4.700682247060531, 4.649070176287479, 4.597974226222156, 4.547394396864565, 4.4973306882147055, 4.447783100272575, 4.3987516330381755, 4.350236286511507, 4.302237060692568, 4.254753955581361, 4.2077869711778835, 4.1613361074821364, 4.11540136449412, 4.069982742213835, 4.0250802406412785, 3.980693859776455, 3.93682359961936, 3.893469460169996, 3.850631441428363, 3.8083095433944605, 3.766503766068288, 3.7252141094498468, 3.6844405735391357, 3.644183158336155, 3.604441863840905, 3.5652166900533846, 3.526507636973596, 3.488314704601537, 3.450637892937209, 3.413477201980612, 3.3768326317317454, 3.340704182190609, 3.3050918533572027, 3.2699956452315275, 3.2354155578135817, 3.201351591103368, 3.1678037451008842, 3.1347720198061317, 3.1022564152191077, 3.0702569313398156, 3.0387735681682546, 3.007806325704423, 2.9773552039483224, 2.947420202899952, 2.9180013225593124, 2.8890985629264034, 2.860711924001224, 2.8328414057837765, 2.805487008274059, 2.778648731472072, 2.752326575377815, 2.7265205399912893, 2.701230625312494, 2.676456831341429, 2.6521991580780946, 2.6284576055224904, 2.605232173674617, 2.582522862534474, 2.5603296721020614, 2.53865260237738, 2.5174916533604286, 2.4968468250512075, 2.4767181174497175, 2.4571055305559577, 2.4380090643699286, 2.4194287188916297, 2.4013644941210615, 2.3838163900582234, 2.3667844067031165, 2.35026854405574, 2.3342688021160938, 2.318785180884178, 2.303817680359993, 2.2893663005435383, 2.2754310414348144, 2.262011903033821, 2.249108885340558, 2.2367219883550256, 2.2248512120772235, 2.213496556507152, 2.202658021644811, 2.1923356074902007, 2.182529314043321, 2.173239141304171, 2.1644650892727526, 2.1562071579490643, 2.148465347333106, 2.141239657424879, 2.1345300882243823, 2.128336639731616, 2.12265931194658, 2.117498104869275, 2.1128530184997003, 2.1087240528378564, 2.1051112078837426, 2.1020144836373595, 2.0994338800987067, 2.097369397267785, 2.095821035144593, 2.094788793729132, 2.0942726730214014, 2.0942726730214014, 2.094788793729132, 2.095821035144593, 2.0973693972677845, 2.0994338800987067, 2.1020144836373595, 2.1051112078837426, 2.108724052837856, 2.1128530184997003, 2.117498104869275, 2.12265931194658, 2.1283366397316157, 2.1345300882243823, 2.1412396574248787, 2.148465347333106, 2.156207157949064, 2.164465089272752, 2.173239141304171, 2.1825293140433204, 2.1923356074902003, 2.202658021644811, 2.2134965565071516, 2.224851212077223, 2.236721988355025, 2.2491088853405574, 2.2620119030338204, 2.275431041434814, 2.289366300543538, 2.303817680359993, 2.3187851808841775, 2.3342688021160933, 2.3502685440557394, 2.366784406703116, 2.383816390058223, 2.401364494121061, 2.4194287188916292, 2.4380090643699277, 2.4571055305559573, 2.476718117449717, 2.4968468250512075, 2.5174916533604277, 2.5386526023773794, 2.560329672102061, 2.5825228625344736, 2.605232173674616, 2.62845760552249, 2.652199158078094, 2.676456831341428, 2.7012306253124936, 2.726520539991289, 2.7523265753778148, 2.778648731472071, 2.8054870082740586, 2.8328414057837756, 2.860711924001224, 2.889098562926402, 2.918001322559312, 2.9474202028999517, 2.9773552039483215, 3.007806325704423, 3.0387735681682537, 3.0702569313398156, 3.1022564152191077, 3.13477201980613, 3.1678037451008834, 3.201351591103368, 3.2354155578135817, 3.2699956452315266, 3.3050918533572027, 3.340704182190608, 3.3768326317317445, 3.413477201980611, 3.450637892937209, 3.488314704601536, 3.5265076369735953, 3.5652166900533837, 3.604441863840904, 3.644183158336153, 3.684440573539135, 3.725214109449846, 3.766503766068287, 3.8083095433944596, 3.8506314414283622, 3.893469460169996, 3.936823599619358, 3.980693859776453, 4.025080240641278, 4.069982742213833, 4.115401364494119, 4.161336107482136, 4.207786971177883, 4.254753955581359, 4.302237060692567, 4.350236286511505, 4.398751633038175, 4.447783100272574, 4.497330688214705, 4.547394396864563, 4.5979742262221555, 4.649070176287476, 4.700682247060529, 4.752810438541312, 4.805454750729824, 4.8586151836260685, 4.912291737230042, 4.966484411541748, 5.021193206561181, 5.076418122288348, 5.132159158723243, 5.1884163158658705, 5.245189593716228, 5.302478992274315, 5.360284511540135, 5.418606151513682, 5.477443912194962, 5.536797793583972, 5.5966677956807125, 5.6570539184851825, 5.717956161997384, 5.779374526217316, 5.841309011144979, 5.9037596167803725, 5.966726343123495, 6.03020919017435, 6.094208157932935 ], [ 6.150981435783294, 6.086982468024709, 6.023499620973855, 5.960532894630731, 5.898082288995338, 5.836147804067675, 5.774729439847743, 5.713827196335542, 5.653441073531072, 5.593571071434331, 5.534217190045322, 5.475379429364041, 5.417057789390493, 5.359252270124675, 5.301962871566587, 5.24518959371623, 5.188932436573603, 5.133191400138708, 5.077966484411541, 5.023257689392106, 4.969065015080401, 4.915388461476427, 4.8622280285801835, 4.809583716391671, 4.757455524910888, 4.7058434541378364, 4.654747504072515, 4.604167674714923, 4.554103966065064, 4.504556378122933, 4.455524910888533, 4.407009564361864, 4.359010338542927, 4.311527233431718, 4.264560249028241, 4.218109385332495, 4.172174642344478, 4.126756020064192, 4.081853518491636, 4.0374671376268125, 3.9935968774697175, 3.9502427380203535, 3.9074047192787207, 3.865082821244818, 3.8232770439186456, 3.7819873873002043, 3.7412138513894933, 3.7009564361865124, 3.6612151416912626, 3.621989967903743, 3.5832809148239546, 3.5450879824518955, 3.5074111707875675, 3.4702504798309697, 3.433605909582103, 3.3974774600409665, 3.361865131207561, 3.326768923081886, 3.29218883566394, 3.2581248689537263, 3.2245770229512427, 3.1915452976564893, 3.159029693069466, 3.127030209190174, 3.095546846018612, 3.0645796035547814, 3.03412848179868, 3.0041934807503106, 2.9747746004096705, 2.9458718407767615, 2.9174852018515827, 2.8896146836341345, 2.8622602861244166, 2.83542200932243, 2.8090998532281732, 2.7832938178416473, 2.7580039031628516, 2.733230109191787, 2.7089724359284526, 2.6852308833728484, 2.662005451524975, 2.639296140384832, 2.61710294995242, 2.595425880227738, 2.5742649312107866, 2.553620102901566, 2.5334913953000755, 2.5138788084063157, 2.4947823422202866, 2.4762019967419877, 2.4581377719714195, 2.4405896679085815, 2.4235576845534745, 2.407041821906098, 2.391042079966452, 2.375558458734536, 2.3605909582103513, 2.3461395783938963, 2.3322043192851725, 2.318785180884179, 2.305882163190916, 2.2934952662053836, 2.2816244899275815, 2.27026983435751, 2.259431299495169, 2.2491088853405587, 2.239302591893679, 2.230012419154529, 2.2212383671231106, 2.2129804357994223, 2.205238625183464, 2.198012935275237, 2.1913033660747403, 2.185109917581974, 2.179432589796938, 2.174271382719633, 2.1696262963500583, 2.1654973306882144, 2.1618844857341006, 2.1587877614877176, 2.1562071579490647, 2.154142675118143, 2.152594312994951, 2.15156207157949, 2.1510459508717594, 2.1510459508717594, 2.15156207157949, 2.152594312994951, 2.1541426751181425, 2.1562071579490647, 2.1587877614877176, 2.1618844857341006, 2.165497330688214, 2.1696262963500583, 2.174271382719633, 2.179432589796938, 2.1851099175819737, 2.1913033660747403, 2.1980129352752367, 2.205238625183464, 2.212980435799422, 2.22123836712311, 2.230012419154529, 2.2393025918936784, 2.2491088853405583, 2.259431299495169, 2.2702698343575096, 2.281624489927581, 2.293495266205383, 2.3058821631909154, 2.3187851808841784, 2.3322043192851725, 2.346139578393896, 2.360590958210351, 2.3755584587345355, 2.3910420799664514, 2.4070418219060974, 2.423557684553474, 2.440589667908581, 2.458137771971419, 2.4762019967419873, 2.4947823422202857, 2.5138788084063153, 2.533491395300075, 2.5536201029015655, 2.574264931210786, 2.5954258802277375, 2.617102949952419, 2.6392961403848316, 2.6620054515249745, 2.685230883372848, 2.708972435928452, 2.733230109191786, 2.7580039031628516, 2.7832938178416464, 2.8090998532281732, 2.8354220093224294, 2.8622602861244166, 2.8896146836341337, 2.917485201851582, 2.9458718407767606, 2.9747746004096696, 3.0041934807503097, 3.03412848179868, 3.0645796035547805, 3.0955468460186113, 3.127030209190173, 3.1590296930694652, 3.1915452976564884, 3.224577022951241, 3.2581248689537254, 3.2921888356639393, 3.326768923081884, 3.3618651312075603, 3.3974774600409656, 3.433605909582103, 3.470250479830969, 3.5074111707875666, 3.5450879824518946, 3.5832809148239537, 3.621989967903742, 3.6612151416912617, 3.7009564361865115, 3.7412138513894924, 3.7819873873002035, 3.8232770439186448, 3.865082821244817, 3.90740471927872, 3.9502427380203535, 3.9935968774697166, 4.037467137626811, 4.081853518491635, 4.126756020064191, 4.172174642344476, 4.218109385332493, 4.264560249028241, 4.311527233431717, 4.359010338542926, 4.407009564361863, 4.455524910888533, 4.504556378122931, 4.554103966065062, 4.604167674714922, 4.654747504072514, 4.705843454137835, 4.7574555249108865, 4.8095837163916695, 4.862228028580182, 4.915388461476427, 4.9690650150804, 5.023257689392105, 5.077966484411539, 5.133191400138706, 5.188932436573602, 5.245189593716228, 5.3019628715665865, 5.359252270124673, 5.417057789390492, 5.4753794293640405, 5.53421719004532, 5.593571071434329, 5.65344107353107, 5.71382719633554, 5.774729439847743, 5.836147804067673, 5.898082288995337, 5.960532894630731, 6.023499620973853, 6.086982468024708, 6.150981435783294 ], [ 6.208270834341381, 6.144271866582796, 6.080789019531942, 6.017822293188818, 5.955371687553425, 5.893437202625762, 5.83201883840583, 5.771116594893629, 5.710730472089159, 5.650860469992418, 5.5915065886034085, 5.532668827922128, 5.47434718794858, 5.416541668682762, 5.359252270124674, 5.302478992274317, 5.24622183513169, 5.190480798696795, 5.135255882969628, 5.080547087950193, 5.026354413638488, 4.972677860034514, 4.9195174271382704, 4.866873114949758, 4.814744923468975, 4.763132852695923, 4.712036902630602, 4.66145707327301, 4.611393364623151, 4.56184577668102, 4.51281430944662, 4.464298962919951, 4.4162997371010135, 4.368816631989805, 4.321849647586328, 4.275398783890582, 4.229464040902565, 4.184045418622279, 4.139142917049723, 4.094756536184899, 4.050886276027804, 4.00753213657844, 3.9646941178368076, 3.922372219802905, 3.8805664424767325, 3.8392767858582912, 3.79850324994758, 3.7582458347445993, 3.7185045402493495, 3.67927936646183, 3.6405703133820415, 3.6023773810099824, 3.5647005693456544, 3.5275398783890566, 3.49089530814019, 3.4547668585990534, 3.419154529765648, 3.384058321639973, 3.349478234222027, 3.3154142675118132, 3.2818664215093296, 3.248834696214576, 3.216319091627553, 3.184319607748261, 3.152836244576699, 3.1218690021128683, 3.091417880356767, 3.0614828793083975, 3.0320639989677574, 3.0031612393348484, 2.9747746004096696, 2.9469040821922214, 2.9195496846825035, 2.8927114078805167, 2.86638925178626, 2.840583216399734, 2.8152933017209385, 2.790519507749874, 2.7662618344865395, 2.7425202819309353, 2.719294850083062, 2.696585538942919, 2.674392348510507, 2.652715278785825, 2.6315543297688735, 2.610909501459653, 2.5907807938581624, 2.5711682069644026, 2.5520717407783735, 2.5334913953000746, 2.5154271705295064, 2.4978790664666684, 2.4808470831115614, 2.4643312204641847, 2.4483314785245387, 2.432847857292623, 2.417880356768438, 2.403428976951983, 2.3894937178432594, 2.3760745794422657, 2.363171561749003, 2.3507846647634705, 2.3389138884856684, 2.327559232915597, 2.3167206980532558, 2.3063982838986457, 2.2965919904517658, 2.287301817712616, 2.2785277656811975, 2.270269834357509, 2.262528023741551, 2.255302333833324, 2.248592764632827, 2.242399316140061, 2.236721988355025, 2.23156078127772, 2.2269156949081452, 2.2227867292463013, 2.2191738842921875, 2.2160771600458045, 2.2134965565071516, 2.21143207367623, 2.209883711553038, 2.208851470137577, 2.2083353494298463, 2.2083353494298463, 2.208851470137577, 2.209883711553038, 2.2114320736762294, 2.2134965565071516, 2.2160771600458045, 2.2191738842921875, 2.222786729246301, 2.2269156949081452, 2.23156078127772, 2.236721988355025, 2.2423993161400606, 2.248592764632827, 2.2553023338333236, 2.262528023741551, 2.2702698343575087, 2.278527765681197, 2.287301817712616, 2.2965919904517653, 2.306398283898645, 2.3167206980532558, 2.3275592329155965, 2.338913888485668, 2.35078466476347, 2.3631715617490023, 2.3760745794422653, 2.3894937178432594, 2.4034289769519828, 2.4178803567684377, 2.4328478572926224, 2.4483314785245383, 2.4643312204641843, 2.480847083111561, 2.497879066466668, 2.515427170529506, 2.533491395300074, 2.5520717407783726, 2.571168206964402, 2.590780793858162, 2.6109095014596524, 2.631554329768873, 2.6527152787858244, 2.674392348510506, 2.6965855389429185, 2.7192948500830614, 2.742520281930935, 2.766261834486539, 2.790519507749873, 2.8152933017209385, 2.8405832163997333, 2.86638925178626, 2.8927114078805163, 2.9195496846825035, 2.9469040821922206, 2.974774600409669, 3.0031612393348475, 3.0320639989677565, 3.0614828793083966, 3.091417880356767, 3.1218690021128674, 3.152836244576698, 3.18431960774826, 3.216319091627552, 3.2488346962145753, 3.281866421509328, 3.3154142675118123, 3.349478234222026, 3.384058321639971, 3.419154529765647, 3.4547668585990525, 3.49089530814019, 3.5275398783890557, 3.5647005693456535, 3.6023773810099815, 3.6405703133820406, 3.679279366461829, 3.7185045402493486, 3.7582458347445984, 3.7985032499475793, 3.8392767858582904, 3.8805664424767317, 3.922372219802904, 3.9646941178368067, 4.00753213657844, 4.0508862760278035, 4.094756536184898, 4.139142917049722, 4.1840454186222775, 4.229464040902563, 4.27539878389058, 4.321849647586328, 4.368816631989804, 4.416299737101013, 4.46429896291995, 4.51281430944662, 4.561845776681018, 4.611393364623149, 4.6614570732730085, 4.712036902630601, 4.763132852695922, 4.814744923468973, 4.866873114949756, 4.919517427138269, 4.972677860034514, 5.026354413638487, 5.080547087950192, 5.135255882969626, 5.190480798696793, 5.2462218351316885, 5.302478992274315, 5.359252270124673, 5.41654166868276, 5.474347187948579, 5.532668827922127, 5.591506588603407, 5.650860469992416, 5.710730472089157, 5.771116594893627, 5.83201883840583, 5.89343720262576, 5.9553716875534235, 6.017822293188818, 6.08078901953194, 6.144271866582795, 6.208270834341381 ], [ 6.266076353607199, 6.2020773858486145, 6.1385945387977605, 6.075627812454638, 6.013177206819244, 5.951242721891582, 5.88982435767165, 5.8289221141594485, 5.768535991354977, 5.708665989258237, 5.6493121078692266, 5.590474347187948, 5.532152707214399, 5.474347187948581, 5.417057789390493, 5.3602845115401365, 5.304027354397508, 5.248286317962613, 5.193061402235447, 5.138352607216012, 5.084159932904307, 5.030483379300334, 4.97732294640409, 4.924678634215576, 4.872550442734794, 4.820938371961742, 4.769842421896421, 4.719262592538829, 4.669198883888969, 4.619651295946839, 4.57061982871244, 4.522104482185771, 4.4741052563668315, 4.426622151255624, 4.379655166852147, 4.3332043031564, 4.287269560168383, 4.241850937888098, 4.196948436315543, 4.152562055450718, 4.108691795293623, 4.06533765584426, 4.0224996371026265, 3.980177739068724, 3.9383719617425523, 3.89708230512411, 3.856308769213399, 3.816051354010418, 3.7763100595151684, 3.737084885727649, 3.6983758326478604, 3.6601829002758013, 3.6225060886114733, 3.5853453976548764, 3.548700827406009, 3.5125723778648723, 3.476960049031467, 3.441863840905791, 3.407283753487846, 3.373219786777632, 3.3396719407751476, 3.306640215480395, 3.274124610893372, 3.24212512701408, 3.210641763842518, 3.1796745213786872, 3.149223399622586, 3.1192883985742164, 3.0898695182335763, 3.0609667586006672, 3.0325801196754885, 3.00470960145804, 2.9773552039483224, 2.9505169271463356, 2.924194771052079, 2.898388735665553, 2.8730988209867574, 2.848325027015693, 2.8240673537523584, 2.8003258011967542, 2.7771003693488807, 2.754391058208738, 2.7321978677763257, 2.7105207980516437, 2.6893598490346924, 2.6687150207254717, 2.6485863131239813, 2.6289737262302215, 2.6098772600441924, 2.5912969145658935, 2.5732326897953253, 2.5556845857324872, 2.5386526023773803, 2.5221367397300036, 2.5061369977903576, 2.4906533765584418, 2.475685876034257, 2.461234496217802, 2.4472992371090783, 2.4338800987080846, 2.4209770810148217, 2.4085901840292894, 2.3967194077514873, 2.385364752181416, 2.3745262173190747, 2.3642038031644645, 2.3543975097175847, 2.345107336978435, 2.3363332849470164, 2.328075353623328, 2.32033354300737, 2.313107853099143, 2.306398283898646, 2.30020483540588, 2.294527507620844, 2.2893663005435387, 2.284721214173964, 2.28059224851212, 2.2769794035580064, 2.2738826793116234, 2.2713020757729705, 2.2692375929420487, 2.2676892308188568, 2.266656989403396, 2.2661408686956652, 2.2661408686956652, 2.266656989403396, 2.2676892308188568, 2.2692375929420483, 2.2713020757729705, 2.2738826793116234, 2.2769794035580064, 2.2805922485121197, 2.284721214173964, 2.2893663005435387, 2.294527507620844, 2.3002048354058795, 2.306398283898646, 2.3131078530991425, 2.32033354300737, 2.3280753536233276, 2.336333284947016, 2.345107336978435, 2.354397509717584, 2.364203803164464, 2.3745262173190747, 2.3853647521814154, 2.396719407751487, 2.408590184029289, 2.4209770810148212, 2.433880098708084, 2.4472992371090783, 2.4612344962178017, 2.4756858760342566, 2.4906533765584413, 2.506136997790357, 2.522136739730003, 2.53865260237738, 2.555684585732487, 2.573232689795325, 2.591296914565893, 2.6098772600441915, 2.628973726230221, 2.648586313123981, 2.6687150207254713, 2.689359849034692, 2.7105207980516433, 2.732197867776325, 2.7543910582087374, 2.7771003693488803, 2.800325801196754, 2.824067353752358, 2.848325027015692, 2.8730988209867574, 2.898388735665552, 2.924194771052079, 2.950516927146335, 2.9773552039483224, 3.004709601458039, 3.0325801196754876, 3.0609667586006664, 3.0898695182335754, 3.1192883985742155, 3.149223399622585, 3.1796745213786863, 3.210641763842517, 3.242125127014079, 3.274124610893371, 3.306640215480394, 3.3396719407751467, 3.3732197867776312, 3.407283753487845, 3.441863840905791, 3.476960049031466, 3.5125723778648714, 3.548700827406009, 3.5853453976548746, 3.6225060886114733, 3.6601829002758004, 3.6983758326478586, 3.737084885727647, 3.7763100595151675, 3.8160513540104173, 3.856308769213398, 3.89708230512411, 3.9383719617425506, 3.980177739068724, 4.022499637102626, 4.065337655844259, 4.108691795293622, 4.152562055450717, 4.196948436315541, 4.241850937888097, 4.287269560168382, 4.333204303156399, 4.379655166852146, 4.426622151255623, 4.4741052563668315, 4.522104482185769, 4.570619828712438, 4.619651295946838, 4.669198883888968, 4.719262592538827, 4.769842421896419, 4.82093837196174, 4.872550442734793, 4.924678634215576, 4.9773229464040885, 5.030483379300332, 5.084159932904306, 5.138352607216011, 5.193061402235445, 5.248286317962611, 5.3040273543975065, 5.360284511540135, 5.417057789390492, 5.474347187948579, 5.532152707214398, 5.590474347187946, 5.6493121078692266, 5.708665989258235, 5.768535991354977, 5.828922114159447, 5.889824357671648, 5.95124272189158, 6.013177206819243, 6.075627812454636, 6.138594538797759, 6.202077385848614, 6.266076353607199 ], [ 6.324397993580748, 6.260399025822163, 6.196916178771309, 6.133949452428185, 6.071498846792792, 6.009564361865129, 5.948145997645197, 5.887243754132996, 5.826857631328526, 5.766987629231785, 5.707633747842776, 5.6487959871614954, 5.590474347187947, 5.532668827922129, 5.475379429364041, 5.418606151513684, 5.362348994371057, 5.306607957936162, 5.251383042208995, 5.19667424718956, 5.1424815728778555, 5.088805019273881, 5.035644586377638, 4.983000274189125, 4.930872082708342, 4.8792600119352905, 4.828164061869969, 4.777584232512377, 4.727520523862518, 4.677972935920387, 4.628941468685987, 4.580426122159318, 4.532426896340381, 4.484943791229172, 4.437976806825695, 4.391525943129949, 4.345591200141932, 4.300172577861646, 4.25527007628909, 4.2108836954242665, 4.1670134352671715, 4.1236592958178075, 4.080821277076175, 4.038499379042272, 3.9966936017160997, 3.9554039450976584, 3.9146304091869473, 3.8743729939839664, 3.8346316994887166, 3.795406525701197, 3.7566974726214086, 3.7185045402493495, 3.6808277285850215, 3.6436670376284237, 3.607022467379557, 3.5708940178384205, 3.535281689005015, 3.50018548087934, 3.465605393461394, 3.4315414267511803, 3.3979935807486967, 3.3649618554539433, 3.33244625086692, 3.300446766987628, 3.268963403816066, 3.2379961613522354, 3.207545039596134, 3.1776100385477646, 3.1481911582071245, 3.1192883985742155, 3.0909017596490367, 3.063031241431588, 3.0356768439218706, 3.0088385671198843, 2.9825164110256273, 2.9567103756391013, 2.9314204609603056, 2.906646666989241, 2.8823889937259066, 2.8586474411703025, 2.835422009322429, 2.812712698182286, 2.790519507749874, 2.768842438025192, 2.7476814890082406, 2.72703666069902, 2.7069079530975295, 2.6872953662037697, 2.6681989000177406, 2.6496185545394417, 2.6315543297688735, 2.6140062257060355, 2.5969742423509286, 2.580458379703552, 2.564458637763906, 2.54897501653199, 2.5340075160078053, 2.5195561361913503, 2.5056208770826265, 2.492201738681633, 2.47929872098837, 2.4669118240028376, 2.4550410477250355, 2.443686392154964, 2.432847857292623, 2.4225254431380128, 2.412719149691133, 2.403428976951983, 2.3946549249205646, 2.3863969935968763, 2.378655182980918, 2.371429493072691, 2.3647199238721943, 2.358526475379428, 2.3528491475943922, 2.347687940517087, 2.3430428541475123, 2.3389138884856684, 2.3353010435315547, 2.3322043192851716, 2.3296237157465187, 2.327559232915597, 2.326010870792405, 2.324978629376944, 2.3244625086692134, 2.3244625086692134, 2.324978629376944, 2.326010870792405, 2.3275592329155965, 2.3296237157465187, 2.3322043192851716, 2.3353010435315547, 2.338913888485668, 2.3430428541475123, 2.347687940517087, 2.3528491475943922, 2.3585264753794277, 2.3647199238721943, 2.3714294930726907, 2.378655182980918, 2.386396993596876, 2.394654924920564, 2.403428976951983, 2.4127191496911324, 2.4225254431380123, 2.432847857292623, 2.4436863921549636, 2.455041047725035, 2.466911824002837, 2.4792987209883695, 2.4922017386816324, 2.5056208770826265, 2.51955613619135, 2.534007516007805, 2.5489750165319895, 2.5644586377639054, 2.5804583797035514, 2.596974242350928, 2.614006225706035, 2.631554329768873, 2.6496185545394413, 2.6681989000177397, 2.6872953662037693, 2.706907953097529, 2.7270366606990195, 2.74768148900824, 2.7688424380251915, 2.790519507749873, 2.8127126981822856, 2.8354220093224285, 2.858647441170302, 2.882388993725906, 2.90664666698924, 2.9314204609603056, 2.9567103756391004, 2.9825164110256273, 3.0088385671198834, 3.0356768439218706, 3.063031241431588, 3.090901759649036, 3.1192883985742146, 3.1481911582071236, 3.1776100385477637, 3.207545039596134, 3.2379961613522346, 3.2689634038160653, 3.300446766987627, 3.3324462508669193, 3.3649618554539424, 3.397993580748695, 3.4315414267511795, 3.4656053934613933, 3.5001854808793382, 3.5352816890050143, 3.5708940178384196, 3.607022467379557, 3.643667037628423, 3.6808277285850206, 3.7185045402493486, 3.7566974726214077, 3.795406525701196, 3.8346316994887157, 3.8743729939839655, 3.9146304091869464, 3.9554039450976575, 3.9966936017160988, 4.038499379042271, 4.080821277076174, 4.1236592958178075, 4.167013435267171, 4.210883695424265, 4.255270076289089, 4.300172577861645, 4.34559120014193, 4.391525943129947, 4.437976806825695, 4.484943791229171, 4.53242689634038, 4.580426122159317, 4.628941468685987, 4.677972935920385, 4.727520523862516, 4.777584232512376, 4.828164061869968, 4.879260011935289, 4.9308720827083405, 4.9830002741891235, 5.035644586377636, 5.088805019273881, 5.142481572877854, 5.196674247189559, 5.251383042208993, 5.30660795793616, 5.362348994371056, 5.418606151513682, 5.4753794293640405, 5.532668827922127, 5.590474347187946, 5.648795987161495, 5.707633747842774, 5.766987629231783, 5.826857631328524, 5.887243754132994, 5.948145997645197, 6.009564361865127, 6.071498846792791, 6.133949452428185, 6.196916178771307, 6.260399025822162, 6.324397993580748 ], [ 6.383235754262027, 6.319236786503442, 6.255753939452589, 6.192787213109465, 6.130336607474073, 6.068402122546409, 6.006983758326477, 5.946081514814276, 5.885695392009805, 5.825825389913065, 5.766471508524055, 5.707633747842776, 5.6493121078692266, 5.5915065886034085, 5.534217190045322, 5.477443912194964, 5.421186755052337, 5.365445718617441, 5.310220802890274, 5.2555120078708395, 5.201319333559136, 5.147642779955161, 5.094482347058918, 5.041838034870405, 4.9897098433896225, 4.938097772616571, 4.887001822551248, 4.836421993193657, 4.786358284543797, 4.736810696601667, 4.687779229367267, 4.6392638828405985, 4.59126465702166, 4.5437815519104525, 4.496814567506975, 4.450363703811228, 4.4044289608232114, 4.359010338542927, 4.31410783697037, 4.269721456105547, 4.225851195948452, 4.182497056499088, 4.139659037757455, 4.097337139723552, 4.05553136239738, 4.014241705778939, 3.9734681698682275, 3.9332107546652466, 3.893469460169997, 3.8542442863824764, 3.815535233302688, 3.777342300930629, 3.739665489266301, 3.702504798309704, 3.6658602280608372, 3.6297317785197007, 3.5941194496862945, 3.5590232415606193, 3.5244431541426735, 3.4903791874324597, 3.456831341429976, 3.4237996161352235, 3.3912840115481995, 3.3592845276689074, 3.3278011644973464, 3.2968339220335148, 3.2663828002774142, 3.236447799229044, 3.2070289188884047, 3.178126159255495, 3.149739520330316, 3.1218690021128683, 3.094514604603151, 3.0676763278011636, 3.0413541717069075, 3.0155481363203815, 2.990258221641586, 2.965484427670521, 2.9412267544071864, 2.917485201851582, 2.8942597700037087, 2.871550458863566, 2.8493572684311532, 2.8276801987064717, 2.8065192496895204, 2.7858744213802993, 2.7657457137788093, 2.7461331268850495, 2.7270366606990204, 2.7084563152207215, 2.6903920904501533, 2.6728439863873152, 2.6558120030322083, 2.6392961403848316, 2.6232963984451856, 2.6078127772132698, 2.5928452766890846, 2.57839389687263, 2.5644586377639063, 2.5510394993629126, 2.5381364816696497, 2.5257495846841174, 2.5138788084063153, 2.502524152836244, 2.4916856179739026, 2.4813632038192925, 2.4715569103724127, 2.462266737633263, 2.4534926856018444, 2.445234754278156, 2.437492943662198, 2.430267253753971, 2.423557684553474, 2.417364236060708, 2.411686908275672, 2.4065257011983667, 2.401880614828792, 2.397751649166948, 2.3941388042128344, 2.3910420799664514, 2.3884614764277985, 2.3863969935968767, 2.3848486314736848, 2.383816390058224, 2.383300269350493, 2.383300269350493, 2.383816390058224, 2.3848486314736848, 2.3863969935968763, 2.3884614764277985, 2.3910420799664514, 2.3941388042128344, 2.3977516491669477, 2.401880614828792, 2.4065257011983667, 2.411686908275672, 2.4173642360607075, 2.423557684553474, 2.4302672537539705, 2.437492943662198, 2.4452347542781556, 2.453492685601844, 2.462266737633263, 2.471556910372412, 2.481363203819292, 2.4916856179739026, 2.5025241528362434, 2.513878808406315, 2.525749584684117, 2.5381364816696492, 2.551039499362912, 2.564458637763906, 2.5783938968726297, 2.5928452766890846, 2.6078127772132693, 2.623296398445185, 2.639296140384831, 2.655812003032208, 2.672843986387315, 2.690392090450153, 2.708456315220721, 2.7270366606990195, 2.746133126885049, 2.765745713778809, 2.7858744213802993, 2.8065192496895195, 2.8276801987064712, 2.849357268431153, 2.8715504588635654, 2.894259770003708, 2.9174852018515818, 2.941226754407186, 2.96548442767052, 2.9902582216415854, 3.0155481363203807, 3.0413541717069066, 3.0676763278011627, 3.09451460460315, 3.1218690021128674, 3.149739520330316, 3.178126159255494, 3.207028918888404, 3.236447799229044, 3.2663828002774133, 3.2968339220335148, 3.3278011644973455, 3.3592845276689074, 3.3912840115481995, 3.4237996161352218, 3.456831341429975, 3.4903791874324597, 3.5244431541426735, 3.5590232415606184, 3.5941194496862945, 3.6297317785197, 3.6658602280608363, 3.702504798309703, 3.739665489266301, 3.777342300930628, 3.815535233302687, 3.8542442863824755, 3.893469460169996, 3.933210754665245, 3.9734681698682266, 4.014241705778938, 4.055531362397379, 4.097337139723551, 4.139659037757454, 4.182497056499088, 4.22585119594845, 4.269721456105545, 4.314107836970369, 4.359010338542925, 4.404428960823211, 4.450363703811227, 4.496814567506974, 4.543781551910451, 4.591264657021659, 4.639263882840597, 4.687779229367266, 4.736810696601665, 4.786358284543796, 4.836421993193655, 4.887001822551247, 4.938097772616568, 4.989709843389621, 5.041838034870404, 5.094482347058916, 5.14764277995516, 5.201319333559134, 5.2555120078708395, 5.310220802890273, 5.36544571861744, 5.421186755052335, 5.477443912194962, 5.53421719004532, 5.591506588603407, 5.6493121078692266, 5.707633747842774, 5.766471508524054, 5.825825389913064, 5.885695392009804, 5.946081514814274, 6.006983758326476, 6.0684021225464075, 6.130336607474071, 6.192787213109464, 6.255753939452587, 6.319236786503442, 6.383235754262027 ], [ 6.442589635651036, 6.3785906678924515, 6.315107820841598, 6.252141094498475, 6.189690488863081, 6.127756003935419, 6.066337639715487, 6.005435396203286, 5.945049273398814, 5.885179271302074, 5.825825389913064, 5.766987629231785, 5.708665989258236, 5.650860469992418, 5.59357107143433, 5.536797793583974, 5.480540636441345, 5.42479960000645, 5.369574684279284, 5.314865889259849, 5.260673214948144, 5.206996661344171, 5.153836228447927, 5.101191916259413, 5.049063724778631, 4.997451654005579, 4.946355703940258, 4.895775874582666, 4.845712165932806, 4.796164577990676, 4.747133110756277, 4.698617764229608, 4.650618538410669, 4.603135433299461, 4.556168448895984, 4.509717585200237, 4.46378284221222, 4.418364219931935, 4.37346171835938, 4.329075337494555, 4.28520507733746, 4.241850937888097, 4.199012919146464, 4.156691021112561, 4.114885243786389, 4.073595587167947, 4.032822051257236, 3.9925646360542553, 3.9528233415590055, 3.913598167771486, 3.8748891146916975, 3.8366961823196384, 3.7990193706553104, 3.7618586796987135, 3.725214109449846, 3.6890856599087094, 3.653473331075304, 3.618377122949628, 3.583797035531683, 3.549733068821469, 3.5161852228189847, 3.483153497524232, 3.450637892937209, 3.418638409057917, 3.387155045886355, 3.3561878034225243, 3.325736681666423, 3.2958016806180535, 3.2663828002774133, 3.2374800406445043, 3.2090934017193256, 3.181222883501877, 3.1538684859921595, 3.1270302091901723, 3.100708053095916, 3.07490201770939, 3.0496121030305945, 3.02483830905953, 3.0005806357961955, 2.9768390832405913, 2.953613651392718, 2.930904340252575, 2.9087111498201628, 2.887034080095481, 2.8658731310785295, 2.845228302769309, 2.8250995951678184, 2.8054870082740586, 2.7863905420880295, 2.7678101966097306, 2.7497459718391624, 2.7321978677763243, 2.7151658844212174, 2.6986500217738407, 2.6826502798341947, 2.667166658602279, 2.652199158078094, 2.637747778261639, 2.6238125191529154, 2.6103933807519217, 2.5974903630586588, 2.5851034660731265, 2.5732326897953244, 2.561878034225253, 2.5510394993629117, 2.5407170852083016, 2.5309107917614218, 2.521620619022272, 2.5128465669908535, 2.504588635667165, 2.496846825051207, 2.48962113514298, 2.482911565942483, 2.476718117449717, 2.471040789664681, 2.465879582587376, 2.461234496217801, 2.4571055305559573, 2.4534926856018435, 2.4503959613554605, 2.4478153578168076, 2.445750874985886, 2.444202512862694, 2.443170271447233, 2.4426541507395023, 2.4426541507395023, 2.443170271447233, 2.444202512862694, 2.4457508749858854, 2.4478153578168076, 2.4503959613554605, 2.4534926856018435, 2.457105530555957, 2.461234496217801, 2.465879582587376, 2.471040789664681, 2.4767181174497166, 2.482911565942483, 2.4896211351429796, 2.496846825051207, 2.5045886356671647, 2.512846566990853, 2.521620619022272, 2.5309107917614213, 2.540717085208301, 2.5510394993629117, 2.5618780342252525, 2.573232689795324, 2.585103466073126, 2.5974903630586583, 2.6103933807519213, 2.6238125191529154, 2.6377477782616388, 2.6521991580780937, 2.6671666586022784, 2.6826502798341942, 2.6986500217738403, 2.715165884421217, 2.732197867776324, 2.749745971839162, 2.76781019660973, 2.7863905420880286, 2.805487008274058, 2.825099595167818, 2.8452283027693084, 2.865873131078529, 2.8870340800954803, 2.908711149820162, 2.9309043402525745, 2.9536136513927174, 2.976839083240591, 3.0005806357961955, 3.024838309059529, 3.0496121030305945, 3.0749020177093893, 3.100708053095916, 3.1270302091901723, 3.1538684859921595, 3.181222883501876, 3.2090934017193247, 3.2374800406445035, 3.2663828002774125, 3.2958016806180526, 3.325736681666422, 3.3561878034225234, 3.387155045886354, 3.418638409057916, 3.450637892937208, 3.4831534975242313, 3.516185222818984, 3.5497330688214683, 3.583797035531682, 3.618377122949628, 3.653473331075303, 3.6890856599087085, 3.725214109449846, 3.7618586796987117, 3.7990193706553104, 3.8366961823196375, 3.8748891146916957, 3.913598167771484, 3.9528233415590046, 3.9925646360542544, 4.032822051257235, 4.073595587167947, 4.114885243786388, 4.156691021112561, 4.199012919146463, 4.241850937888096, 4.2852050773374595, 4.3290753374945545, 4.373461718359378, 4.418364219931934, 4.463782842212219, 4.509717585200236, 4.556168448895983, 4.60313543329946, 4.650618538410669, 4.698617764229606, 4.747133110756275, 4.796164577990675, 4.845712165932805, 4.8957758745826645, 4.946355703940256, 4.997451654005577, 5.04906372477863, 5.101191916259413, 5.1538362284479255, 5.206996661344169, 5.260673214948143, 5.314865889259848, 5.369574684279282, 5.424799600006448, 5.480540636441344, 5.536797793583972, 5.593571071434329, 5.650860469992416, 5.708665989258235, 5.766987629231783, 5.825825389913064, 5.885179271302072, 5.945049273398814, 6.005435396203284, 6.066337639715485, 6.127756003935417, 6.18969048886308, 6.252141094498473, 6.315107820841596, 6.378590667892451, 6.442589635651036 ], [ 6.502459637747777, 6.438460669989192, 6.374977822938339, 6.312011096595215, 6.249560490959823, 6.1876260060321595, 6.126207641812227, 6.065305398300026, 6.004919275495555, 5.945049273398816, 5.885695392009805, 5.826857631328526, 5.768535991354977, 5.710730472089159, 5.653441073531072, 5.596667795680714, 5.540410638538087, 5.4846696021031915, 5.429444686376025, 5.37473589135659, 5.320543217044886, 5.266866663440911, 5.213706230544668, 5.161061918356155, 5.108933726875373, 5.057321656102321, 5.006225706036998, 4.955645876679407, 4.9055821680295475, 4.856034580087417, 4.8070031128530175, 4.758487766326349, 4.71048854050741, 4.663005435396203, 4.6160384509927255, 4.5695875872969784, 4.523652844308962, 4.478234222028677, 4.4333317204561205, 4.388945339591297, 4.345075079434202, 4.301720939984838, 4.258882921243205, 4.2165610232093025, 4.17475524588313, 4.133465589264689, 4.092692053353978, 4.052434638150997, 4.012693343655747, 3.9734681698682266, 3.934759116788438, 3.896566184416379, 3.858889372752051, 3.821728681795454, 3.7850841115465874, 3.748955662005451, 3.7133433331720447, 3.6782471250463695, 3.6436670376284237, 3.60960307091821, 3.5760552249157262, 3.5430234996209737, 3.5105078950339497, 3.4785084111546576, 3.4470250479830966, 3.416057805519265, 3.3856066837631644, 3.355671682714794, 3.326252802374155, 3.297350042741245, 3.268963403816066, 3.2410928855986185, 3.213738488088901, 3.186900211286914, 3.1605780551926577, 3.1347720198061317, 3.109482105127336, 3.0847083111562705, 3.060450637892936, 3.036709085337333, 3.013483653489459, 2.990774342349316, 2.9685811519169034, 2.946904082192222, 2.9257431331752706, 2.9050983048660495, 2.8849695972645595, 2.8653570103707997, 2.8462605441847706, 2.8276801987064717, 2.8096159739359035, 2.7920678698730654, 2.7750358865179585, 2.758520023870582, 2.7425202819309358, 2.72703666069902, 2.712069160174835, 2.6976177803583803, 2.6836825212496564, 2.670263382848663, 2.6573603651554, 2.6449734681698676, 2.6331026918920655, 2.621748036321994, 2.610909501459653, 2.6005870873050427, 2.590780793858163, 2.581490621119013, 2.5727165690875946, 2.5644586377639063, 2.556716827147948, 2.549491137239721, 2.5427815680392243, 2.536588119546458, 2.530910791761422, 2.525749584684117, 2.5211044983145423, 2.5169755326526984, 2.5133626876985846, 2.5102659634522015, 2.5076853599135487, 2.505620877082627, 2.504072514959435, 2.503040273543974, 2.5025241528362434, 2.5025241528362434, 2.503040273543974, 2.504072514959435, 2.5056208770826265, 2.5076853599135487, 2.5102659634522015, 2.5133626876985846, 2.516975532652698, 2.5211044983145423, 2.525749584684117, 2.530910791761422, 2.5365881195464577, 2.5427815680392243, 2.5494911372397207, 2.556716827147948, 2.564458637763906, 2.572716569087594, 2.581490621119013, 2.5907807938581624, 2.6005870873050423, 2.610909501459653, 2.6217480363219936, 2.633102691892065, 2.644973468169867, 2.6573603651553994, 2.6702633828486624, 2.683682521249656, 2.69761778035838, 2.712069160174835, 2.7270366606990195, 2.7425202819309353, 2.7585200238705814, 2.775035886517958, 2.792067869873065, 2.809615973935903, 2.8276801987064712, 2.8462605441847697, 2.8653570103707993, 2.884969597264559, 2.9050983048660495, 2.9257431331752697, 2.9469040821922214, 2.968581151916903, 2.9907743423493156, 3.013483653489458, 3.036709085337332, 3.060450637892936, 3.0847083111562705, 3.109482105127335, 3.134772019806131, 3.1605780551926568, 3.186900211286913, 3.2137384880889, 3.2410928855986176, 3.268963403816066, 3.297350042741244, 3.326252802374154, 3.355671682714794, 3.3856066837631635, 3.416057805519265, 3.4470250479830957, 3.4785084111546576, 3.5105078950339497, 3.543023499620972, 3.5760552249157254, 3.60960307091821, 3.6436670376284237, 3.6782471250463686, 3.7133433331720447, 3.74895566200545, 3.7850841115465865, 3.821728681795453, 3.858889372752051, 3.896566184416378, 3.9347591167884373, 3.9734681698682257, 4.012693343655746, 4.052434638150995, 4.092692053353977, 4.133465589264688, 4.174755245883129, 4.216561023209302, 4.258882921243204, 4.301720939984838, 4.3450750794342, 4.388945339591295, 4.43333172045612, 4.478234222028675, 4.523652844308961, 4.569587587296978, 4.616038450992725, 4.663005435396201, 4.710488540507409, 4.758487766326347, 4.807003112853017, 4.856034580087416, 4.905582168029547, 4.955645876679405, 5.0062257060369975, 5.057321656102318, 5.108933726875371, 5.161061918356154, 5.213706230544666, 5.2668666634409105, 5.320543217044884, 5.37473589135659, 5.429444686376023, 5.48466960210319, 5.540410638538085, 5.5966677956807125, 5.65344107353107, 5.710730472089157, 5.768535991354977, 5.826857631328524, 5.885695392009804, 5.945049273398814, 6.0049192754955545, 6.0653053983000245, 6.126207641812226, 6.187626006032158, 6.249560490959821, 6.3120110965952145, 6.374977822938337, 6.438460669989192, 6.502459637747777 ], [ 6.562845760552247, 6.498846792793662, 6.435363945742809, 6.372397219399685, 6.309946613764293, 6.2480121288366295, 6.186593764616697, 6.125691521104496, 6.065305398300025, 6.005435396203286, 5.946081514814275, 5.887243754132996, 5.828922114159447, 5.771116594893629, 5.713827196335542, 5.657053918485184, 5.600796761342557, 5.5450557249076615, 5.489830809180495, 5.43512201416106, 5.380929339849356, 5.327252786245381, 5.274092353349138, 5.221448041160625, 5.169319849679843, 5.117707778906791, 5.066611828841468, 5.016031999483877, 4.9659682908340175, 4.916420702891887, 4.8673892356574875, 4.818873889130819, 4.77087466331188, 4.723391558200673, 4.6764245737971954, 4.629973710101448, 4.584038967113432, 4.538620344833147, 4.49371784326059, 4.449331462395767, 4.405461202238672, 4.362107062789308, 4.319269044047675, 4.2769471460137725, 4.2351413686876, 4.193851712069159, 4.153078176158448, 4.112820760955467, 4.073079466460217, 4.033854292672697, 3.995145239592908, 3.956952307220849, 3.919275495556521, 3.882114804599924, 3.8454702343510574, 3.809341784809921, 3.7737294559765147, 3.7386332478508395, 3.7040531604328937, 3.66998919372268, 3.6364413477201962, 3.6034096224254437, 3.5708940178384196, 3.5388945339591276, 3.5074111707875666, 3.476443928323735, 3.4459928065676344, 3.416057805519264, 3.386638925178625, 3.357736165545715, 3.329349526620536, 3.3014790084030885, 3.274124610893371, 3.247286334091384, 3.2209641779971276, 3.1951581426106017, 3.169868227931806, 3.1450944339607405, 3.120836760697406, 3.097095208141803, 3.073869776293929, 3.051160465153786, 3.0289672747213734, 3.007290204996692, 2.9861292559797405, 2.9654844276705195, 2.9453557200690295, 2.9257431331752697, 2.9066466669892406, 2.8880663215109417, 2.8700020967403734, 2.8524539926775354, 2.8354220093224285, 2.818906146675052, 2.8029064047354058, 2.78742278350349, 2.7724552829793048, 2.7580039031628503, 2.7440686440541264, 2.730649505653133, 2.71774648795987, 2.7053595909743375, 2.6934888146965354, 2.682134159126464, 2.671295624264123, 2.6609732101095127, 2.651166916662633, 2.641876743923483, 2.6331026918920646, 2.6248447605683762, 2.617102949952418, 2.609877260044191, 2.6031676908436943, 2.596974242350928, 2.591296914565892, 2.586135707488587, 2.5814906211190123, 2.5773616554571683, 2.5737488105030546, 2.5706520862566715, 2.5680714827180187, 2.566006999887097, 2.564458637763905, 2.563426396348444, 2.5629102756407134, 2.5629102756407134, 2.563426396348444, 2.564458637763905, 2.5660069998870965, 2.5680714827180187, 2.5706520862566715, 2.5737488105030546, 2.577361655457168, 2.5814906211190123, 2.586135707488587, 2.591296914565892, 2.5969742423509277, 2.6031676908436943, 2.6098772600441906, 2.617102949952418, 2.624844760568376, 2.633102691892064, 2.641876743923483, 2.6511669166626324, 2.6609732101095123, 2.671295624264123, 2.6821341591264636, 2.693488814696535, 2.705359590974337, 2.7177464879598694, 2.7306495056531324, 2.744068644054126, 2.75800390316285, 2.7724552829793048, 2.7874227835034895, 2.8029064047354053, 2.8189061466750513, 2.835422009322428, 2.852453992677535, 2.870002096740373, 2.8880663215109412, 2.9066466669892397, 2.9257431331752692, 2.945355720069029, 2.9654844276705195, 2.9861292559797397, 3.007290204996692, 3.0289672747213734, 3.051160465153786, 3.073869776293928, 3.097095208141802, 3.120836760697406, 3.1450944339607405, 3.169868227931805, 3.195158142610601, 3.2209641779971268, 3.247286334091383, 3.27412461089337, 3.3014790084030876, 3.329349526620536, 3.357736165545714, 3.386638925178624, 3.416057805519264, 3.4459928065676335, 3.476443928323735, 3.5074111707875657, 3.5388945339591276, 3.5708940178384196, 3.603409622425442, 3.6364413477201953, 3.66998919372268, 3.7040531604328937, 3.7386332478508386, 3.7737294559765147, 3.80934178480992, 3.8454702343510565, 3.882114804599923, 3.919275495556521, 3.956952307220848, 3.9951452395929072, 4.033854292672696, 4.073079466460216, 4.112820760955465, 4.153078176158447, 4.193851712069158, 4.235141368687599, 4.276947146013772, 4.319269044047674, 4.362107062789308, 4.40546120223867, 4.449331462395765, 4.4937178432605895, 4.538620344833145, 4.584038967113431, 4.6299737101014475, 4.676424573797195, 4.723391558200671, 4.770874663311879, 4.818873889130817, 4.867389235657487, 4.916420702891886, 4.965968290834017, 5.016031999483875, 5.066611828841467, 5.117707778906788, 5.169319849679841, 5.221448041160624, 5.274092353349136, 5.3272527862453805, 5.380929339849354, 5.43512201416106, 5.489830809180493, 5.54505572490766, 5.600796761342555, 5.6570539184851825, 5.71382719633554, 5.771116594893627, 5.828922114159447, 5.887243754132994, 5.946081514814274, 6.005435396203284, 6.0653053983000245, 6.125691521104494, 6.186593764616696, 6.248012128836628, 6.309946613764291, 6.3723972193996845, 6.435363945742807, 6.498846792793662, 6.562845760552247 ], [ 6.623748004064449, 6.559749036305865, 6.49626618925501, 6.433299462911887, 6.370848857276494, 6.3089143723488315, 6.247496008128899, 6.186593764616698, 6.126207641812227, 6.066337639715487, 6.006983758326477, 5.948145997645198, 5.88982435767165, 5.832018838405832, 5.774729439847743, 5.717956161997386, 5.661699004854759, 5.6059579684198635, 5.5507330526926975, 5.4960242576732625, 5.441831583361557, 5.388155029757583, 5.33499459686134, 5.282350284672827, 5.230222093192044, 5.178610022418992, 5.127514072353671, 5.07693424299608, 5.026870534346219, 4.9773229464040885, 4.9282914791696895, 4.879776132643021, 4.831776906824082, 4.784293801712874, 4.7373268173093965, 4.69087595361365, 4.644941210625634, 4.599522588345348, 4.554620086772792, 4.510233705907968, 4.466363445750874, 4.42300930630151, 4.380171287559877, 4.337849389525974, 4.296043612199802, 4.254753955581361, 4.21398041967065, 4.173723004467668, 4.133981709972419, 4.0947565361848985, 4.05604748310511, 4.017854550733052, 3.980177739068724, 3.943017048112126, 3.9063724778632594, 3.870244028322123, 3.8346316994887166, 3.7995354913630415, 3.7649554039450965, 3.7308914372348827, 3.697343591232398, 3.664311865937645, 3.6317962613506225, 3.5997967774713295, 3.5683134142997677, 3.537346171835937, 3.5068950500798364, 3.476960049031466, 3.447541168690827, 3.418638409057918, 3.390251770132738, 3.3623812519152905, 3.335026854405573, 3.3081885776035858, 3.2818664215093296, 3.256060386122803, 3.230770471444008, 3.2059966774729425, 3.181739004209608, 3.157997451654005, 3.134772019806131, 3.112062708665988, 3.0898695182335754, 3.068192448508894, 3.0470314994919425, 3.0263866711827214, 3.0062579635812314, 2.9866453766874717, 2.9675489105014425, 2.9489685650231436, 2.9309043402525754, 2.9133562361897374, 2.8963242528346305, 2.8798083901872538, 2.8638086482476077, 2.848325027015692, 2.8333575264915067, 2.8189061466750522, 2.8049708875663284, 2.7915517491653348, 2.778648731472072, 2.7662618344865395, 2.7543910582087374, 2.743036402638666, 2.732197867776325, 2.7218754536217147, 2.712069160174835, 2.702778987435685, 2.6940049354042666, 2.685747004080578, 2.67800519346462, 2.670779503556393, 2.6640699343558962, 2.65787648586313, 2.652199158078094, 2.647037951000789, 2.6423928646312143, 2.6382638989693703, 2.6346510540152566, 2.6315543297688735, 2.6289737262302206, 2.626909243399299, 2.625360881276107, 2.624328639860646, 2.6238125191529154, 2.6238125191529154, 2.624328639860646, 2.625360881276107, 2.6269092433992984, 2.6289737262302206, 2.6315543297688735, 2.6346510540152566, 2.63826389896937, 2.6423928646312143, 2.647037951000789, 2.652199158078094, 2.6578764858631296, 2.6640699343558962, 2.6707795035563926, 2.67800519346462, 2.6857470040805778, 2.694004935404266, 2.702778987435685, 2.7120691601748343, 2.7218754536217142, 2.732197867776325, 2.7430364026386655, 2.754391058208737, 2.766261834486539, 2.7786487314720714, 2.7915517491653343, 2.804970887566328, 2.818906146675052, 2.8333575264915067, 2.8483250270156915, 2.8638086482476073, 2.8798083901872533, 2.89632425283463, 2.913356236189737, 2.930904340252575, 2.948968565023143, 2.9675489105014417, 2.986645376687471, 3.0062579635812305, 3.0263866711827214, 3.0470314994919416, 3.068192448508894, 3.0898695182335754, 3.112062708665988, 3.13477201980613, 3.157997451654004, 3.181739004209608, 3.2059966774729425, 3.230770471444007, 3.256060386122803, 3.2818664215093287, 3.308188577603585, 3.335026854405572, 3.3623812519152896, 3.390251770132738, 3.418638409057916, 3.447541168690826, 3.476960049031466, 3.5068950500798355, 3.537346171835937, 3.5683134142997677, 3.5997967774713295, 3.6317962613506207, 3.664311865937645, 3.6973435912323973, 3.730891437234881, 3.7649554039450948, 3.7995354913630406, 3.8346316994887166, 3.870244028322122, 3.9063724778632585, 3.943017048112125, 3.980177739068723, 4.01785455073305, 4.056047483105109, 4.094756536184898, 4.133981709972418, 4.173723004467667, 4.213980419670648, 4.25475395558136, 4.296043612199801, 4.3378493895259735, 4.380171287559875, 4.423009306301509, 4.466363445750872, 4.510233705907967, 4.5546200867727915, 4.599522588345347, 4.644941210625632, 4.690875953613649, 4.7373268173093965, 4.784293801712874, 4.831776906824082, 4.87977613264302, 4.928291479169689, 4.977322946404088, 5.026870534346218, 5.076934242996078, 5.127514072353669, 5.17861002241899, 5.230222093192043, 5.282350284672826, 5.334994596861338, 5.388155029757582, 5.441831583361556, 5.496024257673261, 5.550733052692696, 5.605957968419862, 5.661699004854757, 5.717956161997384, 5.774729439847743, 5.83201883840583, 5.889824357671648, 5.948145997645197, 6.006983758326476, 6.066337639715485, 6.126207641812226, 6.186593764616696, 6.247496008128898, 6.30891437234883, 6.370848857276493, 6.4332994629118865, 6.496266189255008, 6.559749036305863, 6.623748004064449 ], [ 6.6851663682843805, 6.621167400525795, 6.557684553474942, 6.494717827131819, 6.432267221496426, 6.370332736568763, 6.308914372348831, 6.2480121288366295, 6.187626006032159, 6.127756003935419, 6.068402122546408, 6.009564361865129, 5.95124272189158, 5.893437202625762, 5.836147804067675, 5.7793745262173175, 5.72311736907469, 5.667376332639795, 5.612151416912628, 5.557442621893193, 5.503249947581489, 5.449573393977515, 5.396412961081271, 5.343768648892758, 5.291640457411976, 5.240028386638924, 5.188932436573602, 5.13835260721601, 5.088288898566151, 5.038741310624021, 4.989709843389621, 4.941194496862952, 4.893195271044013, 4.845712165932806, 4.798745181529329, 4.752294317833582, 4.706359574845565, 4.66094095256528, 4.616038450992724, 4.5716520701279, 4.527781809970805, 4.484427670521441, 4.441589651779808, 4.399267753745906, 4.357461976419733, 4.316172319801292, 4.275398783890581, 4.2351413686876, 4.19540007419235, 4.15617490040483, 4.117465847325041, 4.079272914952982, 4.041596103288654, 4.004435412332057, 3.9677908420831907, 3.931662392542054, 3.896050063708648, 3.8609538555829728, 3.826373768165027, 3.792309801454813, 3.7587619554523295, 3.725730230157577, 3.693214625570553, 3.661215141691261, 3.6297317785197, 3.598764536055868, 3.5683134142997677, 3.5383784132513973, 3.508959532910758, 3.4800567732778482, 3.4516701343526695, 3.4237996161352218, 3.3964452186255043, 3.369606941823517, 3.343284785729261, 3.317478750342735, 3.2921888356639393, 3.267415041692874, 3.2431573684295394, 3.219415815873936, 3.196190384026062, 3.1734810728859193, 3.1512878824535067, 3.129610812728825, 3.108449863711874, 3.0878050354026527, 3.0676763278011627, 3.048063740907403, 3.0289672747213734, 3.010386929243075, 2.9923227044725067, 2.9747746004096687, 2.9577426170545618, 2.941226754407185, 2.925227012467539, 2.909743391235623, 2.894775890711438, 2.8803245108949835, 2.8663892517862597, 2.852970113385266, 2.840067095692003, 2.827680198706471, 2.8158094224286687, 2.8044547668585973, 2.793616231996256, 2.783293817841646, 2.773487524394766, 2.7641973516556164, 2.755423299624198, 2.7471653683005095, 2.7394235576845514, 2.7321978677763243, 2.7254882985758275, 2.7192948500830614, 2.7136175222980254, 2.70845631522072, 2.7038112288511456, 2.6996822631893016, 2.696069418235188, 2.692972693988805, 2.690392090450152, 2.68832760761923, 2.686779245496038, 2.6857470040805773, 2.6852308833728467, 2.6852308833728467, 2.6857470040805773, 2.686779245496038, 2.6883276076192297, 2.690392090450152, 2.692972693988805, 2.696069418235188, 2.699682263189301, 2.7038112288511456, 2.70845631522072, 2.7136175222980254, 2.719294850083061, 2.7254882985758275, 2.732197867776324, 2.7394235576845514, 2.747165368300509, 2.7554232996241974, 2.7641973516556164, 2.7734875243947656, 2.7832938178416455, 2.793616231996256, 2.804454766858597, 2.8158094224286683, 2.8276801987064704, 2.8400670956920027, 2.8529701133852656, 2.8663892517862593, 2.880324510894983, 2.894775890711438, 2.9097433912356228, 2.9252270124675386, 2.9412267544071846, 2.9577426170545613, 2.9747746004096682, 2.9923227044725063, 3.010386929243075, 3.0289672747213734, 3.048063740907403, 3.067676327801162, 3.0878050354026527, 3.108449863711873, 3.129610812728825, 3.1512878824535067, 3.1734810728859193, 3.1961903840260613, 3.219415815873935, 3.2431573684295394, 3.267415041692874, 3.2921888356639384, 3.317478750342734, 3.34328478572926, 3.369606941823516, 3.3964452186255034, 3.423799616135221, 3.4516701343526695, 3.4800567732778473, 3.5089595329107572, 3.5383784132513973, 3.568313414299767, 3.598764536055868, 3.629731778519699, 3.661215141691261, 3.693214625570553, 3.725730230157575, 3.7587619554523286, 3.792309801454813, 3.826373768165027, 3.860953855582972, 3.896050063708648, 3.9316623925420533, 3.9677908420831898, 4.0044354123320565, 4.041596103288654, 4.079272914952981, 4.1174658473250405, 4.156174900404829, 4.195400074192349, 4.235141368687598, 4.27539878389058, 4.316172319801291, 4.357461976419732, 4.399267753745905, 4.4415896517798075, 4.484427670521441, 4.527781809970803, 4.571652070127898, 4.616038450992723, 4.660940952565278, 4.706359574845564, 4.752294317833581, 4.798745181529328, 4.845712165932804, 4.8931952710440125, 4.94119449686295, 4.98970984338962, 5.038741310624019, 5.08828889856615, 5.138352607216008, 5.188932436573601, 5.2400283866389215, 5.291640457411974, 5.343768648892757, 5.396412961081269, 5.449573393977514, 5.503249947581487, 5.557442621893193, 5.612151416912626, 5.667376332639793, 5.723117369074688, 5.779374526217316, 5.836147804067673, 5.89343720262576, 5.95124272189158, 6.009564361865127, 6.0684021225464075, 6.127756003935417, 6.187626006032158, 6.248012128836628, 6.30891437234883, 6.370332736568761, 6.432267221496424, 6.494717827131818, 6.557684553474941, 6.621167400525795, 6.6851663682843805 ], [ 6.747100853212044, 6.683101885453459, 6.619619038402606, 6.556652312059482, 6.494201706424089, 6.432267221496426, 6.370848857276494, 6.309946613764293, 6.249560490959822, 6.189690488863082, 6.130336607474072, 6.071498846792792, 6.013177206819243, 5.955371687553425, 5.898082288995338, 5.841309011144981, 5.7850518540023534, 5.729310817567458, 5.674085901840291, 5.619377106820856, 5.565184432509152, 5.511507878905178, 5.4583474460089345, 5.405703133820421, 5.353574942339639, 5.301962871566587, 5.250866921501265, 5.2002870921436735, 5.150223383493814, 5.100675795551684, 5.051644328317284, 5.003128981790615, 4.955129755971677, 4.907646650860469, 4.860679666456992, 4.814228802761245, 4.768294059773228, 4.722875437492943, 4.677972935920387, 4.6335865550555635, 4.589716294898468, 4.5463621554491045, 4.503524136707472, 4.461202238673569, 4.419396461347397, 4.378106804728955, 4.337333268818244, 4.297075853615263, 4.257334559120014, 4.218109385332493, 4.179400332252705, 4.141207399880646, 4.1035305882163176, 4.066369897259721, 4.029725327010854, 3.9935968774697175, 3.957984548636311, 3.922888340510636, 3.8883082530926902, 3.8542442863824764, 3.820696440379993, 3.7876647150852403, 3.755149110498216, 3.723149626618924, 3.691666263447363, 3.6606990209835315, 3.630247899227431, 3.6003128981790606, 3.5708940178384214, 3.5419912582055115, 3.5136046192803327, 3.485734101062885, 3.4583797035531676, 3.4315414267511803, 3.405219270656924, 3.3794132352703983, 3.3541233205916026, 3.329349526620537, 3.3050918533572027, 3.2813503008015994, 3.2581248689537254, 3.2354155578135826, 3.21322236738117, 3.1915452976564884, 3.170384348639537, 3.149739520330316, 3.129610812728826, 3.1099982258350662, 3.0909017596490367, 3.0723214141707382, 3.05425718940017, 3.036709085337332, 3.019677101982225, 3.0031612393348484, 2.9871614973952023, 2.9716778761632865, 2.9567103756391013, 2.942258995822647, 2.928323736713923, 2.9149045983129294, 2.9020015806196664, 2.889614683634134, 2.877743907356332, 2.8663892517862606, 2.8555507169239194, 2.8452283027693093, 2.8354220093224294, 2.8261318365832797, 2.817357784551861, 2.809099853228173, 2.8013580426122147, 2.7941323527039876, 2.787422783503491, 2.7812293350107247, 2.7755520072256887, 2.7703908001483835, 2.765745713778809, 2.761616748116965, 2.758003903162851, 2.754907178916468, 2.752326575377815, 2.7502620925468935, 2.7487137304237015, 2.7476814890082406, 2.74716536830051, 2.74716536830051, 2.7476814890082406, 2.7487137304237015, 2.750262092546893, 2.752326575377815, 2.754907178916468, 2.758003903162851, 2.7616167481169644, 2.765745713778809, 2.7703908001483835, 2.7755520072256887, 2.7812293350107242, 2.787422783503491, 2.794132352703987, 2.8013580426122147, 2.8090998532281723, 2.8173577845518607, 2.8261318365832797, 2.835422009322429, 2.845228302769309, 2.8555507169239194, 2.86638925178626, 2.8777439073563316, 2.8896146836341337, 2.902001580619666, 2.914904598312929, 2.9283237367139225, 2.9422589958226464, 2.9567103756391013, 2.971677876163286, 2.987161497395202, 3.0031612393348475, 3.019677101982225, 3.036709085337332, 3.05425718940017, 3.0723214141707382, 3.0909017596490367, 3.1099982258350662, 3.129610812728825, 3.149739520330316, 3.170384348639536, 3.1915452976564884, 3.21322236738117, 3.2354155578135826, 3.2581248689537246, 3.2813503008015985, 3.3050918533572027, 3.329349526620537, 3.3541233205916017, 3.3794132352703974, 3.4052192706569233, 3.4315414267511795, 3.4583797035531667, 3.485734101062884, 3.5136046192803327, 3.5419912582055106, 3.5708940178384205, 3.6003128981790606, 3.63024789922743, 3.6606990209835315, 3.6916662634473623, 3.723149626618924, 3.755149110498216, 3.7876647150852385, 3.820696440379992, 3.8542442863824764, 3.8883082530926902, 3.922888340510635, 3.957984548636311, 3.9935968774697166, 4.029725327010853, 4.06636989725972, 4.1035305882163176, 4.141207399880645, 4.179400332252704, 4.218109385332492, 4.257334559120013, 4.297075853615262, 4.337333268818243, 4.378106804728954, 4.419396461347396, 4.461202238673568, 4.503524136707471, 4.5463621554491045, 4.589716294898467, 4.633586555055562, 4.677972935920386, 4.722875437492942, 4.768294059773227, 4.814228802761244, 4.860679666456991, 4.9076466508604675, 4.955129755971676, 5.0031289817906135, 5.051644328317283, 5.100675795551682, 5.150223383493813, 5.200287092143672, 5.250866921501264, 5.301962871566585, 5.3535749423396375, 5.4057031338204204, 5.458347446008933, 5.511507878905177, 5.565184432509151, 5.619377106820856, 5.674085901840289, 5.729310817567456, 5.785051854002352, 5.841309011144979, 5.898082288995337, 5.9553716875534235, 6.013177206819243, 6.071498846792791, 6.130336607474071, 6.18969048886308, 6.249560490959821, 6.309946613764291, 6.370848857276493, 6.432267221496424, 6.494201706424088, 6.556652312059481, 6.619619038402604, 6.683101885453459, 6.747100853212044 ], [ 6.809551458847437, 6.745552491088853, 6.682069644037998, 6.6191029176948755, 6.556652312059482, 6.4947178271318196, 6.433299462911887, 6.372397219399686, 6.312011096595215, 6.252141094498475, 6.192787213109465, 6.133949452428186, 6.075627812454638, 6.01782229318882, 5.960532894630731, 5.903759616780374, 5.847502459637747, 5.791761423202852, 5.7365365074756856, 5.681827712456251, 5.627635038144545, 5.573958484540571, 5.520798051644328, 5.468153739455815, 5.416025547975032, 5.36441347720198, 5.313317527136659, 5.262737697779068, 5.2126739891292075, 5.1631264011870766, 5.114094933952678, 5.065579587426009, 5.01758036160707, 4.970097256495862, 4.923130272092385, 4.8766794083966385, 4.830744665408622, 4.785326043128336, 4.7404235415557805, 4.696037160690956, 4.652166900533862, 4.608812761084498, 4.565974742342865, 4.5236528443089625, 4.48184706698279, 4.440557410364349, 4.399783874453638, 4.359526459250656, 4.319785164755407, 4.280559990967887, 4.241850937888098, 4.20365800551604, 4.165981193851712, 4.128820502895114, 4.0921759326462475, 4.056047483105111, 4.020435154271705, 3.9853389461460296, 3.9507588587280846, 3.916694892017871, 3.8831470460153863, 3.850115320720633, 3.8175997161336106, 3.7856002322543176, 3.7541168690827558, 3.723149626618925, 3.6926985048628245, 3.662763503814454, 3.633344623473815, 3.604441863840906, 3.5760552249157262, 3.5481847066982786, 3.520830309188561, 3.493992032386574, 3.4676698762923177, 3.441863840905791, 3.416573926226996, 3.3918001322559306, 3.367542458992596, 3.343800906436993, 3.320575474589119, 3.297866163448976, 3.2756729730165635, 3.253995903291882, 3.2328349542749306, 3.2121901259657095, 3.1920614183642195, 3.1724488314704598, 3.15335236528443, 3.1347720198061317, 3.1167077950355635, 3.0991596909727255, 3.0821277076176186, 3.065611844970242, 3.0496121030305954, 3.03412848179868, 3.019160981274495, 3.004709601458041, 2.9907743423493165, 2.977355203948323, 2.96445218625506, 2.9520652892695276, 2.9401945129917255, 2.928839857421654, 2.918001322559313, 2.9076789084047028, 2.897872614957823, 2.888582442218673, 2.8798083901872547, 2.8715504588635663, 2.863808648247608, 2.856582958339381, 2.8498733891388843, 2.843679940646118, 2.8380026128610822, 2.832841405783777, 2.8281963194142024, 2.8240673537523584, 2.8204545087982447, 2.8173577845518616, 2.8147771810132087, 2.812712698182287, 2.811164336059095, 2.810132094643634, 2.8096159739359035, 2.8096159739359035, 2.810132094643634, 2.811164336059095, 2.8127126981822865, 2.8147771810132087, 2.8173577845518616, 2.8204545087982447, 2.824067353752358, 2.8281963194142024, 2.832841405783777, 2.8380026128610822, 2.8436799406461177, 2.8498733891388843, 2.8565829583393807, 2.863808648247608, 2.871550458863566, 2.879808390187254, 2.888582442218673, 2.8978726149578224, 2.9076789084047023, 2.918001322559313, 2.9288398574216536, 2.940194512991725, 2.952065289269527, 2.9644521862550595, 2.9773552039483224, 2.990774342349316, 3.00470960145804, 3.019160981274495, 3.03412848179868, 3.0496121030305954, 3.065611844970241, 3.0821277076176186, 3.0991596909727255, 3.1167077950355626, 3.1347720198061317, 3.15335236528443, 3.1724488314704598, 3.1920614183642186, 3.2121901259657095, 3.2328349542749297, 3.253995903291882, 3.2756729730165635, 3.297866163448976, 3.320575474589118, 3.343800906436992, 3.367542458992596, 3.3918001322559306, 3.416573926226995, 3.441863840905791, 3.467669876292317, 3.493992032386573, 3.52083030918856, 3.5481847066982777, 3.5760552249157262, 3.604441863840904, 3.633344623473814, 3.662763503814454, 3.6926985048628236, 3.723149626618925, 3.7541168690827558, 3.7856002322543176, 3.817599716133609, 3.850115320720633, 3.8831470460153854, 3.916694892017869, 3.950758858728083, 3.9853389461460287, 4.020435154271705, 4.05604748310511, 4.092175932646247, 4.128820502895113, 4.165981193851711, 4.203658005516038, 4.241850937888097, 4.280559990967886, 4.319785164755406, 4.359526459250655, 4.399783874453636, 4.440557410364348, 4.481847066982789, 4.523652844308962, 4.565974742342863, 4.608812761084497, 4.65216690053386, 4.696037160690955, 4.74042354155578, 4.785326043128335, 4.83074466540862, 4.876679408396637, 4.923130272092385, 4.970097256495862, 5.01758036160707, 5.065579587426008, 5.114094933952677, 5.163126401187076, 5.212673989129206, 5.262737697779066, 5.3133175271366575, 5.364413477201978, 5.416025547975031, 5.468153739455814, 5.520798051644326, 5.5739584845405705, 5.627635038144544, 5.681827712456249, 5.736536507475684, 5.79176142320285, 5.847502459637745, 5.9037596167803725, 5.960532894630731, 6.017822293188818, 6.075627812454636, 6.133949452428185, 6.192787213109464, 6.252141094498473, 6.3120110965952145, 6.3723972193996845, 6.4332994629118865, 6.494717827131818, 6.556652312059481, 6.619102917694875, 6.6820696440379965, 6.745552491088851, 6.809551458847437 ], [ 6.872518185190559, 6.808519217431975, 6.745036370381121, 6.682069644037998, 6.619619038402605, 6.557684553474942, 6.49626618925501, 6.435363945742809, 6.374977822938337, 6.315107820841598, 6.255753939452587, 6.196916178771309, 6.13859453879776, 6.080789019531942, 6.023499620973854, 5.966726343123497, 5.910469185980869, 5.8547281495459735, 5.7995032338188075, 5.744794438799373, 5.690601764487668, 5.636925210883694, 5.583764777987451, 5.531120465798937, 5.478992274318155, 5.427380203545103, 5.376284253479781, 5.32570442412219, 5.2756407154723295, 5.226093127530199, 5.1770616602958, 5.128546313769132, 5.080547087950192, 5.033063982838985, 4.9860969984355075, 4.93964613473976, 4.893711391751744, 4.848292769471459, 4.803390267898903, 4.759003887034079, 4.715133626876984, 4.671779487427621, 4.628941468685987, 4.5866195706520845, 4.544813793325913, 4.503524136707471, 4.46275060079676, 4.422493185593779, 4.382751891098529, 4.3435267173110095, 4.304817664231221, 4.266624731859162, 4.228947920194834, 4.191787229238237, 4.155142658989369, 4.119014209448233, 4.083401880614828, 4.0483056724891515, 4.013725585071207, 3.9796616183609927, 3.9461137723585082, 3.9130820470637557, 3.8805664424767325, 3.8485669585974405, 3.8170835954258786, 3.786116352962048, 3.7556652312059464, 3.725730230157577, 3.696311349816937, 3.667408590184028, 3.639021951258849, 3.6111514330414005, 3.583797035531683, 3.556958758729696, 3.5306366026354397, 3.5048305672489137, 3.479540652570118, 3.4547668585990534, 3.430509185335719, 3.406767632780115, 3.383542200932241, 3.360832889792098, 3.3386396993596863, 3.316962629635004, 3.2958016806180526, 3.2751568523088324, 3.2550281447073415, 3.2354155578135817, 3.216319091627553, 3.1977387461492537, 3.1796745213786863, 3.1621264173158483, 3.1450944339607405, 3.128578571313364, 3.112578829373718, 3.097095208141803, 3.0821277076176177, 3.0676763278011627, 3.053741068692439, 3.0403219302914453, 3.0274189125981827, 3.0150320156126496, 3.0031612393348475, 2.9918065837647765, 2.9809680489024353, 2.970645634747825, 2.9608393413009453, 2.9515491685617956, 2.942775116530377, 2.9345171852066887, 2.9267753745907306, 2.9195496846825035, 2.9128401154820067, 2.9066466669892406, 2.9009693392042046, 2.8958081321268994, 2.8911630457573247, 2.887034080095481, 2.883421235141367, 2.880324510894984, 2.877743907356331, 2.8756794245254094, 2.8741310624022174, 2.8730988209867565, 2.872582700279026, 2.872582700279026, 2.8730988209867565, 2.8741310624022174, 2.875679424525409, 2.877743907356331, 2.880324510894984, 2.883421235141367, 2.8870340800954803, 2.8911630457573247, 2.8958081321268994, 2.9009693392042046, 2.90664666698924, 2.9128401154820067, 2.919549684682503, 2.9267753745907306, 2.9345171852066883, 2.9427751165303766, 2.9515491685617956, 2.960839341300945, 2.9706456347478247, 2.9809680489024353, 2.991806583764776, 3.0031612393348475, 3.0150320156126496, 3.027418912598182, 3.0403219302914453, 3.053741068692439, 3.0676763278011627, 3.0821277076176177, 3.097095208141802, 3.112578829373718, 3.128578571313364, 3.1450944339607405, 3.1621264173158474, 3.1796745213786854, 3.1977387461492537, 3.216319091627552, 3.2354155578135817, 3.2550281447073415, 3.2751568523088315, 3.2958016806180526, 3.316962629635004, 3.3386396993596854, 3.360832889792098, 3.383542200932241, 3.406767632780114, 3.430509185335719, 3.4547668585990525, 3.479540652570118, 3.504830567248913, 3.5306366026354397, 3.556958758729696, 3.583797035531683, 3.6111514330413996, 3.639021951258848, 3.667408590184027, 3.696311349816936, 3.725730230157576, 3.7556652312059455, 3.786116352962047, 3.8170835954258777, 3.8485669585974396, 3.8805664424767317, 3.913082047063755, 3.9461137723585074, 3.979661618360992, 4.013725585071206, 4.0483056724891515, 4.083401880614827, 4.119014209448232, 4.155142658989369, 4.191787229238235, 4.228947920194834, 4.266624731859161, 4.304817664231219, 4.343526717311008, 4.382751891098528, 4.422493185593778, 4.462750600796759, 4.503524136707471, 4.544813793325911, 4.5866195706520845, 4.628941468685986, 4.67177948742762, 4.715133626876983, 4.759003887034078, 4.8033902678989016, 4.848292769471458, 4.893711391751743, 4.9396461347397596, 4.986096998435507, 5.033063982838984, 5.080547087950192, 5.12854631376913, 5.177061660295799, 5.2260931275301985, 5.275640715472329, 5.325704424122188, 5.3762842534797795, 5.4273802035451, 5.478992274318154, 5.531120465798937, 5.583764777987449, 5.6369252108836925, 5.690601764487667, 5.744794438799372, 5.799503233818806, 5.854728149545972, 5.910469185980867, 5.966726343123495, 6.023499620973853, 6.08078901953194, 6.138594538797759, 6.196916178771307, 6.255753939452587, 6.315107820841596, 6.374977822938337, 6.435363945742807, 6.496266189255008, 6.557684553474941, 6.619619038402604, 6.6820696440379965, 6.745036370381119, 6.808519217431974, 6.872518185190559 ], [ 6.936001032241414, 6.87200206448283, 6.808519217431976, 6.745552491088853, 6.68310188545346, 6.621167400525797, 6.559749036305865, 6.498846792793664, 6.438460669989192, 6.378590667892452, 6.319236786503442, 6.260399025822164, 6.2020773858486145, 6.1442718665827964, 6.086982468024709, 6.030209190174352, 5.973952033031724, 5.918210996596828, 5.862986080869662, 5.808277285850227, 5.754084611538523, 5.700408057934549, 5.647247625038306, 5.594603312849792, 5.5424751213690095, 5.490863050595958, 5.439767100530636, 5.389187271173045, 5.339123562523184, 5.289575974581054, 5.240544507346655, 5.1920291608199864, 5.144029935001047, 5.0965468298898395, 5.049579845486362, 5.003128981790615, 4.9571942388025985, 4.911775616522314, 4.866873114949758, 4.822486734084934, 4.778616473927839, 4.735262334478476, 4.692424315736842, 4.650102417702939, 4.608296640376768, 4.567006983758326, 4.5262334478476145, 4.485976032644634, 4.446234738149384, 4.407009564361864, 4.368300511282076, 4.330107578910017, 4.292430767245689, 4.255270076289092, 4.218625506040224, 4.182497056499088, 4.146884727665682, 4.111788519540006, 4.077208432122061, 4.043144465411848, 4.009596619409363, 3.9765648941146106, 3.9440492895275874, 3.9120498056482953, 3.8805664424767334, 3.8495992000129027, 3.8191480782568012, 3.789213077208432, 3.7597941968677917, 3.7308914372348827, 3.702504798309704, 3.6746342800922553, 3.647279882582538, 3.6204416057805506, 3.5941194496862945, 3.5683134142997686, 3.543023499620973, 3.5182497056499082, 3.493992032386574, 3.4702504798309697, 3.4470250479830957, 3.424315736842953, 3.402122546410541, 3.3804454766858587, 3.3592845276689074, 3.338639699359687, 3.3185109917581963, 3.2988984048644365, 3.279801938678408, 3.2612215932001085, 3.243157368429541, 3.225609264366703, 3.2085772810115953, 3.1920614183642186, 3.176061676424573, 3.1605780551926577, 3.1456105546684725, 3.1311591748520176, 3.1172239157432937, 3.1038047773423, 3.0909017596490376, 3.0785148626635044, 3.0666440863857023, 3.0552894308156313, 3.0444508959532905, 3.03412848179868, 3.0243221883517997, 3.0150320156126504, 3.0062579635812314, 2.9980000322575435, 2.9902582216415854, 2.9830325317333584, 2.9763229625328615, 2.9701295140400954, 2.9644521862550595, 2.959290979177754, 2.9546458928081796, 2.9505169271463356, 2.946904082192222, 2.943807357945839, 2.941226754407186, 2.939162271576264, 2.937613909453072, 2.9365816680376113, 2.9360655473298807, 2.9360655473298807, 2.9365816680376113, 2.937613909453072, 2.9391622715762638, 2.941226754407186, 2.943807357945839, 2.946904082192222, 2.950516927146335, 2.9546458928081796, 2.959290979177754, 2.9644521862550595, 2.970129514040095, 2.9763229625328615, 2.983032531733358, 2.9902582216415854, 2.998000032257543, 3.0062579635812314, 3.0150320156126504, 3.0243221883517997, 3.03412848179868, 3.0444508959532897, 3.0552894308156313, 3.0666440863857023, 3.0785148626635044, 3.0909017596490367, 3.1038047773423, 3.1172239157432937, 3.1311591748520176, 3.1456105546684725, 3.1605780551926568, 3.176061676424573, 3.1920614183642186, 3.2085772810115953, 3.2256092643667023, 3.2431573684295403, 3.2612215932001085, 3.279801938678407, 3.2988984048644365, 3.3185109917581963, 3.3386396993596863, 3.3592845276689074, 3.3804454766858587, 3.4021225464105402, 3.424315736842953, 3.4470250479830957, 3.470250479830969, 3.493992032386574, 3.5182497056499074, 3.543023499620973, 3.5683134142997677, 3.5941194496862945, 3.6204416057805506, 3.647279882582538, 3.6746342800922545, 3.702504798309703, 3.730891437234882, 3.759794196867791, 3.789213077208431, 3.8191480782568004, 3.849599200012902, 3.8805664424767325, 3.9120498056482944, 3.9440492895275865, 3.9765648941146097, 4.009596619409362, 4.043144465411847, 4.0772084321220605, 4.111788519540006, 4.1468847276656815, 4.182497056499087, 4.218625506040224, 4.25527007628909, 4.292430767245689, 4.330107578910016, 4.368300511282074, 4.4070095643618625, 4.446234738149383, 4.485976032644633, 4.526233447847614, 4.567006983758326, 4.608296640376766, 4.650102417702939, 4.692424315736841, 4.735262334478475, 4.778616473927838, 4.822486734084933, 4.866873114949756, 4.911775616522313, 4.957194238802598, 5.003128981790614, 5.049579845486361, 5.096546829889839, 5.144029935001047, 5.192029160819985, 5.2405445073466534, 5.289575974581053, 5.339123562523183, 5.389187271173043, 5.439767100530634, 5.490863050595955, 5.542475121369009, 5.594603312849792, 5.647247625038304, 5.700408057934547, 5.754084611538522, 5.8082772858502265, 5.8629860808696606, 5.918210996596827, 5.973952033031722, 6.03020919017435, 6.086982468024708, 6.144271866582795, 6.202077385848614, 6.260399025822162, 6.319236786503442, 6.378590667892451, 6.438460669989192, 6.498846792793662, 6.559749036305863, 6.621167400525795, 6.683101885453459, 6.745552491088851, 6.808519217431974, 6.872002064482829, 6.936001032241414 ], [ 7.0, 6.936001032241416, 6.872518185190561, 6.809551458847438, 6.747100853212045, 6.685166368284382, 6.62374800406445, 6.562845760552249, 6.502459637747778, 6.4425896356510375, 6.383235754262028, 6.324397993580749, 6.2660763536072, 6.208270834341382, 6.150981435783294, 6.094208157932937, 6.03795100079031, 5.982209964355414, 5.926985048628248, 5.872276253608813, 5.818083579297108, 5.764407025693134, 5.711246592796891, 5.6586022806083776, 5.606474089127595, 5.554862018354543, 5.503766068289222, 5.453186238931631, 5.40312253028177, 5.353574942339639, 5.30454347510524, 5.2560281285785715, 5.208028902759633, 5.160545797648425, 5.113578813244947, 5.067127949549201, 5.021193206561184, 4.975774584280899, 4.930872082708343, 4.886485701843519, 4.842615441686425, 4.799261302237061, 4.756423283495428, 4.714101385461525, 4.672295608135353, 4.6310059515169115, 4.5902324156062, 4.549975000403219, 4.51023370590797, 4.471008532120449, 4.432299479040661, 4.394106546668603, 4.356429735004275, 4.319269044047677, 4.28262447379881, 4.246496024257674, 4.210883695424267, 4.175787487298592, 4.141207399880647, 4.1071434331704335, 4.073595587167949, 4.040563861873196, 4.008048257286173, 3.9760487734068803, 3.9445654102353185, 3.9135981677714877, 3.883147046015387, 3.853212044967017, 3.8237931646263776, 3.7948904049934686, 3.766503766068289, 3.7386332478508413, 3.711278850341124, 3.6844405735391366, 3.6581184174448804, 3.6323123820583536, 3.607022467379559, 3.5822486734084933, 3.557991000145159, 3.5342494475895556, 3.5110240157416817, 3.488314704601539, 3.466121514169126, 3.4444444444444446, 3.4232834954274933, 3.4026386671182722, 3.3825099595167822, 3.3628973726230225, 3.343800906436993, 3.3252205609586944, 3.307156336188126, 3.289608232125288, 3.2725762487701813, 3.2560603861228046, 3.240060644183158, 3.2245770229512427, 3.2096095224270575, 3.1951581426106035, 3.1812228835018788, 3.167803745100886, 3.1549007274076226, 3.1425138304220903, 3.1306430541442882, 3.1192883985742164, 3.1084498637118756, 3.098127449557265, 3.0883211561103856, 3.0790309833712364, 3.0702569313398174, 3.0619990000161286, 3.054257189400171, 3.0470314994919434, 3.040321930291447, 3.034128481798681, 3.028451154013645, 3.02328994693634, 3.0186448605667655, 3.014515894904921, 3.010903049950807, 3.007806325704424, 3.005225722165772, 3.0031612393348492, 3.0016128772116577, 3.0005806357961973, 3.000064515088466, 3.000064515088466, 3.0005806357961973, 3.0016128772116577, 3.0031612393348492, 3.005225722165772, 3.007806325704424, 3.010903049950807, 3.014515894904921, 3.0186448605667646, 3.0232899469363392, 3.028451154013645, 3.034128481798681, 3.040321930291447, 3.0470314994919434, 3.054257189400171, 3.0619990000161286, 3.0702569313398174, 3.0790309833712355, 3.0883211561103847, 3.098127449557265, 3.1084498637118756, 3.1192883985742164, 3.1306430541442873, 3.1425138304220894, 3.1549007274076217, 3.167803745100885, 3.1812228835018788, 3.1951581426106026, 3.2096095224270575, 3.2245770229512427, 3.240060644183158, 3.2560603861228037, 3.2725762487701813, 3.289608232125288, 3.3071563361881253, 3.3252205609586944, 3.343800906436993, 3.3628973726230225, 3.3825099595167814, 3.4026386671182722, 3.4232834954274924, 3.4444444444444446, 3.466121514169126, 3.488314704601539, 3.5110240157416808, 3.5342494475895547, 3.557991000145159, 3.5822486734084933, 3.607022467379558, 3.6323123820583536, 3.6581184174448795, 3.6844405735391357, 3.711278850341123, 3.7386332478508404, 3.766503766068289, 3.794890404993467, 3.8237931646263768, 3.853212044967017, 3.8831470460153863, 3.9135981677714877, 3.9445654102353185, 3.9760487734068803, 4.0080482572861715, 4.040563861873196, 4.073595587167948, 4.107143433170432, 4.141207399880646, 4.175787487298591, 4.210883695424267, 4.246496024257673, 4.282624473798809, 4.319269044047676, 4.356429735004274, 4.394106546668601, 4.43229947904066, 4.4710085321204485, 4.510233705907969, 4.549975000403218, 4.590232415606199, 4.631005951516911, 4.672295608135352, 4.714101385461524, 4.756423283495426, 4.79926130223706, 4.842615441686423, 4.886485701843518, 4.930872082708342, 4.975774584280898, 5.021193206561183, 5.067127949549199, 5.113578813244947, 5.160545797648425, 5.208028902759633, 5.256028128578571, 5.304543475105239, 5.353574942339638, 5.4031225302817685, 5.453186238931629, 5.50376606828922, 5.554862018354541, 5.606474089127594, 5.658602280608377, 5.711246592796889, 5.764407025693133, 5.818083579297107, 5.872276253608812, 5.9269850486282465, 5.9822099643554125, 6.037951000790308, 6.094208157932935, 6.150981435783294, 6.208270834341381, 6.266076353607199, 6.324397993580748, 6.383235754262027, 6.442589635651036, 6.502459637747777, 6.562845760552247, 6.623748004064449, 6.6851663682843805, 6.747100853212044, 6.809551458847437, 6.872518185190559, 6.936001032241414, 7.0 ] ] } ], "layout": { "coloraxis": { "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" ] ] }, "height": 500, "margin": { "t": 60 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "width": 500, "xaxis": { "anchor": "y", "constrain": "domain", "domain": [ 0.0, 1.0 ], "scaleanchor": "y" }, "yaxis": { "anchor": "x", "autorange": "reversed", "constrain": "domain", "domain": [ 0.0, 1.0 ] } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "def distance_to_unit_circle_2D(x, y):\n", " return np.abs((np.square(x) + np.square(y)) - 1)\n", "\n", "xx = np.linspace(-2, 2, 250)\n", "yy = np.linspace(-2, 2, 250)\n", "grid = np.meshgrid(xx, yy)\n", "z = distance_to_unit_circle_2D(*grid)\n", "\n", "px.imshow(z, height=500, width=500)" ] }, { "cell_type": "markdown", "id": "7be15a9f-1320-4afc-8a52-171e22af4739", "metadata": {}, "source": [ "The loss function can be written with a closure like so:" ] }, { "cell_type": "code", "execution_count": 22, "id": "9424eafd", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:04:55.019248Z", "iopub.status.busy": "2025-06-19T23:04:55.019064Z", "iopub.status.idle": "2025-06-19T23:04:55.050734Z", "shell.execute_reply": "2025-06-19T23:04:55.050196Z" } }, "outputs": [], "source": [ "def circle_loss(model, parameters):\n", " \"\"\"Circle loss outer function. Takes model and parameters. Parameters is only here for demonstration purpoes.\n", " It is not actually needed in the closure.\n", "\n", " \"\"\"\n", " # use the models encoder part to create low-dimensional data\n", " latent = model.encoder\n", "\n", " def circle_loss_fn(y_true, y_pred=None):\n", " \"\"\"Circle loss inner function. Takes y_true and y_pred. y_pred will not be used. y_true will be used to get\n", " the latent space of the autoencoder.\n", "\n", " \"\"\"\n", " # get latent output\n", " lowd = latent(y_true)\n", "\n", " # get circle cost\n", " circle_cost = tf.reduce_mean(tf.abs(tf.reduce_sum(tf.square(lowd), axis=0) - 1))\n", "\n", " # bump up the cost to make it stronger than the other contributions\n", " circle_cost *= 5\n", "\n", " # write to tensorboard\n", " tf.summary.scalar('Circle Cost', circle_cost)\n", "\n", " # return circle cost\n", " return circle_cost\n", "\n", " # return inner function\n", " return circle_loss_fn" ] }, { "cell_type": "markdown", "id": "35da01e7", "metadata": {}, "source": [ "#### Include the loss function in EncoderMap\n", "\n", "**First:** Let us load the dihedral data from `../notebooks_easy` and define some Parameters. For the parameters we will set the `center_cost_scale` to be 0 as to not interfere with our new circle cost." ] }, { "cell_type": "code", "execution_count": 23, "id": "90dc660e", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:04:55.052467Z", "iopub.status.busy": "2025-06-19T23:04:55.052303Z", "iopub.status.idle": "2025-06-19T23:04:55.090334Z", "shell.execute_reply": "2025-06-19T23:04:55.089819Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "(10001, 12) (10001,)\n", "(10001, 13)\n" ] } ], "source": [ "df = pd.read_csv('asp7.csv')\n", "dihedrals = df.iloc[:,:-1].values.astype(np.float32)\n", "cluster_ids = df.iloc[:,-1].values\n", "print(dihedrals.shape, cluster_ids.shape)\n", "print(df.shape)" ] }, { "cell_type": "code", "execution_count": 24, "id": "9cf5d3cf", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:04:55.092115Z", "iopub.status.busy": "2025-06-19T23:04:55.091962Z", "iopub.status.idle": "2025-06-19T23:04:55.129490Z", "shell.execute_reply": "2025-06-19T23:04:55.128911Z" } }, "outputs": [], "source": [ "parameters = em.Parameters(\n", " tensorboard=True,\n", " center_cost_scale=0,\n", " n_steps=400,\n", " periodicity=2*np.pi,\n", " main_path=em.misc.run_path('runs/custom_losses')\n", ")" ] }, { "cell_type": "markdown", "id": "481468d2", "metadata": {}, "source": [ "Now we can instaniate the `EncoderMap` class. For visualization purposes we will also make tensorboard write images." ] }, { "cell_type": "code", "execution_count": 25, "id": "1d2300f8", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:04:55.131358Z", "iopub.status.busy": "2025-06-19T23:04:55.131173Z", "iopub.status.idle": "2025-06-19T23:04:55.361902Z", "shell.execute_reply": "2025-06-19T23:04:55.361519Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Output files are saved to runs/custom_losses/run1 as defined in 'main_path' in the parameters.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Saved a text-summary of the model and an image in runs/custom_losses/run1, as specified in 'main_path' in the parameters.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Logging images with (10001, 12)-shaped data every 1 epochs to Tensorboard at runs/custom_losses/run1\n" ] } ], "source": [ "e_map = em.EncoderMap(parameters, dihedrals)\n", "e_map.add_images_to_tensorboard(dihedrals, image_step=1, save_to_disk=True)" ] }, { "cell_type": "markdown", "id": "0bc2ac47", "metadata": {}, "source": [ "We can now tell the `EncoderMap` instance to add our new loss." ] }, { "cell_type": "code", "execution_count": 26, "id": "3722415a", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:04:55.363556Z", "iopub.status.busy": "2025-06-19T23:04:55.363423Z", "iopub.status.idle": "2025-06-19T23:04:55.389546Z", "shell.execute_reply": "2025-06-19T23:04:55.389177Z" } }, "outputs": [], "source": [ "e_map.add_loss(circle_loss)" ] }, { "cell_type": "markdown", "id": "ce54855a", "metadata": {}, "source": [ "Now we add this loss to `EncoderMap`'s losses" ] }, { "cell_type": "code", "execution_count": 27, "id": "0d4c51ba", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:04:55.391218Z", "iopub.status.busy": "2025-06-19T23:04:55.391082Z", "iopub.status.idle": "2025-06-19T23:04:55.416686Z", "shell.execute_reply": "2025-06-19T23:04:55.416344Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[.auto_loss_func at 0x73144456d5a0>, .regularization_loss_func at 0x73144455ca60>, .center_loss_func at 0x73144455feb0>, .distance_loss_func at 0x73144455c0d0>, .circle_loss_fn at 0x731454069510>]\n" ] } ], "source": [ "print(e_map.loss)" ] }, { "cell_type": "markdown", "id": "6138c276", "metadata": {}, "source": [ "### Train\n", "\n", "Also make sure to execute tensorboard in the correct directory:\n", "\n", "```bash\n", "$ tensorboard --logdir . --reload_multifile True\n", "```\n", "\n", "If you're on Google colab, you can use tensorboard, by activating the tensorboard extension:" ] }, { "cell_type": "code", "execution_count": 28, "id": "2ed7bb5a", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:04:55.418290Z", "iopub.status.busy": "2025-06-19T23:04:55.418161Z", "iopub.status.idle": "2025-06-19T23:04:55.443180Z", "shell.execute_reply": "2025-06-19T23:04:55.442810Z" } }, "outputs": [], "source": [ "# %load_ext tensorboard\n", "# %tensorboard --logdir ." ] }, { "cell_type": "code", "execution_count": 29, "id": "de5b4e8f", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:04:55.444860Z", "iopub.status.busy": "2025-06-19T23:04:55.444719Z", "iopub.status.idle": "2025-06-19T23:06:46.100703Z", "shell.execute_reply": "2025-06-19T23:06:46.100158Z" } }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "\r", " 0%| | 0/400 [00:00" ] }, { "cell_type": "markdown", "id": "74cd1d4c-f4c6-42f5-8b6b-9624f4fbcded", "metadata": {}, "source": [ "## Loading logs into jupyter notebook\n", "\n", "Last but not least, we will have a look at how we could retrieve the images and logs from TensorBoard. This is not trivial, as the `tfevent` files, that TensorFlow writes are so-called protobuf files (for protocol buffers, a data serialization format developed by Google)." ] }, { "cell_type": "code", "execution_count": 30, "id": "d8d8e16f-330d-42e3-946e-fc7afaab7dc8", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:06:46.102489Z", "iopub.status.busy": "2025-06-19T23:06:46.102266Z", "iopub.status.idle": "2025-06-19T23:06:46.279935Z", "shell.execute_reply": "2025-06-19T23:06:46.279376Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "events.out.tfevents.1735476821.Marlin.415482.6.v2\r\n", "events.out.tfevents.1735476821.Marlin.415482.7.v2\r\n" ] } ], "source": [ "ls runs/custom_losses/run0/train" ] }, { "cell_type": "code", "execution_count": 31, "id": "d0ab333c-1d41-4d8a-88ba-e7275dbb90f0", "metadata": { "execution": { "iopub.execute_input": "2025-06-19T23:06:46.281738Z", "iopub.status.busy": "2025-06-19T23:06:46.281586Z", "iopub.status.idle": "2025-06-19T23:06:46.428216Z", "shell.execute_reply": "2025-06-19T23:06:46.427784Z" } }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "source": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAoAAAAHgCAYAAAA10dzkAAAgAElEQVR4nO3de3TU9Z3/8ffMJJkkkAtJICEBuZeLclN/0FArdM0Kymntrz2tVrcga3Hbrdt2cb3QbbHo7g/b0trdLl3brkr3nFqqPd76q2ItlXW1ERSh3ClgELkkSEJu5J75/P7wx2wjCfMKTDJhPs/HOTma4ZXv9/uZ78zknS+ZFwHnnDMAAAB4I5joAwAAAED/YgAEAADwDAMgAACAZxgAAQAAPMMACAAA4BkGQAAAAM8wAAIAAHiGARAAAMAzDIAAAACeYQAEAADwDAMgAACAZxgAAQAAPMMACAAA4BkGQAAAAM8wAAIAAHiGARAAAMAzDIAAAACeYQAEAADwDAMgAACAZxgAAQAAPMMACAAA4BkGQAAAAM8wAAIAAHiGARAAAMAzDIAAAACeYQAEAADwDAMgAACAZxgAAQAAPMMACAAA4BkGQAAAAM8wAAIAAHiGARAAAMAzDIAAAACeYQAEAADwDAMgAACAZxgAAQAAPMMACAAA4BkGQAAAAM8wAAIAAHiGARAAAMAzDIAAAACeYQAEAADwDAMgAACAZxgAAQAAPMMACAAA4BkGQAAAAM8wAAIAAHiGARAAAMAzDIAAAACeYQAEAADwDAMgAACAZxgAAQAAPMMACAAA4BkGQAAAAM8wAAIAAHiGARAAAMAzKYk+gItZJBKxY8eOWVZWlgUCgUQfDgAAEDjnrKGhwYqLiy0Y9PNaGAPgBTh27JiNHDky0YcBAADOw7vvvmsjRoxI9GEkBAPgBcjKyjIzs6vsekux1AQfDeItmJEu5SLNLX18JN1Tj0+ViHUkwxoAXHw6rN1eteej38d9xAB4Ac78tW+KpVpKgAEw2QQDaVIuEujs4yPpnnp8qkSsIxnWAOAi5N7/j8+/vuXnX3wDAAB4jAEQAADAMwyAAAAAnmEABAAA8AxvAgF6EGlulnLBjIy4bk8V7+0p4r3WRKzBTF+HKlHrAIDzxRVAAAAAzzAAAgAAeIYBEAAAwDMMgAAAAJ5hAAQAAPAMAyAAAIBnqIEBLlC862KCmZnafpuatFwcj089NhVVO/0jUfcfgIGLK4AAAACeYQAEAADwDAMgAACAZxgAAQAAPMMACAAA4BkGQAAAAM8wAAIAAHiGHkDgAsW730+ldraljCjRNtjccgFH01W8+/1UKfn5Uq6jujoh+01Ed2NvtgfAH1wBBAAA8AwDIAAAgGcYAAEAADzDAAgAAOAZBkAAAADPMAACAAB4hhoY9IpSO5EslRPxrndRq0fU2ha53iUjXcspNTB5udKmgmLdSXBEsZSzmlopptasxFuiamXivd+BjMobIL64AggAAOAZBkAAAADPMAACAAB4hgEQAADAMwyAAAAAnmEABAAA8AwDIAAAgGfoAUSvDOSOLbUnTN6e2O8X7+65tnGFUi74X29JuXj2BXbmDZI2FWrO0/apdA+a6V2GcT4X8e7jUx+j9AoC6GtcAQQAAPAMAyAAAIBnGAABAAA8wwAIAADgGQZAAAAAzzAAAgAAeIYaGKAnYvVIUM2p+z1YpeUmjNNyNbVSrO2yUTEzqae0GqBIdY2UUwVHFGu5fK1+Rj1n6n2nGsg1Siq1yibeax3o912i7hfgfHEFEAAAwDMMgAAAAJ5hAAQAAPAMAyAAAIBnGAABAAA8wwAIAADgGWpgEHeJqkMIZmZKuY7qam2DYpWJWj3i8rKlXCQjVdtvc7uUC+TlSrnO9FDMTFpzm7ZPsbalM2+QlpNSZoHtx6Sc+lhRqY95tc4mckRch/jYUynrUJ+3yVKLoq4DuNhwBRAAAMAzDIAAAACeYQAEAADwDAMgAACAZxgAAQAAPMMACAAA4BkGQAAAAM/QA5jkBnIXV6L6teLd2eYy0qSc2u8Xqjkd1/2qMt6O3XvYVpwjbSvU0qHlDhyVcm2XjZJyaXHuxbOMdCkm/yTd3KJtL859gSqlH3Gg9/bFm2/rhT+4AggAAOAZBkAAAADPJM0A+Morr9jHP/5xKy4utkAgYM8880zMr9m4caNdfvnlFg6Hbfz48bZ27do+P04AAIBES5oB8PTp0zZ9+nRbs2aNlK+oqLCFCxfaxz72Mdu2bZt97Wtfsy984Qv24osv9vGRAgAAJFbSvAnkuuuus+uuu07OP/zwwzZmzBj73ve+Z2ZmkydPtldffdUeeughmz9/fl8dJgAAQMIlzRXA3iovL7eysrIut82fP9/Ky8t7/JrW1larr6/v8gEAAHCxSZorgL1VWVlphYWFXW4rLCy0+vp6a25utoxuqkJWrVplK1eu7K9DjIt4VxgoFSrqPhNVUaNUXZjpFRtBsXokJFaKdOYN0rZ3tFrKtY0rjB0ys6ai2LUymZVt0rY607WXlmDJMCmXekp8DIj3cbxFmpqknBtfIuWCze3afsXnRsoIbb+R6thVQCn5+dK2Oqq1x6dqIFdaARcjb68Ano/ly5dbXV1d9OPdd99N9CEBAAD0mrdXAIuKiqyqqqrLbVVVVZadnd3t1T8zs3A4bOFwuD8ODwAAoM94ewWwtLTUNmzY0OW2l156yUpLSxN0RAAAAP0jaQbAxsZG27Ztm23bts3M3q952bZtmx0+fNjM3v/r20WLFkXzX/ziF+3tt9+2u+++2/bu3Ws/+tGP7IknnrC///u/T8ThAwAA9JukGQDffPNNmzlzps2cOdPMzJYtW2YzZ860FStWmJnZ8ePHo8OgmdmYMWPsN7/5jb300ks2ffp0+973vmf/8R//QQUMAABIeknzO4Dz5s0z51yPf97dv/Ixb94827p1ax8eFQAAwMCTNFcAAQAAoEmaK4DoH0rHltrXpYr39hqvGi/lBlWIRd81Wq55rNYX2JobknKdE7W+wLasgJQLChV/4Vrt2OovSZVy2Ye17an3iUrtM1T7B4MjiqVcp5QyCxw9IeXUfj+V0pEZ734/9I94drgiOXAFEAAAwDMMgAAAAJ5hAAQAAPAMAyAAAIBnGAABAAA8wwAIAADgGWpg0CvxrmRRqNUEaiVG5m+3S7lAvlbb0lmSL+VCLVoJSGalljtxebqUy6juuSD9z+Vtq42ZqZmRK22rfbAUk6W0aGtQqfUu7UO0x7tWemMWbG7Xgnm54hY1HfsPSrnQtMkxM8GmJmlbgQmjpZzbf0jKya8D+drzcaDX2aivter9QsULPogrgAAAAJ5hAAQAAPAMAyAAAIBnGAABAAA8wwAIAADgGQZAAAAAz1ADg15RqgTiXRWjVFOYmVlzmxRz0yZIucYibR0ZlfGtV2gqSpNy+bu1SpHKD2slJaHWnJiZcF1E2lZbVkjKNRVqL0GhVq0G5tQk7Wfa92YMkXKp9VLM8ndr662/RDsXhS+8I+XaxhVquSmzpVxabezHVKpY7xI4ekLKxbfgR693iXfNCrUtuNhwBRAAAMAzDIAAAACeYQAEAADwDAMgAACAZxgAAQAAPMMACAAA4BkGQAAAAM/QAxgHwYx0CwbO3d3mU6dTvHuz1D6xSFOTlAvVZEq5DCuRcm25YSnXma79vNWareU6wwEtp9UKWmNx7P02lWitbVkV2j5VzQXafVL0utaNePRqrY8vu1pbr9zvt7FKyllzixRLO1an5XbWSrnO8bEf8y3DB0vbyqjRShTVqxDBTO15q1JfLxIl3r2CwAdxBRAAAMAzDIAAAACeYQAEAADwDAMgAACAZxgAAQAAPMMACAAA4BlqYOIg0txikUBnog/jgqSM0CpPlHqKjupqaVOBCaOlXMf2PVIuMvdyKadWZ6jUepeOdK22ZciftAqQw9emS7nUBilmnUKbTf52bVuNxVrudLF2nww6pm2v8sNaHUvJK1pdTFOh9hIZro9IuerSYVIud98gKdeZrh1f25QCKZdRGb9KEZeXLeUCR7XHuyxDe15ExNcp9bUxUl2jbS8/X9teAmpqqJ7xC1cAAQAAPMMACAAA4BkGQAAAAM8wAAIAAHiGARAAAMAzDIAAAACeoQYG7xPqXVRqlUDg6AkplzJhnLbjg1VSTK2naBidqe1X1Jqt/bx1cppWYxGaqPW7hF7LknKpjbEzzflabUuoVYpZ/h6tPimtVqttOTpPu+/Uehd1vZ1hLZdTodXFqNpytdqbUIu23+ai2M9ddVuBmnop13jVeCk3ePdJKae+lql1LImiVq0kQ3VLMqzhYsQVQAAAAM8wAAIAAHiGARAAAMAzDIAAAACeYQAEAADwDAMgAACAZxgAAQAAPEMP4ACTqD6kSFOTlAuOKI69rerquG2rVzK0Drj2Idp9rHa7qV1xSs9eItV9LPZjqviXadK2jn1U+9myMxySchEx16kdnrVliX2Gbdr2Bh/TuvHUx1RnuvbS/N4M7X7JrtDOR9Y7sQscT31Ie56l1Wo9e3K/n0jt+Qwc1foCI9U1F3I4F5Vgfp4WFO8T9fsU/X6JwRVAAAAAzzAAAgAAeIYBEAAAwDMMgAAAAJ5hAAQAAPAMAyAAAIBnqIHpJ4mqd0nJ16oY1BoYa45dnRCaNlnb5/5DUk6tJlDrH1SZVR1Srn5MqpRrKdD2O+iYlmtryJJy7R9pkHJZL8fe3rGPOmlbwVat7qRdW4JlHdJy4XqtjuXUJO1n3yF7te3FW6hFe+yp1MdyW27sx3L24fYLPZwumsdqz+9QS6eUS9v5jpRzJcOkXPDoCSnXIdZfqa/xifie0XHkqJRTjw0DG1cAAQAAPMMACAAA4BkGQAAAAM8k1QC4Zs0aGz16tKWnp9vs2bNt8+bNPWbXrl1rgUCgy0d6uvZPHAEAAFzMkmYA/OUvf2nLli2z++67z9566y2bPn26zZ8/306c6PkXeLOzs+348ePRj3fe0X55GAAA4GKWNAPg97//fVu6dKktWbLEpkyZYg8//LBlZmbao48+2uPXBAIBKyoqin4UFhb24xEDAAAkRlIMgG1tbbZlyxYrKyuL3hYMBq2srMzKy8t7/LrGxkYbNWqUjRw50m644QbbtWvXOffT2tpq9fX1XT4AAAAuNknRA3jy5Enr7Ow86wpeYWGh7d27t9uvmThxoj366KM2bdo0q6urs9WrV9ucOXNs165dNmLEiG6/ZtWqVbZy5crzOsZ49/up1G6qlBElUi5SXRM7pGTMLJiZKeUsQ/vdzEiG1senqp6iba/oda0XTd1esE2K2eBjWiffe8cGafsVOvlSG8R+v4na431YnvZD1PGSIVIu9400KZd+UopZc4H2M7La8RhsFfebP1jKXbK+Ucq15Yal3OlhoZiZgu3auVX3Ge9+v+Yrx0q5jDfflnKqeHeuxvt7htLdl4h99sV+oUmKK4Dno7S01BYtWmQzZsywuXPn2lNPPWVDhw61H//4xz1+zfLly62uri768e677/bjEQMAAMRHUlwBLCgosFAoZFVVVV1ur6qqsqKiImkbqampNnPmTDtw4ECPmXA4bOGw9lMtAADAQJUUVwDT0tLsiiuusA0bNkRvi0QitmHDBistLZW20dnZaTt27LDhw4f31WECAAAMCElxBdDMbNmyZbZ48WK78sorbdasWfaDH/zATp8+bUuWLDEzs0WLFllJSYmtWrXKzMzuv/9++/CHP2zjx4+32tpa++53v2vvvPOOfeELX0jkMgAAAPpc0gyAN954o7333nu2YsUKq6ystBkzZtj69eujbww5fPiwBYP/c8Hz1KlTtnTpUqusrLQhQ4bYFVdcYX/4wx9sypQpiVoCAABAv0iaAdDM7I477rA77rij2z/buHFjl88feughe+ihh/rhqAAAAAaWpBoAfZKot9cr2wtNm6xt7GjP/0pLF80tWs60upNQS4eUG/aWtt+GUdobgwYfi0g51YkbtE6RwW9oj5XGMbGPz4W1NWSJ+zxRolX8pLZq9TOqTq0txvJ3axU/TQ3aS2m4Trv/asfGrmMx06tWOtO1X/cu2B67ViZUc1ralngXW3OR9lhpu2q8lBv8as9v5Ptzah1LvOuq3HitcivlqFbh1XHkqJSL5/cCaluSQ1K8CQQAAAA6BkAAAADPMAACAAB4hgEQAADAMwyAAAAAnmEABAAA8Aw1MAOMWu8Sb2qVQEp+fsxMZP8haVtOSum1CWqdREe6VikSru2UcqFWbSU5e+qk3KH/PUTKDcurl3LHJ6VKudSTsV8OtAIds/aPNEi5/OcGS7n3rtTqUz522xtS7plX/5eUy6jWXiLVx4Aq923tsVc9RTu3oTZtvxmVWk6hVtQMqtAex4FmdRFaHUtQzEWqa7TtSSmz0AHttVZdh/KabGbWUR27Viae2+oLiao/S1ZcAQQAAPAMAyAAAIBnGAABAAA8wwAIAADgGQZAAAAAzzAAAgAAeIYBEAAAwDP0AA4wan+R2ock5zIzpZzSTRXMy5U25TLStJyUMsuojG/308lpWkfdkD+1SLmDN2r9fmpn26lG7Zwp/X5mZgVXVMXMVP5pqLSt68bulnI7bx0u5eprtPvu/74wW8qFJ2o9hfVjsqRc0etaQ2LteK23T5XaqOWyD7dLuYbRsR9TYbHfrzNdu77QMlx7nmXsOiblXF62lFN7BYP5eVLOmrXXAVU8u1nlfSao3w+JwRVAAAAAzzAAAgAAeIYBEAAAwDMMgAAAAJ5hAAQAAPAMAyAAAIBnqIG5SKl1MfEWFGpgIkfEuoZpE6RcZ7r2MA21aFUcqpRWrYCmLVer9hik3S12uljLRQ5p9RlXl22XckdO52o7FizI0fb54hNabUv6R2qkXG2JVu2R9aJW79IwWorZu4u1x17Oy9pjpW6i9tjLqghIuVBLp5QzC4k5ZZ8RKRd+Zae2wRHaE0Otd+nYf1DKqTUraoWKuj21wkvdr7o9RaK+/yRqv8mKK4AAAACeYQAEAADwDAMgAACAZxgAAQAAPMMACAAA4BkGQAAAAM8wAAIAAHiGHsCLlNrppPYmqblgc0vsTGamtC3X3C7lQjWnpVxn3iAtJ/YKNudrHWsdYa07rW6i1osWbNP2G2zVci/vmSTlQmmxu+Iuv1zrTrtn96elXMm1h6Xc/sNFUi7rj2lSLqLFrF3sFUyt0J6P7Vp1o9zv1ymuo/qy2P2dZmb5O2M/v1NPaa8VLcO1xXbMmizlUjbvkXJBsS8wZUSJlGsbVyjl0g5q97EJr6FAf+AKIAAAgGcYAAEAADzDAAgAAOAZBkAAAADPMAACAAB4hgEQAADAM9TAJDm1LkYVaWqKmXHTJkjbCmzfL+XaxZoItZ6iLTcs5QYf02pbVIMr4vvzVsOkDin3f+Y8JeXu374wZubgqXxpW0MHNUq5EYNqpdzbJ0dKOfU+CTVo1T3Dfp8q5erHSDFL1e4WG3QidiVPbzSM0NbbMCr2cyMzXdtWWm2rlFOpryvqPReq0XJq/UyHWqUlviYH8/OknFWLCxGodWCqeNeVIb64AggAAOAZBkAAAADPMAACAAB4hgEQAADAMwyAAAAAnmEABAAA8Aw1MHEQzEi3YCDtnJlEvc1d3W88366fcuCotC0Taw461dqJ5jYtJ9ZTNBUOknLhOq0upnGMlgtXaz+XZVZoT9+XZkyRcjd/6M2YmT/Wj5C2teXAKCm3v7VYyqW2BqTcsMuqpdyp8kIpd+IjWq3MsNe0x6jq9DBte03a3WeXrNf6Z5qLYr8OqM8ftW4p1KIVt6g1TwHxdUAV7zoW+XtBvLeXAAP52MAVQAAAAO8wAAIAAHiGARAAAMAzDIAAAACeYQAEAADwDAMgAACAZxgAAQAAPEMPYBxEmlssEtC6rPqb2u8XzMzUciNiF4917D8obSslP1/KqT1hVlOrbU/bmuX/XuuU23v3SCk3ZIf281bNlVr33Mdm7JZyW09o3X2vNEyImRmWVy9tK5SmnbP836dKufpPNEi5k1u0fr90bRkWbNVeIhvFPr7WAiflRv+6RcoVbNceKw2jted3uDb2eQsd1Z4XlqvdKWk739G2p8rLlWKRI8fiulu1LzByROxJFamvox3Vsc9bPPtg+2J7iC+uAAIAAHiGARAAAMAzSTUArlmzxkaPHm3p6ek2e/Zs27x58znzTz75pE2aNMnS09Nt6tSp9vzzz/fTkQIAACRO0gyAv/zlL23ZsmV233332VtvvWXTp0+3+fPn24kTJ7rN/+EPf7DPfe5zdtttt9nWrVvtk5/8pH3yk5+0nTt39vORAwAA9K+kGQC///3v29KlS23JkiU2ZcoUe/jhhy0zM9MeffTRbvP/8i//YgsWLLC77rrLJk+ebA888IBdfvnl9m//9m/9fOQAAAD9KykGwLa2NtuyZYuVlZVFbwsGg1ZWVmbl5eXdfk15eXmXvJnZ/Pnze8wDAAAki6SogTl58qR1dnZaYWHXCojCwkLbu3dvt19TWVnZbb6ysrLH/bS2tlpra2v08/p6sUuiD8T7bfPy2/qbmuK6X4VcEyHWP6gar9DqU0Zs0Ko9WnO0XKBV+7nslYOxa1vMzK4et1/K2bDYkfp2rdaheLD23Dh2c7aUa6/RcmGtLcZaCrRcZIz2vMh8Q7tfcvYFpNzBm7WX5tFPaaVGmZVtUu7wtekxMwW5Wu2Rus/O8SVSLnRArE9p1ip01OorpT7FLP71LqqI+JqsVLIkSx2LstagC5klx3LPW1JcAewvq1atspycnOjHyJHaCyEAAMBAkhQDYEFBgYVCIauqqupye1VVlRUVFXX7NUVFRb3Km5ktX77c6urqoh/vvvvuhR88AABAP0uKATAtLc2uuOIK27BhQ/S2SCRiGzZssNLS0m6/prS0tEvezOyll17qMW9mFg6HLTs7u8sHAADAxSYpfgfQzGzZsmW2ePFiu/LKK23WrFn2gx/8wE6fPm1LliwxM7NFixZZSUmJrVq1yszMvvrVr9rcuXPte9/7ni1cuNDWrVtnb775pv3kJz9J5DIAAAD6XNIMgDfeeKO99957tmLFCqusrLQZM2bY+vXro2/0OHz4sAWD/3PBc86cOfb444/bN77xDfv6179uEyZMsGeeecYuu+yyRC0BAACgXyTNAGhmdscdd9gdd9zR7Z9t3LjxrNs+85nP2Gc+85k+PioAAICBJSl+BxAAAAC6pLoC6BOl58gscX2B0rbU/iqxr0vVVpwj5VpztJ+PQq1av19bltYB58KdUi4rSzsXj4x8TcptaYvd2/Z4zYelbR1uypNyal/gLZec+9/1PmN1w3VSLvWk9tIX3q49zzrDUsxCf1Ej5XLXa/dfpXY6rOh1Mbc59mOvcpbWPTj+tarYITNrvrRYymWIPZ8uI03KRTLypVxKRuxuxN6IVGuPgWTo5JP7ZeP8/UzJRVy7tK1kxhVAAAAAzzAAAgAAeIYBEAAAwDMMgAAAAJ5hAAQAAPAMAyAAAIBnqIG5SMW7IiARtTJqvYtaF+PGl0i5piKtJiJvW62Uax+i3XcpLalSri1Le1o2NAyRcuMq/kbKFX3ovZiZU43aObu0qFLK7aosimsu/Zh237XmR6Rce0mHlBv3mLa9Q9O0x0o4S4pZ5jEt11So3S/N+bGripSqGDMzE+tT6i/RnhdmWjVOxttazUqoOXbtkZle26K+nsm5EVo9Tsf+g1JOkZKvVeN0VFfHbZ9myVF5czHiCiAAAIBnGAABAAA8wwAIAADgGQZAAAAAzzAAAgAAeIYBEAAAwDPUwMDM9Lfhq3Ux8aTWJrjmdimXs6dOyqn1LqqGEaG4bi/YGruyozdOlRfGzNxx46+lbf3L0x+XciGticPaJ2qPz9SpDdoGjw2SYsOLTkm5Qx8fJuXC27VzNry8RcpVX6ZVrWT9qVXKZVbFfoyqtS2Dd0sxG7ZJu487t+/RNihWmaj1Uiq1GkWu3Ipz1Yoi3vUuqkTUkIErgAAAAN5hAAQAAPAMAyAAAIBnGAABAAA8wwAIAADgGQZAAAAAzzAAAgAAeIYeQPSK0skn92Hl52k7bdY60QJHT2jby8vVcmIPYNoxrVcwoyhNygXbtJ/LQlq1m3WGte65tI/UxMy8XDNJ2lZkjNjXVaHdx8Py6qXc8Xe0Dji1QbHyT0OlnPqTdLpYs3bicq3fr2SD1qFXMyNXymVWdcTMFGxvlLbVPFZ7fme8HftxZ2aWMqJEyrm8bCkXFF8v1L7AFLF/UH79OXJMy4kGcofeQD62ZMYVQAAAAM8wAAIAAHiGARAAAMAzDIAAAACeYQAEAADwDAMgAACAZ6iBSXLBDK1mQ30bvlKJoNYhRKq1+geVXCsjStv5jpRzJcOkXLi2U8plHdJqJ/bfEruSx8wsWKD1xbTuGxIzs81iZ8zMsiZq9SQtE2PXjpjp9S6pJ7WXtCH7nJSrH6MVxrSMadNyJ7UqoObiiJRTKfUuZmahFu0xGtdtiTVPnSXaYyBUc1rbr0h9XZFfz8RaGXW/HUeOavtNAvH+fuY7rgACAAB4hgEQAADAMwyAAAAAnmEABAAA8AwDIAAAgGcYAAEAADzDAAgAAOAZegCTXCL6kJSuwD4h9om5vGwpF8hIl3KVH9W68fJ3asd3ctpgKTf0Ta3L7tRErTurIyt299zgCvFnxgqtwyxTq88zm98gxVrCYSlX36b18WUek2I2ZK/2Unpqkra9cLHWZXd6jPZYVqXVap2R0raO1Uk5+fm4fb+2Y7U/r7paysm9puJrrdplp76eqeT9CuK9VrmHln6/uOIKIAAAgGcYAAEAADzDAAgAAOAZBkAAAADPMAACAAB4hgEQAADAM9TAoFfi+TZ8tSIgmJmpbTAvV4oFmsXuEbGGYfhvq6Scy9CqR4Zt0u7jusk5Ui7UFpByg/bF/nmwbmLsqhgzvcbEdmRJsfSXtVxnsbbboNh20q418lhTsfaztForEzmprTejslHKNYzWnkNKLmePVu/SmTdIyqlCYr2LifVNKSNKpJxaU5Mi7jdSXaPl4lynpbx2y6/Jca53QWJwBRAAAMAzDIAAAACeYQAEAADwDAMgAACAZ3MRhPYAABtDSURBVBgAAQAAPMMACAAA4BlqYNArytv/4/3Wf7UOIVJdLeVS8vMv5HDOVlMrxbQyFrOqT02UcimtTsplV2i5xuLYRzj0TW0V1dO0/pQcsRalbqK2hpx92vGdmqrV2QzZof2MnPt2p5RrzdG2Fz6hHV+8ZR2K/VyLZKRK22rLDUu59ONalU1nifa8DR04KuVcyTApF29qrVW8a2DiiXqX5MAVQAAAAM8wAAIAAHiGARAAAMAzSTEA1tTU2C233GLZ2dmWm5trt912mzU2nvv3SubNm2eBQKDLxxe/+MV+OmIAAIDESYo3gdxyyy12/Phxe+mll6y9vd2WLFlit99+uz3++OPn/LqlS5fa/fffH/08U/03ZwEAAC5iF/0AuGfPHlu/fr298cYbduWVV5qZ2Q9/+EO7/vrrbfXq1VZc3PO/Dp+ZmWlFRUX9dagAAAADwkX/V8Dl5eWWm5sbHf7MzMrKyiwYDNqmTZvO+bU///nPraCgwC677DJbvny5NQ3gt90DAADEy0V/BbCystKGDeva55SSkmJ5eXlWWVnZ49fdfPPNNmrUKCsuLrbt27fbPffcY/v27bOnnnqqx69pbW211tbW6Of19fUXvoCLTDz7n9Rtqb19ce+mykiXYh1HtN6xlBElUq7wqX1SzvJypdg7ny6UcjkVsbvnMivbpG01Fmv3XSRNiln+di2XWdUu5U5NDUm5dq3O0DK2a4+908PEDYp9gRk9v8R1oZ63UM3pmBmXoZ008dRa5/Y9Ui40bbK2QfF54fYfknLB/DxtvyK511R8PVO6WVXx3id9gQPbgB0A7733Xvv2t799zsyePdoLR3duv/326P9PnTrVhg8fbtdcc40dPHjQxo0b1+3XrFq1ylauXHne+wQAABgIBuwAeOedd9qtt956zszYsWOtqKjITpw40eX2jo4Oq6mp6dXv982ePdvMzA4cONDjALh8+XJbtmxZ9PP6+nobOXKkvA8AAICBYMAOgEOHDrWhQ4fGzJWWllptba1t2bLFrrjiCjMz+/3vf2+RSCQ61Cm2bdtmZmbDhw/vMRMOhy0c1v55IwAAgIHqon8TyOTJk23BggW2dOlS27x5s7322mt2xx132E033RR9B/DRo0dt0qRJtnnzZjMzO3jwoD3wwAO2ZcsWO3TokD333HO2aNEiu/rqq23atGmJXA4AAECfu+gHQLP33807adIku+aaa+z666+3q666yn7yk59E/7y9vd327dsXfZdvWlqa/e53v7Nrr73WJk2aZHfeead9+tOftl//+teJWgIAAEC/GbB/BdwbeXl55yx9Hj16tDnnop+PHDnS/uu//qs/Dg0AAGDASYoBEMmto7o6IdtTqw5SJnT/pqHz1Vmi1d6EjmrrGF7eIuVST8WubGgfot0nSqWMmV5PcvBm7aVq2GtabtRvOqRcZ7qLHTKz43O0epf83VpNTWuuVlOj6kzXtqdUvASatXPWKT5WbO7lUixl5zva9sQaGLXeRa15ireBXLVCvUtySIq/AgYAAICOARAAAMAzDIAAAACeYQAEAADwDAMgAACAZxgAAQAAPEMNDJJGvGsTgpmZUq5j/0Fte+LxhWq0/bqSYVIu7WCVlFOkirmwWDsSatHqWCavrpNyjVMKpFy8hbRmFEurbZVy6ce1upjTY7KlXEd6QMqFWmI/RtNq6qVtpR3U6odUkf9f5B+TmhOl5Gu1TPGuq6JqBX2NK4AAAACeYQAEAADwDAMgAACAZxgAAQAAPMMACAAA4BkGQAAAAM8wAAIAAHiGHkAkjXj3ZsW710vtFVQFjp7QghnpUszlxe6UC4gdcBlirvnSYikXStdeqhpGaP2D+Tu1nr2mQm2/w38rdi3W1EqxtstGSblQS0TKnR6mNThmVgoh9fGUkSbl1MeU+vxOGVEi5TqOHJVyyULpIaV70C9cAQQAAPAMAyAAAIBnGAABAAA8wwAIAADgGQZAAAAAzzAAAgAAeIYaGHhHqUMw02tb1LoYNacen6ypSduvkIlU12jbEu+7jDfflnLNV46VcsPebNS2V6Tdx7n7Tku52suHSrmsQ4OkXOoprY5DK3cxS6vVkm254ZiZyJFj0rbiXXuUkp+vBZtbpJj6PFOrUeK9vXij4gUfxBVAAAAAzzAAAgAAeIYBEAAAwDMMgAAAAJ5hAAQAAPAMAyAAAIBnGAABAAA8Qw8gvDPQ+7DifXxqf5rS8Sd3ookdcBGxo1DtC1S3N/iA2FGXlyvFco9qHY9t4wqlXEjcnmWkSzG3fY+2uQnjYofi3O+n6hxfIuUC2/fHdb9x7+UEBgiuAAIAAHiGARAAAMAzDIAAAACeYQAEAADwDAMgAACAZxgAAQAAPEMNDNCDRNXFqLUT6vF1VIuVInGk7lOtqFHrTuSfaMXtqdR6l7RjddoGm1ukWGeJdv+p93NbcU7sbR05Jm1LrQJSxbveJd7i/XoR79cB4IO4AggAAOAZBkAAAADPMAACAAB4hgEQAADAMwyAAAAAnmEABAAA8Aw1MMAAM5DrZ+J9bHGvi4mziFp5sv+gtsERJRdwNGcLHTiqBcXam7SDVbFDI4q1fYpVNmpOfeypj5V41yPFu7aFehf0Na4AAgAAeIYBEAAAwDMMgAAAAJ5hAAQAAPAMAyAAAIBnGAABAAA8wwAIAADgGXoAAZjZwO4dizQ1Sblgfp6U6zgi9ueJ1A64uBP7/dT1Sh16ar9fnKWIHYrqWuntg++4AggAAOAZBkAAAADPMAACAAB4JikGwH/+53+2OXPmWGZmpuXm5kpf45yzFStW2PDhwy0jI8PKysps//79fXugAAAAA0BSDIBtbW32mc98xr70pS/JX/Od73zH/vVf/9Uefvhh27Rpkw0aNMjmz59vLS2J+QVnAACA/pIU7wJeuXKlmZmtXbtWyjvn7Ac/+IF94xvfsBtuuMHMzP7zP//TCgsL7ZlnnrGbbrqprw4VAAAg4ZJiAOytiooKq6ystLKysuhtOTk5Nnv2bCsvL2cABPqJVDvSC5HqmrhuT96vWAESFCtU1NobU3OqvNyYkciRY9Km1PtErXdR62fiXe+iivd+1edGR3W1lAM+yMsBsLKy0szMCgsLu9xeWFgY/bPutLa2Wmtra/Tz+vr6vjlAAACAPjRgfwfw3nvvtUAgcM6PvXv39usxrVq1ynJycqIfI0eO7Nf9AwAAxMOAvQJ455132q233nrOzNixY89r20VFRWZmVlVVZcOHD4/eXlVVZTNmzOjx65YvX27Lli2Lfl5fX88QCAAALjoDdgAcOnSoDR06tE+2PWbMGCsqKrINGzZEB776+nrbtGnTOd9JHA6HLRwO98kxAQAA9JcB+1fAvXH48GHbtm2bHT582Do7O23btm22bds2a2xsjGYmTZpkTz/9tJmZBQIB+9rXvmb/9E//ZM8995zt2LHDFi1aZMXFxfbJT34yQasAAADoHwP2CmBvrFixwn72s59FP585c6aZmb388ss2b948MzPbt2+f1dXVRTN33323nT592m6//Xarra21q666ytavX2/p6do/rg4AAHCxCjjnXKIP4mJVX19vOTk5Ns9usJRAaqIPB7joxL0GRqxFiXcFiEpdr1wDI5KrRyaMi72tAV4Dk6jHADUwF5cO124b7Vmrq6uz7OzsRB9OQiTFFUAAPUtUL5oiUd+84n2fqNuL93rV/ao69h+M6/akfR45KuUG8uO4L/bLYIe+lhS/AwgAAAAdAyAAAIBnGAABAAA8wwAIAADgGQZAAAAAzzAAAgAAeIYaGCDJJaoWI57iXQES73qXgd4pF+/9xnWfmZlSjloUIL64AggAAOAZBkAAAADPMAACAAB4hgEQAADAMwyAAAAAnmEABAAA8Aw1MAAGvERV2SRLvYuKyiDAH1wBBAAA8AwDIAAAgGcYAAEAADzDAAgAAOAZBkAAAADPMAACAAB4hgEQAADAM/QAAkAP4t0pN9C755T1xnsNA317QLLiCiAAAIBnGAABAAA8wwAIAADgGQZAAAAAzzAAAgAAeIZ3AV8A55yZmXVYu5lL8MEAiLugC0m5iGvv4yPpH8p6k2Wt8FuHvf84PvN93EcMgBegoaHBzMxetecTfCQA+oRvjSK+rRfea2hosJycnEQfRkIEnM/j7wWKRCJ27Ngxy8rKskAg0Ouvr6+vt5EjR9q7775r2dnZfXCEA4dPazVjvcmO9SY3n9br01rN/me9hw8ftkAgYMXFxRYM+vnbcFwBvADBYNBGjBhxwdvJzs724oln5tdazVhvsmO9yc2n9fq0VjOznJwcr9bbHT/HXgAAAI8xAAIAAHgm9K1vfetbiT4In4VCIZs3b56lpCT/38b7tFYz1pvsWG9y82m9Pq3VzL/19oQ3gQAAAHiGvwIGAADwDAMgAACAZxgAAQAAPMMACAAA4BkGwD5UU1Njt9xyi2VnZ1tubq7ddttt1tjY2GP+0KFDFggEuv148skno7nu/nzdunX9saRz6u16zczmzZt31lq++MUvdskcPnzYFi5caJmZmTZs2DC76667rKOjoy+XIuntemtqauzv/u7vbOLEiZaRkWGXXHKJfeUrX7G6urouuYFyftesWWOjR4+29PR0mz17tm3evPmc+SeffNImTZpk6enpNnXqVHv++a7/RKJzzlasWGHDhw+3jIwMKysrs/379/flEnqlN+v96U9/ah/96EdtyJAhNmTIECsrKzsrf+utt551HhcsWNDXy5D0Zq1r1649ax3p6eldMsl0brt7TQoEArZw4cJoZiCf21deecU+/vGPW3FxsQUCAXvmmWdifs3GjRvt8ssvt3A4bOPHj7e1a9eelent60F/6e16n3rqKfvLv/xLGzp0qGVnZ1tpaam9+OKLXTLf+ta3zjq/kyZN6sNVJIhDn1mwYIGbPn26e/31191///d/u/Hjx7vPfe5zPeY7Ojrc8ePHu3ysXLnSDR482DU0NERzZuYee+yxLrnm5ub+WNI59Xa9zjk3d+5ct3Tp0i5rqauri/55R0eHu+yyy1xZWZnbunWre/75511BQYFbvnx5Xy8npt6ud8eOHe5Tn/qUe+6559yBAwfchg0b3IQJE9ynP/3pLrmBcH7XrVvn0tLS3KOPPup27drlli5d6nJzc11VVVW3+ddee82FQiH3ne98x+3evdt94xvfcKmpqW7Hjh3RzIMPPuhycnLcM8884/74xz+6T3ziE27MmDED4rHb2/XefPPNbs2aNW7r1q1uz5497tZbb3U5OTnuyJEj0czixYvdggULupzHmpqa/lpSj3q71scee8xlZ2d3WUdlZWWXTDKd2+rq6i5r3blzpwuFQu6xxx6LZgbquXXOueeff9794z/+o3vqqaecmbmnn376nPm3337bZWZmumXLlrndu3e7H/7why4UCrn169dHM729D/tTb9f71a9+1X372992mzdvdn/605/c8uXLXWpqqnvrrbeimfvuu89deumlXc7ve++918cr6X8MgH1k9+7dzszcG2+8Eb3thRdecIFAwB09elTezowZM9xf//Vfd7lNeZD3t/Nd79y5c91Xv/rVHv/8+eefd8FgsMs3nH//93932dnZrrW1NS7Hfj7idX6feOIJl5aW5trb26O3DYTzO2vWLPflL385+nlnZ6crLi52q1at6jb/2c9+1i1cuLDLbbNnz3Z/8zd/45xzLhKJuKKiIvfd7343+ue1tbUuHA67X/ziF32wgt7p7Xo/qKOjw2VlZbmf/exn0dsWL17sbrjhhngf6gXr7Vofe+wxl5OT0+P2kv3cPvTQQy4rK8s1NjZGbxuo5/aDlNeSu+++21166aVdbrvxxhvd/Pnzo59f6H3YX873tXPKlClu5cqV0c/vu+8+N3369Pgd2ADFXwH3kfLycsvNzbUrr7wyeltZWZkFg0HbtGmTtI0tW7bYtm3b7Lbbbjvrz7785S9bQUGBzZo1yx599FFzCa5zvJD1/vznP7eCggK77LLLbPny5dbU1NRlu1OnTrXCwsLobfPnz7f6+nrbtWtX/Bciisf5NTOrq6uz7OzsswpJE3l+29rabMuWLVZWVha9LRgMWllZmZWXl3f7NeXl5V3yZu+fpzP5iooKq6ys7JLJycmx2bNn97jN/nI+6/2gpqYma29vt7y8vC63b9y40YYNG2YTJ060L33pS1ZdXR3XY++t811rY2OjjRo1ykaOHGk33HBDl+desp/bRx55xG666SYbNGhQl9sH2rk9X7Geu/G4DweySCRiDQ0NZz139+/fb8XFxTZ27Fi75ZZb7PDhwwk6wr7jdw12H6qsrLRhw4Z1uS0lJcXy8vKssrJS2sYjjzxikydPtjlz5nS5/f7777e/+Iu/sMzMTPvtb39rf/u3f2uNjY32la98JW7H31vnu96bb77ZRo0aZcXFxbZ9+3a75557bN++ffbUU09Ft/vnw5+ZRT9X78e+EI/ze/LkSXvggQfs9ttv73J7os/vyZMnrbOzs9v7fe/evd1+TU/n6cx9cea/58okyvms94PuueceKy4u7vJNcsGCBfapT33KxowZYwcPHrSvf/3rdt1111l5ebmFQqG4rkF1PmudOHGiPfroozZt2jSrq6uz1atX25w5c2zXrl02YsSIpD63mzdvtp07d9ojjzzS5faBeG7PV0/P3fr6emtubrZTp05d8PNjIFu9erU1NjbaZz/72ehts2fPtrVr19rEiRPt+PHjtnLlSvvoRz9qO3futKysrAQebXwxAPbSvffea9/+9rfPmdmzZ88F76e5udkef/xx++Y3v3nWn/35bTNnzrTTp0/bd7/73T4ZEPp6vX8+/EydOtWGDx9u11xzjR08eNDGjRt33ts9X/11fuvr623hwoU2ZcoU++C/xtif5xcX7sEHH7R169bZxo0bu7w54qabbor+/9SpU23atGk2btw427hxo11zzTWJONTzUlpaaqWlpdHP58yZY5MnT7Yf//jH9sADDyTwyPreI488YlOnTrVZs2Z1uT1Zzq3vHn/8cVu5cqU9++yzXX6gv+6666L/P23aNJs9e7aNGjXKnnjiiW7/Ru5ixQDYS3feeafdeuut58yMHTvWioqK7MSJE11u7+josJqaGisqKoq5n1/96lfW1NRkixYtipmdPXu2PfDAA9ba2mrhcDhmvjf6a71nzJ4928zMDhw4YOPGjbOioqKz3m1WVVVlZtar7ar6Y70NDQ22YMECy8rKsqefftpSU1PPme/L89udgoICC4VC0fv5jKqqqh7XVlRUdM78mf9WVVXZ8OHDu2RmzJgRx6PvvfNZ7xmrV6+2Bx980H73u9/ZtGnTzpkdO3asFRQU2IEDBxI2JFzIWs9ITU21mTNn2oEDB8wsec/t6dOnbd26dXb//ffH3M9AOLfnq6fnbnZ2tmVkZFgoFLrgx8xAtG7dOvvCF75gTz755Fl/Bf5Bubm59qEPfSj6mE8W/A5gLw0dOtQmTZp0zo+0tDQrLS212tpa27JlS/Rrf//731skEokOOefyyCOP2Cc+8QkbOnRozOy2bdtsyJAhfTIc9Nd6/3wtZhb9RlJaWmo7duzoMmy99NJLlp2dbVOmTInPIv9MX6+3vr7err32WktLS7PnnnvurDqN7vTl+e1OWlqaXXHFFbZhw4bobZFIxDZs2NDlStCfKy0t7ZI3e/88ncmPGTPGioqKumTq6+tt06ZNPW6zv5zPes3MvvOd79gDDzxg69ev7/K7oD05cuSIVVdXdxmS+tv5rvXPdXZ22o4dO6LrSMZza/Z+rVFra6v91V/9Vcz9DIRze75iPXfj8ZgZaH7xi1/YkiVL7Be/+EWXep+eNDY22sGDBy/K83tOiX4XSjJbsGCBmzlzptu0aZN79dVX3YQJE7rUhBw5csRNnDjRbdq0qcvX7d+/3wUCAffCCy+ctc3nnnvO/fSnP3U7duxw+/fvdz/60Y9cZmamW7FiRZ+vJ5bervfAgQPu/vvvd2+++aarqKhwzz77rBs7dqy7+uqro19zpgbm2muvddu2bXPr1693Q4cOHTA1ML1Zb11dnZs9e7abOnWqO3DgQJeKgY6ODufcwDm/69atc+Fw2K1du9bt3r3b3X777S43Nzf6buzPf/7z7t57743mX3vtNZeSkuJWr17t9uzZ4+67775ua2Byc3Pds88+67Zv3+5uuOGGAVUV0pv1Pvjggy4tLc396le/6nIez9Q1NTQ0uH/4h39w5eXlrqKiwv3ud79zl19+uZswYYJraWlJyBrP6O1aV65c6V588UV38OBBt2XLFnfTTTe59PR0t2vXrmgmmc7tGVdddZW78cYbz7p9IJ/bM8e3detWt3XrVmdm7vvf/77bunWre+edd5xzzt17773u85//fDR/pgbmrrvucnv27HFr1qzptgbmXPdhIvV2vT//+c9dSkqKW7NmTZfnbm1tbTRz5513uo0bN7qKigr32muvubKyMldQUOBOnDjR7+vrSwyAfai6utp97nOfc4MHD3bZ2dluyZIlXfr8KioqnJm5l19+ucvXLV++3I0cOdJ1dnaetc0XXnjBzZgxww0ePNgNGjTITZ8+3T388MPdZvtbb9d7+PBhd/XVV7u8vDwXDofd+PHj3V133dWlB9A55w4dOuSuu+46l5GR4QoKCtydd97ZpTYlUXq73pdfftmZWbcfFRUVzrmBdX5/+MMfuksuucSlpaW5WbNmuddffz36Z3PnznWLFy/ukn/iiSfchz70IZeWluYuvfRS95vf/KbLn0ciEffNb37TFRYWunA47K655hq3b9++/liKpDfrHTVqVLfn8b777nPOOdfU1OSuvfZaN3ToUJeamupGjRrlli5dOiC+YTrXu7V+7Wtfi2YLCwvd9ddf36UzzbnkOrfOObd3715nZu63v/3tWdsa6Oe2p9eZM2tcvHixmzt37llfM2PGDJeWlubGjh3bpfPwjHPdh4nU2/XOnTv3nHnn3q/BGT58uEtLS3MlJSXuxhtvdAcOHOjfhfWDgHMJ7g8BAABAv+J3AAEAADzDAAgAAOAZBkAAAADPMAACAAB4hgEQAADAMwyAAAAAnmEABAAA8AwDIAAAgGcYAAEAADzDAAgAAOAZBkAAAADPMAACAAB4hgEQAADAMwyAAAAAnmEABAAA8AwDIAAAgGcYAAEAADzDAAgAAOAZBkAAAADPMAACAAB4hgEQAADAMwyAAAAAnmEABAAA8AwDIAAAgGcYAAEAADzDAAgAAOAZBkAAAADPMAACAAB4hgEQAADAMwyAAAAAnmEABAAA8Mz/A6r5srX46c5IAAAAAElFTkSuQmCC", "type": "image", "xaxis": "x", "yaxis": "y" }, { "source": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAoAAAAHgCAYAAAA10dzkAAAgAElEQVR4nO3de3iU9Z3//9ckQ07kTE4cgjGoHBTBQskXWtZ2SQWxVndti0o98KPYtabtgttvobZiayuui0pr2XJpy7b9XVps3WpZtVgLUkuNoCCKCKHIGZ2EEHMgkMNM7u8fXmYbTZh3YDKTzOf5uK5cXg6v+dyfuTMZ3rmTeeHzPM8TAAAAnJEQ6w0AAAAguhgAAQAAHMMACAAA4BgGQAAAAMcwAAIAADiGARAAAMAxDIAAAACOYQAEAABwDAMgAACAYxgAAQAAHMMACAAA4BgGQAAAAMcwAAIAADiGARAAAMAxDIAAAACOYQAEAABwDAMgAACAYxgAAQAAHMMACAAA4BgGQAAAAMcwAAIAADiGARAAAMAxDIAAAACOYQAEAABwDAMgAACAYxgAAQAAHMMACAAA4BgGQAAAAMcwAAIAADiGARAAAMAxDIAAAACOYQAEAABwDAMgAACAYxgAAQAAHMMACAAA4BgGQAAAAMcwAAIAADiGARAAAMAxDIAAAACOYQAEAABwDAMgAACAYxgAAQAAHMMACAAA4BgGQAAAAMcwAAIAADiGARAAAMAxDIAAAACOYQAEAABwDAMgAACAYxgAAQAAHMMACAAA4BgGQAAAAMcwAAIAADiGARAAAMAxDIAAAACOYQAEAABwjD/WGxjIOjo69M477ygjI0M+ny/W2wEAAAae56mpqUnDhg1TQoKb18IYAM/CO++8o+Li4lhvAwAAnIHDhw9rxIgRsd5GTDAAnoWMjAxJ0ic1W34NivFukJg+2JQLnWju4530L9bz4ktLC5sJ1hw72+30C/6CfFMuXh4vgK6CatcmPdv597iLGADPwgc/9vVrkPw+BsBYS/QlmXI+X1sf76R/MZ+XBEMuTp7nfstjleLm8QL4EO/9/7j861tu/uAbAADAYQyAAAAAjmEABAAAcAwDIAAAgGN4EwjiRujEiZgcNzE9PaLrRfpxmNcz5KyP1XrMSK9nFayuieh6sXocAHCmuAIIAADgGAZAAAAAxzAAAgAAOIYBEAAAwDEMgAAAAI5hAAQAAHAMNTBAD2JVeRIrlv3193qXWOnvj8O1zweA8LgCCAAA4BgGQAAAAMcwAAIAADiGARAAAMAxDIAAAACOYQAEAABwDAMgAACAY+gBBHpg7UTzFxaYcsHqmrPZTp8f1zc4LXzIeE5i1RcY6a7FSPfixaqPj34/AB/GFUAAAADHMAACAAA4hgEQAADAMQyAAAAAjmEABAAAcAwDIAAAgGOogYFzIl3F4TWfNOUiXdtizVkfr+VxRPoxRLqexFRlo8ifO2pWAAw0XAEEAABwDAMgAACAYxgAAQAAHMMACAAA4BgGQAAAAMcwAAIAADiGARAAAMAxcdUDuHLlSv3Hf/yHAoGAJkyYoIceekhTpkzpMV9fX6877rhDv/vd71RXV6dzzjlHK1as0OzZs6O464HF2otmYe1Osx7TV5BnygX3HYjscY3dc5HuC5TxuDIe18L6GCL5PJHsn9tIPlap//f7+UtLTDnrcx6AO+JmAHz88ce1aNEirVq1SmVlZVqxYoVmzpypqqoqFRR89C/UtrY2feYzn1FBQYGeeOIJDR8+XAcPHlR2dnb0Nw8AABBFcTMAPvDAA1qwYIHmzZsnSVq1apWeeeYZrV69WosXL/5IfvXq1aqrq9NLL72kQYMGSZJKSkqiuWUAAICYiIvfAWxra9PWrVtVXl7eeVtCQoLKy8tVWVnZ7X3Wrl2rqVOn6rbbblNhYaEuuugi3XPPPQqFQj0ep7W1VY2NjV0+AAAABpq4GABra2sVCoVUWFjY5fbCwkIFAoFu77Nv3z498cQTCoVCevbZZ/Xd735X999/v37wgx/0eJxly5YpKyur86O4uDiijwMAACAa4mIAPBMdHR0qKCjQww8/rEmTJmnOnDm64447tGrVqh7vs2TJEjU0NHR+HD58OIo7BgAAiIy4+B3AvLw8JSYmqrq6usvt1dXVKioq6vY+Q4cO1aBBg5SYmNh529ixYxUIBNTW1qakpKSP3Cc5OVnJycmR3TwAAECUxcUAmJSUpEmTJmn9+vW6+uqrJb1/hW/9+vWqqKjo9j6f+MQn9Nhjj6mjo0MJCe9fCN2zZ4+GDh3a7fCH98WiFsN8TGPOXLMSaeeOsOVq6vp2Hz0x1Mr4jEtZ62KsvJraiK4XL2JxXqwVP/29QgdwXdz8CHjRokV65JFH9Mtf/lK7du3Srbfequbm5s53Bd94441asmRJZ/7WW29VXV2dvvGNb2jPnj165plndM899+i2226L1UMAAACIiri4AihJc+bM0bFjx3TnnXcqEAho4sSJWrduXecbQw4dOtR5pU+SiouL9dxzz2nhwoW6+OKLNXz4cH3jG9/Qt771rVg9BAAAgKjweZ7nxXoTA1VjY6OysrL0KV0lv29QrLcDo1j9CNgryDXlfNYfAUf6XwKxrGdcK9I/Ao60WP14MtI/Po3Fj2P5ETDiQdBr10b9Xg0NDcrMzIz1dmIibn4EDAAAABsGQAAAAMcwAAIAADgmbt4Egv7DX1piCxp/TyxYXRPR43qDU0y5SP8uXvsQWy44IsOUS9t20JQz/+5hc0vYTKik+17ND0vYuc+Us/6emPX3Nq3PFevvseHMxepzxu8eAjZcAQQAAHAMAyAAAIBjGAABAAAcwwAIAADgGAZAAAAAxzAAAgAAOIYBEAAAwDH0AKJXLF1cXk2taS2fsT8vVp1t1v48q5YhSaZcyvE2U866v44023FbDf2DqUeaTGuZP7emlF2knyvWxxGrf/s4VufZwtrvZ0W/HxBZXAEEAABwDAMgAACAYxgAAQAAHMMACAAA4BgGQAAAAMcwAAIAADiGGhj0iqV2wlqJYc35CvJs6w1OMeW0/4gp1nFhqSkXSrV9GWXsqTfl3puQY8rlHI9N9YhFqKTIlEs81hjZ4xqrRxLHjzHlPONxfcbGk0jXxVirVmJVpWRh3Rs1MEBkcQUQAADAMQyAAAAAjmEABAAAcAwDIAAAgGMYAAEAABzDAAgAAOAYBkAAAADH0AMYAYnpg5XoSzptJlYdVpHu2LL0mFn78yLdAedrbrEFjb2CBz5rO3c5Vba2uPdm2HoKQym29VKOZ5hyLUNsX+ZZf2sOmzkyM9e21v4OUy7jZJsp1z4kfP+kJCXmZ5pyvgMBU06G3kupF52WxvX8xpyVuX/w3BFhI76aOtNS1sdg7TLs7+gzxEDDFUAAAADHMAACAAA4hgEQAADAMQyAAAAAjmEABAAAcAwDIAAAgGOogYmA0Ilm+Xy2OotIsVYORLp2wlLZkGis9vAG22pROtJOX7HzgVCq7el8YkSyKZdx0BRTc5HPlLPWuyQ12NarHzXIlGvLNsWU9bfwmRHP2SpATo2wVdQ0XZBtymW+ZqttsT6nrPUuwX0HTDnr16O1jsVaFWI9rlVox+6wGX9hgWkta71LxB9DhGtWqHdBvOIKIAAAgGMYAAEAABzDAAgAAOAYBkAAAADHMAACAAA4hgEQAADAMdTAxDlr7YSVr+zi8Jljjaa1QvmZplxrrq225d1ptlqUnCpbHUvTOaaYWfro90y5Uy222pv6Btt5yX7ddl4OfDZ83UX+9g7TWsFUW5WNVdvIXFMu6ZCtpsb63NM+W8xat2T9erRWrVjrbLya2ogd1/oYIl2fEum6GOpd4DquAAIAADgmrgbAlStXqqSkRCkpKSorK9OWLVtM91uzZo18Pp+uvvrqvt0gAABAPxA3A+Djjz+uRYsWaenSpdq2bZsmTJigmTNnqqbm9G30Bw4c0L/9279p+vTpUdopAABAbMXNAPjAAw9owYIFmjdvnsaNG6dVq1YpLS1Nq1ev7vE+oVBIc+fO1fe+9z2VlpZGcbcAAACxExcDYFtbm7Zu3ary8vLO2xISElReXq7Kysoe7/f9739fBQUFmj9/vuk4ra2tamxs7PIBAAAw0MTFAFhbW6tQKKTCwsIutxcWFioQ6P4fkd+0aZN+/vOf65FHHjEfZ9myZcrKyur8KC4uPqt9AwAAxEJcDIC91dTUpBtuuEGPPPKI8vLyzPdbsmSJGhoaOj8OHz7ch7sEAADoG3HRA5iXl6fExERVV1d3ub26ulpFRUUfyb/99ts6cOCArrzyys7bOjre7zfz+/2qqqrSqFGjPnK/5ORkJSfbutfiVaKh48/aOZZoPGbaMVsuY/gw44o2Q19qN+Vahti+jAJFGWeznY9ISA6Zcin1xi/zy8L3FAarckxLBVMi2wMYaQk7bQV/vtIS24LWvs1zR5hiwR27TblId+NFsjc00v15/X09YKCJiyuASUlJmjRpktavX995W0dHh9avX6+pU6d+JD9mzBjt2LFD27dv7/z43Oc+p09/+tPavn07P9oFAABxLS6uAErSokWLdNNNN2ny5MmaMmWKVqxYoebmZs2bN0+SdOONN2r48OFatmyZUlJSdNFFF3W5f3Z2tiR95HYAAIB4EzcD4Jw5c3Ts2DHdeeedCgQCmjhxotatW9f5xpBDhw4pISEuLngCAACclbgZACWpoqJCFRUV3f7Zxo0bT3vfX/ziF5HfEAAAQD/EJTEAAADHMAACAAA4Jq5+BNyfRbquwTc4LaLrWesfLBUv1r2F8jNNuYbzB5ty/hbPlLOqHzXIlBv2+QOmXMsTJaZcKMUUU9uUVlOu5jLbegmWipdsW71L+rsdplww1bZe4qmgKWd9ToVG5kb0uNZKI19zi2298WNsC+4/YjtugbHv1PA6YH2tsL7mWetY+vt6wEDDFUAAAADHMAACAAA4hgEQAADAMQyAAAAAjmEABAAAcAwDIAAAgGOogYmSSFcTBKtrIrqedX/+0pLwaxmrOBKPNZpyKbnJptzB2bYyjqR62/c9qdWmmN7623BTLsNc72L7XIQO2upxvBRbPc7sT28Nm3lun62e5IRxb3mvm2I6Pt72PM7ea6tZOTHC9pzK+putBqbxkiJTLnPTPlOuw/o1ZKx3Ce47YMqZvr6Nrz1W/sICU85aP2NFvQtcxxVAAAAAxzAAAgAAOIYBEAAAwDEMgAAAAI5hAAQAAHAMAyAAAIBjGAABAAAcQw8gJPWii6umNmwm0djX1TZ2hCl3/MJBptzwjR2mnGTLnRhq+/4oITlkyrVl2R5HakqbKbfgihdMuQef+awp98nMPWEzL2yZbForZOw89J+yfs5sgqm2Lsic19+L6HFTjtteSkMltr7AxAMBU84ryDXlIvr1Pd7WBRnasduUs3aaWlm7TyMt0l2vsegp7M97Q+RxBRAAAMAxDIAAAACOYQAEAABwDAMgAACAYxgAAQAAHMMACAAA4Bif53lerDcxUDU2NiorK0uf0lXy+2wVH+FEusLA+nZ9a02EpcYilGqrxLBWdqQeaTLlmi7INuUazrV939M0ut2UG3f+UVPu7Zo8U669xXb+EqqTTbmii6tNuWMN4Z97bdVpprV8WbYqG68hyZRLP2j7nCW2mGJKf9dWP+M/aav4Sf3LLlOu48JSU87b/IYp13b5x0056/58g22f31jwjPVS8VDHgrNj+dwGvTatP/GYGhoalJmZGYVd9T9cAQQAAHAMAyAAAIBjGAABAAAcwwAIAADgGAZAAAAAxzAAAgAAOIYBEAAAwDG2wjFETaQ7p6xdV9aOrYSd+8Ifs8DWd1c7e5gpVz8q15SzdrsNDtiqL0Mptm7HXS0jTTlrN96Wf/yJKffxJxeZcn8Z/6Qpd8Wey8NmGrNSTGsd2xK+L7I3mi+2FfyN/g/b87h9iK3vrmWIrafw1PSxplxyXasp1/ilqaZczuvvmXLmPlDj166J8TXF+tpjFat+P2uXarC6JqLHxUdZPrchz9bzGs+4AggAAOAYBkAAAADHMAACAAA4hgEQAADAMQyAAAAAjmEABAAAcAw1MHHOWnWQOH6Mbb0du8NmfBeWmtYa9uw7ptzJ0fmmnLVi4/h4W01Eoq15RFnn1Jty/1Tyhim34aStHmf4BbY6iYsfuNWUO3FO+Bqd1Grj94zJtpjVsN/b6liOzLTV1BS+avvkZuypN+WstTKJxxpNuSxTSvI12x7HyWv+jymXuSl8zZO1tsU32HZOrCK9XqIxZ30Npd4FAw1XAAEAABzDAAgAAOCYuBoAV65cqZKSEqWkpKisrExbtmzpMfvII49o+vTpysnJUU5OjsrLy0+bBwAAiBdxMwA+/vjjWrRokZYuXapt27ZpwoQJmjlzpmpquv+9jI0bN+q6667TCy+8oMrKShUXF+uyyy7T0aNHo7xzAACA6IqbAfCBBx7QggULNG/ePI0bN06rVq1SWlqaVq9e3W3+0Ucf1Ve/+lVNnDhRY8aM0c9+9jN1dHRo/fr1Ud45AABAdMXFANjW1qatW7eqvLy887aEhASVl5ersrLStMbJkyfV3t6u3NzcHjOtra1qbGzs8gEAADDQxEUNTG1trUKhkAoLC7vcXlhYqN27w9eWSNK3vvUtDRs2rMsQ+WHLli3T9773vbPaa7+1/4gp5i8tCR8yVl20jex52P57aVXHTLk9tw415az1Lm3Z4WtRJEkHs02xqrzC8CFJj+2ebMqNKqg15U78Q50pd+Ww8BUg246PMK11rMFWtaMqW+7YRNv3qkkNtsO2DLHVylglHbKd41B+pimXcLItoutZ62wiyVwXU5BnW6/G9nw3V1+l2557/sICU85aA2M9rpX18QIfFhdXAM/WvffeqzVr1ujJJ59USkrPPWJLlixRQ0ND58fhw4ejuEsAAIDIiIsrgHl5eUpMTFR1dXWX26urq1VUVHTa+y5fvlz33nuv/vSnP+niiy8+bTY5OVnJyRFuuAUAAIiyuLgCmJSUpEmTJnV5A8cHb+iYOnVqj/e77777dPfdd2vdunWaPNn2YzcAAICBLi6uAErSokWLdNNNN2ny5MmaMmWKVqxYoebmZs2bN0+SdOONN2r48OFatmyZJOnf//3fdeedd+qxxx5TSUmJAoGAJCk9PV3pEf4dDQAAgP4kbgbAOXPm6NixY7rzzjsVCAQ0ceJErVu3rvONIYcOHVJCwv9e8PzpT3+qtrY2ff7zn++yztKlS3XXXXdFc+sAAABRFTcDoCRVVFSooqKi2z/buHFjl/8/cOBA328IAACgH4qL3wEEAACAXVxdAcSZa598gSk36Hj4bi9fja0TLWmXrSes8ZOlplxHYaspl/dH2zu5q8tMMU2dVGXKvbTzPFMuu7DJlDsv3daLtnjkH0y52/7z1rCZ8f+8y7TW0T227rTEFM+Us2ob3WzKpbxqe+kLpiaaciem2Too04/YnqNW1r5AX7Ox/HJwWthIyNh3Z+3Ps3YZJhp7BW2fMbtI9/vR24f+giuAAAAAjmEABAAAcAwDIAAAgGMYAAEAABzDAAgAAOAYBkAAAADHUAMT56zVBNq4zRTzGasdLOo+M8qUs1ZnlK62Hbf2Ip8p58uyHffQ/aNtB54VMsUaDmabci/KVo/zycw9ppyl4sVaZeNvsZ1jq9Rq23ptLbbn+6DjtqqilguyTbmsv9nqZ0KptpfchvMHm3K5LzWact7gFFPOUhdjrXcx16cY612C/bw+hXoXDDRcAQQAAHAMAyAAAIBjGAABAAAcwwAIAADgGAZAAAAAxzAAAgAAOIYBEAAAwDH0APYz5t4+q3NH2HI7dkfskG1jbcf0n/JMuRMjkk25xhJbV1xi+KozSdLgN2zdaSNvD9+fJ0nv7D3XlPvsJa+bci++Y+sB3NR4gSl3qCknbOa+S39rWmtXyzBT7v9/7lJTLmT7VKj0N7Z+v31fzDXl8rd3mHL23r53Tbl02fbXNtKWSzwVNOUaJoR/DqQct62VZqsWNfMX5NmCxl5BDU4zxYL7Dphy1tdu+gLRX3AFEAAAwDEMgAAAAI5hAAQAAHAMAyAAAIBjGAABAAAcwwAIAADgGGpgBihzlYCx3iWS9TMtQ5JMuZTjbRFdL3eXrVbm2ETb9z3t59j6YrauH2vKedm2ShFrvcuJqvCVHZI0+jxb9cit+RvDZm7f/3nTWnteOceUC6XYPmctha2mnLXexXrcE0Ntz5X0d22f21B+pilnrW1pHmGrMsl4bo8pl7PTFLMx1qx4xtqWUHWNKecvLTHlrHUx/sICUy5o3J8VtTLoa1wBBAAAcAwDIAAAgGMYAAEAABzDAAgAAOAYBkAAAADHMAACAAA4hhqYfiZWb+m3Htd3YfiKkszXAqa1To7ON+Vacmzfp7Rmm2LKOGjL1ack24JGvixb7U2k/frwx0252qEZYTMH/lRiWiu93hTTqUKfLVhoq0XJ326rY2k41/acSqk31tQYn6P+k7bnVHKdrfYmmGo7fx2Gr1tJSjzWaMpZeDW1ppzPWBfjN+aC+w6YcrFCvQv6C64AAgAAOIYBEAAAwDEMgAAAAI5hAAQAAHAMAyAAAIBjGAABAAAcwwAIAADgGHoAIcneTeU7YOj4M/Z11UwaZMoVbG035YIptvWskhpsHWu50229h5nJLabc7kNFtvVGv2fKBd4oNOUeawj/HMg5YOvF899Qbcv91vZYg9W25+eJoaaYEm2fioirH2V7jmYb18t53fYcCO3YbVuwtCRsxNrvp3NHmGLe/iOmnLUXz19YYMpZec0nTblI9/bRF4i+xhVAAAAAxzAAAgAAOCauBsCVK1eqpKREKSkpKisr05YtW06b/+1vf6sxY8YoJSVF48eP17PPPhulnQIAAMRO3AyAjz/+uBYtWqSlS5dq27ZtmjBhgmbOnKmamppu8y+99JKuu+46zZ8/X6+99pquvvpqXX311XrzzTejvHMAAIDoipsB8IEHHtCCBQs0b948jRs3TqtWrVJaWppWr17dbf5HP/qRZs2apW9+85saO3as7r77bn3sYx/TT37ykyjvHAAAILriYgBsa2vT1q1bVV5e3nlbQkKCysvLVVlZ2e19Kisru+QlaebMmT3mAQAA4kVc1MDU1tYqFAqpsLBr3UVhYaF27+6+/iAQCHSbDwR6rvRobW1Va2tr5/83Njaexa67Fxdv/TfWJiTV25az1sVkGitKqstsudRq2/dHR/fYaicCLbZamTEfP2jKvV2TZ8rN/vRWU25IUvjn1OaCEtNa1r21Tegw5f5txjOm3H89cKUpl/Ke7bgN59qeA1n7besFU23PgdQjTaacVeL4Maac6SvDWO/SkZZkyiUaa6NkfM2z1rb4CmzPUevrmVW/fu2GU+LiCmC0LFu2TFlZWZ0fxcXFsd4SAABAr8XFAJiXl6fExERVV3ctn62urlZRUfdFs0VFRb3KS9KSJUvU0NDQ+XH48OGz3zwAAECUxcUAmJSUpEmTJmn9+vWdt3V0dGj9+vWaOnVqt/eZOnVql7wkPf/88z3mJSk5OVmZmZldPgAAAAaauPgdQElatGiRbrrpJk2ePFlTpkzRihUr1NzcrHnz5kmSbrzxRg0fPlzLli2TJH3jG9/QpZdeqvvvv19XXHGF1qxZo1dffVUPP/xwLB8GAABAn4ubAXDOnDk6duyY7rzzTgUCAU2cOFHr1q3rfKPHoUOHlJDwvxc8p02bpscee0zf+c539O1vf1vnn3++nnrqKV100UWxeggAAABRETcDoCRVVFSooqKi2z/buHHjR277whe+oC984Qt9vCsAAID+JS5+BxAAAAB2cXUFMB5EuiMq0r2CfkN3VtvIXNNaVtZ+v5ZsW8daUr0tl9ZzJWQXE2dXmXJv1RaGD0nKTjplyo0qqDXlPpm5x5T7v38OfzU8OWDrZGzLtvXiDXnd9j3ogy2fNeWCZe2mXEaV7XFYteTYHkf23hZT7r0JOaZczuvvmXLmTr5j4btNg/sO2NYyvvbI2APoL7T1bZpFuN/P/HiN6AtEX+MKIAAAgGMYAAEAABzDAAgAAOAYBkAAAADHMAACAAA4hgEQAADAMdTAxDlrlUAkKwwSTwVNuVCKbb3qMlsNTOFm23ptxrqYgi8dMOVe3nuuKffZcW+acrVtg005q6dqLzHlpl24N2zm6ktfM6313e2fM+VSvmB8fjbYnp+JVbbcqULbc6roZVuubqz1e2nbk95aF9N0QbYpl7Gn3pTzasJXC/nKLjatpZNttmPuP2Jbz6i/16dYX2sjXeEFfBhXAAEAABzDAAgAAOAYBkAAAADHMAACAAA4hgEQAADAMQyAAAAAjqEGJs5ZqwR8BXmmnKUmonV0vmmt5HpTTMn1tu9TWr5YZ8vVp5lyz1zwB1PuCl1uyj391kW24176E1PuNw2TTblPp+8y5Ra8ekPYzNYjxaa1rI5tKTLlUifYPrdtrbbjtmXb6l2OTbQ99/K3d5hyLTnG5/KQJFPuxFDr9/DZplRwQk7YTPoR20luzU025VL3m2LyDbZ93fqNORlzltc8yV7H4lJtC1U2/RtXAAEAABzDAAgAAOAYBkAAAADHMAACAAA4hgEQAADAMQyAAAAAjmEABAAAcAw9gAOUtV/Jytp1pXNHRPS4kTQss9GUO1EVvutMksZsCt+LJ0kZfzR+Lv6hxRRbsPtLptyJVltX3PPJY0y50MHBYTOp1T7TWlmfCZhyR4psXXGt1RmmnD/L1u835HXb974p79n6/erG2tYbtsn2HDgxwnZehv7Z1o8YSb5m22OwPTtl7uOz8ppPmnKh6hpTzvpaG+nXZKv+3KHXn/cGrgACAAA4hwEQAADAMQyAAAAAjmEABAAAcAwDIAAAgGMYAAEAABxDDUw/E6sqAStLBcSJ4bmmtbL32uokai9KMeUirb3F9uVx5dc3mnKb60pMuT2vnGPKvXzd/abc1TtttTL3XPXrsJn/++cvmNZq21Jkyt035zFT7u6Hrzflmka3m3J1/xAy5awK/mirbQmmJppyKceDptypEbZ6nOS6VlMulBr+OZ9krIEJ7jtgyvkLC0w5a3vpENAAABx0SURBVL2Lz1grY/tM2FkrT6yv8ZGuULEcl9oWt3AFEAAAwDEMgAAAAI5hAAQAAHAMAyAAAIBjGAABAAAcwwAIAADgGAZAAAAAx/g8z/NivYmBqrGxUVlZWfqUrpLfNyjW2zkrkewf7Liw1JSr/rjtmNlv27rd6kdF9nPQlm3LhS62dWeFDg425dJHv2fKNRzMNuWyzqk35eqrw3fK5W22neOU9zpMuSOzbH18/npbJ2Mw29afl3bQ9jiS6k0xs7w3bR16g47bOu860pLOZjsfkXisMWzGq6mN6DEjzdoDGKyu6eOdoD8Leu3aqN+roaFBmZmZsd5OTHAFEAAAwDEMgAAAAI5hAAQAAHBMXAyAdXV1mjt3rjIzM5Wdna358+frxGn+TcO6ujp97Wtf0+jRo5WamqqRI0fq61//uhoaGqK4awAAgNiIiwFw7ty52rlzp55//nk9/fTTevHFF3XLLbf0mH/nnXf0zjvvaPny5XrzzTf1i1/8QuvWrdP8+fOjuGsAAIDYsL21rh/btWuX1q1bp1deeUWTJ0+WJD300EOaPXu2li9frmHDhn3kPhdddJH++7//u/P/R40apR/+8If60pe+pGAwKL9/wJ8WAACAHg34SaeyslLZ2dmdw58klZeXKyEhQZs3b9Y//dM/mdb54K3grg5/1uoEi8QDAVPOP/48U85c73JZnSl2oirHlEtq8JlyiW/Y6mwSTSnpVIut2iOp0FYVYjVi5PGwmeCfC01rvXNVmylX9MdkUy6YYvtc1JaZYuZ6l1CKLTdkp62qyFrv0j4kcl+PvTmupeIldJpfrzkTvrKLTTlLRY1kr6mxVl9ZH6+/sMCU85ptn4tIn2fL4430MdG/DfhpJxAIqKCg6xee3+9Xbm6uAgHbIFJbW6u77777tD82lqTW1la1trZ2/n9jo+0FCQAAoD/pt78DuHjxYvl8vtN+7N69+6yP09jYqCuuuELjxo3TXXfdddrssmXLlJWV1flRXFx81scHAACItn57BfD222/XzTfffNpMaWmpioqKVFPTtdE9GAyqrq5ORUVFp71/U1OTZs2apYyMDD355JMaNOj0P2pcsmSJFi1a1Pn/jY2NDIEAAGDA6bcDYH5+vvLz88Pmpk6dqvr6em3dulWTJk2SJG3YsEEdHR0qK+v5F4IaGxs1c+ZMJScna+3atUpJCf/LPsnJyUpOtv3OEgAAQH/Vb38EbDV27FjNmjVLCxYs0JYtW/TXv/5VFRUVuvbaazvfAXz06FGNGTNGW7ZskfT+8HfZZZepublZP//5z9XY2KhAIKBAIKBQyPZvkwIAAAxU/fYKYG88+uijqqio0IwZM5SQkKBrrrlGP/7xjzv/vL29XVVVVTp58v13X23btk2bN2+WJJ13Xtd3ou7fv18lJSVR2zsAAEC0+TzP82K9iYGqsbFRWVlZ+pSukt9nrCoZ4PylJWEz3mBbd8aRmbmmnLViI5hmK1o5NsdYn1Jlq4nQaGN1gnG9nCrbl6S1GqXpHFNMMy9/NWzm2RcmmdayVui0XNBiymVusT2nTtlaapRabculv9thyqUct9XeWOtYmi7INuVacmw/xMnfbKtIstTPWB+D9h+x5SLMXNtieC2TpOC+A6actVbGKhaVLJGuxunPgl67Nur3nRVwLhrwPwIGAABA7zAAAgAAOIYBEAAAwDEMgAAAAI5hAAQAAHAMAyAAAIBjGAABAAAcExdF0OhnjP1fI56zLdeRlmTKBdPCd5hJingfX23KYFMulG3rlAum2L4vq/sHW4deQrXtny98Yc3ksJkkWx2fQsZ/MfH8lUFT7vh423rWz1ljia2nUO/aYlanRmREdL3svbbngFXSIVtfoEWwn/fxRXq9WHXjRXJ/vsHG19A46AEEVwABAACcwwAIAADgGAZAAAAAxzAAAgAAOIYBEAAAwDEMgAAAAI6hBga903wybMRaJdA2xJY7McLWKZLz+numXDA1x5RLOW6rKMl73fZlVDvBVj1yssgUU8oeWydL0hRbtUeoOjf8WvWmpcyOj7dVWNSPttW7pB+0nePMA7b1WnKs3yPbqopODLWtl/emrd6l/jzbcyD/ePivW0kK5WeGzXib3zCt5S8sMOUiXcdiFel6l1jVxURyvWB1TcTWQv/HFUAAAADHMAACAAA4hgEQAADAMQyAAAAAjmEABAAAcAwDIAAAgGOogUGvWGoCrPUPg4zVFLmHbDUmjZfY+lP8p2wVIP5TIVPuvdGDTLlEW7OH0gK2XGu2Lde2JXy9iyTJ0CjSlmVbKqfKdo6bi2y1LSXPtJpy1sqglmzbcdPf7TDlGs61fS8dsrW2KJiaaMqlH223LWgUSg3/V0Ji2cW2xY41mmL+0hLbeoYKKknyjLlY1btYH69XUxvR4wIfxhVAAAAAxzAAAgAAOIYBEAAAwDEMgAAAAI5hAAQAAHAMAyAAAIBjGAABAAAcQw8gIm9wminmazYW4xmdGGr7fsba7WbtlEtqMMXMHXAX/H+7TLmX955ryqXssR24YGv4Trlgmq2fLphq69mznpPqybagdT3LY5Wk+lG2jsfkettx/S22fkTrefaftHVVdqQlmXKDXt0TNuMzfn1HmrXfL9Ii3bMX3HcgousBZ4orgAAAAI5hAAQAAHAMAyAAAIBjGAABAAAcwwAIAADgGAZAAAAAx1ADg15JTE8Pm4l0zUHb5R835fLetNXKJJ4KmnJvf36wKZdabYqpLctWAVK5dbQpl37Q9v1b4au281J/XvgOldZs01Ia9hdrdYbtHDeW2Gplzlnxhil37NqLTTnrcyqYaqttsbLWzxS+YqtGac21VRqlFeSFzXg1taa1rPUplteU3oh0bQsQr7gCCAAA4BgGQAAAAMcwAAIAADiGARAAAMAxDIAAAACOiYsBsK6uTnPnzlVmZqays7M1f/58nTC+E8zzPF1++eXy+Xx66qmn+najAAAA/UBcDIBz587Vzp079fzzz+vpp5/Wiy++qFtuucV03xUrVsjns1VMAAAAxIMB3wO4a9curVu3Tq+88oomT54sSXrooYc0e/ZsLV++XMOGDevxvtu3b9f999+vV199VUOHDo3Wlgc0S8eWv7DAtlZJkSnnPxUy5Sw9dpI0ZEdsesKyq2zfaLRm23JDdrabctbzkn40/Hr+FttLRijVlks/0mrKZf3N1t3YcWGpKWc16LitZ6/lgmxTLuV4myk39M9NptypERmmXNq2g6ac12x4vOeOMK2lHbttOSP6/YDIGvBXACsrK5Wdnd05/ElSeXm5EhIStHnz5h7vd/LkSV1//fVauXKliopsgwgAAEA8GPBXAAOBgAoKul5x8vv9ys3NVSAQ6PF+Cxcu1LRp03TVVVeZj9Xa2qrW1v+9YtHY2Nj7DQMAAMRYv70CuHjxYvl8vtN+7N59Zj9iWLt2rTZs2KAVK1b06n7Lli1TVlZW50dxcfEZHR8AACCW+u0VwNtvv10333zzaTOlpaUqKipSTU1Nl9uDwaDq6up6/NHuhg0b9Pbbbys7O7vL7ddcc42mT5+ujRs3dnu/JUuWaNGiRZ3/39jYyBAIAAAGnH47AObn5ys/Pz9sburUqaqvr9fWrVs1adIkSe8PeB0dHSorK+v2PosXL9aXv/zlLreNHz9eDz74oK688soej5WcnKzkZNs/qg4AANBf9dsB0Grs2LGaNWuWFixYoFWrVqm9vV0VFRW69tprO98BfPToUc2YMUO/+tWvNGXKFBUVFXV7dXDkyJE699xzo/0QAAAAomrAD4CS9Oijj6qiokIzZsxQQkKCrrnmGv34xz/u/PP29nZVVVXp5ElbpQN6lpieHjZjqpKQlLBzny1nrJ3INqWkPV9KM+WyjLUtIVvLilLe67AFjb+aWzNpkCl3zu/rTLn2IeHPS87rtnqSpgjXolR/PPzzrjfS37V9Lqw1K5mv9fyGs76U9Afb70HbSnRsFU7e/iPG1WxiVe9ieS2TqJ9B/IqLATA3N1ePPfZYj39eUlIiz/NOu0a4PwcAAIgX/fZdwAAAAOgbDIAAAACOYQAEAABwDAMgAACAYxgAAQAAHBMX7wJG9MSiEqHDUE8iSfXn2fpY0g/ajnvqH2yPta3atr/ketv3W8cn2CpKCjfbamos9S6SdGJE+JJz/5Ak01rBVNveWozr5b3ZYspZHoMkteTYPhfZxpqak6PDl9ZLUto245PPKNJVJtYKp3hAvQtcxxVAAAAAxzAAAgAAOIYBEAAAwDEMgAAAAI5hAAQAAHAMAyAAAIBjGAABAAAcQw8gYsbaYaaN20yxIacuNuWOj7cdN/mPttzJIlNM6UfbTbkhO1pNucRjjbYDG7vdcl415M4dYVrr1IgMU+7E8EGmXMZze0y53F22zsPGT5aacoOO286d7VHYe/Z8BXm23GDb4000pSLbjRfpjkIAkcUVQAAAAMcwAAIAADiGARAAAMAxDIAAAACOYQAEAABwDAMgAACAY6iBQcTFqv7BWotSsMGWa7zE1u+Sv7nelLPyNbeYcl5NrW09Y1WIaS3j3lKP2Naz5k5NH2vK+U+FTLnM1wK2AxvF4nPRm+PGomqFehegf+MKIAAAgGMYAAEAABzDAAgAAOAYBkAAAADHMAACAAA4hgEQAADAMQyAAAAAjqEHEBEXq/4vayeaVeZrtlzbyFxTLmHjNlPOX1hgyvkK8ky5SHbF+Y3H7EhLMuWs3Y3Jdbb1QqmRfUkL7jtgyvlLSyK6XqS7NGPVzQmg/+IKIAAAgGMYAAEAABzDAAgAAOAYBkAAAADHMAACAAA4hgEQAADAMdTAIG5EusLCPzjNlEvaddKU84xVHF6zbb1QdY0pZ2WpCjHXoqjEdlDjY0205oyfM2s1jrU+JdIVRJF+LkeyLoaqGCA+cAUQAADAMQyAAAAAjmEABAAAcAwDIAAAgGMYAAEAABzDAAgAAOCYuKiBqaur09e+9jX9z//8jxISEnTNNdfoRz/6kdLDVBpUVlbqjjvu0ObNm5WYmKiJEyfqueeeU2pqapR2jv7MXMcSo1oMf2GBKReMcF1MJEV6b9balkiLl2qUeHkcAMKLiyuAc+fO1c6dO/X888/r6aef1osvvqhbbrnltPeprKzUrFmzdNlll2nLli165ZVXVFFRoYSEuDglAAAAPRrwVwB37dqldevW6ZVXXtHkyZMlSQ899JBmz56t5cuXa9iwYd3eb+HChfr617+uxYsXd942evToqOwZAAAglgb85a7KykplZ2d3Dn+SVF5eroSEBG3evLnb+9TU1Gjz5s0qKCjQtGnTVFhYqEsvvVSbNm067bFaW1vV2NjY5QMAAGCgGfADYCAQUEFB19+F8vv9ys3NVSAQ6PY++/btkyTdddddWrBggdatW6ePfexjmjFjhv72t7/1eKxly5YpKyur86O4uDhyDwQAACBK+u0AuHjxYvl8vtN+7N69+4zW7ujokCR95Stf0bx583TJJZfowQcf1OjRo7V69eoe77dkyRI1NDR0fhw+fPiMjg8AABBL/fZ3AG+//XbdfPPNp82UlpaqqKhINTVd30kYDAZVV1enoqKibu83dOhQSdK4ceO63D527FgdOnSox+MlJycrOTnZsHsAAID+q98OgPn5+crPzw+bmzp1qurr67V161ZNmjRJkrRhwwZ1dHSorKys2/uUlJRo2LBhqqqq6nL7nj17dPnll5/95gEAAPqxfjsAWo0dO1azZs3SggULtGrVKrW3t6uiokLXXntt5zuAjx49qhkzZuhXv/qVpkyZIp/Pp29+85taunSpJkyYoIkTJ+qXv/yldu/erSeeeCLGjwhnytoBZ+06i3QnWqT3Z+0pjIXgvgMRXS/S/X6x6ruL9HMAAM7UgB8AJenRRx9VRUWFZsyY0VkE/eMf/7jzz9vb21VVVaWTJ//3L8x//dd/VUtLixYuXKi6ujpNmDBBzz//vEaNGhWLhwAAABA1Ps/zvFhvYqBqbGxUVlaWPqWr5PcNivV2nNffr65Een+xWK+/nzur/v44uAII9K2g166N+r0aGhqUmZkZ6+3ERL99FzAAAAD6BgMgAACAYxgAAQAAHBMXbwKJlQ9+fTKodonfpIw5z2sz5UJeex/vpHuR3l8s1uvv586qvz+OWO0PcEVQ73+Nufw2CAbAs9DU1CRJ2qRnY7wTSJL6++/NR3p//X29SOrPe+uNeHkcQJxoampSVlZWrLcRE7wL+Cx0dHTonXfeUUZGhnw+X6y306PGxkYVFxfr8OHDzr7bqSecm+5xXrrHeekZ56Z7nJfuxfq8eJ6npqYmDRs2TAkJbv42HFcAz0JCQoJGjBgR622YZWZm8gLUA85N9zgv3eO89Ixz0z3OS/dieV5cvfL3ATfHXgAAAIcxAAIAADgm8a677ror1ptA30tMTNSnPvUp+f381P/DODfd47x0j/PSM85N9zgv3eO8xBZvAgEAAHAMPwIGAABwDAMgAACAYxgAAQAAHMMACAAA4BgGwDhVV1enuXPnKjMzU9nZ2Zo/f75OnLD9O1Se5+nyyy+Xz+fTU0891bcbjbLenpe6ujp97Wtf0+jRo5WamqqRI0fq61//uhoaGqK4676xcuVKlZSUKCUlRWVlZdqyZctp87/97W81ZswYpaSkaPz48Xr22fj8JxB7c14eeeQRTZ8+XTk5OcrJyVF5eXnY8ziQ9fY584E1a9bI5/Pp6quv7tsNxkhvz0t9fb1uu+02DR06VMnJybrgggvi8uupt+dlxYoVna+1xcXFWrhwoVpaWqK0Wwd5iEuzZs3yJkyY4L388sveX/7yF++8887zrrvuOtN9H3jgAe/yyy/3JHlPPvlk3240ynp7Xnbs2OH98z//s7d27Vpv79693vr1673zzz/fu+aaa6K468hbs2aNl5SU5K1evdrbuXOnt2DBAi87O9urrq7uNv/Xv/7VS0xM9O677z7vrbfe8r7zne94gwYN8nbs2BHlnfet3p6X66+/3lu5cqX32muvebt27fJuvvlmLysryzty5EiUd973entuPrB//35v+PDh3vTp072rrroqOpuNot6el9bWVm/y5Mne7NmzvU2bNnn79+/3Nm7c6G3fvj3KO+9bvT0vjz76qJecnOw9+uij3v79+73nnnvOGzp0qLdw4cIo79wdDIBx6K233vIkea+88krnbX/4wx88n8/nHT169LT3fe2117zhw4d77777btwNgGdzXv7eb37zGy8pKclrb2/vi21GxZQpU7zbbrut8/9DoZA3bNgwb9myZd3mv/jFL3pXXHFFl9vKysq8r3zlK326z2jr7Xn5sGAw6GVkZHi//OUv+2qLMXMm5yYYDHrTpk3zfvazn3k33XRTXA6AvT0vP/3pT73S0lKvra0tWluMid6el9tuu837x3/8xy63LVq0yPvEJz7Rp/t0GT8CjkOVlZXKzs7W5MmTO28rLy9XQkKCNm/e3OP9Tp48qeuvv14rV65UUVFRNLYaVWd6Xj6soaFBmZmZA7a8tK2tTVu3blV5eXnnbQkJCSovL1dlZWW396msrOySl6SZM2f2mB+IzuS8fNjJkyfV3t6u3NzcvtpmTJzpufn+97+vgoICzZ8/PxrbjLozOS9r167V1KlTddttt6mwsFAXXXSR7rnnHoVCoWhtu8+dyXmZNm2atm7d2vlj4n379unZZ5/V7Nmzo7JnFw3Mv8FwWoFAQAUFBV1u8/v9ys3NVSAQ6PF+Cxcu1LRp03TVVVf19RZj4kzPy9+rra3V3XffrVtuuaUvthgVtbW1CoVCKiws7HJ7YWGhdu/e3e19AoFAt3nreRsIzuS8fNi3vvUtDRs27CPD8kB3Judm06ZN+vnPf67t27dHYYexcSbnZd++fdqwYYPmzp2rZ599Vnv37tVXv/pVtbe3a+nSpdHYdp87k/Ny/fXXq7a2Vp/85CfleZ6CwaD+5V/+Rd/+9rejsWUncQVwAFm8eLF8Pt9pP6x/UX3Y2rVrtWHDBq1YsSKym46Cvjwvf6+xsVFXXHGFxo0bJ/4FRXzYvffeqzVr1ujJJ59USkpKrLcTU01NTbrhhhv0yCOPKC8vL9bb6Vc6OjpUUFCghx9+WJMmTdKcOXN0xx13aNWqVbHeWkxt3LhR99xzj/7zP/9T27Zt0+9+9zs988wzuvvuu2O9tbjFFcAB5Pbbb9fNN9982kxpaamKiopUU1PT5fZgMKi6uroef7S7YcMGvf3228rOzu5y+zXXXKPp06dr48aNZ7HzvtWX5+UDTU1NmjVrljIyMvTkk09q0KBBZ7vtmMnLy1NiYqKqq6u73F5dXd3jeSgqKupVfiA6k/PygeXLl+vee+/Vn/70J1188cV9uc2Y6O25efvtt3XgwAFdeeWVnbd1dHRIev+qe1VVlUaNGtW3m46CM3nODB06VIMGDVJiYmLnbWPHjlUgEFBbW5uSkpL6dM/RcCbn5bvf/a5uuOEGffnLX5YkjR8/Xs3Nzbrlllt0xx13KCGB61WRxhkdQPLz8zVmzJjTfiQlJWnq1Kmqr6/X1q1bO++7YcMGdXR0qKysrNu1Fy9erDfeeEPbt2/v/JCkBx98UP/1X/8VjYd3xvryvEjvX/m77LLLlJSUpLVr1w74qztJSUmaNGmS1q9f33lbR0eH1q9fr6lTp3Z7n6lTp3bJS9Lzzz/fY34gOpPzIkn33Xef7r77bq1bt67L75fGk96emzFjxmjHjh1dXk8+97nP6dOf/rS2b9+u4uLiaG6/z5zJc+YTn/iE9u7d2zkQS9KePXs0dOjQuBj+pDM7LydPnvzIkPfBkOx5Xt9t1mWxfhcK+sasWbO8Sy65xNu8ebO3adMm7/zzz+9Sd3LkyBFv9OjR3ubNm3tcQ3H2LmDP6/15aWho8MrKyrzx48d7e/fu9d59993Oj2AwGKuHcdbWrFnjJScne7/4xS+8t956y7vlllu87OxsLxAIeJ7neTfccIO3ePHizvxf//pXz+/3e8uXL/d27drlLV26NG5rYHpzXu69914vKSnJe+KJJ7o8N5qammL1EPpMb8/Nh8Xru4B7e14OHTrkZWRkeBUVFV5VVZX39NNPewUFBd4PfvCDWD2EPtHb87J06VIvIyPD+/Wvf+3t27fP++Mf/+iNGjXK++IXvxirhxD3GADj1PHjx73rrrvOS09P9zIzM7158+Z1+Utp//79niTvhRde6HGNeBwAe3teXnjhBU9Stx/79++PzYOIkIceesgbOXKkl5SU5E2ZMsV7+eWXO//s0ksv9W666aYu+d/85jfeBRdc4CUlJXkXXnih98wzz0R5x9HRm/NyzjnndPvcWLp0afQ3HgW9fc78vXgdAD2v9+flpZde8srKyrzk5GSvtLTU++EPfzigv6HsSW/OS3t7u3fXXXd5o0aN8lJSUrzi4mLvq1/9qvfee+9Ff+OO8Hke11YBAABcwu8AAgAAOIYBEAAAwDEMgAAAAI5hAAQAAHAMAyAAAIBjGAABAAAcwwAIAADgGAZAAAAAxzAAAgAAOIYBEAAAwDEMgAAAAI5hAAQAAHAMAyAAAIBjGAABAAAcwwAIAADgGAZAAAAAxzAAAgAAOIYBEAAAwDEMgAAAAI5hAAQAAHAMAyAAAIBjGAABAAAcwwAIAADgGAZAAAAAxzAAAgAAOIYBEAAAwDEMgAAAAI5hAAQAAHAMAyAAAIBjGAABAAAcwwAIAADgmP8HCkxFPrHwjJcAAAAASUVORK5CYII=", "type": "image", "xaxis": "x2", "yaxis": "y2" }, { "source": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAoAAAAHgCAYAAAA10dzkAAAgAElEQVR4nO3df3RU9Z3/8ff8yMwEyEyI5AfBQERF8Bd0oSC2fu13TcXqeuQct0uVrZbD6n5bsT2lPUfYdsVtq9gt7dK1nHK09mt7jh5s3aP1WIvrgqxrTUVBd0UBC4iEH/llyEwIySSZud8//Jo2CswrcMkM83k+zsnpcfqaez9z587knZvMi4DneZ4BAADAGcF8LwAAAAAjiwEQAADAMQyAAAAAjmEABAAAcAwDIAAAgGMYAAEAABzDAAgAAOAYBkAAAADHMAACAAA4hgEQAADAMQyAAAAAjmEABAAAcAwDIAAAgGMYAAEAABzDAAgAAOAYBkAAAADHMAACAAA4hgEQAADAMQyAAAAAjmEABAAAcAwDIAAAgGMYAAEAABzDAAgAAOAYBkAAAADHMAACAAA4hgEQAADAMQyAAAAAjmEABAAAcAwDIAAAgGMYAAEAABzDAAgAAOAYBkAAAADHMAACAAA4hgEQAADAMQyAAAAAjmEABAAAcAwDIAAAgGMYAAEAABzDAAgAAOAYBkAAAADHMAACAAA4hgEQAADAMQyAAAAAjmEABAAAcAwDIAAAgGMYAAEAABzDAAgAAOAYBkAAAADHMAACAAA4hgEQAADAMQyAAAAAjmEABAAAcAwDIAAAgGMYAAEAABzDAAgAAOAYBkAAAADHhPO9gDNZNpu1gwcPWllZmQUCgXwvBwAACDzPs66uLqutrbVg0M1rYQyAp+DgwYNWV1eX72UAAICT0NTUZGeffXa+l5EXDICnoKyszMzMPm3XWthK8rwaoHAES2NSLtvTe5pXUlg4LkBhGLB+e8meHfw+7iIGwFPw4a99w1Zi4QADIPChYCAi5bKBzGleSWHhuAAFwvvgf1z+8y03f/ENAADgMAZAAAAAxzAAAgAAOIYBEAAAwDF8CASA77I9Pb5uL1hampf9+q3Q1wfAHVwBBAAAcAwDIAAAgGMYAAEAABxTVAPgmjVrrL6+3mKxmM2ZM8c2b958wnxnZ6fdcccdNn78eItGozZlyhR79tlnR2i1AAAA+VE0HwJ5/PHHbenSpbZ27VqbM2eOrV692ubNm2c7d+60qqqqj+X7+vrss5/9rFVVVdkTTzxhEyZMsPfee8/Ky8tHfvEAAAAjKOB5npfvRfhhzpw59slPftJ+8pOfmJlZNpu1uro6u/POO23ZsmUfy69du9Z+8IMf2I4dO6yk5OT+GbdUKmWJRMI+YzfwT8EBp1GxfAoYQGEY8Pptk/3GksmkxePxfC8nL4riCmBfX59t2bLFli9fPnhbMBi0hoYGa2xsPOZ9nn76aZs7d67dcccd9pvf/MYqKyvt5ptvtrvuustCodAx75NOpy2dTg/+dyqV8veBADgloYqxUi7Tcfg0rwQM7UBhK4q/AWxvb7dMJmPV1dVDbq+urrbm5uZj3mfPnj32xBNPWCaTsWeffdb+8R//0X74wx/a9773vePuZ+XKlZZIJAa/6urqfH0cAAAAI6EoBsCTkc1mraqqyh588EGbOXOmLViwwL71rW/Z2rVrj3uf5cuXWzKZHPxqamoawRUDAAD4oyh+BTxu3DgLhULW0tIy5PaWlharqak55n3Gjx9vJSUlQ37dO23aNGtubra+vj6LRCIfu080GrVoNOrv4gEAAEZYUVwBjEQiNnPmTNuwYcPgbdls1jZs2GBz58495n0+9alP2a5duyybzQ7e9s4779j48eOPOfwBAAAUi6IYAM3Mli5dag899JD94he/sO3bt9uXv/xl6+7utkWLFpmZ2S233DLkQyJf/vKXraOjw772ta/ZO++8Y7/97W/tvvvuszvuuCNfDwEAAGBEFMWvgM3MFixYYG1tbXb33Xdbc3OzzZgxw9avXz/4wZB9+/ZZMPinebeurs6ee+45+/rXv26XXnqpTZgwwb72ta/ZXXfdla+HAAAAMCKKpgcwH+gBBEaGWikSKI1JOWpgTj9qYFDI6AEsoiuAQLFQv3Gq1KHI6+nNmVG/Wefrm3+hD3bFMBT5/RgK/ZgU+vqAk1U0fwMIAAAADQMgAACAYxgAAQAAHMMACAAA4BgGQAAAAMcwAAIAADiGGhgMi1KJQB3CqfH9+InbC9eOz5lR16ZWz6g/gQbHV2u53rSUyx7u1LY3ttzX7anHRX3O/JaP1zf1LkB+cAUQAADAMQyAAAAAjmEABAAAcAwDIAAAgGMYAAEAABzDAAgAAOAYBkAAAADH0AOIYaET6+Tlq3dM3a/X25szo3QFmplZLKrtsyf3Ps3MTOz367l4gpSLNZVJuezeJinnd1+gSn1u80Fdm9qNKJ8reUKvIM40XAEEAABwDAMgAACAYxgAAQAAHMMACAAA4BgGQAAAAMcwAAIAADiGGhhghKhVIX7XYqjbC5Qncu8zGpG25cW0t5Zs1RQtJ6XMYk0pKef5XO+i1t6oz4X6k7nf9TNKRYnfdSd+X4VQj3Gm47CUo94FxYorgAAAAI5hAAQAAHAMAyAAAIBjGAABAAAcwwAIAADgGAZAAAAAx1ADA4yQgYOHpFx4cr2UC8S0ugu1okTaZ7pPyqk1MH7rrxoj5SLpainndSa1HSfKtFwR8LvuRK6LEetY1Hokld+P1/caHWpqcJK4AggAAOAYBkAAAADHMAACAAA4hgEQAADAMQyAAAAAjmEABAAAcAwDIAAAgGPoAcSwKJ1T+erNUgVKxf48UabjsJQL146XctnEKG3HYi4bLdG2J+iPa9sqSfVLufeuGy3l4ns8KTfuD+9LOVWgPCHl+sT+weD2d6Sceq54vf523imvtXy9flTy+oqkF8/PvkC6At3CFUAAAADHMAACAAA4hgEQAADAMQyAAAAAjmEABAAAcAwDIAAAgGOogcGw5KMmwM+ag+GQ610m1/u6X1WwRVtfz8w6KRdtS+fMpM6JSNvKRLScWu8yqj0j5frVOpa0tr1gWquzKWk9IuW8T1wo5Sx5VMv5XAOjVKio1TheVDsHQlLKzOvRHqvftUwDBw9JOZX6fub3+pT9qu+h1MUUB64AAgAAOIYBEAAAwDEMgAAAAI5hAAQAAHAMAyAAAIBjGAABAAAcwwAIAADgGHoAYWaF3f/k+9rEXKhirLa93tz9eWZm2cOdUi7YWy7lusV+P9X700fnzFS92C5ta+/nx0m5WIcUk2Wi2s+0yclRKTfmgNYDGEpnpVykSXzA4jmldt6Fpk2Rct7eJimnUNemUl+P6lUNz+cORb/53T+ovI/S7+eWoroCuGbNGquvr7dYLGZz5syxzZs3S/dbt26dBQIBmz9//uldIAAAQAEomgHw8ccft6VLl9qKFSts69atNn36dJs3b561trae8H579+61b37zm3bFFVeM0EoBAADyq2gGwB/96Ed222232aJFi+zCCy+0tWvX2qhRo+znP//5ce+TyWRs4cKF9k//9E82efLkEVwtAABA/hTFANjX12dbtmyxhoaGwduCwaA1NDRYY2Pjce/3ne98x6qqqmzx4sUjsUwAAICCUBQfAmlvb7dMJmPV1dVDbq+urrYdO3Yc8z4vvfSSPfzww/bGG2/I+0mn05ZO/+mPs1Op1EmtFwAAIJ+K4grgcHV1ddkXv/hFe+ihh2zcOO3TimZmK1eutEQiMfhVV+fvpzABAABGQlFcARw3bpyFQiFraWkZcntLS4vV1NR8LL97927bu3evXX/99YO3ZbMf1DiEw2HbuXOnnXvuuR+73/Lly23p0qWD/51KpYpmCCyGepdw7Xgpp9Y/BGIxf7dXqm0vefkkKZeJBqRcV52WC/Xlzuy5WfuBacx+KWbRVEbKJeu1t6rRh7Q6lrPeSEq5dOUoKVfy5rtSzsoTWi6m1dSo9S6Z7e9IOfU16ee21NeF77Uy4n7Dk+ulXPZQS+7QMPh9XKTtUQPjlKIYACORiM2cOdM2bNgwWOWSzWZtw4YNtmTJko/lp06dam+++eaQ27797W9bV1eX/fjHPz7uUBeNRi0a1d6YAQAAClVRDIBmZkuXLrVbb73VZs2aZbNnz7bVq1dbd3e3LVq0yMzMbrnlFpswYYKtXLnSYrGYXXzxxUPuX15ebmb2sdsBAACKTdEMgAsWLLC2tja7++67rbm52WbMmGHr168f/GDIvn37LBh08k8eAQAAhiiaAdDMbMmSJcf8la+Z2aZNm05430ceecT/BQEAABQgLokBAAA4hgEQAADAMUX1K2CcWdR6F7ku5nDnKazm4/ovOUfKRZo6pFzPeVqFSjitVZl0j9devqNaPCkX6cqdS4/VfmaMvyt0yphZT2WJlEuPlWJW9ap2Tg3EtYqNIxO09ZXuEutdetO5M2bmJcq07bW0SbHgJy6UcoHegdyZtPbcej1iPZJYjROqrtS2l+yScmp9k1rvota2qMdFrXdR3x+V7fldzYXCxhVAAAAAxzAAAgAAOIYBEAAAwDEMgAAAAI5hAAQAAHAMAyAAAIBjGAABAAAcQw8gzCw//U/qPtV+LZXaw1XSesTX/caaUlKuv2qMuEXt5ds5VdtaNpo7M3qftq3myyLaPrWaPQt3a7lgul/KdZ+tnXtjDmjbyyZGSTkTc0ofn5neoac1QWodf15nUtuW+LodqBI7FEUhNSh2LQbErkW1ty9UIZZa+ty1p7zfqs+ZeuXI965X+gd9xRVAAAAAxzAAAgAAOIYBEAAAwDEMgAAAAI5hAAQAAHAMAyAAAIBjqIGB7/z+SH94bPkprObkZba/I+UOL5or5RJ70lLuyNlCH4uZjd2Zu7LDzCzWoXWt9I/J/fNgr9hgEdUaMazkiFZQEunScp0XapUiFY2HpJxaUZKu1OpdSne1SzkvqtXo+F2hotTUBHu189hv/XHtPA69o3UVeZPGaztWc2INjFrdExTrqtTqFqX+Sq3IUuWr3kXZb9ALmTneKsMVQAAAAMcwAAIAADiGARAAAMAxDIAAAACOYQAEAABwDAMgAACAY6iBwbCoH+v3k5cok3KBZJeWi2m1CaFpU6ScWlGiGrNfq9nIRLWf3+K7j0q51LlKlUlA2taYgwNSrnT/ESnXdW5cypW/nZRyyb+okXKlbVrVTum2A1Ku5+IJUq4k1S/lVN1na6/bxNbcxy9bLXYB+Uyt0BmYMlHKhZJiB0hLmxQL14p1MT7X6KjVLX5XrRQy5bFmPX9fY2cirgACAAA4hgEQAADAMQyAAAAAjmEABAAAcAwDIAAAgGMYAAEAABzDAAgAAOAYegCLXKhC6+zys0sqH12BZmYWi0oxLxrRcjHt5TF6v9avpXaxhdNZKXekVltfyZESKddVl7vjb9xbWr/fwU+HpNykZ7VOxsTWZinXc944Kac+Z2pXXN/5Wgec2u8X3tfq637Vx6u8NoJJrVdSfZ2pVyEGqhJSTn3OAmmt49HKtf2qsodapFygVHttqELC9tTvA8Gx5VLO69W2R5dhfnAFEAAAwDEMgAAAAI5hAAQAAHAMAyAAAIBjGAABAAAcwwAIAADgGGpgilym47Cv21MqXtT6grBYJWDJLi0n1sCo9Q/9VWO0/YpK28T9xrWXZfxdbXupc7Q6jvJduetn2i/S1nbuuk4pl64cJeVUpbvafd1eX12FlCt5810p13/JOdqOxXNZPVfScW170VTu3EBUu26gnu+qSFOHlOuYq1XjlL+d1Ha8Q3tu1WoUNZc93KnlxGqUcK12XKR9imvzm1oxRl2MhiuAAAAAjmEABAAAcAwDIAAAgGMYAAEAABzDAAgAAOAYBkAAAADHMAACAAA4hh7AM1SoYqyU83p6fd2v0vGndg+qj8GqK7WcKJPQuqTUjjVV6f4jUq790nIpl9g7IOX6R0sx6x+d++fBSb86KG2r5bO1Uq76eW17PeeNk3Kl2w5IOS9RJuXCKX9fP2pfYPenzvd1v9FURsop52igVzvv1L5N9bnNJrTOSPWxZqMlUi48vlrKeZ1ar6D6nux3r6DSLen53O/ndx+f2gOo5IJeyMzxukCuAAIAADiGARAAAMAxDIAAAACOYQAEAABwDAMgAACAYxgAAQAAHFNUNTBr1qyxH/zgB9bc3GzTp0+3Bx54wGbPnn3M7EMPPWS//OUvbdu2bWZmNnPmTLvvvvuOmx8p6sfc1aoVvyk/MYRrx/u6T0/MHT2v3Nf9qo6OC0m5dDwh5bJaO4Wl49p+y/ZlpVz8rY6cmY652nOr1rt40YiUizWlpJzKi2lvfWpVSHCSv+d8tC0t5brP1t4vRu/X+i6CyaM5M2pti/qcle5ql3Iq7YjodTbWqz0X/ZecI+XUKiCltsXM5PUN7NmbMxOeXC9tS6284QpTYSua5+fxxx+3pUuX2ooVK2zr1q02ffp0mzdvnrW2th4zv2nTJrvpppvshRdesMbGRqurq7Orr77aDhzQesQAAADOVEUzAP7oRz+y2267zRYtWmQXXnihrV271kaNGmU///nPj5l/9NFH7Stf+YrNmDHDpk6daj/72c8sm83ahg0bRnjlAAAAI6soBsC+vj7bsmWLNTQ0DN4WDAatoaHBGhsbpW0cPXrU+vv7raKi4nQtEwAAoCAUxd8Atre3WyaTserqof9kT3V1te3YsUPaxl133WW1tbVDhsiPSqfTlk7/6e8tUil//y4JAABgJBTFFcBTdf/999u6devsySeftFjs+P/W7cqVKy2RSAx+1dXVjeAqAQAA/FEUA+C4ceMsFApZS0vLkNtbWlqspqbmhPddtWqV3X///fbv//7vdumll54wu3z5cksmk4NfTU1Np7x2AACAkVYUvwKORCI2c+ZM27Bhg82fP9/MbPADHUuWLDnu/f75n//Z7r33Xnvuueds1qxZOfcTjUYtGhU/mn+aqXUxqmyPVhOh8Hp7pZxamxBMZ6Rc6f4jUm4gfvyrvH+upFXb3pFarRYj0qXVsZy1rV/KhdLa9tTj1181Jmdm7Nb3pW11X1Ql5Ubt6pRyam2LWZmUCrx3SMqp9S5+n1NZcXulbX1Srj+u1dmE3sld7xH9r5acGTOzzPQpUi6Y1p7bdOUoKacq3aY1PngJ7ZyK/FE7p+wEv2Uasl+xakWtBFPqubKHtOdWFSjVHqv6GEIVY6Wc16N9D3JdUQyAZmZLly61W2+91WbNmmWzZ8+21atXW3d3ty1atMjMzG655RabMGGCrVy50szMvv/979vdd99tjz32mNXX11tzc7OZmY0ZM8bGjMn9jRAAAOBMVTQD4IIFC6ytrc3uvvtua25uthkzZtj69esHPxiyb98+Cwb/9Bvvn/70p9bX12d//dd/PWQ7K1assHvuuWcklw4AADCiimYANDNbsmTJcX/lu2nTpiH/vXfv3tO/IAAAgAJUFB8CAQAAgI4BEAAAwDEMgAAAAI5hAAQAAHBMUX0IxCVqb5/aF6j2KykC5QnftmVmFt7XKuVartd6Bc/6724pd/gvzpJyJUc8Kdc1Uft5a+wftVw2quVG7dK65yyR+1w5el65tKl0PKTlxGMc331Uyqk/0QaqK7Wc2BdYIm5P7zPUqB2PPZURKVcyZWLOTLhV66cLijkvqq1N7b0Mp7QOuL7ztY5Htd9P7T/1m9yNJ6zP794+8/n7FP1+/uIKIAAAgGMYAAEAABzDAAgAAOAYBkAAAADHMAACAAA4hgEQAADAMdTAFBi13sVvgZj28X9F9lCLFqyrkGJeokzKBfu0OpZ0ZVTKHZ4a0PbbL8UsKjYnHKnVXpa9YnNPrHaclOsfnTsz4Xft0rYOf07bZ+0LnVKu69y4lBu9X4pZqHdAyqmVRtqZZzYQ115napVJQHwcCbGSZaAq9+PtOU97bkt3aedKb5323MZe2y3l1OcsktSqhbLV2gst2KK9wNW6GG+SVlNjO96VYsGx5bn3qb7X5qmOxc/vj1lPfOMuYlwBBAAAcAwDIAAAgGMYAAEAABzDAAgAAOAYBkAAAADHMAACAAA4hgEQAADAMfQAnqGCpaW+bi97uFPKBerrcmfEnqtgOiPlvJh2mvaP0Xr7TKsns9r/6pNyPZUlUu5otbg+n2UiWk7p+EtdpHU3Vm0Re+zeOyTl4mLfXX/VGCkXklJm2cQoMamJNHX4ul/1tRFIa+dyMJ27Gy2U1o6e2hcYbdP6+NSu0j6xXzTyR+3cC0S1F5DvfYFiv59Keo8Xvw/4ze/+W+X7Y9ALmeWndrdgcAUQAADAMQyAAAAAjmEABAAAcAwDIAAAgGMYAAEAABzDAAgAAOAYamCKnPrx+tC0KVJOqpMoT0jbUionzMzSlVolxrj/0apHkpOjUq5juvbzUcV/SzEb1eJJObUupmqrVu0RSmelXG9dPGcmE9XW1h/X3lqOfG6qlBuzPy3lSt7UqjMyUyZKufC+VimXvHySlIu/pdXZBJNaNYonVpRYr3b8ei6qypkZ9fs/StuKiLUtKrlmRayXUrcXECuI1Fzf+eOlXHhzp5QLji2XckoNTKBUe84yHVqVjd/U+jPl+17W077/FDOuAAIAADiGARAAAMAxDIAAAACOYQAEAABwDAMgAACAYxgAAQAAHEMNzAjx8+PrZsP46L+4vUCyS8pZLHeFilpNMRDXKgdiTSkpd/gvzpJykS6tjuXcddqxOzxNq6lRq0zMtJqaPrFqpbRNq4tJnZP7eRtzUKu6KElpudFbmqScWtnhTdIqNlRKdcYHtBoYb6/2eK2+TtyvxuvVKpJK9x/xbZ9ybUuLVimi1qyExFx/1RgpV9KrHRP1PbSkpU3bnvge7yXKtO0J50Ax1LtAxxVAAAAAxzAAAgAAOIYBEAAAwDEMgAAAAI5hAAQAAHAMAyAAAIBjGAABAAAcQw/gCPG7v0jt9QrXar1o6vb6z8+9vcgfD0nb6rmoQttnvFzKlbb1SzlVNhqScmMOaPttv1TsPezQegrD6ayUizR1SLmSs3M/t2q/XzCdkXIDE6ukXCipvX7Ubjd1fTb1HClWtlvrqgyI/X5HzyuXcqN2dWrb+9T5Ui7alrurMhzTzuNMtETKBYVuUTOzTELrilOp50AgrfVoqgLi8VM6V83MTOwV9Hq093hFqELreFR7Ben3yw+uAAIAADiGARAAAMAxDIAAAACOYQAEAABwDAMgAACAYxgAAQAAHEMNTIEJlmpVB+rH68OT66Wcd7hTypW0Hsm9rUSZtK1MNCDlIimt7qQkpdWxqJUiKbGmprRNq4lI7NUqVJQqDjOzYFp7vNnEKCmn1OiEN2+XtjUwe5qU66mMSLnRUsqs5M13pZw3SatH6jlbq5VR63EiSa2Sp3R/7teZmV6NotbFSNsT60nCrUkpN1CVkHJqLZMqnNJqUdTXT6BTe7wqr1qrWrFDLVIsUJq7fka9IqR+/1G/n6k1MH5vz3VcAQQAAHAMAyAAAIBjGAABAAAcwwAIAADgGAZAAAAAxxTVALhmzRqrr6+3WCxmc+bMsc2bN58w/+tf/9qmTp1qsVjMLrnkEnv22WdHaKUAAAD5UzQD4OOPP25Lly61FStW2NatW2369Ok2b948a21tPWb+5ZdftptuuskWL15sr7/+us2fP9/mz59v27ZtG+GVAwAAjKyA53levhfhhzlz5tgnP/lJ+8lPfmJmZtls1urq6uzOO++0ZcuWfSy/YMEC6+7utmeeeWbwtssuu8xmzJhha9eulfaZSqUskUjYX5YusHDgxH1mai9RqELrfvK7B1DtuspGS3Jm1J49a2mTYmpnm7I2M70/L9CrdbupXWzpSq0/LZjWeg/74lqNZ9nulJR7f0buPrbK5/ZK2+q5eIKUi7YdlXLBpJbLip1oak9hMJ2RcqF39km5QLnYeefj6/GDnNahl5yc+xxVzwG1L7CvTuvbVDpIzcy8mL/1tuoxls+BWO4+PjOTj5/nY/+g3/1+SvegmZnXI3Yy+tgXOOD12caexy2ZTFo8Hpe2W2yK4gpgX1+fbdmyxRoaGgZvCwaD1tDQYI2Njce8T2Nj45C8mdm8efOOmzczS6fTlkqlhnwBAACcaYpiAGxvb7dMJmPV1dVDbq+urrbm5uZj3qe5uXlYeTOzlStXWiKRGPyqq6s79cUDAACMsKIYAEfK8uXLLZlMDn41NTXle0kAAADDVhT/FvC4ceMsFApZS8vQv/9paWmxmpqaY96npqZmWHkzs2g0atGo9ncZAAAAhaoorgBGIhGbOXOmbdiwYfC2bDZrGzZssLlz5x7zPnPnzh2SNzN7/vnnj5sHAAAoFkVxBdDMbOnSpXbrrbfarFmzbPbs2bZ69Wrr7u62RYsWmZnZLbfcYhMmTLCVK1eamdnXvvY1u/LKK+2HP/yhXXfddbZu3Tp77bXX7MEHH8znwwAAADjtimYAXLBggbW1tdndd99tzc3NNmPGDFu/fv3gBz327dtnweCfLnhefvnl9thjj9m3v/1t+4d/+Ac7//zz7amnnrKLL7542PvO9vRaNqDVReSifhxe/Ri+Ktiiffw/kCjLmVFrUYIxrd5F9f700VKu6sV2X/er1ruM+v0fpZxeezNGyqnG/WZH7n2K52e0TaszCrx3SMpl1WNSNUXK9VSeuLbpQ6P3a7UTarVH90VVUk49Vw7fMFXbXrv2/pSNBHJmBiZqj6E/rtWnpM7RnovqP2rnSn+Vv+8r4c3bpVxgbLmv+7XetLZf8dzzerXXrkKtYzE15zNlfVlPqwMrZkUzAJqZLVmyxJYsWXLM/2/Tpk0fu+3zn/+8ff7znz/NqwIAACgsRfE3gAAAANAxAAIAADiGARAAAMAxDIAAAACOYQAEAABwTFF9CjhfgqUxCwa0KoNc1I/Xhyq0mo3soZbcITMLlGpVAoFY7sqTYFo7rQK9A1Ku/bKzpFz83T4p11sXl3KqkpT2OALlCSnnncpijmEgrj23EWF9auWEJY9qOXF7mahWKaIq252Scmo9Us/FE6Rc6f4jUs6qK6VYpMvfs6Vyc2fOTFZ8LkLprJRTX/W2T2UAABsnSURBVLeeUEFlZhZp6pBysvHVuTNm5kXF7wEtbVJMfr/oTGrbE15r4Vqxbulwp5RTybUy8BVXAAEAABzDAAgAAOAYBkAAAADHMAACAAA4hgEQAADAMQyAAAAAjmEABAAAcAw9gD7I9vRaNpAZ0X16Pb1STu3381NQ7IBru1LrnKr8z0NS7t2/rZVyE/5TO3bBtPacBtP9Ui6bGCXl1H5EldqLpqwvIHadBdJat5sJvZJmZqF39mn7FbvT1Odi/xfOkXJj/6g9Z+lKbb/ZqPazeXzjTil39FPnSzlF99mlUi4TDfi2TzOzaJv47Urs2fMmae8/ao9mSavW8ah2aar9fvL3AuG1MbBnr7StYKl2DtDvV9i4AggAAOAYBkAAAADHMAACAAA4hgEQAADAMQyAAAAAjmEABAAAcAw1MGco9eP1IbUGprpSywn1Hmq9S2JPWsodvE6rd6n5g1Y9cuRsrXpEVdqm1cCoom1ajU7pfq12oue8cb7tN5PQ6h9CWoOFeTHtLUj+SbVXO6dMrIGZ8Lt2KXf0vHIppz63ahVQ76xzpVxJStueUnnSV6bVu0S6PCnXe5b27B783+VSrublEikXSmrvoZEWrYYqe7hTyll9nRSTS3TE9+6B7e+oW8yJepfiwBVAAAAAxzAAAgAAOIYBEAAAwDEMgAAAAI5hAAQAAHAMAyAAAIBjGAABAAAcQw9gkQuUJ6Sc1thllhX600a1Z6RtHZqrdRQOjJZiFuqLSLnesdr2+sZqRyVyWNtv1Vatp1DpYjMzC6d6pVzpLq3LbqBKO1cUal9guFUsDBT1na91UJa0ah2Kar9fsl57Ky1Jac9tz7naORUR+/16KrXthdPZ3PsU+/1UwT5texNefN/X/aodlNaivc6CY8ulXFbcbyAt9pW2tEmxYGnu16Tf/X7KPk/HfqHhCiAAAIBjGAABAAAcwwAIAADgGAZAAAAAxzAAAgAAOIYBEAAAwDHUwBQYvz82nz3UIuUC9XVSThFtS0u5CZu03IHPaD0w/WJdjF7vEpByo1q07fVUlki5aEqr0Slp1SpAVOF9rTkzXqLM1316Ua2eJJDWKnT8rndRz+VYPCTlkpO1ao+Q9nAtG9V+ho+/1SHlUhdV5Mz0lWmvizEH+qVcX5n2upBrW0TB5FEtGNOqe1SB9w5JuYGOw1IuVKH1WvlZtZKvehdqZfzFFUAAAADHMAACAAA4hgEQAADAMQyAAAAAjmEABAAAcAwDIAAAgGOogTlDhSfXSzmvMynlAskuKZe6aFLOTMeF2s8VQbHqQq3ECGqtE3K9i6p9VlbKVb8sHpe0tr3euriUC4nb64/nfjsYtatT2pZKrXfJJkZJObXaQ30crf9rnJSLva8d40xEO/f6x2i5aEqKWSah1Wd0j899jsY6tNojtaJGrYtRn9ue87TnrCSq1c+EW7X3UOvVKoMyYr2LWnmibq8YUO/iL64AAgAAOIYBEAAAwDEMgAAAAI5hAAQAAHAMAyAAAIBjGAABAAAcwwAIAADgGHoAR4ja6RQojUk5td/v6KfOl3LRNq3DKix0yo1q0X6uSE3W+sRG79c60dJjpZj11Gm9Y9FmrSdM7fdLnqs9jt6KiJSrerVbynWfrZ17o/fn7thSuwf7hE5BM7NIasDX7ZXtlmKys/5bO8ZqV1zyL2qkXNlubXvpSq0f8Z3F2jlV+XLu1+SY/dp7RTCdkXKq7KEWKReLao9V7T71EmVSzsT9qt90vd5eKadexclHh576fY9+v/zgCiAAAIBjGAABAAAcUxQDYEdHhy1cuNDi8biVl5fb4sWL7ciRIyfM33nnnXbBBRdYaWmpTZw40b761a9aMin+kz8AAABnsKIYABcuXGhvvfWWPf/88/bMM8/Yiy++aLfffvtx8wcPHrSDBw/aqlWrbNu2bfbII4/Y+vXrbfHixSO4agAAgPw44z8Esn37dlu/fr29+uqrNmvWLDMze+CBB+zaa6+1VatWWW1t7cfuc/HFF9u//du/Df73ueeea/fee6/97d/+rQ0MDFg4fMYfFgAAgOM6468ANjY2Wnl5+eDwZ2bW0NBgwWDQXnnlFXk7yWTS4vE4wx8AACh6Z/y009zcbFVVVUNuC4fDVlFRYc3NzdI22tvb7bvf/e4Jf21sZpZOpy2d/lMFQiqVktepfsxdncjVuhi13iUbDUm5dDx3ruSIVu9y1v9IMTs8VcvV/leflHv/iFbX0HWpduwOW1TKxfdoxyXSpeVCSe2cisS1OptgOnc9TqxJ22eoaoy4T60qpCSlVfcMxLXXReSPh6RcdmJV7pCZeWIFSPytDm17Me2tufkybb+Tntbqdgaiuc+95GTtfFeN3X5UygXHV0u57vPKpdyoXVJMfi6yr7+tbVDkd3VYSMhlOg5L26K2pTgU7BXAZcuWWSAQOOHXjh07Tnk/qVTKrrvuOrvwwgvtnnvuOWF25cqVlkgkBr/q6upOef8AAAAjrWCvAH7jG9+wL33pSyfMTJ482Wpqaqy1tXXI7QMDA9bR0WE1NScuXe3q6rJrrrnGysrK7Mknn7SSkhNfKVm+fLktXbp08L9TqRRDIAAAOOMU7ABYWVlplZWVOXNz5861zs5O27Jli82cOdPMzDZu3GjZbNbmzJlz3PulUimbN2+eRaNRe/rppy0Wy315PBqNWjTq768/AAAARlrB/gpYNW3aNLvmmmvstttus82bN9vvf/97W7JkiX3hC18Y/ATwgQMHbOrUqbZ582Yz+2D4u/rqq627u9sefvhhS6VS1tzcbM3NzZbJ+PvPFwEAABSagr0COByPPvqoLVmyxK666ioLBoN244032r/+678O/v/9/f22c+dOO3r0gz823rp16+AnhM8777wh23r33Xetvr5+xNYOAAAw0opiAKyoqLDHHnvsuP9/fX29ed6fPt32mc98Zsh/AwAAuKQoBsAzgfqRfvXj9eGx5dr2xHoXtdphzIHcdRylu9qlbfWcN07KlbZJMVnZvqyY1I5Jeqy2NbXuovts7VxRRdu0/QZ6taoQhVrvoj7WcFp7zkr3H/+fgPxzbfPqpdxZb2j/PGS/WHtz5GztnIqmxHoc7eHa/qu0v/YJd+XOqXVG/WMCUk6VTYyScqN2dWobbNHeWALVuf8W3cz/2havp9fXHNUt+Kgz/m8AAQAAMDwMgAAAAI5hAAQAAHAMAyAAAIBjGAABAAAcwwAIAADgGAZAAAAAx9ADOEL87mDKHu6UcpEmrXessknbb19dRe5Qb1raltpPF0xquYGqhK/7jaS03rHYa7ulXED496bNzBKt/v57095e7ck92nBJzkw6rvVKjtmvnQN9ZVpXXFjbnKUrtecs1KdtbyCuPWftl4rP7V6ta/FIrfbWrHZQBqq0Axhuzt1ll5qsPWfRw1LMDk/TnjO1kzGT0Pr4Qqb1+wXS2skSULtZxfduvyk9hXQFuoUrgAAAAI5hAAQAAHAMAyAAAIBjGAABAAAcwwAIAADgGAZAAAAAx1ADU2CUj+qb6R/XD0QjWi7ZJeVKWo/kzGSrtW6KQK9WieF1avUPfp/MJdESLVit1UlkY9oK1dqb7KEWbXvjq7VcOpszE01Jm7KmBq0WJb7Hk3KHz9eOXf8YKWYVb+d+rGZmh+Zqj2NgtLbfI3P7pZzXqv1snhmdkXLqayMzK/f7QOl/lknbyoovH5X6fhEWXz+e+N6ovv94Pb1Szm9Ut+BkcQUQAADAMQyAAAAAjmEABAAAcAwDIAAAgGMYAAEAABzDAAgAAOAYBkAAAADH0ANYYPzudMpsf0fKhSq07j7vcGfOTKC+TtqW2j1oMa2LTe3rCpQnpFwoqT0X6jEOfuJCKaf2+wVKteNivWkpFhJ6AJWMmdnYHSEpd3hqQMqp+iq0Xry6ebukXPOr50u5szdox6XzUq0rbvHVG6Xcj//9c1Iuulsr5SvflftxJLYelLY1UKW9zrJR7VzxxB5Nb2+TlFPfp9SeTxP3q1K/F6jdsX7uE8WBK4AAAACOYQAEAABwDAMgAACAYxgAAQAAHMMACAAA4BgGQAAAAMdQAzNC1I/q5+tj+JmOw/5tTK1F8fmYqNsLqLUyYh2LWqFj7x3S9qttTX4cFotKsXAqd0VJ54VatUdpW7+Uy0S0epL2WVrNiuoPb0+WciVpraZm3zVabs8n10m5/7N/rpSreUmK2ej93VIumNaeN0V4X6uUG5hYJeWCLdp71ID4fhFO92nb27NXyvlZx3I6UPGCj+IKIAAAgGMYAAEAABzDAAgAAOAYBkAAAADHMAACAAA4hgEQAADAMdTAjBA+gv9x6jEJ146XcgMHtZoVeb+T67X9ijUR6uPwenLXsZiZeb1irlqrqQkmj+bMxHdrtS3vXTdayo3doZXejGoKSbn0pdpzO2vSPim3Y90FUq7kiPaz9NyX/4+UU2t0ytpSUi4gVhAp1ULZw53StuTXmZTyX1aseSr0Ci++t+BkcQUQAADAMQyAAAAAjmEABAAAcAwDIAAAgGMYAAEAABzDAAgAAOAYBkAAAADH0AOIYVE6sfzupVL7/fzu61L7/VR+Pw6V2gGnNPKpbxjn/t+klBuoSki58re1XryuXXEp15I6R8rFKrWewvju3B2KZmbhfa1STj1XAtOmSLlMx2Epp3RfZqdr+wz+9ztSTu0VVIUqtN5L9Zj4/XoECgVXAAEAABzDAAgAAOAYBkAAAADHMAACAAA4hgEQAADAMQyAAAAAjqEGBsPid8WLn/K1Nr/rZ9RcIf/05vX0SrlQp1YXEyjX6mISL2vVHj0XT5ByY/anpVwwrdXUZKu1ipKgmPN2vCvlVNlDLTkzQSFjZhYojUk5tY5F5ffropDf88z8f/+BOwr5ewgAAABOg6IYADs6OmzhwoUWj8etvLzcFi9ebEeOHJHu63mefe5zn7NAIGBPPfXU6V0oAABAASiKAXDhwoX21ltv2fPPP2/PPPOMvfjii3b77bdL9129erUFAoHTvEIAAIDCccb/DeD27dtt/fr19uqrr9qsWbPMzOyBBx6wa6+91latWmW1tbXHve8bb7xhP/zhD+21116z8ePHj9SSAQAA8uqMvwLY2Nho5eXlg8OfmVlDQ4MFg0F75ZVXjnu/o0eP2s0332xr1qyxmpoaaV/pdNpSqdSQLwAAgDPNGT8ANjc3W1VV1ZDbwuGwVVRUWHNz83Hv9/Wvf90uv/xyu+GGG+R9rVy50hKJxOBXXV3dSa8bAAAgXwp2AFy2bJkFAoETfu3YseOktv3000/bxo0bbfXq1cO63/Llyy2ZTA5+NTU1ndT+AQAA8qlg/wbwG9/4hn3pS186YWby5MlWU1Njra2tQ24fGBiwjo6O4/5qd+PGjbZ7924rLy8fcvuNN95oV1xxhW3atOmY94tGoxaNRtWHAEfkq19L7gv0syfM58eq/gSq9gqqx0Q7ImZer7ZfVSCmdeNlD3f6ut9QhdYrqKxPXZv6nKnouzs21x4v/FOwA2BlZaVVVlbmzM2dO9c6Oztty5YtNnPmTDP7YMDLZrM2Z86cY95n2bJl9nd/93dDbrvkkkvsX/7lX+z6668/9cUDAAAUsIIdAFXTpk2za665xm677TZbu3at9ff325IlS+wLX/jC4CeADxw4YFdddZX98pe/tNmzZ1tNTc0xrw5OnDjRzjnnnJF+CAAAACOqYP8GcDgeffRRmzp1ql111VV27bXX2qc//Wl78MEHB////v5+27lzpx09ejSPqwQAACgMZ/wVQDOziooKe+yxx477/9fX15vneSfcRq7/HwAAoFgUxRVAAAAA6BgAAQAAHFMUvwIGcHyFXBPh99rUuhOV31UmqkCpVhejrk/NZToOS7l8KOTzGDgTcQUQAADAMQyAAAAAjmEABAAAcAwDIAAAgGMYAAEAABzDAAgAAOAYamAAFA2/a1vyVcdC5QmA040rgAAAAI5hAAQAAHAMAyAAAIBjGAABAAAcwwAIAADgGAZAAAAAxzAAAgAAOIYeQABFQ+7PK/CevWBpqZTLR19gIa8NgI4rgAAAAI5hAAQAAHAMAyAAAIBjGAABAAAcwwAIAADgGD4FfAo8zzMzswHrN/PyvBgARSPohaRc1us/zSv5uEJeG6AasA/Ozw+/j7uIAfAUdHV1mZnZS/ZsnlcCoKgUcoNKIa8NGKauri5LJBL5XkZeBDyXx99TlM1m7eDBg1ZWVmaBQCDfy8mLVCpldXV11tTUZPF4PN/LOWNw3E4Ox234OGYnh+N2cs6U4+Z5nnV1dVltba0Fg27+NRxXAE9BMBi0s88+O9/LKAjxeLygX+yFiuN2cjhuw8cxOzkct5NzJhw3V6/8fcjNsRcAAMBhDIAAAACOCd1zzz335HsROLOFQiH7zGc+Y+Ewf1EwHBy3k8NxGz6O2cnhuJ0cjtuZgQ+BAAAAOIZfAQMAADiGARAAAMAxDIAAAACOYQAEAABwDAMghq2jo8MWLlxo8XjcysvLbfHixXbkyBHpvp7n2ec+9zkLBAL21FNPnd6FFpDhHrOOjg6788477YILLrDS0lKbOHGiffWrX7VkMjmCqx55a9assfr6eovFYjZnzhzbvHnzCfO//vWvberUqRaLxeySSy6xZ591859lHM5xe+ihh+yKK66wsWPH2tixY62hoSHncS5Wwz3fPrRu3ToLBAI2f/7807vAAjXc49bZ2Wl33HGHjR8/3qLRqE2ZMsXZ12ohYQDEsC1cuNDeeuste/755+2ZZ56xF1980W6//XbpvqtXr3byn80b7jE7ePCgHTx40FatWmXbtm2zRx55xNavX2+LFy8ewVWPrMcff9yWLl1qK1assK1bt9r06dNt3rx51traesz8yy+/bDfddJMtXrzYXn/9dZs/f77Nnz/ftm3bNsIrz6/hHrdNmzbZTTfdZC+88II1NjZaXV2dXX311XbgwIERXnl+Dfe4fWjv3r32zW9+06644ooRWmlhGe5x6+vrs89+9rO2d+9ee+KJJ2znzp320EMP2YQJE0Z45fgYDxiGt99+2zMz79VXXx287Xe/+50XCAS8AwcOnPC+r7/+ujdhwgTv0KFDnpl5Tz755GlebWE4lWP25371q195kUjE6+/vPx3LzLvZs2d7d9xxx+B/ZzIZr7a21lu5cuUx83/zN3/jXXfddUNumzNnjvf3f//3p3WdhWa4x+2jBgYGvLKyMu8Xv/jF6VpiQTqZ4zYwMOBdfvnl3s9+9jPv1ltv9W644YYRWGlhGe5x++lPf+pNnjzZ6+vrG6klQsQVQAxLY2OjlZeX26xZswZva2hosGAwaK+88spx73f06FG7+eabbc2aNVZTUzMSSy0YJ3vMPiqZTFo8Hi/KctW+vj7bsmWLNTQ0DN4WDAatoaHBGhsbj3mfxsbGIXkzs3nz5h03X4xO5rh91NGjR62/v98qKipO1zILzsket+985ztWVVVV1FfiT+RkjtvTTz9tc+fOtTvuuMOqq6vt4osvtvvuu88ymcxILRvHUXzfSXBaNTc3W1VV1ZDbwuGwVVRUWHNz83Hv9/Wvf90uv/xyu+GGG073EgvOyR6zP9fe3m7f/e535V+1n2na29stk8lYdXX1kNurq6ttx44dx7xPc3PzMfPqMS0GJ3PcPuquu+6y2trajw3TxexkjttLL71kDz/8sL3xxhsjsMLCdDLHbc+ePbZx40ZbuHChPfvss7Zr1y77yle+Yv39/bZixYqRWDaOgyuAMDOzZcuWWSAQOOGX+g3lo55++mnbuHGjrV692t9F59npPGZ/LpVK2XXXXWcXXnih8S83wk/333+/rVu3zp588kmLxWL5Xk7B6urqsi9+8Yv20EMP2bhx4/K9nDNKNpu1qqoqe/DBB23mzJm2YMEC+9a3vmVr167N99KcxxVAmJnZN77xDfvSl750wszkyZOtpqbmY3/sOzAwYB0dHcf91e7GjRtt9+7dVl5ePuT2G2+80a644grbtGnTKaw8f07nMftQV1eXXXPNNVZWVmZPPvmklZSUnOqyC9K4ceMsFApZS0vLkNtbWlqOe4xqamqGlS9GJ3PcPrRq1Sq7//777T/+4z/s0ksvPZ3LLDjDPW67d++2vXv32vXXXz94WzabNbMPrubv3LnTzj333NO76AJwMufb+PHjraSkxEKh0OBt06ZNs+bmZuvr67NIJHJa14wTyPcfIeLM8uEHGl577bXB25577rkTfqDh0KFD3ptvvjnky8y8H//4x96ePXtGaul5czLHzPM8L5lMepdddpl35ZVXet3d3SOx1LyaPXu2t2TJksH/zmQy3oQJE074IZC/+qu/GnLb3LlznfwQyHCOm+d53ve//30vHo97jY2NI7HEgjSc49bT0/Ox97AbbrjB+8u//EvvzTff9NLp9EguPa+Ge74tX77cmzRpkpfJZAZvW716tTd+/PjTvlacGAMghu2aa67xPvGJT3ivvPKK99JLL3nnn3++d9NNNw3+//v37/cuuOAC75VXXjnuNsyhTwF73vCPWTKZ9ObMmeNdcskl3q5du7xDhw4Nfg0MDOTrYZxW69at86LRqPfII494b7/9tnf77bd75eXlXnNzs+d5nvfFL37RW7Zs2WD+97//vRcOh71Vq1Z527dv91asWOGVlJR4b775Zr4eQl4M97jdf//9XiQS8Z544okh51VXV1e+HkJeDPe4fZSrnwIe7nHbt2+fV1ZW5i1ZssTbuXOn98wzz3hVVVXe9773vXw9BPx/DIAYtvfff9+76aabvDFjxnjxeNxbtGjRkG8e7777rmdm3gsvvHDcbbg2AA73mL3wwguemR3z6913383PgxgBDzzwgDdx4kQvEol4s2fP9v7whz8M/n9XXnmld+uttw7J/+pXv/KmTJniRSIR76KLLvJ++9vfjvCKC8NwjtukSZOOeV6tWLFi5BeeZ8M93/6cqwOg5w3/uL388svenDlzvGg06k2ePNm79957i/YH2TNJwPM8b6R/7QwAAID84VPAAAAAjmEABAAAcAwDIAAAgGMYAAEAABzDAAgAAOAYBkAAAADHMAACAAA4hgEQAADAMQyAAAAAjmEABAAAcAwDIAAAgGMYAAEAABzDAAgAAOAYBkAAAADHMAACAAA4hgEQAADAMQyAAAAAjmEABAAAcAwDIAAAgGMYAAEAABzDAAgAAOAYBkAAAADHMAACAAA4hgEQAADAMQyAAAAAjmEABAAAcAwDIAAAgGMYAAEAABzDAAgAAOAYBkAAAADHMAACAAA45v8BO+xySN1Bj/oAAAAASUVORK5CYII=", "type": "image", "xaxis": "x3", "yaxis": "y3" } ], "layout": { "annotations": [ { "font": { "size": 16 }, "showarrow": false, "text": "step 0", "x": 0.14444444444444446, "xanchor": "center", "xref": "paper", "y": 1.0, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 16 }, "showarrow": false, "text": "step 12", "x": 0.5, "xanchor": "center", "xref": "paper", "y": 1.0, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 16 }, "showarrow": false, "text": "step 67", "x": 0.8555555555555556, "xanchor": "center", "xref": "paper", "y": 1.0, "yanchor": "bottom", "yref": "paper" } ], "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "xaxis": { "anchor": "y", "domain": [ 0.0, 0.2888888888888889 ] }, "xaxis2": { "anchor": "y2", "domain": [ 0.35555555555555557, 0.6444444444444445 ] }, "xaxis3": { "anchor": "y3", "domain": [ 0.7111111111111111, 1.0 ] }, "yaxis": { "anchor": "x", "domain": [ 0.0, 1.0 ] }, "yaxis2": { "anchor": "x2", "domain": [ 0.0, 1.0 ] }, "yaxis3": { "anchor": "x3", "domain": [ 0.0, 1.0 ] } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "from tensorflow.python.summary.summary_iterator import summary_iterator\n", "from io import BytesIO\n", "from plotly.subplots import make_subplots\n", "import base64\n", "from pathlib import Path\n", "\n", "records_files = list(\n", " Path(parameters.main_path).rglob(\"*tfevents*\")\n", ")\n", "\n", "prefix = \"data:image/png;base64,\"\n", "\n", "visited_tags = {}\n", "image_steps = [0, 68, 399]\n", "images_at_steps = {}\n", "\n", "for records_file in records_files:\n", " visited_tags[records_file] = set()\n", " for i, summary in enumerate(summary_iterator(str(records_file))):\n", " for j, v in enumerate(summary.summary.value):\n", " visited_tags[records_file].add(v.tag)\n", " if v.tag == \"Latent Output/Latent Density\":\n", " b = tf.make_ndarray(v.tensor)[-1]\n", " stream = BytesIO(b)\n", " base64_string = prefix + base64.b64encode(stream.getvalue()).decode(\"utf-8\")\n", " images_at_steps[summary.step] = base64_string\n", "\n", "fig = make_subplots(cols=3, rows=1, subplot_titles=[\"step 0\", \"step 12\", \"step 67\"])\n", "fig.add_trace(\n", " go.Image(source=images_at_steps[0]), col=1, row=1,\n", ")\n", "fig.add_trace(\n", " go.Image(source=images_at_steps[12]), col=2, row=1,\n", ")\n", "fig.add_trace(\n", " go.Image(source=images_at_steps[67]), col=3, row=1,\n", ")" ] }, { "cell_type": "markdown", "id": "a9899200", "metadata": {}, "source": [ "## Conclusion\n", "\n", "Using the closure method, you can easily add new loss functions to EncoderMap." ] }, { "cell_type": "markdown", "id": "715a00d1-9972-412f-b272-ac87ebf9f036", "metadata": {}, "source": [ "## References\n", "\n", "\n", "\n", "```\n", "@article{ceriotti2011simplifying,\n", " title={Simplifying the representation of complex free-energy landscapes using sketch-map},\n", " author={Ceriotti, Michele and Tribello, Gareth A and Parrinello, Michele},\n", " journal={Proceedings of the National Academy of Sciences},\n", " volume={108},\n", " number={32},\n", " pages={13023--13028},\n", " year={2011},\n", " publisher={National Acad Sciences}\n", "}\n", "```\n", "\n", "\n", "\n", "```\n", "@article{sawade2023combining,\n", " title={Combining molecular dynamics simulations and scoring method to computationally model ubiquitylated linker histones in chromatosomes},\n", " author={Sawade, Kevin and Marx, Andreas and Peter, Christine and Kukharenko, Oleksandra},\n", " journal={PLoS Computational Biology},\n", " volume={19},\n", " number={8},\n", " pages={e1010531},\n", " year={2023},\n", " publisher={Public Library of Science San Francisco, CA USA}\n", "}\n", "```\n", "\n", "\n", "```\n", "@article{franke2023visualizing,\n", " title={Visualizing the residue interaction landscape of proteins by temporal network embedding},\n", " author={Franke, Leon and Peter, Christine},\n", " journal={Journal of Chemical Theory and Computation},\n", " volume={19},\n", " number={10},\n", " pages={2985--2995},\n", " year={2023},\n", " publisher={ACS Publications}\n", "}\n", "```" ] } ], "metadata": { "emap": "run", "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.12" }, "widgets": { "application/vnd.jupyter.widget-state+json": { "state": { "2127074768384cd1993bb2a7e950817d": { "model_module": "ipycanvas", "model_module_version": "^0.13", "model_name": "CanvasManagerModel", "state": { "_model_module": "ipycanvas", "_model_module_version": "^0.13", "_model_name": "CanvasManagerModel", "_view_count": null, "_view_module": null, "_view_module_version": "", "_view_name": null } }, "579988b138f44dca979ab805ecf05caf": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "ba5199ce29964a4b91ab30fb0dc75ef2": { "model_module": "nglview-js-widgets", "model_module_version": "3.0.8", "model_name": "ColormakerRegistryModel", "state": { "_dom_classes": [], "_model_module": "nglview-js-widgets", "_model_module_version": "3.0.8", "_model_name": "ColormakerRegistryModel", "_msg_ar": [], "_msg_q": [], "_ready": false, "_view_count": null, "_view_module": "nglview-js-widgets", "_view_module_version": "3.0.8", "_view_name": "ColormakerRegistryView", "layout": "IPY_MODEL_579988b138f44dca979ab805ecf05caf" } } }, "version_major": 2, "version_minor": 0 } } }, "nbformat": 4, "nbformat_minor": 5 }