{ "cells": [ { "cell_type": "markdown", "id": "1ae9ce3c", "metadata": {}, "source": [ "# Phonons and Born effective charges\n", "\n", "This lesson discusses how to compute phonon band structures, DOS\n", "and Born effective charges with Abinit and AbiPy.\n", "The discussion closely follows the [second lesson](https://docs.abinit.org/tutorial/rf2/index.html)\n", "on DFPT available on the Abinit web site.\n", "More specifically, we will discuss how to\n", "\n", " * Perform a convergence study for the phonon frequencies at $\\Gamma$ as function of `ecut`\n", " * Compute the full phonon band structure of `AlAs` with the inclusion of LO-TO splitting\n", " * Obtain thermodynamic properties within the harmonic approximation\n", "\n", "We assume that you have read the references mentioned in the\n", "[first Abinit lesson](https://docs.abinit.org/tutorial/rf1/index.html) on DFPT.\n", "You might find additional material, related to the present section, in the following references:\n", "\n", "* [Dynamical matrices, Born effective charges, dielectric permittivity tensors, and interatomic force constants from density-functional perturbation theory](https://journals.aps.org/prb/abstract/10.1103/PhysRevB.55.10355)\n", "* [Phonons and related crystal properties from density-functional perturbation theory](https://journals.aps.org/rmp/abstract/10.1103/RevModPhys.73.515)\n", "\n", "If you are already familiar with python and AbiPy-Abinit are already installed and configured,\n", "you may want to use directly the command line interface.\n", "See the README.md file in the directory of this lesson explaining how to analyze the data from the shell\n", "using ipython and matplotlib.\n", "\n", "```{include} ../snippets/plotly_matplotlib_note.md\n", "```\n", "\n", "## Phonon frequencies at $\\Gamma$ as function of ecut\n", "\n", "Before starting, we need to import the python modules and the functions we will need in the notebook:" ] }, { "cell_type": "code", "execution_count": 1, "id": "76d1d536", "metadata": {}, "outputs": [], "source": [ "import numpy as np\n", "import warnings\n", "\n", "warnings.filterwarnings(\"ignore\") # to get rid of deprecation warnings\n", "\n", "from abipy import abilab\n", "abilab.enable_notebook() # This line tells AbiPy we are running inside a notebook\n", "import abipy.flowtk as flowtk\n", "\n", "# This line configures matplotlib to show figures embedded in the notebook.\n", "# Replace `inline` with `notebook` in classic notebook\n", "%matplotlib inline\n", "\n", "# Option available in jupyterlab. See https://github.com/matplotlib/jupyter-matplotlib\n", "#%matplotlib widget" ] }, { "cell_type": "markdown", "id": "3ee52c8a", "metadata": {}, "source": [ "and an useful function from the `lesson_dfpt` module that will be used to generate our DFPT flows:" ] }, { "cell_type": "code", "execution_count": 2, "id": "48882f10", "metadata": {}, "outputs": [ { "data": { "text/html": [ "\n", "\n", "\n", "\n", " \n", " \n", " \n", "\n", "\n", "

\n", "\n", "
def make_scf_input(ecut=2, ngkpt=(4, 4, 4)):\n",
       "    """\n",
       "    This function constructs an `AbinitInput` to perform a GS-SCF calculation in crystalline AlAs.\n",
       "\n",
       "    Args:\n",
       "        ecut: cutoff energy in Ha.\n",
       "        ngkpt: 3 integers specifying the k-mesh for the electrons.\n",
       "\n",
       "    Return:\n",
       "        `AbinitInput` object\n",
       "    """\n",
       "    # Initialize the AlAs structure from an internal database. Use the pseudos shipped with AbiPy.\n",
       "    gs_inp = abilab.AbinitInput(structure=abidata.structure_from_ucell("AlAs"),\n",
       "                                pseudos=abidata.pseudos("13al.981214.fhi", "33as.pspnc"))\n",
       "\n",
       "    # Set the value of the Abinit variables needed for GS runs.\n",
       "    gs_inp.set_vars(\n",
       "        nband=4,\n",
       "        ecut=ecut,\n",
       "        ngkpt=ngkpt,\n",
       "        nshiftk=4,\n",
       "        shiftk=[0.0, 0.0, 0.5,   # This gives the usual fcc Monkhorst-Pack grid\n",
       "                0.0, 0.5, 0.0,\n",
       "                0.5, 0.0, 0.0,\n",
       "                0.5, 0.5, 0.5],\n",
       "        ixc=1,\n",
       "        nstep=25,\n",
       "        diemac=9.0,\n",
       "        tolvrs=1.0e-10,\n",
       "        #iomode=3,\n",
       "    )\n",
       "\n",
       "    return gs_inp\n",
       "
\n", "\n", "\n" ], "text/plain": [ "" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from lesson_dfpt import make_scf_input\n", "abilab.print_source(make_scf_input)" ] }, { "cell_type": "markdown", "id": "faff8ae4", "metadata": {}, "source": [ "The function makes some assumptions for important parameters such as the crystalline structure and the pseudos.\n", "This is done on purpose to keep the code as simple as possible.\n", "It should not be so difficult to generalize the implementation to take into account other cases.\n", "Let's start to play with our new function:" ] }, { "cell_type": "code", "execution_count": 3, "id": "fe69a285", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "##############################################
#### SECTION: basic
##############################################
nband 4
ecut 2
ngkpt 4 4 4
nshiftk 4
shiftk
0.0 0.0 0.5
0.0 0.5 0.0
0.5 0.0 0.0
0.5 0.5 0.5
ixc 1
nstep 25
tolvrs 1e-10
##############################################
#### SECTION: files
##############################################
indata_prefix indata/in
tmpdata_prefix tmpdata/tmp
outdata_prefix outdata/out
pp_dirpath /usr/share/miniconda/envs/abipy/lib/python3.12/site-packages/abipy/data/pseudos
pseudos 13al.981214.fhi 33as.pspnc
##############################################
#### SECTION: gstate
##############################################
diemac 9.0
##############################################
#### STRUCTURE
##############################################
natom 2
ntypat 2
typat 1 2
znucl 13 33
xred
0.0000000000 0.0000000000 0.0000000000
0.2500000000 0.2500000000 0.2500000000
acell 1.0 1.0 1.0
rprim
0.0000000000 5.3050000000 5.3050000000
5.3050000000 0.0000000000 5.3050000000
5.3050000000 5.3050000000 0.0000000000\n", "
" ], "text/plain": [ "" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "scf_input = make_scf_input()\n", "scf_input" ] }, { "cell_type": "code", "execution_count": 4, "id": "c2aaa621", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Full Formula (Al1 As1)\n", "Reduced Formula: AlAs\n", "abc : 3.970101 3.970101 3.970101\n", "angles: 60.000000 60.000000 60.000000\n", "pbc : True True True\n", "Sites (2)\n", " # SP a b c\n", "--- ---- ---- ---- ----\n", " 0 Al 0 0 0\n", " 1 As 0.25 0.25 0.25\n" ] } ], "source": [ "print(scf_input.structure)" ] }, { "cell_type": "code", "execution_count": 5, "id": "f26ee8b5", "metadata": {}, "outputs": [ { "ename": "AttributeError", "evalue": "'Arrow3D' object has no attribute 'do_3d_projection'", "output_type": "error", "traceback": [ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", "\u001b[0;31mAttributeError\u001b[0m Traceback (most recent call last)", "File \u001b[0;32m/usr/share/miniconda/envs/abipy/lib/python3.12/site-packages/IPython/core/formatters.py:343\u001b[0m, in \u001b[0;36mBaseFormatter.__call__\u001b[0;34m(self, obj)\u001b[0m\n\u001b[1;32m 341\u001b[0m \u001b[38;5;28;01mpass\u001b[39;00m\n\u001b[1;32m 342\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[0;32m--> 343\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mprinter\u001b[49m\u001b[43m(\u001b[49m\u001b[43mobj\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 344\u001b[0m \u001b[38;5;66;03m# Finally look for special method names\u001b[39;00m\n\u001b[1;32m 345\u001b[0m method \u001b[38;5;241m=\u001b[39m get_real_method(obj, \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mprint_method)\n", "File \u001b[0;32m/usr/share/miniconda/envs/abipy/lib/python3.12/site-packages/IPython/core/pylabtools.py:170\u001b[0m, in \u001b[0;36mprint_figure\u001b[0;34m(fig, fmt, bbox_inches, base64, **kwargs)\u001b[0m\n\u001b[1;32m 167\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mmatplotlib\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mbackend_bases\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m FigureCanvasBase\n\u001b[1;32m 168\u001b[0m FigureCanvasBase(fig)\n\u001b[0;32m--> 170\u001b[0m \u001b[43mfig\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mcanvas\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mprint_figure\u001b[49m\u001b[43m(\u001b[49m\u001b[43mbytes_io\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkw\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 171\u001b[0m data \u001b[38;5;241m=\u001b[39m bytes_io\u001b[38;5;241m.\u001b[39mgetvalue()\n\u001b[1;32m 172\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m fmt \u001b[38;5;241m==\u001b[39m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124msvg\u001b[39m\u001b[38;5;124m'\u001b[39m:\n", "File \u001b[0;32m/usr/share/miniconda/envs/abipy/lib/python3.12/site-packages/matplotlib/backend_bases.py:2175\u001b[0m, in \u001b[0;36mFigureCanvasBase.print_figure\u001b[0;34m(self, filename, dpi, facecolor, edgecolor, orientation, format, bbox_inches, pad_inches, bbox_extra_artists, backend, **kwargs)\u001b[0m\n\u001b[1;32m 2172\u001b[0m \u001b[38;5;66;03m# we do this instead of `self.figure.draw_without_rendering`\u001b[39;00m\n\u001b[1;32m 2173\u001b[0m \u001b[38;5;66;03m# so that we can inject the orientation\u001b[39;00m\n\u001b[1;32m 2174\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m \u001b[38;5;28mgetattr\u001b[39m(renderer, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m_draw_disabled\u001b[39m\u001b[38;5;124m\"\u001b[39m, nullcontext)():\n\u001b[0;32m-> 2175\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mfigure\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mdraw\u001b[49m\u001b[43m(\u001b[49m\u001b[43mrenderer\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 2176\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m bbox_inches:\n\u001b[1;32m 2177\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m bbox_inches \u001b[38;5;241m==\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mtight\u001b[39m\u001b[38;5;124m\"\u001b[39m:\n", "File \u001b[0;32m/usr/share/miniconda/envs/abipy/lib/python3.12/site-packages/matplotlib/artist.py:95\u001b[0m, in \u001b[0;36m_finalize_rasterization..draw_wrapper\u001b[0;34m(artist, renderer, *args, **kwargs)\u001b[0m\n\u001b[1;32m 93\u001b[0m \u001b[38;5;129m@wraps\u001b[39m(draw)\n\u001b[1;32m 94\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mdraw_wrapper\u001b[39m(artist, renderer, \u001b[38;5;241m*\u001b[39margs, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs):\n\u001b[0;32m---> 95\u001b[0m result \u001b[38;5;241m=\u001b[39m \u001b[43mdraw\u001b[49m\u001b[43m(\u001b[49m\u001b[43martist\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mrenderer\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 96\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m renderer\u001b[38;5;241m.\u001b[39m_rasterizing:\n\u001b[1;32m 97\u001b[0m renderer\u001b[38;5;241m.\u001b[39mstop_rasterizing()\n", "File \u001b[0;32m/usr/share/miniconda/envs/abipy/lib/python3.12/site-packages/matplotlib/artist.py:72\u001b[0m, in \u001b[0;36mallow_rasterization..draw_wrapper\u001b[0;34m(artist, renderer)\u001b[0m\n\u001b[1;32m 69\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m artist\u001b[38;5;241m.\u001b[39mget_agg_filter() \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 70\u001b[0m renderer\u001b[38;5;241m.\u001b[39mstart_filter()\n\u001b[0;32m---> 72\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mdraw\u001b[49m\u001b[43m(\u001b[49m\u001b[43martist\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mrenderer\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 73\u001b[0m \u001b[38;5;28;01mfinally\u001b[39;00m:\n\u001b[1;32m 74\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m artist\u001b[38;5;241m.\u001b[39mget_agg_filter() \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n", "File \u001b[0;32m/usr/share/miniconda/envs/abipy/lib/python3.12/site-packages/matplotlib/figure.py:3162\u001b[0m, in \u001b[0;36mFigure.draw\u001b[0;34m(self, renderer)\u001b[0m\n\u001b[1;32m 3159\u001b[0m \u001b[38;5;66;03m# ValueError can occur when resizing a window.\u001b[39;00m\n\u001b[1;32m 3161\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mpatch\u001b[38;5;241m.\u001b[39mdraw(renderer)\n\u001b[0;32m-> 3162\u001b[0m \u001b[43mmimage\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_draw_list_compositing_images\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 3163\u001b[0m \u001b[43m \u001b[49m\u001b[43mrenderer\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43martists\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msuppressComposite\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 3165\u001b[0m renderer\u001b[38;5;241m.\u001b[39mclose_group(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mfigure\u001b[39m\u001b[38;5;124m'\u001b[39m)\n\u001b[1;32m 3166\u001b[0m \u001b[38;5;28;01mfinally\u001b[39;00m:\n", "File \u001b[0;32m/usr/share/miniconda/envs/abipy/lib/python3.12/site-packages/matplotlib/image.py:132\u001b[0m, in \u001b[0;36m_draw_list_compositing_images\u001b[0;34m(renderer, parent, artists, suppress_composite)\u001b[0m\n\u001b[1;32m 130\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m not_composite \u001b[38;5;129;01mor\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m has_images:\n\u001b[1;32m 131\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m a \u001b[38;5;129;01min\u001b[39;00m artists:\n\u001b[0;32m--> 132\u001b[0m \u001b[43ma\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mdraw\u001b[49m\u001b[43m(\u001b[49m\u001b[43mrenderer\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 133\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 134\u001b[0m \u001b[38;5;66;03m# Composite any adjacent images together\u001b[39;00m\n\u001b[1;32m 135\u001b[0m image_group \u001b[38;5;241m=\u001b[39m []\n", "File \u001b[0;32m/usr/share/miniconda/envs/abipy/lib/python3.12/site-packages/matplotlib/artist.py:72\u001b[0m, in \u001b[0;36mallow_rasterization..draw_wrapper\u001b[0;34m(artist, renderer)\u001b[0m\n\u001b[1;32m 69\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m artist\u001b[38;5;241m.\u001b[39mget_agg_filter() \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 70\u001b[0m renderer\u001b[38;5;241m.\u001b[39mstart_filter()\n\u001b[0;32m---> 72\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mdraw\u001b[49m\u001b[43m(\u001b[49m\u001b[43martist\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mrenderer\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 73\u001b[0m \u001b[38;5;28;01mfinally\u001b[39;00m:\n\u001b[1;32m 74\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m artist\u001b[38;5;241m.\u001b[39mget_agg_filter() \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n", "File \u001b[0;32m/usr/share/miniconda/envs/abipy/lib/python3.12/site-packages/mpl_toolkits/mplot3d/axes3d.py:441\u001b[0m, in \u001b[0;36mAxes3D.draw\u001b[0;34m(self, renderer)\u001b[0m\n\u001b[1;32m 437\u001b[0m zorder_offset \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mmax\u001b[39m(axis\u001b[38;5;241m.\u001b[39mget_zorder()\n\u001b[1;32m 438\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m axis \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_axis_map\u001b[38;5;241m.\u001b[39mvalues()) \u001b[38;5;241m+\u001b[39m \u001b[38;5;241m1\u001b[39m\n\u001b[1;32m 439\u001b[0m collection_zorder \u001b[38;5;241m=\u001b[39m patch_zorder \u001b[38;5;241m=\u001b[39m zorder_offset\n\u001b[0;32m--> 441\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m artist \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28;43msorted\u001b[39;49m\u001b[43m(\u001b[49m\u001b[43mcollections_and_patches\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 442\u001b[0m \u001b[43m \u001b[49m\u001b[43mkey\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mlambda\u001b[39;49;00m\u001b[43m \u001b[49m\u001b[43martist\u001b[49m\u001b[43m:\u001b[49m\u001b[43m \u001b[49m\u001b[43martist\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mdo_3d_projection\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 443\u001b[0m \u001b[43m \u001b[49m\u001b[43mreverse\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mTrue\u001b[39;49;00m\u001b[43m)\u001b[49m:\n\u001b[1;32m 444\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(artist, mcoll\u001b[38;5;241m.\u001b[39mCollection):\n\u001b[1;32m 445\u001b[0m artist\u001b[38;5;241m.\u001b[39mzorder \u001b[38;5;241m=\u001b[39m collection_zorder\n", "File \u001b[0;32m/usr/share/miniconda/envs/abipy/lib/python3.12/site-packages/mpl_toolkits/mplot3d/axes3d.py:442\u001b[0m, in \u001b[0;36mAxes3D.draw..\u001b[0;34m(artist)\u001b[0m\n\u001b[1;32m 437\u001b[0m zorder_offset \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mmax\u001b[39m(axis\u001b[38;5;241m.\u001b[39mget_zorder()\n\u001b[1;32m 438\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m axis \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_axis_map\u001b[38;5;241m.\u001b[39mvalues()) \u001b[38;5;241m+\u001b[39m \u001b[38;5;241m1\u001b[39m\n\u001b[1;32m 439\u001b[0m collection_zorder \u001b[38;5;241m=\u001b[39m patch_zorder \u001b[38;5;241m=\u001b[39m zorder_offset\n\u001b[1;32m 441\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m artist \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28msorted\u001b[39m(collections_and_patches,\n\u001b[0;32m--> 442\u001b[0m key\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mlambda\u001b[39;00m artist: \u001b[43martist\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mdo_3d_projection\u001b[49m(),\n\u001b[1;32m 443\u001b[0m reverse\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m):\n\u001b[1;32m 444\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(artist, mcoll\u001b[38;5;241m.\u001b[39mCollection):\n\u001b[1;32m 445\u001b[0m artist\u001b[38;5;241m.\u001b[39mzorder \u001b[38;5;241m=\u001b[39m collection_zorder\n", "\u001b[0;31mAttributeError\u001b[0m: 'Arrow3D' object has no attribute 'do_3d_projection'" ] }, { "data": { "text/plain": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "scf_input.structure.plot();" ] }, { "cell_type": "markdown", "id": "2d477bcf", "metadata": {}, "source": [ "We are using the same pseudopotentials than the official tutorial.\n", "Note that the xc functional is LDA in both pseudos but with a different parametrization.\n", "This is the reason why we are specifying {{ixc}} in the input file.\n", "This is not needed if you are using pseudos generated with the same {{ixc}}." ] }, { "cell_type": "code", "execution_count": 6, "id": "15ae5b31", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n", " summary: Aluminum, fhi98PP : Hamann-type, LDA CA PerdewWang, l=2 local\n", " number of valence electrons: 3.0\n", " maximum angular momentum: d\n", " angular momentum for local part: d\n", " XC correlation: PW\n", " supports spin-orbit: False\n", " radius for non-linear core correction: 0.0\n", " hint for low accuracy: ecut: 0.0, pawecutdg: 0.0\n", " hint for normal accuracy: ecut: 0.0, pawecutdg: 0.0\n", " hint for high accuracy: ecut: 0.0, pawecutdg: 0.0 \n", "\n", "\n", " summary: Troullier-Martins psp for element As Thu Oct 27 17:37:14 EDT 1994\n", " number of valence electrons: 5.0\n", " maximum angular momentum: p\n", " angular momentum for local part: p\n", " XC correlation: LDA_XC_TETER93\n", " supports spin-orbit: False\n", " radius for non-linear core correction: 2.0573171556401\n", " hint for low accuracy: ecut: 0.0, pawecutdg: 0.0\n", " hint for normal accuracy: ecut: 0.0, pawecutdg: 0.0\n", " hint for high accuracy: ecut: 0.0, pawecutdg: 0.0 \n", "\n" ] } ], "source": [ "for pseudo in scf_input.pseudos:\n", " print(pseudo, \"\\n\")" ] }, { "cell_type": "markdown", "id": "c98d5729", "metadata": {}, "source": [ "As you can see, we essentially have a standard input to perform a GS calculation.\n", "This object will represent the **building block** for our DFPT calculation with AbiPy.\n", "\n", "It this is not your first time you use the DFPT part of Abinit, you already know that phonon calculations\n", "require an initial GS run to produce the `WFK` file\n", "followed by a DFPT run that reads the `WFK` file and solves the Sternheimer equations for $N_{\\text{irred}}(q)$\n", "atomic perturbations where $N_{\\text{irred}}$ is the number of independent atomic displacements\n", "(assuming $q$ belongs to the k-mesh).\n", "\n", "If you try to do a convergence study wrt {{ecut}} **without multi-datasets**, you will likely start\n", "from an initial GS input file with a given value of `ecut`, use it as a template to\n", "generate the DFPT input files, create symbolic\n", "links to the `WFK` file produced in the first GS step and then instruct Abinit to read this file with {{irdwfk}}.\n", "Once you have a set of input files that work for a particular {{ecut}}, one can simply replicate the set of\n", "directories and files and use a script to change the value of {{ecut}} in the input files.\n", "Then, of course, one has to run the calculations manually, collect the results and produce nice plots to understand\n", "what is happening.\n", "\n", "This approach is obviously boring and error-prone if you are a human being but it is easy to implement in an algorithm\n", "and machines do not complain if they have a lot of repetitive work to do!\n", "There are also several **technical advantages** in using this **task-based approach vs multi-datasets**\n", "but we discuss this point in more details afterwards.\n", "\n", "If the machine could speak, it will tell you: give me an object that represents an input for GS calculations,\n", "give me the list of **q**-points you want to compute as well as the parameters that must be changed in the initial input\n", "and I will generate a `Flow` for DFPT calculations.\n", "This logic appears so frequently that we decided to encapsulate it in the `flowtk.phonon_conv_flow` factory function:" ] }, { "cell_type": "code", "execution_count": 7, "id": "c1e6aee2", "metadata": {}, "outputs": [ { "data": { "text/html": [ "\n", "\n", "\n", "\n", " \n", " \n", " \n", "\n", "\n", "

\n", "\n", "
def build_flow_alas_ecut_conv(options):\n",
       "    """\n",
       "    Build and return Flow for convergence study of phonon frequencies at Gamma as function of ecut.\n",
       "    """\n",
       "    scf_input = make_scf_input()\n",
       "    return flowtk.phonon_conv_flow("flow_alas_ecut_conv", scf_input, qpoints=(0, 0, 0),\n",
       "                                   params=["ecut", [4, 6, 8]])\n",
       "
\n", "\n", "\n" ], "text/plain": [ "" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from lesson_dfpt import build_flow_alas_ecut_conv\n", "abilab.print_source(build_flow_alas_ecut_conv)" ] }, { "cell_type": "markdown", "id": "80e898df", "metadata": {}, "source": [ "Let's call the function to build our flow:" ] }, { "cell_type": "code", "execution_count": 8, "id": "f5b8537a", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n", "Number of works: 6, total number of tasks: 9\n", "Number of tasks with a given class:\n", "\n", "Task Class Number\n", "------------ --------\n", "ScfTask 3\n", "PhononTask 6" ] } ], "source": [ "flow = build_flow_alas_ecut_conv(options=None)\n", "\n", "flow.show_info()" ] }, { "cell_type": "markdown", "id": "808e8491", "metadata": {}, "source": [ "and call the `get_graphviz` method to visualize the connection among the `Tasks`:" ] }, { "cell_type": "code", "execution_count": 9, "id": "097a4fe9", "metadata": {}, "outputs": [ { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "flow\n", "\n", "Flow, node_id=60, workdir=flow_alas_ecut_conv\n", "\n", "clusterw0\n", "\n", "Work (w0)\n", "\n", "\n", "clusterw1\n", "\n", "PhononWork (w1)\n", "\n", "\n", "clusterw2\n", "\n", "Work (w2)\n", "\n", "\n", "clusterw3\n", "\n", "PhononWork (w3)\n", "\n", "\n", "clusterw4\n", "\n", "Work (w4)\n", "\n", "\n", "clusterw5\n", "\n", "PhononWork (w5)\n", "\n", "\n", "\n", "w0_t0\n", "\n", "w0_t0\n", "ScfTask\n", "\n", "\n", "\n", "w1_t0\n", "\n", "w1_t0\n", "PhononTask\n", "\n", "\n", "\n", "w0_t0->w1_t0\n", "\n", "\n", "WFK\n", "\n", "\n", "\n", "w1_t1\n", "\n", "w1_t1\n", "PhononTask\n", "\n", "\n", "\n", "w0_t0->w1_t1\n", "\n", "\n", "WFK\n", "\n", "\n", "\n", "w2_t0\n", "\n", "w2_t0\n", "ScfTask\n", "\n", "\n", "\n", "w3_t0\n", "\n", "w3_t0\n", "PhononTask\n", "\n", "\n", "\n", "w2_t0->w3_t0\n", "\n", "\n", "WFK\n", "\n", "\n", "\n", "w3_t1\n", "\n", "w3_t1\n", "PhononTask\n", "\n", "\n", "\n", "w2_t0->w3_t1\n", "\n", "\n", "WFK\n", "\n", "\n", "\n", "w4_t0\n", "\n", "w4_t0\n", "ScfTask\n", "\n", "\n", "\n", "w5_t0\n", "\n", "w5_t0\n", "PhononTask\n", "\n", "\n", "\n", "w4_t0->w5_t0\n", "\n", "\n", "WFK\n", "\n", "\n", "\n", "w5_t1\n", "\n", "w5_t1\n", "PhononTask\n", "\n", "\n", "\n", "w4_t0->w5_t1\n", "\n", "\n", "WFK\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "execution_count": 9, "metadata": {}, "output_type": "execute_result" } ], "source": [ "flow.get_graphviz()" ] }, { "cell_type": "code", "execution_count": 10, "id": "65d8ee79", "metadata": {}, "outputs": [], "source": [ "# matplotlib version based on networkx\n", "#flow.plot_networkx(with_edge_labels=True);" ] }, { "cell_type": "markdown", "id": "3b346e5c", "metadata": {}, "source": [ "The flow contains three independent groups of tasks, one group per each value of {{ecut}} specified in `params`." ] }, { "cell_type": "code", "execution_count": 11, "id": "40babc26", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "w0_t0 uses ecut: 4\n", "w1_t0 uses ecut: 4\n", "w1_t1 uses ecut: 4\n", "w2_t0 uses ecut: 6\n", "w3_t0 uses ecut: 6\n", "w3_t1 uses ecut: 6\n", "w4_t0 uses ecut: 8\n", "w5_t0 uses ecut: 8\n", "w5_t1 uses ecut: 8\n" ] } ], "source": [ "for work in flow:\n", " for task in work:\n", " print(task.pos_str, \"uses ecut:\", task.input[\"ecut\"])" ] }, { "cell_type": "code", "execution_count": 12, "id": "30fcb05a", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
ecutclass
w0_t04ScfTask
w1_t04PhononTask
w1_t14PhononTask
w2_t06ScfTask
w3_t06PhononTask
w3_t16PhononTask
w4_t08ScfTask
w5_t08PhononTask
w5_t18PhononTask
\n", "
" ], "text/plain": [ " ecut class\n", "w0_t0 4 ScfTask\n", "w1_t0 4 PhononTask\n", "w1_t1 4 PhononTask\n", "w2_t0 6 ScfTask\n", "w3_t0 6 PhononTask\n", "w3_t1 6 PhononTask\n", "w4_t0 8 ScfTask\n", "w5_t0 8 PhononTask\n", "w5_t1 8 PhononTask" ] }, "execution_count": 12, "metadata": {}, "output_type": "execute_result" } ], "source": [ "flow.get_vars_dataframe(\"ecut\")" ] }, { "cell_type": "markdown", "id": "592fcdd2", "metadata": {}, "source": [ "Each group represents a `Workflow` and consists of one `ScfTask`(red circle) that solves\n", "the `KS` equations self-consistently producing a `WFK` file that will be used\n", "by the two children (`PhononTasks` - blue circles)\n", "to compute the first-order change of the wavefunctions due to one of the *irreducible* atomic perturbations.\n", "\n", "Note that `phonon_conv_flow` invokes Abinit under the hood to get the list of irreducible perturbations\n", "and uses this information to build the flow.\n", "This explains why we have two `PhononTasks` per **q**-point instead of the total number of phonon modes that\n", "equals $3*N_{atom}=6$.\n", "\n", "Perhaps a table with the values of the input variables associated to the DFPT perturbation will help.\n", "`None` means that the variable is not defined in that particular input." ] }, { "cell_type": "code", "execution_count": 13, "id": "c931e3cd", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
rfphonrfatpolrfdirqptkptoptclass
w0_t0NoneNoneNoneNoneNoneScfTask
w1_t01[1, 1][1, 0, 0][0.0, 0.0, 0.0]2PhononTask
w1_t11[2, 2][1, 0, 0][0.0, 0.0, 0.0]2PhononTask
w2_t0NoneNoneNoneNoneNoneScfTask
w3_t01[1, 1][1, 0, 0][0.0, 0.0, 0.0]2PhononTask
w3_t11[2, 2][1, 0, 0][0.0, 0.0, 0.0]2PhononTask
w4_t0NoneNoneNoneNoneNoneScfTask
w5_t01[1, 1][1, 0, 0][0.0, 0.0, 0.0]2PhononTask
w5_t11[2, 2][1, 0, 0][0.0, 0.0, 0.0]2PhononTask
\n", "
" ], "text/plain": [ " rfphon rfatpol rfdir qpt kptopt class\n", "w0_t0 None None None None None ScfTask\n", "w1_t0 1 [1, 1] [1, 0, 0] [0.0, 0.0, 0.0] 2 PhononTask\n", "w1_t1 1 [2, 2] [1, 0, 0] [0.0, 0.0, 0.0] 2 PhononTask\n", "w2_t0 None None None None None ScfTask\n", "w3_t0 1 [1, 1] [1, 0, 0] [0.0, 0.0, 0.0] 2 PhononTask\n", "w3_t1 1 [2, 2] [1, 0, 0] [0.0, 0.0, 0.0] 2 PhononTask\n", "w4_t0 None None None None None ScfTask\n", "w5_t0 1 [1, 1] [1, 0, 0] [0.0, 0.0, 0.0] 2 PhononTask\n", "w5_t1 1 [2, 2] [1, 0, 0] [0.0, 0.0, 0.0] 2 PhononTask" ] }, "execution_count": 13, "metadata": {}, "output_type": "execute_result" } ], "source": [ "flow.get_vars_dataframe(\"rfphon\", \"rfatpol\", \"rfdir\", \"qpt\", \"kptopt\")" ] }, { "cell_type": "markdown", "id": "efcef7f2", "metadata": {}, "source": [ "If the meaning of these variables is not clear, you can consult the [Abinit documentation](https://docs.abinit.org)\n", "e.g. the documentation of the {{rfatpol}} input variable or access the documentation directly from python with:" ] }, { "cell_type": "code", "execution_count": 14, "id": "1f8611e8", "metadata": {}, "outputs": [ { "data": { "text/html": [ "

Default value:

[1, 'natom']

Description

\n", "Control the range of atoms for which displacements will be considered in\n", "phonon calculations (atomic polarizations).\n", "These values are only relevant to phonon response function calculations.\n", "May take values from 1 to natom, with rfatpol(1)<=rfatpol(2).\n", "The atoms to be moved will be defined by the do-loop variable iatpol:\n", "\n", " - do iatpol=rfatpol(1),rfatpol(2)\n", "\n", "For the calculation of a full dynamical matrix, use rfatpol(1)=1 and\n", "rfatpol(2)=natom, together with rfdir 1 1 1, both being the default values.\n", "For selected\n", "elements of the dynamical matrix, use different values of rfatpol and/or\n", "rfdir. The name 'iatpol' is used for the part of the internal variable\n", "ipert when it runs from 1 to natom. The internal variable ipert can also\n", "assume values larger than natom, denoting perturbations of electric field\n", "or stress type (see [the DFPT help file](/guide/respfn)).\n", "\n", "As a side technical information, the value rfatpol(1)=-1 is admitted, and transformed\n", "immediately to rfatpol(1)=1, while rfatpol(2)=-1 is transformed to rfatpol(2)=natom,\n", "while the default input values are actually rfatpol=-1 .\n" ], "text/plain": [ "rfatpol " ] }, "execution_count": 14, "metadata": {}, "output_type": "execute_result" } ], "source": [ "abilab.docvar(\"rfatpol\")" ] }, { "cell_type": "markdown", "id": "8602f820", "metadata": {}, "source": [ "```{note}\n", "For your convenience the links to the doc of the different variables are listed below:\n", "\n", "- {{qpt}}\n", "- {{rfphon}}\n", "- {{rfatpol}}\n", "- {{rfdir}}\n", "- {{kptopt}}\n", "```\n", "\n", "Now we can generate the `flow_alas_ecut` directory with the input files by executing\n", "the `lesson_dfpt.py` script.\n", "Then use the `abirun.py` script to launch the entire calculation with:\n", "\n", " abirun.py flow_alas_ecut_conv scheduler\n", "\n", "You will see that all `PhononTasks` will be executed in parallel on your machine.\n", "\n", "```{warning}\n", "Please make sure that AbiPy is properly configured by running abicheck --with flow\n", "```\n", "\n", "If you prefer to skip this part, you may want to jump to the next section, that presents the post-processing of the results.\n", "Note that the output files are already available in the repository so it is also possible to try\n", "the AbiPy post-processing tools without having to run the flow." ] }, { "cell_type": "markdown", "id": "1616382e", "metadata": {}, "source": [ "## Convergence study at $\\Gamma$\n", "\n", "There are several output files located inside the `outdata` directories:" ] }, { "cell_type": "code", "execution_count": 15, "id": "c8f4afe5", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "flow_alas_ecut_conv/w2/t0/outdata/out_DDB\r\n", "flow_alas_ecut_conv/w4/t0/outdata/out_DDB\r\n", "flow_alas_ecut_conv/w1/outdata/out_DDB\r\n", "flow_alas_ecut_conv/w3/outdata/out_DDB\r\n", "flow_alas_ecut_conv/w0/t0/outdata/out_DDB\r\n", "flow_alas_ecut_conv/w5/outdata/out_DDB\r\n" ] } ], "source": [ "!find flow_alas_ecut_conv/ -name \"*_DDB\"" ] }, { "cell_type": "markdown", "id": "689107d0", "metadata": {}, "source": [ "Remember that our goal is to analyze the convergence of the phonon frequencies at $\\Gamma$\n", "as function of {{ecut}}.\n", "So we are mainly interested in the DDB files located in the `outdata` directories\n", "of the `PhononWorks` (`w0/outdata`, `w1/outdata`, `w2/outdata`).\n", "These are indeed the DDB files with all the information needed to reconstruct the\n", "dynamical matrix at $\\Gamma$ and to compute the phonon frequencies (AbiPy calls `mrgddb`\n", "to merge the DDB files when all the perturbations in the `PhononWork` have been computed).\n", "\n", "The code below tells our robot that we would like to analyze all the DDB files\n", "located in the output directories of the works:" ] }, { "cell_type": "code", "execution_count": 16, "id": "bde1c327", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
    \n", "
  1. flow_alas_ecut_conv/w1/outdata/out_DDB
  2. \n", "
  3. flow_alas_ecut_conv/w3/outdata/out_DDB
  4. \n", "
  5. flow_alas_ecut_conv/w5/outdata/out_DDB
  6. \n", "
" ], "text/plain": [ "Label Relpath\n", "-------------------------------------- --------------------------------------\n", "flow_alas_ecut_conv/w1/outdata/out_DDB flow_alas_ecut_conv/w1/outdata/out_DDB\n", "flow_alas_ecut_conv/w3/outdata/out_DDB flow_alas_ecut_conv/w3/outdata/out_DDB\n", "flow_alas_ecut_conv/w5/outdata/out_DDB flow_alas_ecut_conv/w5/outdata/out_DDB" ] }, "execution_count": 16, "metadata": {}, "output_type": "execute_result" } ], "source": [ "robot = abilab.DdbRobot.from_dir_glob(\"./flow_alas_ecut_conv/w*/outdata/\")\n", "robot" ] }, { "cell_type": "markdown", "id": "6d476ff8", "metadata": {}, "source": [ "For more examples on the use of DDB and robots, see the\n", "[DDB notebook](https://nbviewer.jupyter.org/github/abinit/abitutorials/blob/master/abitutorials/ddb.ipynb).\n", "Now we ask the robot to call `anaddb` to compute the phonon frequencies at $\\Gamma$ for all DDBs\n", "and return a pandas `DataFrame`:" ] }, { "cell_type": "code", "execution_count": 17, "id": "111b5b1f", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Calculation completed.\n", "Anaddb results available in dir: /tmp/tmp0v7hudop\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Calculation completed.\n", "Anaddb results available in dir: /tmp/tmpuf71i84y\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Calculation completed.\n", "Anaddb results available in dir: /tmp/tmpokkuifqq\n" ] } ], "source": [ "data_gamma = robot.get_dataframe_at_qpoint((0, 0, 0))" ] }, { "cell_type": "markdown", "id": "c0362788", "metadata": {}, "source": [ "The `DataFrame` is a dict-like object whose keys are the name of the colums in the table" ] }, { "cell_type": "code", "execution_count": 18, "id": "291c10f1", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Index(['mode0', 'mode1', 'mode2', 'mode3', 'mode4', 'mode5', 'nkpt', 'nsppol',\n", " 'ecut', 'tsmear', 'occopt', 'ixc', 'nband', 'usepaw', 'formula',\n", " 'natom', 'alpha', 'beta', 'gamma', 'a', 'b', 'c', 'volume',\n", " 'abispg_num', 'spglib_symb', 'spglib_num', 'spglib_lattice_type'],\n", " dtype='object')\n" ] } ], "source": [ "print(data_gamma.keys())" ] }, { "cell_type": "markdown", "id": "c3c0299d", "metadata": {}, "source": [ "where `mode-i` is the frequency in eV of the i-th phonon mode.\n", "\n", "We are mainly interested in the convergence of the phonon frequencies versus {{ecut}} so we filter these columns with:" ] }, { "cell_type": "code", "execution_count": 19, "id": "eddad54f", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
ecutmode0mode1mode2mode3mode4mode5
flow_alas_ecut_conv/w1/outdata/out_DDB4.00.00.00.00.0436410.0436410.043641
flow_alas_ecut_conv/w3/outdata/out_DDB6.00.00.00.00.0444850.0444850.044485
flow_alas_ecut_conv/w5/outdata/out_DDB8.00.00.00.00.0446250.0446250.044625
\n", "
" ], "text/plain": [ " ecut mode0 mode1 mode2 mode3 \\\n", "flow_alas_ecut_conv/w1/outdata/out_DDB 4.0 0.0 0.0 0.0 0.043641 \n", "flow_alas_ecut_conv/w3/outdata/out_DDB 6.0 0.0 0.0 0.0 0.044485 \n", "flow_alas_ecut_conv/w5/outdata/out_DDB 8.0 0.0 0.0 0.0 0.044625 \n", "\n", " mode4 mode5 \n", "flow_alas_ecut_conv/w1/outdata/out_DDB 0.043641 0.043641 \n", "flow_alas_ecut_conv/w3/outdata/out_DDB 0.044485 0.044485 \n", "flow_alas_ecut_conv/w5/outdata/out_DDB 0.044625 0.044625 " ] }, "execution_count": 19, "metadata": {}, "output_type": "execute_result" } ], "source": [ "data_gamma = data_gamma[[\"ecut\"] + [k for k in data_gamma if k.startswith(\"mode\")]]\n", "data_gamma" ] }, { "cell_type": "markdown", "id": "55fe6139", "metadata": {}, "source": [ "and we get some statistics about our data with:" ] }, { "cell_type": "code", "execution_count": 20, "id": "2edb9754", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
ecutmode0mode1mode2mode3mode4mode5
count3.03.03.03.03.0000003.0000003.000000
mean6.00.00.00.00.0442500.0442500.044250
std2.00.00.00.00.0005330.0005330.000533
min4.00.00.00.00.0436410.0436410.043641
25%5.00.00.00.00.0440630.0440630.044063
50%6.00.00.00.00.0444850.0444850.044485
75%7.00.00.00.00.0445550.0445550.044555
max8.00.00.00.00.0446250.0446250.044625
\n", "
" ], "text/plain": [ " ecut mode0 mode1 mode2 mode3 mode4 mode5\n", "count 3.0 3.0 3.0 3.0 3.000000 3.000000 3.000000\n", "mean 6.0 0.0 0.0 0.0 0.044250 0.044250 0.044250\n", "std 2.0 0.0 0.0 0.0 0.000533 0.000533 0.000533\n", "min 4.0 0.0 0.0 0.0 0.043641 0.043641 0.043641\n", "25% 5.0 0.0 0.0 0.0 0.044063 0.044063 0.044063\n", "50% 6.0 0.0 0.0 0.0 0.044485 0.044485 0.044485\n", "75% 7.0 0.0 0.0 0.0 0.044555 0.044555 0.044555\n", "max 8.0 0.0 0.0 0.0 0.044625 0.044625 0.044625" ] }, "execution_count": 20, "metadata": {}, "output_type": "execute_result" } ], "source": [ "data_gamma.describe()" ] }, { "cell_type": "markdown", "id": "8f6c9186", "metadata": {}, "source": [ "Pandas tables are extremely powerful and the `describe` method already gives some useful info\n", "about the convergence of the phonon modes.\n", "Sometimes, however, we would like to visualize the data to have a better understanding of what's happening:" ] }, { "cell_type": "code", "execution_count": 21, "id": "c413e481", "metadata": {}, "outputs": [ { "data": { "image/png": "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55k2bRrh4eHVmmOz2QgKCiI4ONhlu9VqxTAMcnNzq/xMti5dSH9wZtFgt27diIuL48iRIyxYsIDbb7+d1atXe9Xn/7GxsUydOpVLLrkEk8nEJ598wosvvkhGRgZPPfVUhXN86fhdSH/gO8fv5MmTpKSksH//fmbMmEFoaCgLFixg4sSJbNq0iYYNG5abk5ubC5w5Xr907u/nXvcWF9IjwGWXXcZNN91E69atOXHiBEuWLGHChAksX76cHj161HEX1VNaWsqGDRsYMmQIDRo0qHScL/0M/lp1ewTf+Tm89NJLmT9/Pr///e955plnAOjYsSOvv/46Foul0nmeOI4KRnXgtddeo2HDhtx8882eLqVWXGh/f/jDH8r+/dJLL6V///4MGzaMJUuW8PTTT9dwlRfuiiuu4Iorrij7+4ABAwgODmbZsmXce++9NG7c2IPVXbwL7c9Xjp9hGBQWFvLSSy/RoUMHAC655BKGDBnCm2++yUMPPeThCi/ehfb44IMPuvx90KBB3HDDDbz66qssXry41uu+EFu3biUrK4sbbrjB06XUGnd69JWfwx07dvDoo49y6623MmjQIHJycnj11Ve55557ePvtt70qpOqjtFp29OhRli5dyoMPPkheXh42m43CwkIACgsLKSgoqHCe1WqlpKSk3CWXNpsNk8lEZGRkrddeHRfaX0UaN25Mr1692L17d22VW2OGDRuGw+Fg7969Fb7uK8evMufrryLeevysVitRUVFlgQEgKiqKTp068dNPP1U459zxycvLc9lus9lcXvcWF9JjRRo0aMBvfvMbrzuGv7R27VqioqIYMGBAleN8+Wewuj1WxFt/Dp999ln69OnD448/Tp8+fRg6dCiLFi1iz549rFmzptJ5njiOOmNUy9LS0rDb7dxzzz3lXrv77ru55JJLeOedd8q9du7z1IMHD7q82aWmphIXF+c16fpC+/N3vnL86oN27dpx+PDhCl+r7F4v545famqqy9qG1NRUAgMDveojCriwHn1RUVERH3/8McOHDycwMLDKsb76M+hOj77kwIED5dZLNW3alOjo6Eq/d8Ezx1FnjGpZx44deeONN1z+PPHEEwDMnDmTGTNmVDivZ8+ehIeHs2HDhrJtdrudTZs2MXDgwDqpvToutL+KZGRk8M0339C1a9faKrfGrF+/HovFQqdOnSp83VeOX2XO119FvPX4DR48mJycHJezX9nZ2ezevZvOnTtXOKdFixa0bt2ajRs3umxfv349ffv29bp7xFxIjxUpLCzks88+87pjeM4nn3xCYWFhta7U8tWfQXd6rIi3/hzGxcWxZ88el21Hjx4lOzub5s2bVzrPE8dRZ4xqmdVqpXfv3hW+1rlz57I3rXHjxpGens7mzZsBCA4OZsqUKcybN4+YmBgSExNZsWIFOTk5TJo0qc7qP58L7W/t2rV8+umn/OY3v6Fx48YcOXKERYsWYbFYmDBhQp3VXx2TJk2id+/eJCUlAWfu3vrOO+9w9913ExsbC/ju8YML68+Xjt9VV11F165defDBB5k2bRrBwcEsWrSIoKAgbr/9dgCefPJJVq9e7fLGPXXqVB5++GFatmxJ7969Wb9+PTt37uTNN9/0VCuVupAev/76a15//XWuvvpqmjdvzokTJ/j73//OyZMneemllzzZTqU++ugj4uLi6NWrV7nXfPln8Jfc6dGXfg7Hjh3Ln//8Z5599lmGDBlCTk5O2frUX16K7w3HUcHISzidznKXR0+ePBnDMFi6dClZWVl07NiRJUuWeN1p/Or4dX/x8fGcOHGCP//5z+Tl5REREUGfPn148MEHva6/Nm3a8P7773P8+HGcTietW7fmySef5K677iob48vH70L686XjZzabWbRoEc899xxPPfUUdrudSy+9lLfeeqss+FV0/G644QZOnz7N4sWLWbRoEW3atGH+/PleebXWhfQYGxuL3W7nhRdeICcnh9DQUHr06MHMmTPp1q2bp1qpVG5uLv/9738ZN26cy71wzvHln8Fz3O3Rl34O7777boKCglixYgXvv/8+YWFhdO/enRdffJHo6Oiycd5wHE1GVXdWEhEREalHtMZIRERE5CwFIxEREZGzFIxEREREzlIwEhERETlLwUhERETkLAUjERERkbMUjERERETOUjASEREROUvBSETkIvznP/9h3rx5ni5DRGqIgpGIyEX4z3/+w/z58z1dhojUEAUjERERkbMUjETEr2RkZPDEE0/Qr18/unTpwvXXX897773nMqa4uJh58+Zx7bXX0rVrVwYMGMADDzzA4cOHAdi+fTtJSUls377dZV5aWhpJSUl88MEHADz++OO89dZbACQlJZX9ERHfFeDpAkREakpmZia33norJpOJO+64g5iYGLZs2cL/+3//j/z8fMaPH4/D4WDKlCls27aN66+/nrvvvpuCggK2bt3K/v37admyZbW/3pgxYzhx4gRbt25l9uzZtdiZiNQVBSMR8RsvvPACDoeDjz76iOjoaABuu+02pk+fzvz58xk7dizr1q1j27ZtPPHEE4wfP75s7j333INhGG59vR49etC6dWu2bt3KTTfdVJOtiIiH6KM0EfELhmGwadMmhgwZgmEYZGVllf0ZMGAAeXl57N69m02bNhEdHc2dd95Zbh8mk8kDlYuIN9EZIxHxC1lZWdhsNv75z3/yz3/+s9Ixhw8fpk2bNgQE6O1PRMrTO4OI+AWn0wnA8OHDGTlyZIVjqrswurIzR+e+hoj4LwUjEfELMTExhIWF4XQ66devX6XjWrZsyffff4/dbicwMLDCMVarFYC8vDyX7UePHi03Vh+/ifgXrTESEb9gsVi49tpr+de//sX+/fvLvZ6VlQXANddcQ3Z2dtll9r90bvF18+bNsVgsfPXVVy6vr1ixotyc0NBQAGw220X3ICKepzNGIuI3fv/737N9+3ZuvfVWbrnlFtq1a0dubi67d+9m27ZtfPnll4wYMYLVq1fz3HPPsXPnTnr16sXp06fZtm0bt912G1dddRUREREMHTqUN998E5PJRIsWLfjss884depUua/ZuXNnAJ599lkGDBiAxWLh+uuvr+vWRaSGmAx3r08VEfFip06d4pVXXuGTTz4hMzOTqKgo2rVrx3XXXcett94KQFFREa+99hpr164lIyODqKgoevbsySOPPEKLFi2AM2eYnn76abZs2UJQUBBDhw7lrrvu4oYbbuC5555j1KhRADgcDp577jnWrVtHdnY2hmGwb98+j/UvIhdHwUhERETkLK0xEhERETlLwUhERETkLAUjERERkbMUjERERETOUjASEREROUvBSEREROQsBSMRERGRsxSMRERERM5SMBIRERE5S8FIRERE5CwFIxEREZGzFIxEREREzlIwEhERETnr/wPt66dwHvTBZwAAAABJRU5ErkJggg==", "text/plain": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "data_gamma.plot(x=\"ecut\", y=\"mode3\", style=\"-o\");" ] }, { "cell_type": "markdown", "id": "9c4abaf7", "metadata": {}, "source": [ "Let's plot all the modes in different subplots with:" ] }, { "cell_type": "code", "execution_count": 22, "id": "673d93b6", "metadata": {}, "outputs": [ { "data": { "image/png": "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", "text/plain": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "data_gamma.plot(x=\"ecut\", y=[k for k in data_gamma if k.startswith(\"mode\")], subplots=True, style=\"-o\");" ] }, { "cell_type": "markdown", "id": "53ca8cfc", "metadata": {}, "source": [ "This convergence study at $\\Gamma$ thus reveals that our pseudos require\n", "{{ecut}} >= 6 Ha to get reasonably converged phonon frequencies at $\\Gamma$.\n", "In what follows, we assume that also the modes at the other $q$-points present a similar\n", "convergence behaviour and we use {{ecut}} = 6 Ha to keep the computational cost low." ] }, { "cell_type": "markdown", "id": "6512670d", "metadata": {}, "source": [ "For a quick introduction to Pandas, see:\n", "\n", "* [Pandas cookbook](https://github.com/jvns/pandas-cookbook)\n", "* [Pandas cookbook Chapter 1 Reading data from a csv file](https://nbviewer.jupyter.org/github/jvns/pandas-cookbook/blob/master/cookbook/Chapter%201%20-%20Reading%20from%20a%20CSV.ipynb)" ] }, { "cell_type": "markdown", "id": "9902087d", "metadata": {}, "source": [ "## Phonon band structure of AlAs\n", "\n", "Now we are finally ready for the calculation of the vibrational spectrum of $AlAs$.\n", "We already managed to run DFPT calculations at $\\Gamma$ with different values of {{ecut}} and the\n", "steps required to get a full band structure are not that different, provided that\n", "the following differences are taken into account:\n", "\n", "- we need the dynamical matrix $D(q)$ on a homogeneous mesh so that it is possible to calculate $D(R)$\n", " in anaddb via Fourier transform and then phonon frequencies for arbitrary q-points via Fourier interpolation\n", "\n", "- $AlAs$ is a polar semiconductor so we need to include the LO-TO splitting for $q \\rightarrow 0$ that, in turns,\n", " requires the DFPT computation of the Born effective charges and of the dielectric constant.\n", "\n", "\n", "In AbiPy, these concepts are translated in an easy-to-use API in which you pass an initial `AbinitInput` object,\n", "you specify the q-mesh for phonons in terms of `ph_nqpt` and activate the computation of the\n", "Born effective charges with the boolean flag `with_becs`.\n", "\n", "Let's have a look at the code (as usual there are more comments than lines of code):" ] }, { "cell_type": "code", "execution_count": 23, "id": "14979e58", "metadata": {}, "outputs": [ { "data": { "text/html": [ "\n", "\n", "\n", "\n", " \n", " \n", " \n", "\n", "\n", "

\n", "\n", "
def build_flow_alas_phonons(options):\n",
       "    """\n",
       "    Build and return a Flow to compute the dynamical matrix on a (2, 2, 2) qmesh\n",
       "    as well as DDK and Born effective charges.\n",
       "    The final DDB with all perturbations will be merged automatically and placed\n",
       "    in the Flow `outdir` directory.\n",
       "    """\n",
       "    scf_input = make_scf_input(ecut=6, ngkpt=(4, 4, 4))\n",
       "    return flowtk.PhononFlow.from_scf_input("flow_alas_phonons", scf_input,\n",
       "                                            ph_ngqpt=(2, 2, 2), with_becs=True)\n",
       "
\n", "\n", "\n" ], "text/plain": [ "" ] }, "execution_count": 23, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from lesson_dfpt import build_flow_alas_phonons\n", "abilab.print_source(build_flow_alas_phonons)" ] }, { "cell_type": "markdown", "id": "e1a6fb0e", "metadata": {}, "source": [ "We can finally construct the flow with:" ] }, { "cell_type": "code", "execution_count": 24, "id": "cfe07964", "metadata": {}, "outputs": [], "source": [ "flow_phbands = build_flow_alas_phonons(options=None)" ] }, { "cell_type": "markdown", "id": "0d4ecbd1", "metadata": {}, "source": [ "and visualize the connections with:" ] }, { "cell_type": "code", "execution_count": 25, "id": "f73d5024", "metadata": {}, "outputs": [ { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "flow\n", "\n", "PhononFlow, node_id=85, workdir=flow_alas_phonons\n", "\n", "clusterw0\n", "\n", "Work (w0)\n", "\n", "\n", "clusterw1\n", "\n", "PhononWork (w1)\n", "\n", "\n", "\n", "w0_t0\n", "\n", "w0_t0\n", "ScfTask\n", "\n", "\n", "\n", "w1_t0\n", "\n", "w1_t0\n", "DdkTask\n", "\n", "\n", "\n", "w0_t0->w1_t0\n", "\n", "\n", "WFK\n", "\n", "\n", "\n", "w1_t1\n", "\n", "w1_t1\n", "DdkTask\n", "\n", "\n", "\n", "w0_t0->w1_t1\n", "\n", "\n", "WFK\n", "\n", "\n", "\n", "w1_t2\n", "\n", "w1_t2\n", "DdkTask\n", "\n", "\n", "\n", "w0_t0->w1_t2\n", "\n", "\n", "WFK\n", "\n", "\n", "\n", "w1_t3\n", "\n", "w1_t3\n", "BecTask\n", "\n", "\n", "\n", "w0_t0->w1_t3\n", "\n", "\n", "WFK\n", "\n", "\n", "\n", "w1_t4\n", "\n", "w1_t4\n", "BecTask\n", "\n", "\n", "\n", "w0_t0->w1_t4\n", "\n", "\n", "WFK\n", "\n", "\n", "\n", "w1_t5\n", "\n", "w1_t5\n", "PhononTask\n", "\n", "\n", "\n", "w0_t0->w1_t5\n", "\n", "\n", "WFK\n", "\n", "\n", "\n", "w1_t6\n", "\n", "w1_t6\n", "PhononTask\n", "\n", "\n", "\n", "w0_t0->w1_t6\n", "\n", "\n", "WFK\n", "\n", "\n", "\n", "w1_t7\n", "\n", "w1_t7\n", "PhononTask\n", "\n", "\n", "\n", "w0_t0->w1_t7\n", "\n", "\n", "WFK\n", "\n", "\n", "\n", "w1_t8\n", "\n", "w1_t8\n", "PhononTask\n", "\n", "\n", "\n", "w0_t0->w1_t8\n", "\n", "\n", "WFK\n", "\n", "\n", "\n", "w1_t9\n", "\n", "w1_t9\n", "PhononTask\n", "\n", "\n", "\n", "w0_t0->w1_t9\n", "\n", "\n", "WFK\n", "\n", "\n", "\n", "w1_t10\n", "\n", "w1_t10\n", "PhononTask\n", "\n", "\n", "\n", "w0_t0->w1_t10\n", "\n", "\n", "WFK\n", "\n", "\n", "\n", "w1_t0->w1_t3\n", "\n", "\n", "DDK\n", "\n", "\n", "\n", "w1_t0->w1_t4\n", "\n", "\n", "DDK\n", "\n", "\n", "\n", "w1_t1->w1_t3\n", "\n", "\n", "DDK\n", "\n", "\n", "\n", "w1_t1->w1_t4\n", "\n", "\n", "DDK\n", "\n", "\n", "\n", "w1_t2->w1_t3\n", "\n", "\n", "DDK\n", "\n", "\n", "\n", "w1_t2->w1_t4\n", "\n", "\n", "DDK\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "execution_count": 25, "metadata": {}, "output_type": "execute_result" } ], "source": [ "flow_phbands.get_graphviz()\n", "#flow_phbands.plot_networkx();" ] }, { "cell_type": "markdown", "id": "f9a0078b", "metadata": {}, "source": [ "Note that there are a lot of things happening under the hood here.\n", "\n", "First of all, AbiPy generates `PhononTasks` only for the $q$-points in the\n", "irreducible wedge of the Brillouin zone corresponding to `ph_ngqpt`.\n", "Moreover, for a given $q$-point, only the irreducible atomic perturbations are explicitly computed\n", "since the other atomic perturbations can be reconstructed by symmetry.\n", "Fortunately you do not have to care about all these technical details as AbiPy and Abinit\n", "will automate the whole procedure.\n", "\n", "Remember that the $q$-point mesh cannot be chosen arbitrarily\n", "since all $q$ wavevectors should connect two $k$ points of the grid used for the electrons.\n", "\n", "It is also worth stressing that the computational cost of the DFPT run depends on the q-point\n", "since only those symmetries that preserve the q-point as well as the direction of the perturbation\n", "can be employed (calculations at $\\Gamma$ are therefore much faster than other q-points)." ] }, { "cell_type": "code", "execution_count": 26, "id": "4f970730", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
rfphonrfatpolrfdirqptkptoptclass
w0_t0NoneNoneNoneNoneNoneScfTask
w1_t0NoneNone(1, 0, 0)(0, 0, 0)2DdkTask
w1_t1NoneNone(0, 1, 0)(0, 0, 0)2DdkTask
w1_t2NoneNone(0, 0, 1)(0, 0, 0)2DdkTask
w1_t31[1, 1][1, 0, 0](0, 0, 0)2BecTask
w1_t41[2, 2][1, 0, 0](0, 0, 0)2BecTask
w1_t51[1, 1][1, 0, 0][0.5, 0.0, 0.0]3PhononTask
w1_t61[1, 1][0, 1, 0][0.5, 0.0, 0.0]3PhononTask
w1_t71[2, 2][1, 0, 0][0.5, 0.0, 0.0]3PhononTask
w1_t81[2, 2][0, 1, 0][0.5, 0.0, 0.0]3PhononTask
w1_t91[1, 1][1, 0, 0][0.5, 0.5, 0.0]3PhononTask
w1_t101[2, 2][1, 0, 0][0.5, 0.5, 0.0]3PhononTask
\n", "
" ], "text/plain": [ " rfphon rfatpol rfdir qpt kptopt class\n", "w0_t0 None None None None None ScfTask\n", "w1_t0 None None (1, 0, 0) (0, 0, 0) 2 DdkTask\n", "w1_t1 None None (0, 1, 0) (0, 0, 0) 2 DdkTask\n", "w1_t2 None None (0, 0, 1) (0, 0, 0) 2 DdkTask\n", "w1_t3 1 [1, 1] [1, 0, 0] (0, 0, 0) 2 BecTask\n", "w1_t4 1 [2, 2] [1, 0, 0] (0, 0, 0) 2 BecTask\n", "w1_t5 1 [1, 1] [1, 0, 0] [0.5, 0.0, 0.0] 3 PhononTask\n", "w1_t6 1 [1, 1] [0, 1, 0] [0.5, 0.0, 0.0] 3 PhononTask\n", "w1_t7 1 [2, 2] [1, 0, 0] [0.5, 0.0, 0.0] 3 PhononTask\n", "w1_t8 1 [2, 2] [0, 1, 0] [0.5, 0.0, 0.0] 3 PhononTask\n", "w1_t9 1 [1, 1] [1, 0, 0] [0.5, 0.5, 0.0] 3 PhononTask\n", "w1_t10 1 [2, 2] [1, 0, 0] [0.5, 0.5, 0.0] 3 PhononTask" ] }, "execution_count": 26, "metadata": {}, "output_type": "execute_result" } ], "source": [ "flow_phbands.get_vars_dataframe(\"rfphon\", \"rfatpol\", \"rfdir\", \"qpt\", \"kptopt\")" ] }, { "cell_type": "markdown", "id": "ea2c9918", "metadata": {}, "source": [ "Now we can generate the directories and the input files of the `Flow`.\n", "Change lesson_dfpt.py so that the build_flow_alas_phonons function is called in main\n", "instead of build_flow_alas_ecut_conv.\n", "Run the script to generate the directory with the flow.\n", "Finally, use\n", "\n", " abirun.py flow_alas_phonons scheduler\n", "\n", "to launch the entire calculation." ] }, { "cell_type": "markdown", "id": "2d08dc1c", "metadata": {}, "source": [ "## Post-processing the results\n", "\n", "Our flow is completed and we have the final DDB file with all the $q$-points and all the independent atomic perturbations.\n", "Let's open this DDB file with:" ] }, { "cell_type": "code", "execution_count": 27, "id": "ae08275e", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "================================= File Info =================================\n", "Name: out_DDB\n", "Directory: /home/runner/work/abipy_book/abipy_book/abipy_book/dfpt/flow_alas_phonons/outdata\n", "Size: 28.11 kB\n", "Access Time: Sun Oct 27 17:41:29 2024\n", "Modification Time: Sun Oct 27 17:38:46 2024\n", "Change Time: Sun Oct 27 17:38:46 2024\n", "\n", "================================= Structure =================================\n", "Full Formula (Al1 As1)\n", "Reduced Formula: AlAs\n", "abc : 3.970101 3.970101 3.970101\n", "angles: 60.000000 60.000000 60.000000\n", "pbc : True True True\n", "Sites (2)\n", " # SP a b c\n", "--- ---- ---- ---- ----\n", " 0 Al 0 0 0\n", " 1 As 0.25 0.25 0.25\n", "\n", "Abinit Spacegroup: spgid: 0, num_spatial_symmetries: 24, has_timerev: True, symmorphic: False\n", "\n", "================================== DDB Info ==================================\n", "\n", "Number of q-points in DDB: 3\n", "guessed_ngqpt: [2 2 2] (guess for the q-mesh divisions made by AbiPy)\n", "ecut = 6.000000, ecutsm = 0.000000, nkpt = 128, nsym = 24, usepaw = 0\n", "nsppol 1, nspinor 1, nspden 1, ixc = 1, occopt = 1, tsmear = 0.010000\n", "\n", "Has total energy: False\n", "Has forces: False\n", "Has stress tensor: False\n", "\n", "Has (at least one) atomic pertubation: True\n", "Has (at least one diagonal) electric-field perturbation: True\n", "Has (at least one) Born effective charge: True\n", "Has (all) strain terms: False\n", "Has (all) internal strain terms: False\n", "Has (all) piezoelectric terms: False\n", "Has (all) dynamical quadrupole terms: False\n" ] } ], "source": [ "ddb = abilab.abiopen(\"flow_alas_phonons/outdata/out_DDB\")\n", "print(ddb)" ] }, { "cell_type": "markdown", "id": "57f28863", "metadata": {}, "source": [ "The `DdbFile` object provides an easy-to-use interface that invokes `anaddb` to post-process\n", "the data stored in the DDB file.\n", "\n", "`anacompare_phdos`, for example, computes the phonon DOS with different $q$-meshes.\n", "Each mesh is defined by a single integer, `nqsmall`, that gives the number of\n", "divisions used to sample the smallest reciprocal lattice vector.\n", "The number of divisions along the other directions are chosen so that proportions are preserved:" ] }, { "cell_type": "code", "execution_count": 28, "id": "12421f38", "metadata": {}, "outputs": [], "source": [ "c = ddb.anacompare_phdos(nqsmalls=[8, 10, 12, 14, 16])" ] }, { "cell_type": "code", "execution_count": 29, "id": "9493eca9", "metadata": {}, "outputs": [ { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://chart-studio.plotly.com", "responsive": true, "showLink": true }, "data": [ { "mode": "lines", "name": "DOS: nqsmall 8", "showlegend": true, "type": "scatter", "x": [ -0.0037195256267313916, -0.0036947287892198487, -0.0036699319517083063, -0.0036451351141967635, -0.0036203382766852206, -0.0035955414391736786, -0.0035707446016621357, -0.0035459477641505937, -0.003521150926639051, -0.003496354089127508, -0.0034715572516159656, -0.0034467604141044227, -0.00342196357659288, -0.003397166739081338, -0.003372369901569795, -0.003347573064058252, -0.0033227762265467097, -0.003297979389035167, -0.0032731825515236244, -0.003248385714012082, -0.003223588876500539, -0.0031987920389889967, -0.0031739952014774543, -0.0031491983639659114, -0.0031244015264543686, -0.003099604688942826, -0.0030748078514312837, -0.0030500110139197413, -0.0030252141764081984, -0.003000417338896656, -0.0029756205013851135, -0.0029508236638735707, -0.002926026826362028, -0.0029012299888504854, -0.0028764331513389425, -0.0028516363138274, -0.0028268394763158577, -0.002802042638804315, -0.0027772458012927724, -0.0027524489637812295, -0.002727652126269687, -0.0027028552887581447, -0.002678058451246602, -0.0026532616137350594, -0.002628464776223517, -0.002603667938711974, -0.0025788711012004312, -0.002554074263688889, -0.002529277426177346, -0.0025044805886658035, -0.002479683751154261, -0.002454886913642718, -0.002430090076131176, -0.002405293238619633, -0.0023804964011080905, -0.002355699563596548, -0.002330902726085005, -0.0023061058885734628, -0.0022813090510619203, -0.0022565122135503775, -0.0022317153760388346, -0.002206918538527292, -0.0021821217010157493, -0.0021573248635042073, -0.0021325280259926645, -0.0021077311884811216, -0.0020829343509695796, -0.0020581375134580368, -0.002033340675946494, -0.0020085438384349515, -0.0019837470009234086, -0.001958950163411866, -0.0019341533259003237, -0.0019093564883887809, -0.0018845596508772382, -0.0018597628133656958, -0.0018349659758541532, -0.0018101691383426103, -0.0017853723008310679, -0.0017605754633195254, -0.0017357786258079828, -0.00171098178829644, -0.0016861849507848975, -0.0016613881132733549, -0.001636591275761812, -0.0016117944382502696, -0.0015869976007387271, -0.0015622007632271845, -0.0015374039257156416, -0.0015126070882040992, -0.0014878102506925568, -0.001463013413181014, -0.0014382165756694713, -0.0014134197381579288, -0.0013886229006463862, -0.0013638260631348433, -0.001339029225623301, -0.0013142323881117585, -0.0012894355506002156, -0.001264638713088673, -0.0012398418755771305, -0.001215045038065588, -0.001190248200554045, -0.0011654513630425026, -0.0011406545255309602, -0.0011158576880194173, -0.0010910608505078747, -0.0010662640129963322, -0.0010414671754847898, -0.001016670337973247, -0.0009918735004617043, -0.0009670766629501619, -0.0009422798254386189, -0.0009174829879270765, -0.0008926861504155339, -0.0008678893129039914, -0.0008430924753924485, -0.000818295637880906, -0.0007934988003693636, -0.000768701962857821, -0.0007439051253462782, -0.0007191082878347356, -0.0006943114503231931, -0.0006695146128116502, -0.0006447177753001078, -0.0006199209377885653, -0.0005951241002770227, -0.0005703272627654799, -0.0005455304252539373, -0.0005207335877423949, -0.0004959367502308519, -0.00047113991271930945, -0.00044634307520776697, -0.0004215462376962245, -0.00039674940018468157, -0.00037195256267313946, -0.00034715572516159655, -0.0003223588876500537, -0.0002975620501385116, -0.00027276521262696867, -0.0002479683751154258, -0.00022317153760388367, -0.00019837470009234078, -0.00017357786258079792, -0.0001487810250692558, -0.0001239841875577129, -9.918735004617003e-05, -7.43905125346279e-05, -4.959367502308501e-05, -2.4796837511542876e-05, 0.0, 2.4796837511542876e-05, 4.959367502308501e-05, 7.43905125346279e-05, 9.918735004617077e-05, 0.0001239841875577129, 0.0001487810250692558, 0.00017357786258079865, 0.00019837470009234078, 0.00022317153760388367, 0.0002479683751154258, 0.00027276521262696867, 0.0002975620501385116, 0.0003223588876500537, 0.00034715572516159655, 0.00037195256267313946, 0.00039674940018468157, 0.0004215462376962245, 0.00044634307520776735, 0.00047113991271930945, 0.0004959367502308524, 0.0005207335877423952, 0.0005455304252539373, 0.0005703272627654802, 0.0005951241002770224, 0.0006199209377885653, 0.0006447177753001081, 0.0006695146128116502, 0.0006943114503231931, 0.0007191082878347361, 0.0007439051253462782, 0.000768701962857821, 0.0007934988003693639, 0.000818295637880906, 0.000843092475392449, 0.0008678893129039918, 0.0008926861504155339, 0.0009174829879270768, 0.0009422798254386189, 0.0009670766629501619, 0.0009918735004617047, 0.001016670337973247, 0.0010414671754847898, 0.0010662640129963327, 0.0010910608505078747, 0.0011158576880194175, 0.0011406545255309604, 0.0011654513630425026, 0.0011902482005540455, 0.0012150450380655877, 0.0012398418755771305, 0.0012646387130886734, 0.0012894355506002156, 0.0013142323881117585, 0.0013390292256233013, 0.0013638260631348433, 0.0013886229006463862, 0.001413419738157929, 0.0014382165756694713, 0.0014630134131810141, 0.001487810250692557, 0.0015126070882040992, 0.001537403925715642, 0.0015622007632271843, 0.0015869976007387271, 0.00161179443825027, 0.001636591275761812, 0.0016613881132733549, 0.001686184950784898, 0.00171098178829644, 0.0017357786258079828, 0.0017605754633195257, 0.0017853723008310679, 0.0018101691383426107, 0.0018349659758541536, 0.0018597628133656958, 0.0018845596508772387, 0.0019093564883887809, 0.0019341533259003237, 0.0019589501634118666, 0.0019837470009234086, 0.0020085438384349515, 0.0020333406759464943, 0.0020581375134580368, 0.0020829343509695796, 0.0021077311884811225, 0.0021325280259926645, 0.0021573248635042073, 0.0021821217010157493, 0.002206918538527292, 0.002231715376038835, 0.0022565122135503775, 0.0022813090510619203, 0.002306105888573463, 0.002330902726085005, 0.002355699563596548, 0.002380496401108091, 0.002405293238619633, 0.002430090076131176, 0.002454886913642719, 0.002479683751154261, 0.002504480588665804, 0.002529277426177346, 0.002554074263688889, 0.0025788711012004317, 0.002603667938711974, 0.002628464776223517, 0.00265326161373506, 0.002678058451246602, 0.0027028552887581447, 0.0027276521262696875, 0.0027524489637812295, 0.0027772458012927724, 0.002802042638804315, 0.0028268394763158577, 0.0028516363138274005, 0.0028764331513389425, 0.0029012299888504854, 0.0029260268263620283, 0.0029508236638735707, 0.0029756205013851127, 0.0030004173388966564, 0.0030252141764081984, 0.0030500110139197404, 0.003074807851431284, 0.003099604688942826, 0.0031244015264543686, 0.003149198363965912, 0.0031739952014774543, 0.0031987920389889963, 0.00322358887650054, 0.003248385714012082, 0.003273182551523624, 0.0032979793890351677, 0.0033227762265467097, 0.003347573064058252, 0.003372369901569796, 0.003397166739081338, 0.00342196357659288, 0.0034467604141044236, 0.0034715572516159656, 0.003496354089127508, 0.0035211509266390513, 0.0035459477641505937, 0.0035707446016621357, 0.0035955414391736777, 0.0036203382766852215, 0.0036451351141967635, 0.003669931951708306, 0.003694728789219849, 0.0037195256267313916, 0.0037443224642429336, 0.0037691193017544773, 0.0037939161392660193, 0.0038187129767775618, 0.003843509814289105, 0.0038683066518006475, 0.0038931034893121895, 0.003917900326823733, 0.003942697164335275, 0.003967494001846817, 0.003992290839358361, 0.004017087676869903, 0.004041884514381445, 0.004066681351892989, 0.004091478189404531, 0.0041162750269160735, 0.004141071864427617, 0.004165868701939159, 0.004190665539450701, 0.004215462376962243, 0.0042402592144737865, 0.004265056051985329, 0.004289852889496871, 0.004314649727008415, 0.004339446564519957, 0.004364243402031499, 0.004389040239543043, 0.004413837077054584, 0.004438633914566127, 0.00446343075207767, 0.0044882275895892125, 0.004513024427100755, 0.004537821264612298, 0.004562618102123841, 0.004587414939635382, 0.004612211777146926, 0.004637008614658468, 0.00466180545217001, 0.004686602289681554, 0.004711399127193096, 0.0047361959647046386, 0.004760992802216182, 0.004785789639727724, 0.004810586477239266, 0.00483538331475081, 0.004860180152262352, 0.004884976989773894, 0.004909773827285436, 0.00493457066479698, 0.004959367502308522, 0.004984164339820065, 0.005008961177331608, 0.00503375801484315, 0.005058554852354692, 0.005083351689866236, 0.005108148527377778, 0.00513294536488932, 0.005157742202400863, 0.005182539039912406, 0.005207335877423948, 0.0052321327149354915, 0.005256929552447034, 0.0052817263899585755, 0.00530652322747012, 0.005331320064981661, 0.005356116902493204, 0.005380913740004747, 0.005405710577516289, 0.005430507415027832, 0.005455304252539375, 0.0054801010900509175, 0.005504897927562459, 0.0055296947650740015, 0.005554491602585545, 0.005579288440097087, 0.00560408527760863, 0.005628882115120173, 0.005653678952631715, 0.005678475790143257, 0.005703272627654801, 0.005728069465166343, 0.005752866302677885, 0.005777663140189429, 0.005802459977700971, 0.005827256815212513, 0.0058520536527240565, 0.005876850490235599, 0.005901647327747141, 0.005926444165258685, 0.005951241002770227, 0.005976037840281769, 0.006000834677793313, 0.006025631515304854, 0.006050428352816397, 0.00607522519032794, 0.0061000220278394825, 0.006124818865351025, 0.0061496157028625665, 0.006174412540374111, 0.006199209377885652, 0.006224006215397195, 0.006248803052908738, 0.00627359989042028, 0.006298396727931823, 0.006323193565443366, 0.0063479904029549086, 0.00637278724046645, 0.006397584077977994, 0.006422380915489536, 0.006447177753001078, 0.006471974590512622, 0.006496771428024164, 0.006521568265535706, 0.00654636510304725, 0.006571161940558792, 0.006595958778070334, 0.006620755615581878, 0.0066455524530934194, 0.006670349290604962, 0.006695146128116506, 0.006719942965628048, 0.00674473980313959, 0.0067695366406511324, 0.006794333478162676, 0.006819130315674218, 0.00684392715318576, 0.006868723990697304, 0.0068935208282088455, 0.006918317665720388, 0.006943114503231931, 0.006967911340743474, 0.006992708178255016, 0.007017505015766559, 0.007042301853278102, 0.007067098690789643, 0.0070918955283011875, 0.007116692365812729, 0.0071414892033242715, 0.007166286040835815, 0.007191082878347357, 0.0072158797158589, 0.007240676553370443, 0.007265473390881985, 0.007290270228393527, 0.007315067065905071, 0.007339863903416613, 0.007364660740928155, 0.007389457578439698, 0.007414254415951241, 0.007439051253462783, 0.007463848090974325, 0.007488644928485869, 0.0075134417659974105, 0.007538238603508953, 0.007563035441020497, 0.007587832278532039, 0.007612629116043581, 0.007637425953555124, 0.007662222791066667, 0.007687019628578209, 0.0077118164660897525, 0.007736613303601295, 0.0077614101411128365, 0.007786206978624381, 0.007811003816135922, 0.007835800653647465, 0.007860597491159008, 0.00788539432867055, 0.007910191166182093, 0.007934988003693636, 0.007959784841205178, 0.007984581678716721, 0.008009378516228264, 0.008034175353739806, 0.00805897219125135, 0.00808376902876289, 0.008108565866274434, 0.008133362703785976, 0.008158159541297519, 0.008182956378809062, 0.008207753216320604, 0.008232550053832147, 0.00825734689134369, 0.008282143728855232, 0.008306940566366773, 0.008331737403878318, 0.00835653424138986, 0.008381331078901402, 0.008406127916412945, 0.008430924753924488, 0.00845572159143603, 0.008480518428947573, 0.008505315266459116, 0.008530112103970658, 0.008554908941482201, 0.008579705778993743, 0.008604502616505286, 0.00862929945401683, 0.008654096291528371, 0.008678893129039914, 0.008703689966551456, 0.008728486804062999, 0.00875328364157454, 0.008778080479086084, 0.008802877316597627, 0.008827674154109169, 0.008852470991620712, 0.008877267829132255, 0.008902064666643797, 0.008926861504155338, 0.008951658341666884, 0.008976455179178425, 0.009001252016689967, 0.009026048854201512, 0.009050845691713053, 0.009075642529224595, 0.009100439366736138, 0.009125236204247681, 0.009150033041759223, 0.009174829879270766, 0.00919962671678231, 0.009224423554293851, 0.009249220391805394, 0.009274017229316936, 0.00929881406682848, 0.00932361090434002, 0.009348407741851564, 0.009373204579363107, 0.009398001416874649, 0.009422798254386192, 0.009447595091897734, 0.009472391929409277, 0.00949718876692082, 0.009521985604432362, 0.009546782441943905, 0.009571579279455449, 0.00959637611696699, 0.009621172954478532, 0.009645969791990075, 0.009670766629501617, 0.009695563467013162, 0.009720360304524703, 0.009745157142036246, 0.009769953979547788, 0.00979475081705933, 0.009819547654570873, 0.009844344492082418, 0.00986914132959396, 0.009893938167105503, 0.009918735004617044, 0.009943531842128586, 0.00996832867964013, 0.009993125517151674, 0.010017922354663216, 0.010042719192174757, 0.0100675160296863, 0.010092312867197842, 0.010117109704709384, 0.010141906542220929, 0.010166703379732472, 0.010191500217244014, 0.010216297054755555, 0.010241093892267098, 0.01026589072977864, 0.010290687567290182, 0.010315484404801727, 0.01034028124231327, 0.010365078079824811, 0.010389874917336353, 0.010414671754847896, 0.010439468592359438, 0.010464265429870983, 0.010489062267382524, 0.010513859104894068, 0.01053865594240561, 0.010563452779917151, 0.010588249617428694, 0.01061304645494024, 0.01063784329245178, 0.010662640129963322, 0.010687436967474866, 0.010712233804986407, 0.010737030642497949, 0.010761827480009494, 0.010786624317521037, 0.010811421155032579, 0.01083621799254412, 0.010861014830055664, 0.010885811667567205, 0.010910608505078747, 0.010935405342590292, 0.010960202180101835, 0.010984999017613377, 0.011009795855124918, 0.011034592692636461, 0.011059389530148003, 0.011084186367659548, 0.01110898320517109, 0.011133780042682633, 0.011158576880194174, 0.011183373717705716, 0.01120817055521726, 0.011232967392728804, 0.011257764230240346, 0.011282561067751887, 0.01130735790526343, 0.011332154742774972, 0.011356951580286514, 0.011381748417798059, 0.011406545255309602, 0.011431342092821144, 0.011456138930332685, 0.011480935767844229, 0.01150573260535577, 0.011530529442867312, 0.011555326280378858, 0.0115801231178904, 0.011604919955401942, 0.011629716792913485, 0.011654513630425026, 0.011679310467936568, 0.011704107305448113, 0.011728904142959656, 0.011753700980471198, 0.01177849781798274, 0.011803294655494283, 0.011828091493005824, 0.01185288833051737, 0.011877685168028911, 0.011902482005540454, 0.011927278843051996, 0.011952075680563537, 0.01197687251807508, 0.012001669355586626, 0.012026466193098167, 0.012051263030609709, 0.012076059868121252, 0.012100856705632794, 0.012125653543144335, 0.012150450380655878, 0.012175247218167424, 0.012200044055678965, 0.012224840893190507, 0.01224963773070205, 0.012274434568213591, 0.012299231405725133, 0.012324028243236678, 0.012348825080748221, 0.012373621918259763, 0.012398418755771305, 0.012423215593282848, 0.01244801243079439, 0.012472809268305934, 0.012497606105817476, 0.01252240294332902, 0.01254719978084056, 0.012571996618352102, 0.012596793455863646, 0.01262159029337519, 0.012646387130886732, 0.012671183968398274, 0.012695980805909817, 0.012720777643421359, 0.0127455744809329, 0.012770371318444445, 0.012795168155955989, 0.01281996499346753, 0.012844761830979072, 0.012869558668490615, 0.012894355506002157, 0.012919152343513698, 0.012943949181025243, 0.012968746018536786, 0.012993542856048328, 0.01301833969355987, 0.013043136531071413, 0.013067933368582954, 0.0130927302060945, 0.013117527043606041, 0.013142323881117584, 0.013167120718629126, 0.013191917556140667, 0.01321671439365221, 0.013241511231163756, 0.013266308068675297, 0.013291104906186839, 0.013315901743698382, 0.013340698581209924, 0.013365495418721465, 0.013390292256233012, 0.013415089093744554, 0.013439885931256095, 0.013464682768767638, 0.01348947960627918, 0.013514276443790722, 0.013539073281302265, 0.01356387011881381, 0.013588666956325351, 0.013613463793836893, 0.013638260631348436, 0.013663057468859978, 0.01368785430637152, 0.013712651143883064, 0.013737447981394608, 0.01376224481890615, 0.013787041656417691, 0.013811838493929234, 0.013836635331440776, 0.01386143216895232, 0.013886229006463862, 0.013911025843975406, 0.013935822681486947, 0.013960619518998489, 0.013985416356510032, 0.014010213194021577, 0.014035010031533119, 0.01405980686904466, 0.014084603706556204, 0.014109400544067745, 0.014134197381579287, 0.01415899421909083, 0.014183791056602375, 0.014208587894113917, 0.014233384731625458, 0.014258181569137001, 0.014282978406648543, 0.014307775244160085, 0.01433257208167163, 0.014357368919183173, 0.014382165756694714, 0.014406962594206256, 0.0144317594317178, 0.01445655626922934, 0.014481353106740886, 0.014506149944252427, 0.01453094678176397, 0.014555743619275512, 0.014580540456787054, 0.014605337294298597, 0.014630134131810142, 0.014654930969321684, 0.014679727806833225, 0.014704524644344769, 0.01472932148185631, 0.014754118319367852, 0.014778915156879395, 0.01480371199439094, 0.014828508831902482, 0.014853305669414023, 0.014878102506925566, 0.014902899344437108, 0.01492769618194865, 0.014952493019460195, 0.014977289856971738, 0.01500208669448328, 0.015026883531994821, 0.015051680369506364, 0.015076477207017906, 0.015101274044529451, 0.015126070882040994, 0.015150867719552536, 0.015175664557064077, 0.01520046139457562, 0.015225258232087162, 0.015250055069598707, 0.015274851907110249, 0.015299648744621792, 0.015324445582133334, 0.015349242419644875, 0.015374039257156418, 0.01539883609466796, 0.015423632932179505, 0.015448429769691047, 0.01547322660720259, 0.015498023444714131, 0.015522820282225673, 0.015547617119737216, 0.015572413957248761, 0.015597210794760303, 0.015622007632271845, 0.015646804469783386, 0.01567160130729493, 0.015696398144806473, 0.015721194982318016, 0.01574599181982956, 0.0157707886573411, 0.015795585494852642, 0.015820382332364186, 0.015845179169875726, 0.015869976007387272, 0.015894772844898816, 0.015919569682410355, 0.0159443665199219, 0.015969163357433442, 0.015993960194944982, 0.016018757032456525, 0.016043553869968072, 0.01606835070747961, 0.016093147544991155, 0.0161179443825027, 0.016142741220014238, 0.01616753805752578, 0.016192334895037325, 0.016217131732548868, 0.01624192857006041, 0.01626672540757195, 0.016291522245083494, 0.016316319082595038, 0.01634111592010658, 0.016365912757618124, 0.016390709595129668, 0.016415506432641207, 0.01644030327015275, 0.016465100107664294, 0.016489896945175837, 0.01651469378268738, 0.01653949062019892, 0.016564287457710464, 0.016589084295222007, 0.016613881132733547, 0.01663867797024509, 0.016663474807756637, 0.016688271645268177, 0.01671306848277972, 0.016737865320291263, 0.016762662157802803, 0.016787458995314346, 0.01681225583282589, 0.016837052670337433, 0.016861849507848976, 0.016886646345360516, 0.01691144318287206, 0.016936240020383603, 0.016961036857895146, 0.01698583369540669, 0.017010630532918233, 0.017035427370429772, 0.017060224207941316, 0.01708502104545286, 0.017109817882964402, 0.017134614720475946, 0.017159411557987485, 0.01718420839549903, 0.017209005233010572, 0.017233802070522112, 0.017258598908033655, 0.017283395745545202, 0.017308192583056742, 0.017332989420568285, 0.01735778625807983, 0.017382583095591368, 0.01740737993310291, 0.017432176770614455, 0.017456973608125998, 0.01748177044563754, 0.01750656728314908, 0.017531364120660625, 0.017556160958172168, 0.01758095779568371, 0.017605754633195254, 0.017630551470706798, 0.017655348308218338, 0.01768014514572988, 0.017704941983241424, 0.017729738820752967, 0.01775453565826451, 0.01777933249577605, 0.017804129333287594, 0.017828926170799137, 0.017853723008310677, 0.01787851984582222, 0.017903316683333767, 0.017928113520845307, 0.01795291035835685, 0.017977707195868393, 0.018002504033379933, 0.018027300870891477, 0.018052097708403023, 0.018076894545914563, 0.018101691383426106, 0.01812648822093765, 0.01815128505844919, 0.018176081895960733, 0.018200878733472276, 0.01822567557098382, 0.018250472408495363, 0.018275269246006903, 0.018300066083518446, 0.01832486292102999, 0.018349659758541532, 0.018374456596053076, 0.01839925343356462, 0.01842405027107616, 0.018448847108587702, 0.018473643946099245, 0.01849844078361079, 0.018523237621122332, 0.018548034458633872, 0.018572831296145415, 0.01859762813365696, 0.0186224249711685, 0.01864722180868004, 0.01867201864619159, 0.018696815483703128, 0.01872161232121467, 0.018746409158726215, 0.018771205996237755, 0.018796002833749298, 0.01882079967126084, 0.018845596508772385, 0.018870393346283928, 0.018895190183795468, 0.01891998702130701, 0.018944783858818554, 0.018969580696330098, 0.01899437753384164, 0.019019174371353184, 0.019043971208864724, 0.019068768046376267, 0.01909356488388781, 0.019118361721399354, 0.019143158558910897, 0.019167955396422437, 0.01919275223393398, 0.019217549071445524, 0.019242345908957063, 0.019267142746468607, 0.019291939583980153, 0.019316736421491693, 0.019341533259003237, 0.01936633009651478, 0.01939112693402632, 0.019415923771537863, 0.019440720609049406, 0.01946551744656095, 0.019490314284072493, 0.019515111121584033, 0.019539907959095576, 0.01956470479660712, 0.019589501634118663, 0.019614298471630206, 0.01963909530914175, 0.01966389214665329, 0.019688688984164832, 0.019713485821676376, 0.01973828265918792, 0.019763079496699462, 0.019787876334211005, 0.019812673171722545, 0.01983747000923409, 0.019862266846745632, 0.01988706368425717, 0.01991186052176872, 0.01993665735928026, 0.0199614541967918, 0.019986251034303345, 0.020011047871814885, 0.020035844709326428, 0.020060641546837975, 0.020085438384349515, 0.020110235221861058, 0.0201350320593726, 0.02015982889688414, 0.020184625734395684, 0.020209422571907228, 0.02023421940941877, 0.020259016246930314, 0.020283813084441854, 0.020308609921953397, 0.02033340675946494, 0.020358203596976484, 0.020383000434488027, 0.02040779727199957, 0.02043259410951111, 0.020457390947022654, 0.020482187784534197, 0.020506984622045737, 0.020531781459557284, 0.020556578297068823, 0.020581375134580367, 0.02060617197209191, 0.02063096880960345, 0.020655765647114993, 0.02068056248462654, 0.02070535932213808, 0.020730156159649623, 0.020754952997161166, 0.020779749834672706, 0.02080454667218425, 0.020829343509695793, 0.020854140347207336, 0.02087893718471888, 0.02090373402223042, 0.020928530859741962, 0.020953327697253506, 0.02097812453476505, 0.021002921372276592, 0.021027718209788136, 0.021052515047299675, 0.02107731188481122, 0.021102108722322762, 0.021126905559834302, 0.02115170239734585, 0.02117649923485739, 0.02120129607236893, 0.021226092909880475, 0.021250889747392015, 0.021275686584903558, 0.021300483422415105, 0.021325280259926645, 0.021350077097438188, 0.02137487393494973, 0.02139967077246127, 0.021424467609972814, 0.02144926444748436, 0.0214740612849959, 0.021498858122507444, 0.021523654960018988, 0.021548451797530527, 0.02157324863504207, 0.021598045472553614, 0.021622842310065157, 0.0216476391475767, 0.02167243598508824, 0.021697232822599784, 0.021722029660111327, 0.021746826497622867, 0.021771623335134414, 0.021796420172645957, 0.021821217010157497, 0.02184601384766904, 0.021870810685180583, 0.021895607522692123, 0.02192040436020367, 0.02194520119771521, 0.021969998035226753, 0.021994794872738296, 0.022019591710249836, 0.02204438854776138, 0.022069185385272926, 0.022093982222784466, 0.02211877906029601, 0.022143575897807553, 0.022168372735319092, 0.022193169572830636, 0.02221796641034218, 0.022242763247853722, 0.022267560085365266, 0.022292356922876806, 0.02231715376038835, 0.022341950597899892, 0.022366747435411432, 0.02239154427292298, 0.022416341110434522, 0.022441137947946062, 0.022465934785457605, 0.02249073162296915, 0.022515528460480688, 0.022540325297992235, 0.022565122135503775, 0.022589918973015318, 0.02261471581052686, 0.0226395126480384, 0.022664309485549945, 0.02268910632306149, 0.02271390316057303, 0.022738699998084574, 0.022763496835596118, 0.022788293673107658, 0.0228130905106192, 0.022837887348130744, 0.022862684185642287, 0.022887481023153827, 0.02291227786066537, 0.022937074698176917, 0.022961871535688457, 0.0229866683732, 0.02301146521071154, 0.023036262048223087, 0.023061058885734623, 0.02308585572324617, 0.023110652560757717, 0.023135449398269253, 0.0231602462357808, 0.02318504307329234, 0.023209839910803883, 0.02323463674831543, 0.02325943358582697, 0.023284230423338513, 0.023309027260850053, 0.023333824098361596, 0.023358620935873136, 0.023383417773384683, 0.023408214610896226, 0.023433011448407766, 0.023457808285919313, 0.02348260512343085, 0.023507401960942396, 0.02353219879845394, 0.02355699563596548, 0.023581792473477026, 0.023606589310988565, 0.02363138614850011, 0.02365618298601165, 0.023680979823523192, 0.02370577666103474, 0.02373057349854628, 0.023755370336057822, 0.02378016717356936, 0.02380496401108091, 0.023829760848592445, 0.02385455768610399, 0.023879354523615535, 0.023904151361127075, 0.02392894819863862, 0.02395374503615016, 0.023978541873661705, 0.02400333871117325, 0.024028135548684788, 0.024052932386196334, 0.024077729223707874, 0.024102526061219418, 0.024127322898730957, 0.024152119736242504, 0.024176916573754047, 0.024201713411265587, 0.02422651024877713, 0.02425130708628867, 0.024276103923800217, 0.024300900761311757, 0.0243256975988233, 0.024350494436334847, 0.024375291273846383, 0.02440008811135793, 0.02442488494886947, 0.024449681786381013, 0.02447447862389256, 0.0244992754614041, 0.024524072298915643, 0.024548869136427183, 0.024573665973938726, 0.024598462811450266, 0.024623259648961813, 0.024648056486473356, 0.024672853323984896, 0.024697650161496443, 0.02472244699900798, 0.024747243836519526, 0.02477204067403107, 0.02479683751154261, 0.024821634349054156, 0.024846431186565696, 0.02487122802407724, 0.02489602486158878, 0.024920821699100322, 0.02494561853661187, 0.02497041537412341, 0.024995212211634952, 0.025020009049146492, 0.02504480588665804, 0.025069602724169575, 0.02509439956168112, 0.02511919639919267, 0.025143993236704205, 0.02516879007421575, 0.02519358691172729, 0.025218383749238835, 0.02524318058675038, 0.02526797742426192, 0.025292774261773465, 0.025317571099285004, 0.025342367936796548, 0.025367164774308087, 0.025391961611819634, 0.025416758449331178, 0.025441555286842717, 0.025466352124354264, 0.0254911489618658, 0.025515945799377347, 0.025540742636888887, 0.02556553947440043, 0.025590336311911977, 0.025615133149423517, 0.02563992998693506, 0.0256647268244466, 0.025689523661958143, 0.02571432049946969, 0.02573911733698123, 0.025763914174492773, 0.025788711012004313, 0.02581350784951586, 0.025838304687027396, 0.025863101524538943, 0.025887898362050486, 0.025912695199562026, 0.025937492037073573, 0.025962288874585113, 0.025987085712096656, 0.026011882549608203, 0.02603667938711974, 0.026061476224631286, 0.026086273062142826, 0.02611106989965437, 0.02613586673716591, 0.026160663574677456, 0.026185460412189, 0.02621025724970054, 0.026235054087212082, 0.026259850924723622, 0.02628464776223517, 0.02630944459974671, 0.02633424143725825, 0.0263590382747698, 0.026383835112281335, 0.02640863194979288, 0.02643342878730442, 0.026458225624815965, 0.02648302246232751, 0.02650781929983905, 0.026532616137350595, 0.026557412974862134, 0.026582209812373678, 0.026607006649885218, 0.026631803487396764, 0.026656600324908308, 0.026681397162419847, 0.026706193999931394, 0.02673099083744293, 0.026755787674954477, 0.026780584512466017, 0.02680538134997756, 0.026830178187489107, 0.026854975025000647, 0.02687977186251219, 0.02690456870002373, 0.026929365537535277, 0.02695416237504682, 0.02697895921255836, 0.027003756050069903, 0.027028552887581443, 0.02705334972509299, 0.02707814656260453, 0.027102943400116073, 0.02712774023762762, 0.027152537075139156, 0.027177333912650703, 0.027202130750162243, 0.027226927587673786, 0.027251724425185333, 0.027276521262696873, 0.027301318100208416, 0.027326114937719956, 0.0273509117752315, 0.02737570861274304, 0.027400505450254586, 0.02742530228776613, 0.02745009912527767, 0.027474895962789216, 0.027499692800300752, 0.0275244896378123, 0.02754928647532384, 0.027574083312835382, 0.02759888015034693, 0.02762367698785847, 0.02764847382537001, 0.02767327066288155, 0.027698067500393095, 0.02772286433790464, 0.02774766117541618, 0.027772458012927725, 0.027797254850439265, 0.02782205168795081, 0.027846848525462348, 0.027871645362973894, 0.027896442200485438, 0.027921239037996978, 0.027946035875508524, 0.027970832713020064, 0.027995629550531607, 0.028020426388043147, 0.02804522322555469, 0.028070020063066237, 0.028094816900577777, 0.02811961373808932, 0.02814441057560086, 0.028169207413112407, 0.02819400425062395, 0.02821880108813549, 0.028243597925647033, 0.028268394763158573, 0.02829319160067012, 0.02831798843818166, 0.028342785275693203, 0.02836758211320475, 0.028392378950716286, 0.028417175788227833, 0.028441972625739373, 0.028466769463250916, 0.028491566300762463, 0.028516363138274003, 0.028541159975785546, 0.028565956813297086, 0.028590753650808633, 0.02861555048832017, 0.028640347325831716, 0.02866514416334326, 0.0286899410008548, 0.028714737838366346, 0.028739534675877886, 0.02876433151338943, 0.02878912835090097, 0.028813925188412512, 0.02883872202592406, 0.0288635188634356, 0.028888315700947142, 0.02891311253845868, 0.02893790937597023, 0.02896270621348177, 0.02898750305099331, 0.029012299888504855, 0.029037096726016395, 0.02906189356352794, 0.02908669040103948, 0.029111487238551025, 0.02913628407606257, 0.029161080913574108, 0.029185877751085654, 0.029210674588597194, 0.029235471426108738, 0.029260268263620284, 0.029285065101131824, 0.029309861938643367, 0.029334658776154907, 0.02935945561366645, 0.02938425245117799, 0.029409049288689537, 0.02943384612620108, 0.02945864296371262, 0.029483439801224167, 0.029508236638735703, 0.02953303347624725, 0.02955783031375879, 0.029582627151270333, 0.02960742398878188, 0.02963222082629342, 0.029657017663804963, 0.029681814501316503, 0.029706611338828046, 0.029731408176339593, 0.029756205013851133, 0.029781001851362676, 0.029805798688874216, 0.029830595526385763, 0.0298553923638973, 0.029880189201408846, 0.02990498603892039, 0.02992978287643193, 0.029954579713943476, 0.029979376551455016, 0.03000417338896656, 0.0300289702264781, 0.030053767063989642, 0.03007856390150119, 0.03010336073901273, 0.030128157576524272, 0.030152954414035812, 0.03017775125154736, 0.030202548089058902, 0.03022734492657044, 0.03025214176408199, 0.030276938601593525, 0.03030173543910507, 0.03032653227661661, 0.030351329114128155, 0.0303761259516397, 0.03040092278915124, 0.030425719626662785, 0.030450516464174324, 0.030475313301685868, 0.030500110139197414, 0.030524906976708954, 0.030549703814220498, 0.030574500651732037, 0.030599297489243584, 0.03062409432675512, 0.030648891164266667, 0.03067368800177821, 0.03069848483928975, 0.030723281676801297, 0.030748078514312837, 0.03077287535182438, 0.03079767218933592, 0.030822469026847463, 0.03084726586435901, 0.03087206270187055, 0.030896859539382093, 0.030921656376893633, 0.03094645321440518, 0.030971250051916723, 0.030996046889428263, 0.031020843726939806, 0.031045640564451346, 0.031070437401962893, 0.031095234239474433, 0.031120031076985976, 0.031144827914497523, 0.03116962475200906, 0.031194421589520606, 0.031219218427032146, 0.03124401526454369, 0.03126881210205523, 0.03129360893956677, 0.03131840577707832, 0.03134320261458986, 0.031367999452101405, 0.031392796289612945, 0.031417593127124485, 0.03144238996463603, 0.03146718680214757, 0.03149198363965912, 0.03151678047717066, 0.0315415773146822, 0.03156637415219374, 0.031591170989705285, 0.03161596782721683, 0.03164076466472837, 0.03166556150223992, 0.03169035833975145, 0.031715155177263, 0.031739952014774545, 0.031764748852286084, 0.03178954568979763, 0.03181434252730917, 0.03183913936482071, 0.03186393620233225, 0.0318887330398438, 0.031913529877355344, 0.031938326714866884, 0.031963123552378424, 0.031987920389889964, 0.03201271722740151, 0.03203751406491305, 0.0320623109024246, 0.032087107739936144, 0.03211190457744768, 0.03213670141495922, 0.03216149825247076, 0.03218629508998231, 0.03221109192749386, 0.0322358887650054, 0.032260685602516936, 0.032285482440028476, 0.03231027927754002, 0.03233507611505156, 0.03235987295256311, 0.03238466979007465, 0.03240946662758619, 0.032434263465097736, 0.032459060302609276, 0.03248385714012082, 0.03250865397763236, 0.0325334508151439, 0.03255824765265545, 0.03258304449016699, 0.032607841327678536, 0.032632638165190075, 0.032657435002701615, 0.03268223184021316, 0.0327070286777247, 0.03273182551523625, 0.03275662235274779, 0.032781419190259335, 0.03280621602777087, 0.032831012865282415, 0.03285580970279396, 0.0328806065403055, 0.03290540337781705, 0.03293020021532859, 0.03295499705284013, 0.032979793890351675, 0.033004590727863214, 0.03302938756537476, 0.0330541844028863, 0.03307898124039784, 0.03310377807790938, 0.03312857491542093, 0.033153371752932474, 0.033178168590444014, 0.033202965427955554, 0.033227762265467094, 0.03325255910297864, 0.03327735594049018, 0.03330215277800173, 0.033326949615513274, 0.03335174645302481, 0.033376543290536353, 0.03340134012804789, 0.03342613696555944, 0.03345093380307099, 0.03347573064058253, 0.033500527478094067, 0.033525324315605606, 0.03355012115311715, 0.03357491799062869, 0.03359971482814024, 0.03362451166565178, 0.03364930850316332, 0.033674105340674866, 0.033698902178186406, 0.03372369901569795, 0.03374849585320949, 0.03377329269072103, 0.03379808952823258, 0.03382288636574412, 0.033847683203255666, 0.033872480040767206, 0.03389727687827875, 0.03392207371579029, 0.03394687055330183, 0.03397166739081338, 0.03399646422832492, 0.034021261065836465, 0.034046057903348005, 0.034070854740859545, 0.03409565157837109, 0.03412044841588263, 0.03414524525339418, 0.03417004209090572, 0.03419483892841726, 0.034219635765928805, 0.034244432603440345, 0.03426922944095189, 0.03429402627846343, 0.03431882311597497, 0.03434361995348651, 0.03436841679099806, 0.034393213628509604, 0.034418010466021144, 0.03444280730353269, 0.034467604141044224, 0.03449240097855577, 0.03451719781606731, 0.03454199465357886, 0.034566791491090404, 0.034591588328601944, 0.034616385166113484, 0.03464118200362502, 0.03466597884113657, 0.03469077567864812, 0.03471557251615966, 0.0347403693536712, 0.034765166191182736, 0.03478996302869428, 0.03481475986620582, 0.03483955670371737, 0.03486435354122891, 0.03488915037874045, 0.034913947216251996, 0.034938744053763536, 0.03496354089127508, 0.03498833772878663, 0.03501313456629816, 0.03503793140380971, 0.03506272824132125, 0.035087525078832796, 0.035112321916344336, 0.03513711875385588, 0.03516191559136742, 0.03518671242887896, 0.03521150926639051, 0.03523630610390205, 0.035261102941413595, 0.035285899778925135, 0.035310696616436675, 0.03533549345394822, 0.03536029029145976, 0.03538508712897131, 0.03540988396648285, 0.03543468080399439, 0.035459477641505935, 0.035484274479017475, 0.03550907131652902, 0.03553386815404056, 0.0355586649915521, 0.03558346182906364, 0.03560825866657519, 0.035633055504086734, 0.035657852341598274, 0.03568264917910982, 0.035707446016621354, 0.0357322428541329, 0.03575703969164444, 0.03578183652915599, 0.035806633366667534, 0.035831430204179074, 0.035856227041690614, 0.035881023879202154, 0.0359058207167137, 0.03593061755422525, 0.03595541439173679, 0.03598021122924833, 0.03600500806675987, 0.03602980490427141, 0.03605460174178295, 0.0360793985792945, 0.03610419541680605, 0.03612899225431758, 0.036153789091829126, 0.036178585929340666, 0.03620338276685221, 0.03622817960436376, 0.0362529764418753, 0.03627777327938684, 0.03630257011689838, 0.036327366954409926, 0.036352163791921466, 0.03637696062943301, 0.03640175746694455, 0.03642655430445609, 0.03645135114196764, 0.03647614797947918, 0.036500944816990726, 0.036525741654502265, 0.036550538492013805, 0.03657533532952535, 0.03660013216703689, 0.03662492900454844, 0.03664972584205998, 0.03667452267957152, 0.036699319517083065, 0.036724116354594605, 0.03674891319210615, 0.03677371002961769, 0.03679850686712924, 0.03682330370464077, 0.03684810054215232, 0.036872897379663865, 0.036897694217175404, 0.03692249105468695, 0.03694728789219849, 0.03697208472971003, 0.03699688156722157, 0.03702167840473312, 0.037046475242244664, 0.037071272079756204, 0.037096068917267744, 0.037120865754779284, 0.03714566259229083, 0.03717045942980238, 0.03719525626731392, 0.03722005310482546, 0.037244849942337, 0.03726964677984854, 0.03729444361736008, 0.03731924045487163, 0.03734403729238318, 0.03736883412989471, 0.037393630967406256, 0.037418427804917796, 0.03744322464242934, 0.03746802147994089, 0.03749281831745243, 0.03751761515496397, 0.03754241199247551, 0.037567208829987056, 0.037592005667498596, 0.03761680250501014, 0.03764159934252168, 0.03766639618003322, 0.03769119301754477, 0.03771598985505631, 0.037740786692567856, 0.037765583530079395, 0.037790380367590935, 0.03781517720510248, 0.03783997404261402, 0.03786477088012557, 0.03788956771763711, 0.037914364555148655, 0.037939161392660195, 0.037963958230171735, 0.03798875506768328, 0.03801355190519482, 0.03803834874270637, 0.03806314558021791, 0.03808794241772945, 0.038112739255240995, 0.038137536092752534, 0.03816233293026408, 0.03818712976777562, 0.03821192660528716, 0.0382367234427987, 0.03826152028031025, 0.038286317117821794, 0.038311113955333334, 0.038335910792844874, 0.038360707630356414, 0.03838550446786796, 0.03841030130537951, 0.03843509814289105, 0.038459894980402594, 0.03848469181791413, 0.038509488655425674, 0.03853428549293721, 0.03855908233044876, 0.03858387916796031, 0.03860867600547185, 0.038633472842983387, 0.038658269680494926, 0.03868306651800647, 0.03870786335551802, 0.03873266019302956, 0.0387574570305411, 0.03878225386805264, 0.038807050705564186, 0.038831847543075726, 0.03885664438058727, 0.03888144121809881, 0.03890623805561035, 0.0389310348931219, 0.03895583173063344, 0.038980628568144986, 0.039005425405656526, 0.039030222243168065, 0.03905501908067961, 0.03907981591819115, 0.0391046127557027, 0.03912940959321424, 0.039154206430725785, 0.039179003268237325, 0.039203800105748865, 0.03922859694326041, 0.03925339378077195, 0.0392781906182835, 0.03930298745579504, 0.03932778429330658, 0.039352581130818125, 0.039377377968329665, 0.03940217480584121, 0.03942697164335275, 0.03945176848086429, 0.03947656531837583, 0.03950136215588738, 0.039526158993398924, 0.039550955830910464, 0.03957575266842201, 0.039600549505933544, 0.03962534634344509, 0.03965014318095664, 0.03967494001846818, 0.039699736855979724, 0.039724533693491264, 0.039749330531002804, 0.03977412736851434, 0.03979892420602589, 0.03982372104353744, 0.03984851788104898, 0.03987331471856052, 0.039898111556072056, 0.0399229083935836, 0.03994770523109515, 0.03997250206860669, 0.03999729890611823, 0.04002209574362977, 0.040046892581141316, 0.040071689418652856, 0.0400964862561644, 0.04012128309367595, 0.04014607993118748, 0.04017087676869903, 0.04019567360621057, 0.040220470443722116, 0.040245267281233656, 0.0402700641187452, 0.04029486095625674, 0.04031965779376828, 0.04034445463127983, 0.04036925146879137, 0.040394048306302915, 0.040418845143814455, 0.040443641981325995, 0.04046843881883754, 0.04049323565634908, 0.04051803249386063, 0.04054282933137217, 0.04056762616888371, 0.040592423006395255, 0.040617219843906795, 0.04064201668141834, 0.04066681351892988, 0.04069161035644142, 0.04071640719395297, 0.04074120403146451, 0.040766000868976054, 0.040790797706487594, 0.04081559454399914, 0.040840391381510674, 0.04086518821902222, 0.04088998505653377, 0.04091478189404531, 0.040939578731556854, 0.040964375569068394, 0.040989172406579934, 0.041013969244091474, 0.04103876608160302, 0.04106356291911457, 0.04108835975662611, 0.04111315659413765, 0.04113795343164919, 0.04116275026916073, 0.04118754710667228, 0.04121234394418382, 0.04123714078169537, 0.0412619376192069, 0.041286734456718446, 0.041311531294229986, 0.04133632813174153, 0.04136112496925308, 0.04138592180676462, 0.04141071864427616, 0.0414355154817877, 0.041460312319299246, 0.041485109156810786, 0.04150990599432233, 0.04153470283183387, 0.04155949966934541, 0.04158429650685696, 0.0416090933443685, 0.041633890181880046, 0.041658687019391585, 0.041683483856903125, 0.04170828069441467, 0.04173307753192621, 0.04175787436943776, 0.0417826712069493, 0.04180746804446084, 0.041832264881972385, 0.041857061719483925, 0.04188185855699547, 0.04190665539450701, 0.04193145223201856, 0.0419562490695301, 0.04198104590704164, 0.042005842744553185, 0.042030639582064724, 0.04205543641957627, 0.04208023325708781, 0.04210503009459935, 0.0421298269321109, 0.04215462376962244, 0.042179420607133984, 0.042204217444645524, 0.042229014282157064, 0.042253811119668604, 0.04227860795718015, 0.0423034047946917, 0.04232820163220324, 0.04235299846971478, 0.04237779530722632, 0.04240259214473786, 0.04242738898224941, 0.04245218581976095, 0.0424769826572725, 0.04250177949478403, 0.042526576332295576, 0.042551373169807116, 0.04257617000731866, 0.04260096684483021, 0.04262576368234175, 0.04265056051985329, 0.04267535735736483, 0.042700154194876376, 0.042724951032387916, 0.04274974786989946, 0.042774544707411, 0.04279934154492254, 0.04282413838243409, 0.04284893521994563, 0.042873732057457176, 0.04289852889496872, 0.042923325732480255, 0.0429481225699918, 0.04297291940750334, 0.04299771624501489, 0.04302251308252643, 0.043047309920037975, 0.043072106757549515, 0.043096903595061055, 0.0431217004325726, 0.04314649727008414, 0.04317129410759569, 0.04319609094510723, 0.04322088778261877, 0.043245684620130315, 0.043270481457641854, 0.0432952782951534, 0.04332007513266494, 0.04334487197017648, 0.04336966880768803, 0.04339446564519957, 0.043419262482711114, 0.043444059320222654, 0.043468856157734194, 0.043493652995245734, 0.04351844983275728, 0.04354324667026883, 0.04356804350778037, 0.043592840345291914, 0.04361763718280345, 0.043642434020314994, 0.04366723085782654, 0.04369202769533808, 0.04371682453284963, 0.04374162137036117, 0.04376641820787271, 0.043791215045384246, 0.04381601188289579, 0.04384080872040734, 0.04386560555791888, 0.04389040239543042, 0.04391519923294196, 0.043939996070453506, 0.043964792907965046, 0.04398958974547659, 0.04401438658298813, 0.04403918342049967, 0.04406398025801122, 0.04408877709552276, 0.044113573933034306, 0.04413837077054585, 0.044163167608057385, 0.04418796444556893, 0.04421276128308047, 0.04423755812059202, 0.04426235495810356, 0.044287151795615105, 0.044311948633126645, 0.044336745470638185, 0.04436154230814973, 0.04438633914566127, 0.04441113598317282, 0.04443593282068436, 0.0444607296581959, 0.044485526495707445, 0.044510323333218985, 0.04453512017073053, 0.04455991700824207, 0.04458471384575361, 0.04460951068326516, 0.0446343075207767, 0.044659104358288244, 0.044683901195799784, 0.04470869803331133, 0.044733494870822864, 0.04475829170833441, 0.04478308854584596, 0.0448078853833575, 0.044832682220869044, 0.044857479058380584, 0.044882275895892124, 0.04490707273340367, 0.04493186957091521, 0.04495666640842676, 0.0449814632459383, 0.04500626008344984, 0.045031056920961376, 0.04505585375847292, 0.04508065059598447, 0.04510544743349601, 0.04513024427100755, 0.04515504110851909, 0.045179837946030636, 0.045204634783542176, 0.04522943162105372, 0.04525422845856527, 0.0452790252960768, 0.04530382213358835, 0.04532861897109989, 0.045353415808611436, 0.04537821264612298, 0.04540300948363452, 0.04542780632114606, 0.0454526031586576, 0.04547739999616915, 0.04550219683368069, 0.045526993671192235, 0.045551790508703775, 0.045576587346215315, 0.04560138418372686, 0.0456261810212384, 0.04565097785874995, 0.04567577469626149, 0.04570057153377303, 0.045725368371284575, 0.045750165208796115, 0.04577496204630766, 0.0457997588838192, 0.04582455572133074, 0.04584935255884229, 0.04587414939635383, 0.045898946233865374, 0.045923743071376914, 0.04594853990888846, 0.045973336746399994, 0.04599813358391154, 0.04602293042142309, 0.04604772725893463, 0.046072524096446174, 0.046097320933957714, 0.046122117771469254, 0.0461469146089808, 0.04617171144649234, 0.04619650828400389, 0.04622130512151543, 0.04624610195902697, 0.04627089879653851, 0.04629569563405005, 0.0463204924715616, 0.04634528930907314, 0.04637008614658469, 0.04639488298409622, 0.046419679821607766, 0.046444476659119306, 0.04646927349663085, 0.0464940703341424, 0.04651886717165394, 0.04654366400916548, 0.04656846084667702, 0.046593257684188566, 0.04661805452170011, 0.04664285135921165, 0.04666764819672319, 0.04669244503423473, 0.04671724187174628, 0.04674203870925782, 0.046766835546769366, 0.046791632384280905, 0.046816429221792445, 0.04684122605930399, 0.04686602289681553, 0.04689081973432708, 0.046915616571838625, 0.04694041340935016, 0.046965210246861705, 0.046990007084373245, 0.04701480392188479, 0.04703960075939633, 0.04706439759690788, 0.04708919443441942, 0.04711399127193096, 0.047138788109442505, 0.047163584946954044, 0.04718838178446559, 0.04721317862197713, 0.04723797545948867, 0.04726277229700022, 0.04728756913451176, 0.047312365972023304, 0.047337162809534844, 0.047361959647046384, 0.04738675648455793, 0.04741155332206947, 0.04743635015958102, 0.04746114699709256, 0.0474859438346041, 0.04751074067211564, 0.04753553750962718, 0.04756033434713873, 0.04758513118465027, 0.04760992802216182, 0.04763472485967335, 0.047659521697184896, 0.04768431853469644, 0.04770911537220798, 0.04773391220971953, 0.04775870904723107, 0.04778350588474261, 0.04780830272225415, 0.047833099559765696, 0.04785789639727724, 0.04788269323478878, 0.04790749007230032, 0.04793228690981186, 0.04795708374732341, 0.04798188058483495, 0.048006677422346496, 0.04803147425985804, 0.048056271097369575, 0.04808106793488112, 0.04810586477239266, 0.04813066160990421, 0.048155458447415755, 0.048180255284927295, 0.048205052122438835, 0.048229848959950375, 0.04825464579746192, 0.04827944263497346, 0.04830423947248501, 0.04832903630999655, 0.04835383314750809, 0.048378629985019635, 0.048403426822531175, 0.04842822366004272, 0.04845302049755426, 0.0484778173350658, 0.04850261417257735, 0.04852741101008889, 0.048552207847600434, 0.048577004685111974, 0.048601801522623514, 0.04862659836013506, 0.0486513951976466, 0.04867619203515815, 0.04870098887266969, 0.048725785710181234, 0.04875058254769277, 0.048775379385204314, 0.04880017622271586, 0.0488249730602274, 0.04884976989773895, 0.04887456673525049, 0.04889936357276203, 0.04892416041027357, 0.04894895724778511, 0.04897375408529666, 0.0489985509228082, 0.04902334776031974, 0.04904814459783128, 0.049072941435342826, 0.04909773827285437, 0.04912253511036591, 0.04914733194787745, 0.04917212878538899, 0.04919692562290054, 0.04922172246041208, 0.049246519297923626, 0.04927131613543517, 0.049296112972946705, 0.04932090981045825, 0.04934570664796979, 0.04937050348548134, 0.049395300322992886, 0.049420097160504425, 0.049444893998015965, 0.049469690835527505, 0.049494487673039045, 0.0495192845105506, 0.04954408134806214, 0.04956887818557368, 0.049593675023085225, 0.049618471860596765, 0.049643268698108305, 0.049668065535619844, 0.04969286237313139, 0.04971765921064293, 0.04974245604815447, 0.049767252885666025, 0.049792049723177564, 0.049816846560689104, 0.049841643398200644, 0.04986644023571219, 0.04989123707322373, 0.04991603391073527, 0.049940830748246824, 0.049965627585758364, 0.0499904244232699, 0.05001522126078145, 0.05004001809829299, 0.05006481493580453, 0.05008961177331607, 0.05011440861082762, 0.05013920544833916, 0.050164002285850696, 0.05018879912336225, 0.05021359596087379, 0.05023839279838533, 0.05026318963589687, 0.050287986473408416, 0.050312783310919956, 0.050337580148431496, 0.05036237698594305, 0.05038717382345459, 0.05041197066096612, 0.05043676749847766, 0.050461564335989216, 0.050486361173500756, 0.050511158011012296, 0.05053595484852384, 0.05056075168603538, 0.05058554852354692, 0.05061034536105846, 0.050635142198570016, 0.050659939036081555, 0.050684735873593095, 0.05070953271110464, 0.05073432954861618, 0.05075912638612772, 0.050783923223639275, 0.05080872006115081, 0.05083351689866235, 0.05085831373617389, 0.05088311057368544, 0.05090790741119698, 0.05093270424870852, 0.05095750108622007, 0.05098229792373161, 0.05100709476124315, 0.05103189159875469, 0.05105668843626624, 0.05108148527377778, 0.051106282111289314, 0.05113107894880087, 0.05115587578631241, 0.05118067262382395, 0.05120546946133549, 0.051230266298847034, 0.051255063136358574, 0.051279859973870114, 0.05130465681138167, 0.05132945364889321, 0.05135425048640475, 0.05137904732391629, 0.051403844161427834, 0.05142864099893937, 0.05145343783645091, 0.05147823467396247, 0.051503031511474, 0.05152782834898554, 0.05155262518649708, 0.05157742202400863 ], "y": [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.853803824612662e-31, 0.0004355924809806795, 0.0017423699239227184, 0.003920332328826116, 0.006969479695690771, 0.010889812024516861, 0.01568132931530416, 0.021344031568052948, 0.027877918782763078, 0.03528299095943435, 0.04355924809806717, 0.052706690198661386, 0.06272531726121663, 0.07361512928573352, 0.08537612627221139, 0.09800830822065097, 0.11151167513105191, 0.1258862270034138, 0.1411319638377374, 0.15724888563402237, 0.17423699239226828, 0.19209628411247587, 0.21082676079464438, 0.23042842243877476, 0.2509012690448665, 0.2722453006129189, 0.2944605171429334, 0.3175469186349091, 0.34150450508884544, 0.36633327650474407, 0.3920332328826031, 0.41860437422242447, 0.4460467005242068, 0.4743602117879498, 0.503544908013655, 0.5336007892013207, 0.5645278553509485, 0.5963261064625379, 0.6289955425360874, 0.6625361635715993, 0.696947969569073, 0.7322309605285063, 0.7683851364499027, 0.8054104973332601, 0.8433070431785785, 0.8820747739858587, 0.9217136897550993, 0.962223790486302, 1.0036050761794646, 1.04585754683459, 1.0889812024516767, 1.1329760430307239, 1.1778420685717337, 1.2235792790747042, 1.270187674539635, 1.3176672549665285, 1.3660180203553824, 1.4152399707061984, 1.4653331060189765, 1.5162974262937134, 1.568132931530414, 1.6208396217290757, 1.6744174968896968, 1.7288665570122819, 1.7841868020968257, 1.8403782321433324, 1.8974408471518012, 1.955374647122229, 2.01417963205462, 2.0738558019489726, 2.1344031568052846, 2.19582169662356, 2.258111421403794, 2.3212723311459924, 2.385304425850152, 2.4502077055162705, 2.515982170144352, 2.582627819734394, 2.650144654286398, 2.718532673800364, 2.7877918782762907, 2.8579222677141782, 2.928923842114028, 3.0007966014758374, 3.0735405457996094, 3.1471556750853433, 3.22164198933304, 3.2969994885426965, 3.3732281727143127, 3.4503280418478925, 3.52829909594343, 3.6071413350009327, 3.6868547590203953, 3.767439368001819, 3.848895161945205, 3.9312221408505517, 4.014420304717858, 4.098489653547128, 4.183430187338358, 4.269241906091551, 4.355924809806705, 4.443478898483817, 4.531904172122896, 4.6212006307239335, 4.711368274286929, 4.802407102811892, 4.894317116298812, 4.987098314747694, 5.080750698158541, 5.175274266531344, 5.2706690198661095, 5.3669349581628385, 5.46407208142153, 5.5620803896421815, 5.66095988282479, 5.760710560969366, 5.861332424075901, 5.962825472144397, 6.065189705174855, 6.168425123167272, 6.272531726121657, 6.377509514037993, 6.483358486916297, 6.5900786447565585, 6.697669987558788, 6.806132515322972, 6.915466228049119, 7.121766824530048, 8.267889545987355, 9.377959471292638, 10.451976600445972, 11.489940933447214, 12.491852470296443, 13.457711210993713, 14.387517155538909, 15.281270303932073, 16.138970656173278, 16.96061821226241, 17.74621297219952, 18.495754935984625, 19.209244103617745, 19.886680475098803, 20.52806405042784, 21.133394829604892, 21.702672812629874, 22.235897999502864, 22.73307039022387, 23.194189984792803, 23.61925678320972, 24.008270785474643, 24.36123199158755, 24.67814040154842, 24.958996015357258, 25.203798833014098, 25.41254885451891, 25.58524607987169, 25.721890509072473, 25.822482142121213, 25.887020979017937, 25.915507019762657, 25.90794026435535, 25.864320712796008, 25.784648365084664, 25.668923221221284, 25.5171452812059, 25.367436426210272, 25.711753405945643, 26.057059244725476, 26.40335394254975, 26.750637499418517, 27.098909915331735, 27.448171190289415, 27.798421324291578, 28.14966031733819, 28.50188816942927, 28.855104880564845, 29.209310450744855, 29.56450487996933, 29.92068816823828, 30.27786031555169, 30.636021321909574, 30.99517118731191, 31.35530991175875, 31.716437495250002, 32.07855393778575, 32.441659239365976, 32.805753399990635, 33.170836419659764, 33.5369082983734, 33.90396903613146, 34.271348010675396, 34.6431548847831, 35.01987989448194, 35.40152303977189, 35.78808432065294, 36.17956373712515, 36.57596128918846, 36.97727697684289, 37.383510800088466, 37.79466275892512, 38.2107328533529, 38.63172108337186, 39.057627448981876, 39.48845195018305, 39.924194586975325, 40.36485535935873, 40.810434267333235, 41.26093131089889, 41.716346490055656, 42.17667980480355, 42.641931255142545, 43.112100841072696, 43.58718856259395, 44.067194419706304, 44.552118412409826, 45.041960540704444, 45.536720804590175, 46.03639920406703, 46.54099573913502, 47.05051040979411, 47.56494321604433, 48.08429415788568, 48.608563235318144, 49.13775044834172, 49.671855796956464, 50.21087928116227, 50.75482090095921, 51.303680656347325, 51.85745854732649, 52.41615457389682, 52.97976873605826, 53.548301033810795, 54.12175146715448, 54.70012003608929, 55.28340674061521, 55.87161158073228, 56.4647345564404, 57.063918101744534, 57.69078553503341, 58.3535586405939, 59.05223741842606, 59.786821868529806, 60.557311990905184, 61.36370778555222, 62.206009252470864, 63.084216391661066, 63.99832920312295, 64.9483476868565, 65.93427184286162, 66.95610167113837, 68.01383717168677, 69.1074783445068, 70.23702518959843, 71.33053655005564, 72.34797378965943, 73.37734289357276, 74.41864386179584, 75.4718766943284, 76.53704139117067, 77.61413795232254, 78.70316637778399, 79.80412666755502, 80.91701882163568, 82.04184284002608, 83.17859872272591, 84.32728646973541, 85.48790608105463, 86.66045755668335, 87.84494089662167, 89.0413561008697, 90.24970316942726, 91.46998210229444, 92.70219289947138, 93.94633556095768, 95.20241008675376, 96.4704164768594, 97.65580728917756, 98.81104729842055, 99.98815154412311, 101.18712002628543, 102.40795274490719, 103.6506496999886, 104.91521089152955, 106.2016363195302, 107.50992598399037, 108.84007988491015, 110.19209802228951, 111.5659803961285, 118.90033322164045, 126.45844886415016, 132.6410197861327, 137.44804598758793, 140.87952746851613, 142.93546422891677, 143.61585626879017, 142.92070358813635, 140.85000618695508, 137.40376406524663, 133.16596764311157, 133.61934592628677, 134.1697071448821, 134.81705129889758, 135.56137838833322, 136.402688413189, 137.34098137346498, 138.37625726916121, 139.50851610027746, 140.73775786681392, 142.0639825687707, 143.48719020614755, 144.9953811076607, 146.52936222954756, 148.0811329707224, 149.69802828395294, 151.4773568557464, 153.42647158789475, 155.54537248039802, 157.8340595332564, 160.29253274646956, 162.92079212003787, 165.7188376539612, 168.68666934823946, 171.8242872028727, 175.13169121786072, 178.60888139320397, 182.25585772890201, 185.5524203685921, 188.85111871284536, 192.2159185328198, 195.64681982851602, 199.14382259993377, 202.70692684707345, 206.3361325699346, 210.03143976851734, 213.7928484428219, 217.62035859284788, 221.51401425051182, 225.54192301446025, 230.25994871262796, 237.15629254253426, 244.01325038248402, 250.33913187301923, 256.0029146364267, 261.00459867270683, 265.34418398185943, 269.0216705638843, 272.03705841878167, 274.3903475465515, 276.0815379471936, 277.11062962070827, 277.47762256709524, 277.1825167863546, 276.2253122784865, 274.6060090434907, 272.32460708136733, 269.3811063921165, 265.775506975738, 264.12761294837577, 265.0407684595745, 265.9280424025825, 266.78943477739966, 267.6249455840258, 268.434574822461, 269.21832249270545, 269.976188594759, 270.7081731286216, 271.41427609429337, 272.09449749177423, 272.7725205909734, 273.4256645241637, 274.0514537061529, 274.6498881369413, 275.22096781652846, 275.7646927449147, 276.2810629220999, 277.4489464074291, 278.82220274357854, 279.9860723894356, 281.112743853224, 282.2941384647634, 283.53025622405374, 284.82109713109514, 286.1666611858877, 287.5669483884312, 289.19697992850485, 290.6462039942347, 291.759963029712, 292.53825703493715, 292.98108600991, 293.08844995463033, 292.86034886909835, 292.29678275331406, 291.39775160727766, 290.1632554309886, 288.5932942244474, 286.68786798765393, 284.4530429580594, 282.05781558772, 279.57885309388433, 277.16628383644513, 275.34417674262465, 273.83552281785575, 272.6407751138454, 272.6814525021665, 273.34928798176793, 273.956483045209, 274.50303769248933, 274.9889519236094, 275.4142257385688, 275.77885913736776, 276.0828521200061, 276.32620468648395, 276.51860138061693, 276.7175175171568, 276.9324277569615, 277.16333210003097, 277.4102305463653, 277.67312309596446, 278.0522857596272, 278.6970697912733, 279.413196831393, 280.2006668799865, 281.0594799370536, 282.2168659797622, 284.01604014115316, 286.46048377978485, 289.5501968956572, 293.2851794887702, 297.6654315591239, 302.69095310671884, 308.36174413155373, 314.6778046336295, 321.63913461294567, 329.2457340695027, 339.546142822525, 350.06378913156806, 355.7680788363379, 356.6590119368361, 352.73658843306293, 344.00080832501806, 333.0717243001572, 335.44166005068837, 331.8484314240672, 319.6341094536795, 298.5896267019233, 287.91479878987246, 283.2525166329716, 279.0782990191258, 275.39214594833396, 272.1940574205972, 269.25333152265114, 266.30339983925103, 263.3439204795404, 260.3748934435192, 257.39631873118765, 254.4081963425452, 251.4105262775925, 248.40330853632946, 245.38654311875572, 242.36023002487167, 239.32436925467687, 236.27896080817183, 233.22400468535585, 231.94890835600592, 249.47386076503165, 260.00207502279835, 263.5335511293063, 260.0682890845553, 249.60628888854396, 232.14755054127448, 207.69207404274619, 204.18830658231758, 201.27488973364646, 198.35459800356895, 194.88442269549483, 191.28274142464969, 187.78561639630752, 184.39304761046802, 181.105035067131, 177.92157876629685, 174.8426787079651, 171.8683348921357, 168.99854731880922, 166.2333159879854, 163.57264089966418, 161.01652205384562, 158.56495945052964, 156.217953089716, 153.97550297140523, 151.83760909559712, 149.80427146229155, 147.87549007148866, 146.0512649231884, 144.33159601739078, 142.71648335409552, 141.20592693330312, 139.7999267550133, 138.49848281922615, 137.3015951259416, 136.2092636751596, 135.22148846688015, 134.3382695011034, 133.55960677782937, 132.88550029705783, 132.5571624453777, 132.42095245737613, 132.29794040196543, 132.18812627914565, 132.09151008891683, 132.00809183127902, 131.93787150623209, 131.88084911377607, 131.83702465391104, 131.80639812663694, 131.78896953195374, 131.78473886986154, 131.7937061403603, 131.81587134344994, 131.85123447913057, 131.89979554740214, 131.96155454826462, 132.03651148171807, 132.12466634776243, 132.2260191463978, 132.34056987762395, 132.4683185414412, 132.60926513784935, 132.76340966684845, 132.9307521284385, 135.81814904049386, 144.68843529185577, 149.33654567477416, 149.76248018924886, 145.9662388352791, 137.9478216128659, 138.1299701932164, 138.31892185908515, 138.4664917695729, 138.5726799246797, 138.6374863244056, 138.66091096875044, 138.6429538577143, 138.58361499129717, 138.48289436949906, 138.34079199231994, 138.15730785975984, 137.93244197181886, 137.66619432849683, 137.3585649297938, 137.00955377570975, 136.64073920041776, 136.24270477272057, 135.8030689220699, 135.32183164846577, 135.1598323022493, 135.43407047476347, 135.73105338577113, 136.0507810352722, 136.39325342326686, 136.7584705497549, 137.14239360355663, 137.53855739516467, 137.9468770794151, 138.36735265630787, 138.79998412584297, 139.2447714880205, 139.70171474284038, 140.1708138903025, 140.652068930407, 140.97893475117752, 141.2489220202249, 141.51678237110374, 141.78251580381396, 142.0461223183556, 142.30760191472862, 142.56695459293312, 142.82418035296894, 143.07927919483623, 143.33225111853494, 143.58309612406504, 143.83181421142658, 144.0784053806195, 144.32286963164384, 144.56520696449957, 144.80541737918676, 145.04350087570532, 145.27945745405532, 145.51328711423668, 145.74498985624953, 145.97456568009375, 146.20201458576938, 146.42733657327645, 146.65053164261488, 146.87159979378478, 147.090541026786, 147.30735534161872, 147.5220427382828, 147.73778945691777, 147.95949283401256, 148.18720674168654, 148.4209311799397, 148.6606661487721, 148.90641164818365, 149.15816767817452, 149.41593423874457, 149.67971132989382, 149.94949895162227, 150.22529710392988, 150.43831877769884, 150.62522338429693, 150.81762342967443, 151.01551891383104, 151.21890983676707, 151.4277961984823, 151.64217799897673, 151.86205523825055, 152.08742791630365, 152.31829603313594, 152.5546595887475, 152.7965185831384, 153.04387301630854, 153.2967228882579, 153.55507790204555, 153.82233627556369, 154.10123470387407, 154.39177318697656, 154.6939517248714, 155.00777031755837, 155.33322896503756, 155.67032766730895, 156.01906642437268, 156.37944523622855, 156.75146410287655, 157.13512302431684, 157.53042200054938, 157.9373610315741, 158.35594011739113, 158.7861592580003, 159.22801845340166, 159.68151770359526, 160.1466570085811, 160.6311605289663, 161.12985380799782, 161.64113358426658, 162.16499985777247, 162.70145262851548, 163.2586860862945, 163.96088009309022, 164.84991782792483, 165.92579929079847, 167.1885244817108, 168.638093400662, 170.27450604765218, 172.09776242268128, 174.10786252574914, 176.30480635685592, 177.59639342957888, 174.87297232383798, 171.97941183214877, 168.91571195451124, 165.68187269092547, 162.27789404139148, 158.7037760059087, 154.95951858447805, 151.04512177709913, 146.96058558377192, 142.70591000449642, 138.28109503927266, 133.68614068810007, 128.92104695097973, 123.98581382791109, 118.88044131889417, 113.60492942392902, 107.68390792399907, 101.70725111630743, 95.80134541924131, 89.96619083280211, 84.20178735698909, 78.50813499180227, 72.88523373724165, 67.33308359330721, 61.85168455999831, 56.44103663731625, 51.10124637206566, 45.933577154117735, 41.02687865852975, 36.38115088530172, 31.99639383443362, 27.87260750592499, 24.00979189977681, 21.44242784365457, 21.558994338881586, 21.676373395032968, 21.79456501210871, 21.913569190108824, 22.033385929033273, 22.154015228882084, 22.275457089655255, 22.39771151135277, 22.520778493974646, 22.64465803752088, 22.769350141991495, 22.89485480738644, 23.02117203370575, 23.14830182094941, 23.276244169117433, 23.404999078209812, 23.53462141012069, 23.665188297596476, 23.796700278708474, 23.929157353456677, 24.062559521841116, 24.196906783861746, 24.332199139518586, 24.46843658881168, 24.605619131740962, 24.743746768306444, 24.882819498508166, 25.022837322346085, 25.16380023982021, 25.305708250930593, 25.448561355677143, 25.59235955405992, 25.737102846078912, 25.88279123173411, 26.029424711025527, 26.17700328395318, 26.325526950517027, 26.47499571071708, 26.625409564553355, 26.776768512025843, 26.929072553134546, 27.08232168787945, 27.236515916260593, 27.39165523827795, 27.547739653931497, 27.704769163221265, 27.862743766147254, 28.02166346270944, 28.18152825290788, 28.342338136742512, 28.504093114213333, 28.666793185320387, 28.830435108770907, 28.99499938254315, 29.1604827472391, 29.3268852028588, 29.494206749402213, 29.662447386869346, 29.8316071152602, 30.001685934574784, 30.172683844813104, 30.34460084597515, 30.5174369380609, 30.69119212107038, 30.865866395003582, 31.041459759860523, 31.21797221564118, 31.39540376234556, 31.573754399973676, 31.753024128525507, 31.93321294800107, 32.11432085840034, 32.29634785972335, 32.47929395197008, 32.66315913514056, 32.84794340923474, 33.033646774252645, 33.22026923019427, 33.40781077705962, 33.59627141484871, 33.7856511435615, 33.975949963198055, 34.1671678737583, 34.35930487524228, 34.552360967649996, 34.74633615098141, 34.94123042523657, 35.13704379041547, 35.33377624651807, 35.531427793544395, 35.72999843149445, 35.92948816036822, 36.129896980165725, 36.33122489088697, 36.53347189253193, 36.81505078046253, 37.09274487969805, 37.35389321329704, 37.59849578125946, 37.8265525835853, 38.03806362027458, 38.23302889132728, 38.41144839674341, 38.573322136522954, 38.718650110665955, 38.84743231917238, 39.060198286340075, 39.33405322936323, 39.60946515005493, 39.88643404841518, 40.16495992444403, 40.44504277814145, 40.72668260950743, 41.009879418542006, 41.29463320524513, 41.58094396961684, 41.868811711657095, 42.158236431365914, 42.44921812874333, 42.7417568037893, 43.035852456503896, 43.33150508688699, 43.62871469493871, 43.92748128065895, 44.22780484404779, 44.529685385105196, 44.83312290383121, 45.138117400225724, 45.44466887428885, 45.75277732602054, 46.0624427554208, 46.37366516248962, 46.68644454722702, 47.00078090963303, 47.31667424970755, 47.63412456745068, 47.95313186286234, 48.27369613594261, 48.59581738669143, 48.91949561510884, 49.244730821194814, 49.57152300494935, 49.89987216637245, 50.229778305464144, 50.56124142222436, 50.894261516653216, 51.22883858875063, 51.5649726385166, 51.902663665951124, 52.2419116710542, 52.58271665382591, 52.92507861426613, 53.26899755237497, 53.61447346815237, 53.96150636159833, 54.310096232712866, 54.66024308149595, 55.01194690794761, 55.365207712067885, 55.72002549385671, 56.07640025331408, 56.434331990440036, 56.79382070523455, 57.15486639769764, 57.5174690678293, 57.88162871562959, 58.247345341098374, 58.61461894423576, 58.98344952504172, 59.353837083516204, 59.72578161965929, 60.09928313347104, 60.47434162495124, 60.850957094100046, 61.22912954091742, 61.60885896540336, 61.99014536755786, 62.37298874738095, 62.757389104872644, 63.143346440032865, 63.530860752861656, 63.919932043359026, 64.31056031152495, 64.70274555735948, 65.09648778086259, 65.49178698203424, 65.88864316087447, 66.30728943490034, 66.83988970227921, 67.49758608000735, 68.28037856808486, 69.18826716651175, 70.22125187528793, 71.125916665181, 71.966296202147, 72.78724938012995, 73.5887761991298, 74.37087665914663, 75.13732152395455, 75.91003277519944, 76.69254942609278, 77.48487147663454, 78.28699892682475, 79.09893177666339, 79.92067002615057, 80.75221367528609, 81.59356272407003, 82.44471717250242, 83.30567702058325, 84.17644226831254, 85.05701291569032, 85.9473889627165, 86.84757040939107, 87.75755725571406, 88.67734950168554, 89.60694714730546, 90.54635019257391, 91.49555863749069, 92.45457248205588, 93.42339172626954, 94.40201637013162, 95.39044641364211, 96.38868185680106, 97.39672269960862, 98.41456894206443, 99.44222058416871, 100.47967762592145, 101.52694006732261, 102.5840079083722, 103.65088114907033, 104.72755978941683, 105.81404382941172, 106.91033326905492, 108.01642810834683, 109.1323283472872, 110.25803398587571, 111.39354502411295, 112.53886146199831, 113.69398329953242, 114.85891053671494, 116.03364317354568, 117.21818121002514, 118.65008988568658, 120.1877520208798, 121.81325329388075, 123.52659370469001, 125.3277732533074, 127.21679193973226, 129.1936497639656, 131.25834672600655, 133.41088282585596, 135.65125806351284, 137.9794724389782, 140.3955259522518, 142.89941860333263, 145.4911503922222, 148.17072131891908, 150.93813138342466, 153.7934342985576, 156.74109569404106, 159.78396313110693, 162.92203660975392, 166.15531612998336, 169.48380169179387, 172.90749329518698, 176.42639094016184, 180.0404946267176, 183.74980435485597, 187.55432012457533, 191.45404193587737, 195.44896978876025, 199.5391036832258, 203.72444361927316, 208.0049895969014, 212.38074161611235, 216.8527155953031, 221.47819412531481, 226.28764252588633, 231.28106079701973, 236.45844893871418, 241.81980695096811, 247.3651348337841, 253.0944325871598, 259.00770021109753, 265.1049377055964, 276.42772385430067, 290.4786953551172, 306.68161474744346, 325.03725822036665, 345.54562577387816, 367.5476640957476, 388.01940185172333, 406.5854635431002, 423.2458491698872, 440.2812331182445, 443.6929431014192, 441.9302065798233, 445.07573742926286, 447.82914517406175, 450.19042981421956, 452.15959134973747, 453.73662978061435, 454.921545106851, 455.7143373284471, 456.11500644540246, 456.12355245771744, 455.73997536539207, 454.96427516842584, 453.7964518668194, 503.2693160334252, 530.0338512111534, 501.1486182356758, 421.98172775031514, 369.89257679457506, 340.7626712890042, 313.8397989205344, 289.12395968915285, 266.6151535948661, 246.313380637679, 228.21864081758164, 212.3309341345826, 198.33019103494107, 185.3607282505394, 173.37586535035246, 162.37560233438336, 152.35993920263448, 143.4370201892308, 136.79647928708326, 130.39017808365057, 124.21811657893426, 118.28029477293582, 112.57671266565232, 107.10737025708659, 101.87226754723595, 96.87140453610282, 92.10478122368498, 89.11005626498624, 87.30379145193572, 83.06403581844134, 76.39078936450515, 67.28405209012396, 55.7438239953021, 41.77010508003407, 27.622922337700203, 25.136892426193178, 22.80139579489598, 20.61643244380971, 18.58200237293334, 16.69810558226782, 14.964742071812275, 13.381911841567154, 11.949614891532786, 10.667851221708494, 9.495945514072549, 8.392209152292622, 7.356640563566291, 6.3892397478928, 5.4900067052724, 4.6589414357052785, 3.896043939191042, 3.201314215730054, 2.574752265321983, 2.016358087967003, 1.526131683665222, 1.104073052416408, 0.7501821942207602, 0.4644591090781111, 0.24690379698859652, 0.0975162579521129, 0.01629649196872006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3192703610243837, 3.994332990044266, 11.779484415661482, 23.67472463787974, 45.92010053568443, 87.47130692542729, 133.4202868015855, 183.7670401641371, 238.65243650244707, 300.6271356546909, 370.63916130229745, 440.2429459512333, 495.4624747031168, 548.3790320435995, 626.3268556841055, 657.0353096594026, 656.3048020724174, 632.3967496448207, 596.5462438133679, 578.3246437962667, 562.6709589338916, 549.5851892262506, 539.0673346733371, 531.1173952751561, 525.7353710317042, 522.6421017000157, 521.1622836215333, 525.0615146956765, 531.9961407468828, 539.007135918509, 546.1951999793836, 553.7299722840854, 561.6141743120548, 569.8478060632883, 578.4308675377899, 587.3633587355554, 596.6452796565892, 606.2766303008892, 616.2574106684525, 626.5876207592848, 637.26726057338, 648.2963301107442, 659.6748293713717, 671.4027583552679, 683.4801170624306, 695.906905492856, 748.1747534603608, 921.6972770393321, 831.8951422228428, 809.9437914221655, 819.476474786923, 823.3133107289021, 825.93196186597, 828.5149020183791, 830.8999376425886, 833.1391146375489, 835.1396039333989, 836.8729319989989, 838.3390988343498, 839.5381044394512, 840.5637572365747, 841.3666266876045, 840.4890387414981, 839.5172995979024, 838.8428968570524, 838.4658305189477, 838.3861005835888, 838.6037070509751, 840.0591819071544, 844.3701646577664, 848.1387604923397, 851.3649694108736, 854.0487914133697, 856.1902264998268, 857.7892746702461, 858.8459359246266, 859.3602102629682, 863.418982370974, 873.1069696075521, 902.0536040215112, 928.5979914559117, 952.7254294723535, 974.4238833690123, 993.3827243389926, 1006.1107837209249, 1023.0909838153907, 1066.6959808624827, 1076.8834830135734, 1054.6156023829378, 1004.7804603667137, 924.583447015323, 862.5869746108286, 822.7268255636108, 784.3320741779828, 747.670409656509, 712.7418319991714, 679.5463412059797, 648.0839372769407, 618.3546202120394, 590.3583900112901, 564.1018044315473, 545.6791792288318, 527.5245496342862, 510.8007418796522, 495.55785808346195, 480.7886113293423, 466.2440177442128, 451.9240773280668, 438.4101125454545, 425.7692453486906, 413.22224982432755, 400.7691259723684, 388.4098737928071, 376.14449328564984, 363.97298445089064, 349.94794205766425, 333.95982653782426, 319.10606478513176, 304.3525789180939, 289.6993689367043, 275.1464348409695, 260.94125944100676, 250.78846593571166, 241.76465652261967, 232.96174816351524, 224.3797408584023, 216.01863460727677, 207.8784294101427, 199.95912526699635, 192.26072217783957, 184.78322014267405, 177.52661916149628, 173.35266540089737, 168.11920775386344, 161.74164649008026, 154.21998160954993, 145.5685829548712, 135.79075745515468, 124.67627330865895, 112.22513051538917, 98.43732907533946, 83.31286898851263, 66.8517502549127, 51.36621507521403, 39.31345151900606, 28.869829782246786, 20.035349864941164, 12.810011767084982, 7.193815488680549, 3.1867610297286215, 0.7888483902272919, 2.940788939644308e-08, 0.00031104320795375073, 0.0012321045544663317, 0.0027632134474275777, 0.004904369886837342, 0.007655573872694899, 0.011016825405001552, 0.01498812448375571, 0.01956947110895926, 0.024760865280611326, 0.03056230699871046, 0.03697379626325942, 0.04399533307425514, 0.051626917431701, 0.05986854933559333, 0.06872022878593609, 0.0781819557827273, 0.08825373032596463, 0.09893555241565279, 0.1102274220517867, 3.386556093823749, 106.59533765820386, 405.9335149603081, 621.6186757047712, 488.66379337734975, 444.78526279266106, 455.7909818339284, 471.64184791932786, 486.4385909892708, 492.75750203552843, 498.823446679792, 504.6364249220544, 510.19643676232414, 515.5034822005928, 520.5575612368682, 525.3586738711443, 529.8999433959198, 533.664580860402, 536.3308285754619, 537.8986865410984, 538.3681547573118, 537.7392332241025, 536.011921941469, 533.1862209094146, 529.2621301279346, 524.2396495970346, 518.1187793167078, 510.8995192869609, 502.58186950778907, 492.8571971145285, 482.1163076923727, 464.2424995723371, 447.22788983653345, 431.23931396091996, 416.27677194548585, 402.34026379024823, 389.4297894951874, 377.5453490603218, 366.6869424856345, 356.8545697711408, 348.048230916827, 340.26792592270385, 333.51365478876505, 327.7854175150141, 323.0832141014485, 319.4854555925207, 316.18465867452505, 312.97702133700733, 309.86254357996546, 306.8412254034029, 303.9130668073154, 301.07806779170704, 298.3362283565739, 295.68754850191914, 293.13202822774093, 305.9532058430991, 285.5609117934159, 283.44041711960574, 281.3585924559717, 279.31543780251496, 277.310953159234, 275.34513852613117, 273.41799390320375, 271.52951929045435, 269.6797146878804, 267.86858009548445, 266.096115513264, 264.3623209412212, 262.6671963793546, 261.0107418276652, 259.39295728615207, 257.8138427548162, 256.2733982336566, 254.7716237226742, 253.93312595501604, 253.18121015378634, 252.4944245079026, 252.494515567847, 253.0741376799708, 253.5418560821971, 253.89767077452606, 254.14158175695775, 254.27358902949211, 254.29369259212896, 254.20189244486878, 253.998188587711, 253.70494289733435, 253.83057880962923, 253.75080546086247, 253.46497929471815, 252.97293553610066, 252.2746741850098, 251.37019524144583, 250.25949870540805, 248.94258457689776, 247.41945285591336, 242.9254149607067, 238.20797498668335, 233.4473627741845, 228.64357832320292, 223.79662163374456, 218.90649270580576, 213.97319153938915, 208.99671813449208, 203.9770724911171, 198.82707411719016, 191.66967777542695, 184.80808563120848, 178.242297684543, 171.972313935421, 165.99813438385158, 163.96573947782957, 178.24507229857275, 185.53280909051776, 185.82894985366107, 179.13349458800286, 165.44720508825176, 147.31697062544185, 138.08036345000156, 129.3127802914231, 121.0142211497167, 113.18468602487047, 105.82417491689564, 98.93268782578166, 92.50667167251524, 86.36968471987291, 80.42354734197566, 74.6682595388191, 69.10382131040598, 63.730232656733676, 58.54749357780476, 53.555604073616735, 48.75456414417197, 45.34171574376339, 43.04885208361844, 40.61142280872331, 38.02942791908148, 35.30286741468926, 32.429445479269326, 29.351483365393975, 26.04393185800908, 22.5067909571131, 18.740060662707705, 14.743740974791093, 10.517831893365166, 6.062333418426826, 1.3772455499814635, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] }, { "mode": "lines", "name": "DOS: nqsmall 10", "showlegend": true, "type": "scatter", "x": [ -0.0037195256267313916, -0.0036947287892198487, -0.0036699319517083063, -0.0036451351141967635, -0.0036203382766852206, -0.0035955414391736786, -0.0035707446016621357, -0.0035459477641505937, -0.003521150926639051, -0.003496354089127508, -0.0034715572516159656, -0.0034467604141044227, -0.00342196357659288, -0.003397166739081338, -0.003372369901569795, -0.003347573064058252, -0.0033227762265467097, -0.003297979389035167, -0.0032731825515236244, -0.003248385714012082, -0.003223588876500539, -0.0031987920389889967, -0.0031739952014774543, -0.0031491983639659114, -0.0031244015264543686, -0.003099604688942826, -0.0030748078514312837, -0.0030500110139197413, -0.0030252141764081984, -0.003000417338896656, -0.0029756205013851135, -0.0029508236638735707, -0.002926026826362028, -0.0029012299888504854, -0.0028764331513389425, -0.0028516363138274, -0.0028268394763158577, -0.002802042638804315, -0.0027772458012927724, -0.0027524489637812295, -0.002727652126269687, -0.0027028552887581447, -0.002678058451246602, -0.0026532616137350594, -0.002628464776223517, -0.002603667938711974, -0.0025788711012004312, -0.002554074263688889, -0.002529277426177346, -0.0025044805886658035, -0.002479683751154261, -0.002454886913642718, -0.002430090076131176, -0.002405293238619633, -0.0023804964011080905, -0.002355699563596548, -0.002330902726085005, -0.0023061058885734628, -0.0022813090510619203, -0.0022565122135503775, -0.0022317153760388346, -0.002206918538527292, -0.0021821217010157493, -0.0021573248635042073, -0.0021325280259926645, -0.0021077311884811216, -0.0020829343509695796, -0.0020581375134580368, -0.002033340675946494, -0.0020085438384349515, -0.0019837470009234086, -0.001958950163411866, -0.0019341533259003237, -0.0019093564883887809, -0.0018845596508772382, -0.0018597628133656958, -0.0018349659758541532, -0.0018101691383426103, -0.0017853723008310679, -0.0017605754633195254, -0.0017357786258079828, -0.00171098178829644, -0.0016861849507848975, -0.0016613881132733549, -0.001636591275761812, -0.0016117944382502696, -0.0015869976007387271, -0.0015622007632271845, -0.0015374039257156416, -0.0015126070882040992, -0.0014878102506925568, -0.001463013413181014, -0.0014382165756694713, -0.0014134197381579288, -0.0013886229006463862, -0.0013638260631348433, -0.001339029225623301, -0.0013142323881117585, -0.0012894355506002156, -0.001264638713088673, -0.0012398418755771305, -0.001215045038065588, -0.001190248200554045, -0.0011654513630425026, -0.0011406545255309602, -0.0011158576880194173, -0.0010910608505078747, -0.0010662640129963322, -0.0010414671754847898, -0.001016670337973247, -0.0009918735004617043, -0.0009670766629501619, -0.0009422798254386189, -0.0009174829879270765, -0.0008926861504155339, -0.0008678893129039914, -0.0008430924753924485, -0.000818295637880906, -0.0007934988003693636, -0.000768701962857821, -0.0007439051253462782, -0.0007191082878347356, -0.0006943114503231931, -0.0006695146128116502, -0.0006447177753001078, -0.0006199209377885653, -0.0005951241002770227, -0.0005703272627654799, -0.0005455304252539373, -0.0005207335877423949, -0.0004959367502308519, -0.00047113991271930945, -0.00044634307520776697, -0.0004215462376962245, -0.00039674940018468157, -0.00037195256267313946, -0.00034715572516159655, -0.0003223588876500537, -0.0002975620501385116, -0.00027276521262696867, -0.0002479683751154258, -0.00022317153760388367, -0.00019837470009234078, -0.00017357786258079792, -0.0001487810250692558, -0.0001239841875577129, -9.918735004617003e-05, -7.43905125346279e-05, -4.959367502308501e-05, -2.4796837511542876e-05, 0.0, 2.4796837511542876e-05, 4.959367502308501e-05, 7.43905125346279e-05, 9.918735004617077e-05, 0.0001239841875577129, 0.0001487810250692558, 0.00017357786258079865, 0.00019837470009234078, 0.00022317153760388367, 0.0002479683751154258, 0.00027276521262696867, 0.0002975620501385116, 0.0003223588876500537, 0.00034715572516159655, 0.00037195256267313946, 0.00039674940018468157, 0.0004215462376962245, 0.00044634307520776735, 0.00047113991271930945, 0.0004959367502308524, 0.0005207335877423952, 0.0005455304252539373, 0.0005703272627654802, 0.0005951241002770224, 0.0006199209377885653, 0.0006447177753001081, 0.0006695146128116502, 0.0006943114503231931, 0.0007191082878347361, 0.0007439051253462782, 0.000768701962857821, 0.0007934988003693639, 0.000818295637880906, 0.000843092475392449, 0.0008678893129039918, 0.0008926861504155339, 0.0009174829879270768, 0.0009422798254386189, 0.0009670766629501619, 0.0009918735004617047, 0.001016670337973247, 0.0010414671754847898, 0.0010662640129963327, 0.0010910608505078747, 0.0011158576880194175, 0.0011406545255309604, 0.0011654513630425026, 0.0011902482005540455, 0.0012150450380655877, 0.0012398418755771305, 0.0012646387130886734, 0.0012894355506002156, 0.0013142323881117585, 0.0013390292256233013, 0.0013638260631348433, 0.0013886229006463862, 0.001413419738157929, 0.0014382165756694713, 0.0014630134131810141, 0.001487810250692557, 0.0015126070882040992, 0.001537403925715642, 0.0015622007632271843, 0.0015869976007387271, 0.00161179443825027, 0.001636591275761812, 0.0016613881132733549, 0.001686184950784898, 0.00171098178829644, 0.0017357786258079828, 0.0017605754633195257, 0.0017853723008310679, 0.0018101691383426107, 0.0018349659758541536, 0.0018597628133656958, 0.0018845596508772387, 0.0019093564883887809, 0.0019341533259003237, 0.0019589501634118666, 0.0019837470009234086, 0.0020085438384349515, 0.0020333406759464943, 0.0020581375134580368, 0.0020829343509695796, 0.0021077311884811225, 0.0021325280259926645, 0.0021573248635042073, 0.0021821217010157493, 0.002206918538527292, 0.002231715376038835, 0.0022565122135503775, 0.0022813090510619203, 0.002306105888573463, 0.002330902726085005, 0.002355699563596548, 0.002380496401108091, 0.002405293238619633, 0.002430090076131176, 0.002454886913642719, 0.002479683751154261, 0.002504480588665804, 0.002529277426177346, 0.002554074263688889, 0.0025788711012004317, 0.002603667938711974, 0.002628464776223517, 0.00265326161373506, 0.002678058451246602, 0.0027028552887581447, 0.0027276521262696875, 0.0027524489637812295, 0.0027772458012927724, 0.002802042638804315, 0.0028268394763158577, 0.0028516363138274005, 0.0028764331513389425, 0.0029012299888504854, 0.0029260268263620283, 0.0029508236638735707, 0.0029756205013851127, 0.0030004173388966564, 0.0030252141764081984, 0.0030500110139197404, 0.003074807851431284, 0.003099604688942826, 0.0031244015264543686, 0.003149198363965912, 0.0031739952014774543, 0.0031987920389889963, 0.00322358887650054, 0.003248385714012082, 0.003273182551523624, 0.0032979793890351677, 0.0033227762265467097, 0.003347573064058252, 0.003372369901569796, 0.003397166739081338, 0.00342196357659288, 0.0034467604141044236, 0.0034715572516159656, 0.003496354089127508, 0.0035211509266390513, 0.0035459477641505937, 0.0035707446016621357, 0.0035955414391736777, 0.0036203382766852215, 0.0036451351141967635, 0.003669931951708306, 0.003694728789219849, 0.0037195256267313916, 0.0037443224642429336, 0.0037691193017544773, 0.0037939161392660193, 0.0038187129767775618, 0.003843509814289105, 0.0038683066518006475, 0.0038931034893121895, 0.003917900326823733, 0.003942697164335275, 0.003967494001846817, 0.003992290839358361, 0.004017087676869903, 0.004041884514381445, 0.004066681351892989, 0.004091478189404531, 0.0041162750269160735, 0.004141071864427617, 0.004165868701939159, 0.004190665539450701, 0.004215462376962243, 0.0042402592144737865, 0.004265056051985329, 0.004289852889496871, 0.004314649727008415, 0.004339446564519957, 0.004364243402031499, 0.004389040239543043, 0.004413837077054584, 0.004438633914566127, 0.00446343075207767, 0.0044882275895892125, 0.004513024427100755, 0.004537821264612298, 0.004562618102123841, 0.004587414939635382, 0.004612211777146926, 0.004637008614658468, 0.00466180545217001, 0.004686602289681554, 0.004711399127193096, 0.0047361959647046386, 0.004760992802216182, 0.004785789639727724, 0.004810586477239266, 0.00483538331475081, 0.004860180152262352, 0.004884976989773894, 0.004909773827285436, 0.00493457066479698, 0.004959367502308522, 0.004984164339820065, 0.005008961177331608, 0.00503375801484315, 0.005058554852354692, 0.005083351689866236, 0.005108148527377778, 0.00513294536488932, 0.005157742202400863, 0.005182539039912406, 0.005207335877423948, 0.0052321327149354915, 0.005256929552447034, 0.0052817263899585755, 0.00530652322747012, 0.005331320064981661, 0.005356116902493204, 0.005380913740004747, 0.005405710577516289, 0.005430507415027832, 0.005455304252539375, 0.0054801010900509175, 0.005504897927562459, 0.0055296947650740015, 0.005554491602585545, 0.005579288440097087, 0.00560408527760863, 0.005628882115120173, 0.005653678952631715, 0.005678475790143257, 0.005703272627654801, 0.005728069465166343, 0.005752866302677885, 0.005777663140189429, 0.005802459977700971, 0.005827256815212513, 0.0058520536527240565, 0.005876850490235599, 0.005901647327747141, 0.005926444165258685, 0.005951241002770227, 0.005976037840281769, 0.006000834677793313, 0.006025631515304854, 0.006050428352816397, 0.00607522519032794, 0.0061000220278394825, 0.006124818865351025, 0.0061496157028625665, 0.006174412540374111, 0.006199209377885652, 0.006224006215397195, 0.006248803052908738, 0.00627359989042028, 0.006298396727931823, 0.006323193565443366, 0.0063479904029549086, 0.00637278724046645, 0.006397584077977994, 0.006422380915489536, 0.006447177753001078, 0.006471974590512622, 0.006496771428024164, 0.006521568265535706, 0.00654636510304725, 0.006571161940558792, 0.006595958778070334, 0.006620755615581878, 0.0066455524530934194, 0.006670349290604962, 0.006695146128116506, 0.006719942965628048, 0.00674473980313959, 0.0067695366406511324, 0.006794333478162676, 0.006819130315674218, 0.00684392715318576, 0.006868723990697304, 0.0068935208282088455, 0.006918317665720388, 0.006943114503231931, 0.006967911340743474, 0.006992708178255016, 0.007017505015766559, 0.007042301853278102, 0.007067098690789643, 0.0070918955283011875, 0.007116692365812729, 0.0071414892033242715, 0.007166286040835815, 0.007191082878347357, 0.0072158797158589, 0.007240676553370443, 0.007265473390881985, 0.007290270228393527, 0.007315067065905071, 0.007339863903416613, 0.007364660740928155, 0.007389457578439698, 0.007414254415951241, 0.007439051253462783, 0.007463848090974325, 0.007488644928485869, 0.0075134417659974105, 0.007538238603508953, 0.007563035441020497, 0.007587832278532039, 0.007612629116043581, 0.007637425953555124, 0.007662222791066667, 0.007687019628578209, 0.0077118164660897525, 0.007736613303601295, 0.0077614101411128365, 0.007786206978624381, 0.007811003816135922, 0.007835800653647465, 0.007860597491159008, 0.00788539432867055, 0.007910191166182093, 0.007934988003693636, 0.007959784841205178, 0.007984581678716721, 0.008009378516228264, 0.008034175353739806, 0.00805897219125135, 0.00808376902876289, 0.008108565866274434, 0.008133362703785976, 0.008158159541297519, 0.008182956378809062, 0.008207753216320604, 0.008232550053832147, 0.00825734689134369, 0.008282143728855232, 0.008306940566366773, 0.008331737403878318, 0.00835653424138986, 0.008381331078901402, 0.008406127916412945, 0.008430924753924488, 0.00845572159143603, 0.008480518428947573, 0.008505315266459116, 0.008530112103970658, 0.008554908941482201, 0.008579705778993743, 0.008604502616505286, 0.00862929945401683, 0.008654096291528371, 0.008678893129039914, 0.008703689966551456, 0.008728486804062999, 0.00875328364157454, 0.008778080479086084, 0.008802877316597627, 0.008827674154109169, 0.008852470991620712, 0.008877267829132255, 0.008902064666643797, 0.008926861504155338, 0.008951658341666884, 0.008976455179178425, 0.009001252016689967, 0.009026048854201512, 0.009050845691713053, 0.009075642529224595, 0.009100439366736138, 0.009125236204247681, 0.009150033041759223, 0.009174829879270766, 0.00919962671678231, 0.009224423554293851, 0.009249220391805394, 0.009274017229316936, 0.00929881406682848, 0.00932361090434002, 0.009348407741851564, 0.009373204579363107, 0.009398001416874649, 0.009422798254386192, 0.009447595091897734, 0.009472391929409277, 0.00949718876692082, 0.009521985604432362, 0.009546782441943905, 0.009571579279455449, 0.00959637611696699, 0.009621172954478532, 0.009645969791990075, 0.009670766629501617, 0.009695563467013162, 0.009720360304524703, 0.009745157142036246, 0.009769953979547788, 0.00979475081705933, 0.009819547654570873, 0.009844344492082418, 0.00986914132959396, 0.009893938167105503, 0.009918735004617044, 0.009943531842128586, 0.00996832867964013, 0.009993125517151674, 0.010017922354663216, 0.010042719192174757, 0.0100675160296863, 0.010092312867197842, 0.010117109704709384, 0.010141906542220929, 0.010166703379732472, 0.010191500217244014, 0.010216297054755555, 0.010241093892267098, 0.01026589072977864, 0.010290687567290182, 0.010315484404801727, 0.01034028124231327, 0.010365078079824811, 0.010389874917336353, 0.010414671754847896, 0.010439468592359438, 0.010464265429870983, 0.010489062267382524, 0.010513859104894068, 0.01053865594240561, 0.010563452779917151, 0.010588249617428694, 0.01061304645494024, 0.01063784329245178, 0.010662640129963322, 0.010687436967474866, 0.010712233804986407, 0.010737030642497949, 0.010761827480009494, 0.010786624317521037, 0.010811421155032579, 0.01083621799254412, 0.010861014830055664, 0.010885811667567205, 0.010910608505078747, 0.010935405342590292, 0.010960202180101835, 0.010984999017613377, 0.011009795855124918, 0.011034592692636461, 0.011059389530148003, 0.011084186367659548, 0.01110898320517109, 0.011133780042682633, 0.011158576880194174, 0.011183373717705716, 0.01120817055521726, 0.011232967392728804, 0.011257764230240346, 0.011282561067751887, 0.01130735790526343, 0.011332154742774972, 0.011356951580286514, 0.011381748417798059, 0.011406545255309602, 0.011431342092821144, 0.011456138930332685, 0.011480935767844229, 0.01150573260535577, 0.011530529442867312, 0.011555326280378858, 0.0115801231178904, 0.011604919955401942, 0.011629716792913485, 0.011654513630425026, 0.011679310467936568, 0.011704107305448113, 0.011728904142959656, 0.011753700980471198, 0.01177849781798274, 0.011803294655494283, 0.011828091493005824, 0.01185288833051737, 0.011877685168028911, 0.011902482005540454, 0.011927278843051996, 0.011952075680563537, 0.01197687251807508, 0.012001669355586626, 0.012026466193098167, 0.012051263030609709, 0.012076059868121252, 0.012100856705632794, 0.012125653543144335, 0.012150450380655878, 0.012175247218167424, 0.012200044055678965, 0.012224840893190507, 0.01224963773070205, 0.012274434568213591, 0.012299231405725133, 0.012324028243236678, 0.012348825080748221, 0.012373621918259763, 0.012398418755771305, 0.012423215593282848, 0.01244801243079439, 0.012472809268305934, 0.012497606105817476, 0.01252240294332902, 0.01254719978084056, 0.012571996618352102, 0.012596793455863646, 0.01262159029337519, 0.012646387130886732, 0.012671183968398274, 0.012695980805909817, 0.012720777643421359, 0.0127455744809329, 0.012770371318444445, 0.012795168155955989, 0.01281996499346753, 0.012844761830979072, 0.012869558668490615, 0.012894355506002157, 0.012919152343513698, 0.012943949181025243, 0.012968746018536786, 0.012993542856048328, 0.01301833969355987, 0.013043136531071413, 0.013067933368582954, 0.0130927302060945, 0.013117527043606041, 0.013142323881117584, 0.013167120718629126, 0.013191917556140667, 0.01321671439365221, 0.013241511231163756, 0.013266308068675297, 0.013291104906186839, 0.013315901743698382, 0.013340698581209924, 0.013365495418721465, 0.013390292256233012, 0.013415089093744554, 0.013439885931256095, 0.013464682768767638, 0.01348947960627918, 0.013514276443790722, 0.013539073281302265, 0.01356387011881381, 0.013588666956325351, 0.013613463793836893, 0.013638260631348436, 0.013663057468859978, 0.01368785430637152, 0.013712651143883064, 0.013737447981394608, 0.01376224481890615, 0.013787041656417691, 0.013811838493929234, 0.013836635331440776, 0.01386143216895232, 0.013886229006463862, 0.013911025843975406, 0.013935822681486947, 0.013960619518998489, 0.013985416356510032, 0.014010213194021577, 0.014035010031533119, 0.01405980686904466, 0.014084603706556204, 0.014109400544067745, 0.014134197381579287, 0.01415899421909083, 0.014183791056602375, 0.014208587894113917, 0.014233384731625458, 0.014258181569137001, 0.014282978406648543, 0.014307775244160085, 0.01433257208167163, 0.014357368919183173, 0.014382165756694714, 0.014406962594206256, 0.0144317594317178, 0.01445655626922934, 0.014481353106740886, 0.014506149944252427, 0.01453094678176397, 0.014555743619275512, 0.014580540456787054, 0.014605337294298597, 0.014630134131810142, 0.014654930969321684, 0.014679727806833225, 0.014704524644344769, 0.01472932148185631, 0.014754118319367852, 0.014778915156879395, 0.01480371199439094, 0.014828508831902482, 0.014853305669414023, 0.014878102506925566, 0.014902899344437108, 0.01492769618194865, 0.014952493019460195, 0.014977289856971738, 0.01500208669448328, 0.015026883531994821, 0.015051680369506364, 0.015076477207017906, 0.015101274044529451, 0.015126070882040994, 0.015150867719552536, 0.015175664557064077, 0.01520046139457562, 0.015225258232087162, 0.015250055069598707, 0.015274851907110249, 0.015299648744621792, 0.015324445582133334, 0.015349242419644875, 0.015374039257156418, 0.01539883609466796, 0.015423632932179505, 0.015448429769691047, 0.01547322660720259, 0.015498023444714131, 0.015522820282225673, 0.015547617119737216, 0.015572413957248761, 0.015597210794760303, 0.015622007632271845, 0.015646804469783386, 0.01567160130729493, 0.015696398144806473, 0.015721194982318016, 0.01574599181982956, 0.0157707886573411, 0.015795585494852642, 0.015820382332364186, 0.015845179169875726, 0.015869976007387272, 0.015894772844898816, 0.015919569682410355, 0.0159443665199219, 0.015969163357433442, 0.015993960194944982, 0.016018757032456525, 0.016043553869968072, 0.01606835070747961, 0.016093147544991155, 0.0161179443825027, 0.016142741220014238, 0.01616753805752578, 0.016192334895037325, 0.016217131732548868, 0.01624192857006041, 0.01626672540757195, 0.016291522245083494, 0.016316319082595038, 0.01634111592010658, 0.016365912757618124, 0.016390709595129668, 0.016415506432641207, 0.01644030327015275, 0.016465100107664294, 0.016489896945175837, 0.01651469378268738, 0.01653949062019892, 0.016564287457710464, 0.016589084295222007, 0.016613881132733547, 0.01663867797024509, 0.016663474807756637, 0.016688271645268177, 0.01671306848277972, 0.016737865320291263, 0.016762662157802803, 0.016787458995314346, 0.01681225583282589, 0.016837052670337433, 0.016861849507848976, 0.016886646345360516, 0.01691144318287206, 0.016936240020383603, 0.016961036857895146, 0.01698583369540669, 0.017010630532918233, 0.017035427370429772, 0.017060224207941316, 0.01708502104545286, 0.017109817882964402, 0.017134614720475946, 0.017159411557987485, 0.01718420839549903, 0.017209005233010572, 0.017233802070522112, 0.017258598908033655, 0.017283395745545202, 0.017308192583056742, 0.017332989420568285, 0.01735778625807983, 0.017382583095591368, 0.01740737993310291, 0.017432176770614455, 0.017456973608125998, 0.01748177044563754, 0.01750656728314908, 0.017531364120660625, 0.017556160958172168, 0.01758095779568371, 0.017605754633195254, 0.017630551470706798, 0.017655348308218338, 0.01768014514572988, 0.017704941983241424, 0.017729738820752967, 0.01775453565826451, 0.01777933249577605, 0.017804129333287594, 0.017828926170799137, 0.017853723008310677, 0.01787851984582222, 0.017903316683333767, 0.017928113520845307, 0.01795291035835685, 0.017977707195868393, 0.018002504033379933, 0.018027300870891477, 0.018052097708403023, 0.018076894545914563, 0.018101691383426106, 0.01812648822093765, 0.01815128505844919, 0.018176081895960733, 0.018200878733472276, 0.01822567557098382, 0.018250472408495363, 0.018275269246006903, 0.018300066083518446, 0.01832486292102999, 0.018349659758541532, 0.018374456596053076, 0.01839925343356462, 0.01842405027107616, 0.018448847108587702, 0.018473643946099245, 0.01849844078361079, 0.018523237621122332, 0.018548034458633872, 0.018572831296145415, 0.01859762813365696, 0.0186224249711685, 0.01864722180868004, 0.01867201864619159, 0.018696815483703128, 0.01872161232121467, 0.018746409158726215, 0.018771205996237755, 0.018796002833749298, 0.01882079967126084, 0.018845596508772385, 0.018870393346283928, 0.018895190183795468, 0.01891998702130701, 0.018944783858818554, 0.018969580696330098, 0.01899437753384164, 0.019019174371353184, 0.019043971208864724, 0.019068768046376267, 0.01909356488388781, 0.019118361721399354, 0.019143158558910897, 0.019167955396422437, 0.01919275223393398, 0.019217549071445524, 0.019242345908957063, 0.019267142746468607, 0.019291939583980153, 0.019316736421491693, 0.019341533259003237, 0.01936633009651478, 0.01939112693402632, 0.019415923771537863, 0.019440720609049406, 0.01946551744656095, 0.019490314284072493, 0.019515111121584033, 0.019539907959095576, 0.01956470479660712, 0.019589501634118663, 0.019614298471630206, 0.01963909530914175, 0.01966389214665329, 0.019688688984164832, 0.019713485821676376, 0.01973828265918792, 0.019763079496699462, 0.019787876334211005, 0.019812673171722545, 0.01983747000923409, 0.019862266846745632, 0.01988706368425717, 0.01991186052176872, 0.01993665735928026, 0.0199614541967918, 0.019986251034303345, 0.020011047871814885, 0.020035844709326428, 0.020060641546837975, 0.020085438384349515, 0.020110235221861058, 0.0201350320593726, 0.02015982889688414, 0.020184625734395684, 0.020209422571907228, 0.02023421940941877, 0.020259016246930314, 0.020283813084441854, 0.020308609921953397, 0.02033340675946494, 0.020358203596976484, 0.020383000434488027, 0.02040779727199957, 0.02043259410951111, 0.020457390947022654, 0.020482187784534197, 0.020506984622045737, 0.020531781459557284, 0.020556578297068823, 0.020581375134580367, 0.02060617197209191, 0.02063096880960345, 0.020655765647114993, 0.02068056248462654, 0.02070535932213808, 0.020730156159649623, 0.020754952997161166, 0.020779749834672706, 0.02080454667218425, 0.020829343509695793, 0.020854140347207336, 0.02087893718471888, 0.02090373402223042, 0.020928530859741962, 0.020953327697253506, 0.02097812453476505, 0.021002921372276592, 0.021027718209788136, 0.021052515047299675, 0.02107731188481122, 0.021102108722322762, 0.021126905559834302, 0.02115170239734585, 0.02117649923485739, 0.02120129607236893, 0.021226092909880475, 0.021250889747392015, 0.021275686584903558, 0.021300483422415105, 0.021325280259926645, 0.021350077097438188, 0.02137487393494973, 0.02139967077246127, 0.021424467609972814, 0.02144926444748436, 0.0214740612849959, 0.021498858122507444, 0.021523654960018988, 0.021548451797530527, 0.02157324863504207, 0.021598045472553614, 0.021622842310065157, 0.0216476391475767, 0.02167243598508824, 0.021697232822599784, 0.021722029660111327, 0.021746826497622867, 0.021771623335134414, 0.021796420172645957, 0.021821217010157497, 0.02184601384766904, 0.021870810685180583, 0.021895607522692123, 0.02192040436020367, 0.02194520119771521, 0.021969998035226753, 0.021994794872738296, 0.022019591710249836, 0.02204438854776138, 0.022069185385272926, 0.022093982222784466, 0.02211877906029601, 0.022143575897807553, 0.022168372735319092, 0.022193169572830636, 0.02221796641034218, 0.022242763247853722, 0.022267560085365266, 0.022292356922876806, 0.02231715376038835, 0.022341950597899892, 0.022366747435411432, 0.02239154427292298, 0.022416341110434522, 0.022441137947946062, 0.022465934785457605, 0.02249073162296915, 0.022515528460480688, 0.022540325297992235, 0.022565122135503775, 0.022589918973015318, 0.02261471581052686, 0.0226395126480384, 0.022664309485549945, 0.02268910632306149, 0.02271390316057303, 0.022738699998084574, 0.022763496835596118, 0.022788293673107658, 0.0228130905106192, 0.022837887348130744, 0.022862684185642287, 0.022887481023153827, 0.02291227786066537, 0.022937074698176917, 0.022961871535688457, 0.0229866683732, 0.02301146521071154, 0.023036262048223087, 0.023061058885734623, 0.02308585572324617, 0.023110652560757717, 0.023135449398269253, 0.0231602462357808, 0.02318504307329234, 0.023209839910803883, 0.02323463674831543, 0.02325943358582697, 0.023284230423338513, 0.023309027260850053, 0.023333824098361596, 0.023358620935873136, 0.023383417773384683, 0.023408214610896226, 0.023433011448407766, 0.023457808285919313, 0.02348260512343085, 0.023507401960942396, 0.02353219879845394, 0.02355699563596548, 0.023581792473477026, 0.023606589310988565, 0.02363138614850011, 0.02365618298601165, 0.023680979823523192, 0.02370577666103474, 0.02373057349854628, 0.023755370336057822, 0.02378016717356936, 0.02380496401108091, 0.023829760848592445, 0.02385455768610399, 0.023879354523615535, 0.023904151361127075, 0.02392894819863862, 0.02395374503615016, 0.023978541873661705, 0.02400333871117325, 0.024028135548684788, 0.024052932386196334, 0.024077729223707874, 0.024102526061219418, 0.024127322898730957, 0.024152119736242504, 0.024176916573754047, 0.024201713411265587, 0.02422651024877713, 0.02425130708628867, 0.024276103923800217, 0.024300900761311757, 0.0243256975988233, 0.024350494436334847, 0.024375291273846383, 0.02440008811135793, 0.02442488494886947, 0.024449681786381013, 0.02447447862389256, 0.0244992754614041, 0.024524072298915643, 0.024548869136427183, 0.024573665973938726, 0.024598462811450266, 0.024623259648961813, 0.024648056486473356, 0.024672853323984896, 0.024697650161496443, 0.02472244699900798, 0.024747243836519526, 0.02477204067403107, 0.02479683751154261, 0.024821634349054156, 0.024846431186565696, 0.02487122802407724, 0.02489602486158878, 0.024920821699100322, 0.02494561853661187, 0.02497041537412341, 0.024995212211634952, 0.025020009049146492, 0.02504480588665804, 0.025069602724169575, 0.02509439956168112, 0.02511919639919267, 0.025143993236704205, 0.02516879007421575, 0.02519358691172729, 0.025218383749238835, 0.02524318058675038, 0.02526797742426192, 0.025292774261773465, 0.025317571099285004, 0.025342367936796548, 0.025367164774308087, 0.025391961611819634, 0.025416758449331178, 0.025441555286842717, 0.025466352124354264, 0.0254911489618658, 0.025515945799377347, 0.025540742636888887, 0.02556553947440043, 0.025590336311911977, 0.025615133149423517, 0.02563992998693506, 0.0256647268244466, 0.025689523661958143, 0.02571432049946969, 0.02573911733698123, 0.025763914174492773, 0.025788711012004313, 0.02581350784951586, 0.025838304687027396, 0.025863101524538943, 0.025887898362050486, 0.025912695199562026, 0.025937492037073573, 0.025962288874585113, 0.025987085712096656, 0.026011882549608203, 0.02603667938711974, 0.026061476224631286, 0.026086273062142826, 0.02611106989965437, 0.02613586673716591, 0.026160663574677456, 0.026185460412189, 0.02621025724970054, 0.026235054087212082, 0.026259850924723622, 0.02628464776223517, 0.02630944459974671, 0.02633424143725825, 0.0263590382747698, 0.026383835112281335, 0.02640863194979288, 0.02643342878730442, 0.026458225624815965, 0.02648302246232751, 0.02650781929983905, 0.026532616137350595, 0.026557412974862134, 0.026582209812373678, 0.026607006649885218, 0.026631803487396764, 0.026656600324908308, 0.026681397162419847, 0.026706193999931394, 0.02673099083744293, 0.026755787674954477, 0.026780584512466017, 0.02680538134997756, 0.026830178187489107, 0.026854975025000647, 0.02687977186251219, 0.02690456870002373, 0.026929365537535277, 0.02695416237504682, 0.02697895921255836, 0.027003756050069903, 0.027028552887581443, 0.02705334972509299, 0.02707814656260453, 0.027102943400116073, 0.02712774023762762, 0.027152537075139156, 0.027177333912650703, 0.027202130750162243, 0.027226927587673786, 0.027251724425185333, 0.027276521262696873, 0.027301318100208416, 0.027326114937719956, 0.0273509117752315, 0.02737570861274304, 0.027400505450254586, 0.02742530228776613, 0.02745009912527767, 0.027474895962789216, 0.027499692800300752, 0.0275244896378123, 0.02754928647532384, 0.027574083312835382, 0.02759888015034693, 0.02762367698785847, 0.02764847382537001, 0.02767327066288155, 0.027698067500393095, 0.02772286433790464, 0.02774766117541618, 0.027772458012927725, 0.027797254850439265, 0.02782205168795081, 0.027846848525462348, 0.027871645362973894, 0.027896442200485438, 0.027921239037996978, 0.027946035875508524, 0.027970832713020064, 0.027995629550531607, 0.028020426388043147, 0.02804522322555469, 0.028070020063066237, 0.028094816900577777, 0.02811961373808932, 0.02814441057560086, 0.028169207413112407, 0.02819400425062395, 0.02821880108813549, 0.028243597925647033, 0.028268394763158573, 0.02829319160067012, 0.02831798843818166, 0.028342785275693203, 0.02836758211320475, 0.028392378950716286, 0.028417175788227833, 0.028441972625739373, 0.028466769463250916, 0.028491566300762463, 0.028516363138274003, 0.028541159975785546, 0.028565956813297086, 0.028590753650808633, 0.02861555048832017, 0.028640347325831716, 0.02866514416334326, 0.0286899410008548, 0.028714737838366346, 0.028739534675877886, 0.02876433151338943, 0.02878912835090097, 0.028813925188412512, 0.02883872202592406, 0.0288635188634356, 0.028888315700947142, 0.02891311253845868, 0.02893790937597023, 0.02896270621348177, 0.02898750305099331, 0.029012299888504855, 0.029037096726016395, 0.02906189356352794, 0.02908669040103948, 0.029111487238551025, 0.02913628407606257, 0.029161080913574108, 0.029185877751085654, 0.029210674588597194, 0.029235471426108738, 0.029260268263620284, 0.029285065101131824, 0.029309861938643367, 0.029334658776154907, 0.02935945561366645, 0.02938425245117799, 0.029409049288689537, 0.02943384612620108, 0.02945864296371262, 0.029483439801224167, 0.029508236638735703, 0.02953303347624725, 0.02955783031375879, 0.029582627151270333, 0.02960742398878188, 0.02963222082629342, 0.029657017663804963, 0.029681814501316503, 0.029706611338828046, 0.029731408176339593, 0.029756205013851133, 0.029781001851362676, 0.029805798688874216, 0.029830595526385763, 0.0298553923638973, 0.029880189201408846, 0.02990498603892039, 0.02992978287643193, 0.029954579713943476, 0.029979376551455016, 0.03000417338896656, 0.0300289702264781, 0.030053767063989642, 0.03007856390150119, 0.03010336073901273, 0.030128157576524272, 0.030152954414035812, 0.03017775125154736, 0.030202548089058902, 0.03022734492657044, 0.03025214176408199, 0.030276938601593525, 0.03030173543910507, 0.03032653227661661, 0.030351329114128155, 0.0303761259516397, 0.03040092278915124, 0.030425719626662785, 0.030450516464174324, 0.030475313301685868, 0.030500110139197414, 0.030524906976708954, 0.030549703814220498, 0.030574500651732037, 0.030599297489243584, 0.03062409432675512, 0.030648891164266667, 0.03067368800177821, 0.03069848483928975, 0.030723281676801297, 0.030748078514312837, 0.03077287535182438, 0.03079767218933592, 0.030822469026847463, 0.03084726586435901, 0.03087206270187055, 0.030896859539382093, 0.030921656376893633, 0.03094645321440518, 0.030971250051916723, 0.030996046889428263, 0.031020843726939806, 0.031045640564451346, 0.031070437401962893, 0.031095234239474433, 0.031120031076985976, 0.031144827914497523, 0.03116962475200906, 0.031194421589520606, 0.031219218427032146, 0.03124401526454369, 0.03126881210205523, 0.03129360893956677, 0.03131840577707832, 0.03134320261458986, 0.031367999452101405, 0.031392796289612945, 0.031417593127124485, 0.03144238996463603, 0.03146718680214757, 0.03149198363965912, 0.03151678047717066, 0.0315415773146822, 0.03156637415219374, 0.031591170989705285, 0.03161596782721683, 0.03164076466472837, 0.03166556150223992, 0.03169035833975145, 0.031715155177263, 0.031739952014774545, 0.031764748852286084, 0.03178954568979763, 0.03181434252730917, 0.03183913936482071, 0.03186393620233225, 0.0318887330398438, 0.031913529877355344, 0.031938326714866884, 0.031963123552378424, 0.031987920389889964, 0.03201271722740151, 0.03203751406491305, 0.0320623109024246, 0.032087107739936144, 0.03211190457744768, 0.03213670141495922, 0.03216149825247076, 0.03218629508998231, 0.03221109192749386, 0.0322358887650054, 0.032260685602516936, 0.032285482440028476, 0.03231027927754002, 0.03233507611505156, 0.03235987295256311, 0.03238466979007465, 0.03240946662758619, 0.032434263465097736, 0.032459060302609276, 0.03248385714012082, 0.03250865397763236, 0.0325334508151439, 0.03255824765265545, 0.03258304449016699, 0.032607841327678536, 0.032632638165190075, 0.032657435002701615, 0.03268223184021316, 0.0327070286777247, 0.03273182551523625, 0.03275662235274779, 0.032781419190259335, 0.03280621602777087, 0.032831012865282415, 0.03285580970279396, 0.0328806065403055, 0.03290540337781705, 0.03293020021532859, 0.03295499705284013, 0.032979793890351675, 0.033004590727863214, 0.03302938756537476, 0.0330541844028863, 0.03307898124039784, 0.03310377807790938, 0.03312857491542093, 0.033153371752932474, 0.033178168590444014, 0.033202965427955554, 0.033227762265467094, 0.03325255910297864, 0.03327735594049018, 0.03330215277800173, 0.033326949615513274, 0.03335174645302481, 0.033376543290536353, 0.03340134012804789, 0.03342613696555944, 0.03345093380307099, 0.03347573064058253, 0.033500527478094067, 0.033525324315605606, 0.03355012115311715, 0.03357491799062869, 0.03359971482814024, 0.03362451166565178, 0.03364930850316332, 0.033674105340674866, 0.033698902178186406, 0.03372369901569795, 0.03374849585320949, 0.03377329269072103, 0.03379808952823258, 0.03382288636574412, 0.033847683203255666, 0.033872480040767206, 0.03389727687827875, 0.03392207371579029, 0.03394687055330183, 0.03397166739081338, 0.03399646422832492, 0.034021261065836465, 0.034046057903348005, 0.034070854740859545, 0.03409565157837109, 0.03412044841588263, 0.03414524525339418, 0.03417004209090572, 0.03419483892841726, 0.034219635765928805, 0.034244432603440345, 0.03426922944095189, 0.03429402627846343, 0.03431882311597497, 0.03434361995348651, 0.03436841679099806, 0.034393213628509604, 0.034418010466021144, 0.03444280730353269, 0.034467604141044224, 0.03449240097855577, 0.03451719781606731, 0.03454199465357886, 0.034566791491090404, 0.034591588328601944, 0.034616385166113484, 0.03464118200362502, 0.03466597884113657, 0.03469077567864812, 0.03471557251615966, 0.0347403693536712, 0.034765166191182736, 0.03478996302869428, 0.03481475986620582, 0.03483955670371737, 0.03486435354122891, 0.03488915037874045, 0.034913947216251996, 0.034938744053763536, 0.03496354089127508, 0.03498833772878663, 0.03501313456629816, 0.03503793140380971, 0.03506272824132125, 0.035087525078832796, 0.035112321916344336, 0.03513711875385588, 0.03516191559136742, 0.03518671242887896, 0.03521150926639051, 0.03523630610390205, 0.035261102941413595, 0.035285899778925135, 0.035310696616436675, 0.03533549345394822, 0.03536029029145976, 0.03538508712897131, 0.03540988396648285, 0.03543468080399439, 0.035459477641505935, 0.035484274479017475, 0.03550907131652902, 0.03553386815404056, 0.0355586649915521, 0.03558346182906364, 0.03560825866657519, 0.035633055504086734, 0.035657852341598274, 0.03568264917910982, 0.035707446016621354, 0.0357322428541329, 0.03575703969164444, 0.03578183652915599, 0.035806633366667534, 0.035831430204179074, 0.035856227041690614, 0.035881023879202154, 0.0359058207167137, 0.03593061755422525, 0.03595541439173679, 0.03598021122924833, 0.03600500806675987, 0.03602980490427141, 0.03605460174178295, 0.0360793985792945, 0.03610419541680605, 0.03612899225431758, 0.036153789091829126, 0.036178585929340666, 0.03620338276685221, 0.03622817960436376, 0.0362529764418753, 0.03627777327938684, 0.03630257011689838, 0.036327366954409926, 0.036352163791921466, 0.03637696062943301, 0.03640175746694455, 0.03642655430445609, 0.03645135114196764, 0.03647614797947918, 0.036500944816990726, 0.036525741654502265, 0.036550538492013805, 0.03657533532952535, 0.03660013216703689, 0.03662492900454844, 0.03664972584205998, 0.03667452267957152, 0.036699319517083065, 0.036724116354594605, 0.03674891319210615, 0.03677371002961769, 0.03679850686712924, 0.03682330370464077, 0.03684810054215232, 0.036872897379663865, 0.036897694217175404, 0.03692249105468695, 0.03694728789219849, 0.03697208472971003, 0.03699688156722157, 0.03702167840473312, 0.037046475242244664, 0.037071272079756204, 0.037096068917267744, 0.037120865754779284, 0.03714566259229083, 0.03717045942980238, 0.03719525626731392, 0.03722005310482546, 0.037244849942337, 0.03726964677984854, 0.03729444361736008, 0.03731924045487163, 0.03734403729238318, 0.03736883412989471, 0.037393630967406256, 0.037418427804917796, 0.03744322464242934, 0.03746802147994089, 0.03749281831745243, 0.03751761515496397, 0.03754241199247551, 0.037567208829987056, 0.037592005667498596, 0.03761680250501014, 0.03764159934252168, 0.03766639618003322, 0.03769119301754477, 0.03771598985505631, 0.037740786692567856, 0.037765583530079395, 0.037790380367590935, 0.03781517720510248, 0.03783997404261402, 0.03786477088012557, 0.03788956771763711, 0.037914364555148655, 0.037939161392660195, 0.037963958230171735, 0.03798875506768328, 0.03801355190519482, 0.03803834874270637, 0.03806314558021791, 0.03808794241772945, 0.038112739255240995, 0.038137536092752534, 0.03816233293026408, 0.03818712976777562, 0.03821192660528716, 0.0382367234427987, 0.03826152028031025, 0.038286317117821794, 0.038311113955333334, 0.038335910792844874, 0.038360707630356414, 0.03838550446786796, 0.03841030130537951, 0.03843509814289105, 0.038459894980402594, 0.03848469181791413, 0.038509488655425674, 0.03853428549293721, 0.03855908233044876, 0.03858387916796031, 0.03860867600547185, 0.038633472842983387, 0.038658269680494926, 0.03868306651800647, 0.03870786335551802, 0.03873266019302956, 0.0387574570305411, 0.03878225386805264, 0.038807050705564186, 0.038831847543075726, 0.03885664438058727, 0.03888144121809881, 0.03890623805561035, 0.0389310348931219, 0.03895583173063344, 0.038980628568144986, 0.039005425405656526, 0.039030222243168065, 0.03905501908067961, 0.03907981591819115, 0.0391046127557027, 0.03912940959321424, 0.039154206430725785, 0.039179003268237325, 0.039203800105748865, 0.03922859694326041, 0.03925339378077195, 0.0392781906182835, 0.03930298745579504, 0.03932778429330658, 0.039352581130818125, 0.039377377968329665, 0.03940217480584121, 0.03942697164335275, 0.03945176848086429, 0.03947656531837583, 0.03950136215588738, 0.039526158993398924, 0.039550955830910464, 0.03957575266842201, 0.039600549505933544, 0.03962534634344509, 0.03965014318095664, 0.03967494001846818, 0.039699736855979724, 0.039724533693491264, 0.039749330531002804, 0.03977412736851434, 0.03979892420602589, 0.03982372104353744, 0.03984851788104898, 0.03987331471856052, 0.039898111556072056, 0.0399229083935836, 0.03994770523109515, 0.03997250206860669, 0.03999729890611823, 0.04002209574362977, 0.040046892581141316, 0.040071689418652856, 0.0400964862561644, 0.04012128309367595, 0.04014607993118748, 0.04017087676869903, 0.04019567360621057, 0.040220470443722116, 0.040245267281233656, 0.0402700641187452, 0.04029486095625674, 0.04031965779376828, 0.04034445463127983, 0.04036925146879137, 0.040394048306302915, 0.040418845143814455, 0.040443641981325995, 0.04046843881883754, 0.04049323565634908, 0.04051803249386063, 0.04054282933137217, 0.04056762616888371, 0.040592423006395255, 0.040617219843906795, 0.04064201668141834, 0.04066681351892988, 0.04069161035644142, 0.04071640719395297, 0.04074120403146451, 0.040766000868976054, 0.040790797706487594, 0.04081559454399914, 0.040840391381510674, 0.04086518821902222, 0.04088998505653377, 0.04091478189404531, 0.040939578731556854, 0.040964375569068394, 0.040989172406579934, 0.041013969244091474, 0.04103876608160302, 0.04106356291911457, 0.04108835975662611, 0.04111315659413765, 0.04113795343164919, 0.04116275026916073, 0.04118754710667228, 0.04121234394418382, 0.04123714078169537, 0.0412619376192069, 0.041286734456718446, 0.041311531294229986, 0.04133632813174153, 0.04136112496925308, 0.04138592180676462, 0.04141071864427616, 0.0414355154817877, 0.041460312319299246, 0.041485109156810786, 0.04150990599432233, 0.04153470283183387, 0.04155949966934541, 0.04158429650685696, 0.0416090933443685, 0.041633890181880046, 0.041658687019391585, 0.041683483856903125, 0.04170828069441467, 0.04173307753192621, 0.04175787436943776, 0.0417826712069493, 0.04180746804446084, 0.041832264881972385, 0.041857061719483925, 0.04188185855699547, 0.04190665539450701, 0.04193145223201856, 0.0419562490695301, 0.04198104590704164, 0.042005842744553185, 0.042030639582064724, 0.04205543641957627, 0.04208023325708781, 0.04210503009459935, 0.0421298269321109, 0.04215462376962244, 0.042179420607133984, 0.042204217444645524, 0.042229014282157064, 0.042253811119668604, 0.04227860795718015, 0.0423034047946917, 0.04232820163220324, 0.04235299846971478, 0.04237779530722632, 0.04240259214473786, 0.04242738898224941, 0.04245218581976095, 0.0424769826572725, 0.04250177949478403, 0.042526576332295576, 0.042551373169807116, 0.04257617000731866, 0.04260096684483021, 0.04262576368234175, 0.04265056051985329, 0.04267535735736483, 0.042700154194876376, 0.042724951032387916, 0.04274974786989946, 0.042774544707411, 0.04279934154492254, 0.04282413838243409, 0.04284893521994563, 0.042873732057457176, 0.04289852889496872, 0.042923325732480255, 0.0429481225699918, 0.04297291940750334, 0.04299771624501489, 0.04302251308252643, 0.043047309920037975, 0.043072106757549515, 0.043096903595061055, 0.0431217004325726, 0.04314649727008414, 0.04317129410759569, 0.04319609094510723, 0.04322088778261877, 0.043245684620130315, 0.043270481457641854, 0.0432952782951534, 0.04332007513266494, 0.04334487197017648, 0.04336966880768803, 0.04339446564519957, 0.043419262482711114, 0.043444059320222654, 0.043468856157734194, 0.043493652995245734, 0.04351844983275728, 0.04354324667026883, 0.04356804350778037, 0.043592840345291914, 0.04361763718280345, 0.043642434020314994, 0.04366723085782654, 0.04369202769533808, 0.04371682453284963, 0.04374162137036117, 0.04376641820787271, 0.043791215045384246, 0.04381601188289579, 0.04384080872040734, 0.04386560555791888, 0.04389040239543042, 0.04391519923294196, 0.043939996070453506, 0.043964792907965046, 0.04398958974547659, 0.04401438658298813, 0.04403918342049967, 0.04406398025801122, 0.04408877709552276, 0.044113573933034306, 0.04413837077054585, 0.044163167608057385, 0.04418796444556893, 0.04421276128308047, 0.04423755812059202, 0.04426235495810356, 0.044287151795615105, 0.044311948633126645, 0.044336745470638185, 0.04436154230814973, 0.04438633914566127, 0.04441113598317282, 0.04443593282068436, 0.0444607296581959, 0.044485526495707445, 0.044510323333218985, 0.04453512017073053, 0.04455991700824207, 0.04458471384575361, 0.04460951068326516, 0.0446343075207767, 0.044659104358288244, 0.044683901195799784, 0.04470869803331133, 0.044733494870822864, 0.04475829170833441, 0.04478308854584596, 0.0448078853833575, 0.044832682220869044, 0.044857479058380584, 0.044882275895892124, 0.04490707273340367, 0.04493186957091521, 0.04495666640842676, 0.0449814632459383, 0.04500626008344984, 0.045031056920961376, 0.04505585375847292, 0.04508065059598447, 0.04510544743349601, 0.04513024427100755, 0.04515504110851909, 0.045179837946030636, 0.045204634783542176, 0.04522943162105372, 0.04525422845856527, 0.0452790252960768, 0.04530382213358835, 0.04532861897109989, 0.045353415808611436, 0.04537821264612298, 0.04540300948363452, 0.04542780632114606, 0.0454526031586576, 0.04547739999616915, 0.04550219683368069, 0.045526993671192235, 0.045551790508703775, 0.045576587346215315, 0.04560138418372686, 0.0456261810212384, 0.04565097785874995, 0.04567577469626149, 0.04570057153377303, 0.045725368371284575, 0.045750165208796115, 0.04577496204630766, 0.0457997588838192, 0.04582455572133074, 0.04584935255884229, 0.04587414939635383, 0.045898946233865374, 0.045923743071376914, 0.04594853990888846, 0.045973336746399994, 0.04599813358391154, 0.04602293042142309, 0.04604772725893463, 0.046072524096446174, 0.046097320933957714, 0.046122117771469254, 0.0461469146089808, 0.04617171144649234, 0.04619650828400389, 0.04622130512151543, 0.04624610195902697, 0.04627089879653851, 0.04629569563405005, 0.0463204924715616, 0.04634528930907314, 0.04637008614658469, 0.04639488298409622, 0.046419679821607766, 0.046444476659119306, 0.04646927349663085, 0.0464940703341424, 0.04651886717165394, 0.04654366400916548, 0.04656846084667702, 0.046593257684188566, 0.04661805452170011, 0.04664285135921165, 0.04666764819672319, 0.04669244503423473, 0.04671724187174628, 0.04674203870925782, 0.046766835546769366, 0.046791632384280905, 0.046816429221792445, 0.04684122605930399, 0.04686602289681553, 0.04689081973432708, 0.046915616571838625, 0.04694041340935016, 0.046965210246861705, 0.046990007084373245, 0.04701480392188479, 0.04703960075939633, 0.04706439759690788, 0.04708919443441942, 0.04711399127193096, 0.047138788109442505, 0.047163584946954044, 0.04718838178446559, 0.04721317862197713, 0.04723797545948867, 0.04726277229700022, 0.04728756913451176, 0.047312365972023304, 0.047337162809534844, 0.047361959647046384, 0.04738675648455793, 0.04741155332206947, 0.04743635015958102, 0.04746114699709256, 0.0474859438346041, 0.04751074067211564, 0.04753553750962718, 0.04756033434713873, 0.04758513118465027, 0.04760992802216182, 0.04763472485967335, 0.047659521697184896, 0.04768431853469644, 0.04770911537220798, 0.04773391220971953, 0.04775870904723107, 0.04778350588474261, 0.04780830272225415, 0.047833099559765696, 0.04785789639727724, 0.04788269323478878, 0.04790749007230032, 0.04793228690981186, 0.04795708374732341, 0.04798188058483495, 0.048006677422346496, 0.04803147425985804, 0.048056271097369575, 0.04808106793488112, 0.04810586477239266, 0.04813066160990421, 0.048155458447415755, 0.048180255284927295, 0.048205052122438835, 0.048229848959950375, 0.04825464579746192, 0.04827944263497346, 0.04830423947248501, 0.04832903630999655, 0.04835383314750809, 0.048378629985019635, 0.048403426822531175, 0.04842822366004272, 0.04845302049755426, 0.0484778173350658, 0.04850261417257735, 0.04852741101008889, 0.048552207847600434, 0.048577004685111974, 0.048601801522623514, 0.04862659836013506, 0.0486513951976466, 0.04867619203515815, 0.04870098887266969, 0.048725785710181234, 0.04875058254769277, 0.048775379385204314, 0.04880017622271586, 0.0488249730602274, 0.04884976989773895, 0.04887456673525049, 0.04889936357276203, 0.04892416041027357, 0.04894895724778511, 0.04897375408529666, 0.0489985509228082, 0.04902334776031974, 0.04904814459783128, 0.049072941435342826, 0.04909773827285437, 0.04912253511036591, 0.04914733194787745, 0.04917212878538899, 0.04919692562290054, 0.04922172246041208, 0.049246519297923626, 0.04927131613543517, 0.049296112972946705, 0.04932090981045825, 0.04934570664796979, 0.04937050348548134, 0.049395300322992886, 0.049420097160504425, 0.049444893998015965, 0.049469690835527505, 0.049494487673039045, 0.0495192845105506, 0.04954408134806214, 0.04956887818557368, 0.049593675023085225, 0.049618471860596765, 0.049643268698108305, 0.049668065535619844, 0.04969286237313139, 0.04971765921064293, 0.04974245604815447, 0.049767252885666025, 0.049792049723177564, 0.049816846560689104, 0.049841643398200644, 0.04986644023571219, 0.04989123707322373, 0.04991603391073527, 0.049940830748246824, 0.049965627585758364, 0.0499904244232699, 0.05001522126078145, 0.05004001809829299, 0.05006481493580453, 0.05008961177331607, 0.05011440861082762, 0.05013920544833916, 0.050164002285850696, 0.05018879912336225, 0.05021359596087379, 0.05023839279838533, 0.05026318963589687, 0.050287986473408416, 0.050312783310919956, 0.050337580148431496, 0.05036237698594305, 0.05038717382345459, 0.05041197066096612, 0.05043676749847766, 0.050461564335989216, 0.050486361173500756, 0.050511158011012296, 0.05053595484852384, 0.05056075168603538, 0.05058554852354692, 0.05061034536105846, 0.050635142198570016, 0.050659939036081555, 0.050684735873593095, 0.05070953271110464, 0.05073432954861618, 0.05075912638612772, 0.050783923223639275, 0.05080872006115081, 0.05083351689866235, 0.05085831373617389, 0.05088311057368544, 0.05090790741119698, 0.05093270424870852, 0.05095750108622007, 0.05098229792373161, 0.05100709476124315, 0.05103189159875469, 0.05105668843626624, 0.05108148527377778, 0.051106282111289314, 0.05113107894880087, 0.05115587578631241, 0.05118067262382395, 0.05120546946133549, 0.051230266298847034, 0.051255063136358574, 0.051279859973870114, 0.05130465681138167, 0.05132945364889321, 0.05135425048640475, 0.05137904732391629, 0.051403844161427834, 0.05142864099893937, 0.05145343783645091, 0.05147823467396247, 0.051503031511474, 0.05152782834898554, 0.05155262518649708, 0.05157742202400863 ], "y": [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.7732072028840643e-31, 0.0004264827068418909, 0.0017059308273675636, 0.003838344361577019, 0.006823723309470152, 0.010662067671047144, 0.015353377446307772, 0.0208976526352523, 0.02729489323788062, 0.03454509925419249, 0.04264827068418835, 0.05160440752786797, 0.06141350978523107, 0.07207557745627827, 0.08359061054100886, 0.09595860903942356, 0.10917957295152209, 0.12325350227730389, 0.1381803970167699, 0.1539602571699197, 0.1705930827367528, 0.18807887371727014, 0.20641763011147077, 0.22560935191935558, 0.24565403914092435, 0.2665516917761761, 0.28830230982511246, 0.3109058932877323, 0.3343624421640354, 0.3586719564540229, 0.3838344361576935, 0.40984988127504873, 0.4367182918060875, 0.46443966775080925, 0.4930140091092154, 0.5224413158813048, 0.5527215880670788, 0.5838548256665366, 0.6158410286796772, 0.6486801971065023, 0.6823723309470113, 0.7169174302012031, 0.7523154948690794, 0.7885665249506398, 0.8256705204458841, 0.8636274813548122, 0.9024374076774226, 0.9421002994137181, 0.9826161565636963, 1.023984979127359, 1.0662067671047055, 1.1092815204957351, 1.1532092393004496, 1.1979899235188476, 1.243623573150928, 1.2901101881966937, 1.3374497686561415, 1.3856423145292744, 1.4346878258160922, 1.4845863025165908, 1.5353377446307757, 1.586942152158643, 1.639399525100194, 1.6927098634554296, 1.7468731672243478, 1.8018894364069509, 1.8577586710032392, 1.9144808710132077, 1.9720560364368622, 2.0304841672742007, 2.0897652635252215, 2.1498993251899274, 2.2108863522683153, 2.2727263447603887, 2.3354193026661467, 2.3989652259855854, 2.46336411471871, 2.528615968865517, 2.5947207884260095, 2.661678573400186, 2.7294893237880435, 2.798153039589586, 2.867669720804814, 2.9380393674337237, 3.009261979476319, 3.081337556932598, 3.15426609980256, 3.228047608086206, 3.3026820817835354, 3.3781695208945495, 3.4545099254192437, 3.531703295357625, 3.609749630709691, 3.688648931475437, 3.768401197654869, 3.849006429247986, 3.9304646262547847, 4.0127757886752695, 4.095939916509434, 4.1799570097572865, 4.26482706841882, 4.3505500924940375, 4.4371260819829415, 5.060518280583724, 5.934763039751991, 6.773064824953491, 7.575423636188177, 8.341839473456092, 9.072312336757221, 9.766842226091528, 10.425429141459066, 11.048073082859801, 11.634774050293762, 12.185532043760922, 12.70034706326128, 13.179219108794861, 13.622148180361647, 14.029134277961628, 14.400177401594835, 14.735277551261236, 15.034434726960866, 15.297648928693683, 15.524920156459713, 15.716248410258949, 15.871633690091404, 15.991075995957067, 16.07457532785593, 16.122131685788, 16.133745069753285, 16.109415479751785, 16.049142915783474, 15.952927377848386, 15.82076886594651, 15.692370807467155, 15.946947110149837, 16.202426561520625, 16.458809161579527, 16.716094910326515, 16.974283807761612, 17.233375853884805, 17.493371048696122, 17.75426939219553, 18.016070884383034, 18.278775525258666, 18.542383314822377, 18.80689425307419, 19.072308340014136, 19.33862557564215, 19.605845959958284, 19.873969492962512, 20.142996174654872, 20.412926005035306, 20.683758984103836, 20.955495111860504, 21.226845040644058, 21.498194060076866, 21.77305627471442, 22.0514316845567, 22.333320289603705, 22.618722089855467, 22.90763708531193, 23.200065275973113, 23.496006661839033, 23.795461242909695, 24.09842901918507, 24.40490999066518, 24.714904157350034, 25.02841151923959, 25.345432076333893, 25.66596582863292, 25.990012776136666, 26.317572918845148, 26.64864625675836, 26.9832327898763, 27.321332518198968, 27.66294544172637, 28.008071560458493, 28.356710874395333, 28.708863383536915, 29.064529087883233, 29.423707987434273, 29.78640008219003, 30.152605372150557, 30.522323857315772, 30.89555553768572, 31.272300413260417, 31.652558484039815, 32.03632975002395, 32.423614211212836, 32.814411867606424, 33.208722719204744, 33.60654676600779, 34.0078840080156, 34.412734445228104, 34.821098077645324, 35.23297490526732, 35.64839724549119, 36.085514303578215, 36.55962991202028, 37.07074407081735, 37.61885677996942, 38.203968039476536, 38.82607784933865, 39.48518620955577, 40.18129312012793, 40.9143985810551, 41.684502592337246, 42.49160515397439, 43.2538288391068, 43.97768825732912, 44.71380881896358, 45.462190524010246, 46.222833372469, 46.9957373643399, 47.780902499623046, 48.57832877831822, 49.388016200425575, 50.2099647659451, 51.04417447487675, 51.890645327220525, 52.74937732297644, 53.62037046214457, 54.50362474472478, 55.399140170717146, 56.30691674012171, 57.226954452938365, 58.159253309167184, 59.10381330880815, 67.62094367297476, 73.8960665124224, 77.05445815422526, 77.17552059903183, 74.3064141304526, 68.44713874848715, 66.25940191703006, 66.62417764198743, 67.00207930292306, 67.39310689983702, 67.79726043272923, 68.21453990159975, 68.64494530644853, 69.08847664727558, 69.5451339240809, 70.01491713686455, 70.49782628562646, 70.99386137036663, 71.50302239108511, 72.02530934778187, 72.5607222404569, 73.10926106911023, 73.67092583374183, 74.24571653435173, 74.83363317093986, 75.43467574350636, 76.0488442520511, 76.67613869657406, 77.39526670340781, 78.12906780864766, 78.86995827948175, 79.61793811591009, 80.37300731793265, 81.13516588554941, 81.90441381876039, 82.6807511175657, 83.46417778196519, 84.25469381195887, 85.0522992075469, 85.85699396872904, 86.66877809550543, 87.4876515878761, 88.31361444584097, 89.14666666940006, 89.98680825855345, 90.88948270951403, 91.91376084863144, 93.05965738796637, 94.32717232751908, 95.71630566728923, 97.22705740727704, 98.82202858806879, 100.1760364712602, 101.55297434243212, 102.95284220158447, 104.37564004871722, 105.8213678838303, 107.28175172950588, 108.74567862831783, 110.21309017721656, 111.68398637620233, 113.15836722527476, 114.63623272443415, 116.11758287368033, 117.60241767301346, 119.0907371224334, 120.58254122194015, 122.07782997153386, 123.45603122633987, 124.79939225879319, 126.17487701090533, 127.5824854826759, 129.0222176741052, 130.49407358519323, 132.37711227620008, 134.58003604646726, 136.7545415634342, 138.90062882710114, 141.01829783746786, 143.1075485945345, 145.16838109830098, 147.20079534876731, 149.20479134593347, 151.18036908979965, 153.12752858036552, 155.0467490072057, 156.93308979513307, 158.78413010676218, 160.61342811927577, 162.43525449248077, 164.223051131578, 166.21428342386028, 168.43530185488598, 170.53258088994667, 172.5061205290426, 174.513595592077, 177.2291483471604, 180.42645987679558, 183.93987738861105, 187.76940088260653, 191.91503035878205, 196.37676581713768, 200.92240835941726, 205.03720658956018, 209.22591968495152, 213.48854764559127, 217.99417870855999, 222.71817956533002, 227.5841210892185, 232.6487075578834, 237.95370924322896, 245.3427629153895, 253.7433712000785, 261.1759809833513, 267.42122445310633, 272.47910160934407, 276.34961245206426, 279.0327569812664, 280.5285351969513, 280.8369470991182, 279.9579926877677, 277.89167196289947, 274.63798492451355, 272.17266903756234, 273.59569738924625, 304.047371868127, 307.7313386912688, 288.51578946396603, 278.597935378888, 277.46688725206485, 278.3916984744343, 279.2672634478249, 280.08588473865916, 280.84756234693674, 281.3645992498577, 281.80194917072845, 282.26128587672326, 282.7601348582517, 283.29606653955227, 283.84924252895837, 284.37177772683884, 284.8993167796411, 285.4318596873648, 285.9623493626411, 286.0360542879617, 285.3806531699173, 283.9961460085077, 281.88253280373334, 279.0398135555935, 275.46798826408894, 271.1648595429734, 270.80518780156956, 271.2389557584094, 271.66179511890715, 272.073705883063, 272.4746880508767, 272.8647416223483, 273.24386659747773, 273.6120629762651, 273.9693307587105, 274.955624580342, 276.5706331801493, 277.92470595768316, 279.0178429129437, 279.8500440459307, 280.42130935664443, 280.7316388450846, 280.7785989021638, 280.56988865359716, 280.10603971055764, 279.4940764664643, 279.77339250802834, 280.0486823585716, 280.3199460180942, 280.58718348659636, 280.85039476407763, 281.1095798505386, 281.36473874597857, 281.61587145039846, 282.36306284416804, 283.84175977000393, 285.9308812837445, 288.36367343533294, 291.7946403563196, 294.15086539971907, 293.8431230791798, 293.12692649888106, 292.30706971910803, 291.38355273986036, 290.3563755611386, 289.2255381829423, 287.99104060527156, 286.65288282812645, 285.211064851507, 283.66558667541295, 282.0164482998447, 280.26364972480195, 278.40982752061586, 276.5255112449709, 306.2424987063426, 317.27334863248683, 300.95608402522015, 269.9161608065718, 269.6922462664463, 269.5609758254133, 270.0069097402489, 271.46047277893746, 273.9216649414794, 277.39048622787413, 281.8669366381221, 287.3510161722229, 293.8297640560461, 296.368833670065, 297.81832299933933, 298.1782320438693, 297.4485608036547, 295.6293092786956, 292.7204774689921, 288.7220653745442, 283.6340729953518, 277.45650033141425, 270.18934738273185, 288.41948764280585, 259.32502658057064, 256.43358609793563, 253.56049194680426, 250.69554561666573, 247.9575893190447, 245.34662305394173, 242.8626468213567, 240.5056606212894, 238.2756644537403, 236.17265831870887, 234.1966422161953, 232.3476161461994, 230.48396003552836, 227.80152944132323, 225.25594900871204, 222.8472187376947, 220.57533862827137, 218.4403086804417, 216.44212889420606, 214.58079926956455, 212.85631980651672, 211.22364325357313, 208.65896444071916, 205.68605458111998, 202.30110829708622, 198.46008683003828, 194.15042082463788, 189.5067692379512, 185.12598713582526, 181.07909556766393, 177.3660945334668, 173.98698403323468, 170.9417640669671, 168.23043463466402, 165.85299573632554, 163.80944737195162, 162.32963182967544, 161.2847764245397, 160.27594827988187, 159.3031473957019, 158.36637377199978, 157.46562740877553, 156.60090830602914, 155.77221646376043, 154.9795518819698, 154.222914560657, 153.502304499822, 152.81772169946487, 152.16916615958564, 151.55663788018418, 150.98161464896248, 150.44607659097954, 149.950033947822, 149.49348671948957, 157.34467287639285, 161.60498051357442, 152.89269960968457, 145.62621761160935, 144.59840665273052, 143.54330946623247, 142.46092605211527, 141.35125641037894, 140.2143005410233, 139.0500584440486, 137.8585301194547, 136.63971556724172, 135.39361478740952, 134.1202277799582, 132.8195545448876, 131.49159508219776, 130.13634939188893, 128.75381747396096, 127.39369384449623, 126.74915293243703, 126.13170183653205, 125.54134055678117, 125.0726106444625, 124.74297634381358, 124.45231042074903, 124.20114347306884, 123.98950551545438, 123.81739654790547, 123.68481657042217, 123.59176558300453, 123.53824358565252, 123.52425057836622, 123.5497865611454, 123.6148515339903, 123.7194454969008, 123.86356844987692, 124.0472203929187, 124.27040132602608, 124.53311124919905, 124.83535016243776, 125.17711806574206, 125.55841495911199, 125.95727552452855, 126.24807425364409, 126.6218787714122, 127.00816260405249, 127.38156515762282, 127.74208643212324, 128.0897264275537, 128.42448514391415, 128.7463625812046, 129.05535873942515, 129.3514736185757, 129.63470721865633, 129.905059539667, 130.16253058160768, 130.40712034447836, 130.63882882827912, 130.8578958747365, 131.0683901406433, 131.25030882250414, 131.28169654338518, 131.3204261362131, 131.36649760098786, 131.41991093770943, 131.4806661463779, 131.54876322699326, 131.62420217955543, 131.70698300406443, 131.7971057005203, 131.8945702689231, 131.99937670927264, 132.11152502156912, 132.23101520581244, 132.35784726200262, 132.49202119013967, 132.63353699022355, 132.7823721406399, 132.93847003514904, 133.10182794524405, 133.27244587092483, 133.45032381219153, 133.63546176904399, 134.18079178290782, 134.88391081356832, 135.52406898321283, 136.09900257369506, 136.60686193536182, 137.0476470682131, 137.42135797224896, 137.72799464746933, 137.96755709387426, 138.14004531146372, 138.24545930023777, 138.28379906019632, 138.25506459133942, 138.15925589366702, 137.9963729671792, 137.8615200164296, 137.89896634036285, 138.09562832651113, 138.20732444068702, 138.32156899327913, 138.43836198428752, 138.55770341371226, 138.6795932815533, 138.80403158781058, 138.9310183324842, 139.0605535155741, 139.1926371370803, 139.3272691970028, 139.4644496953416, 139.60413803241667, 139.74627309604122, 139.89085427642297, 143.23623519501214, 147.35867726064794, 151.07207645511562, 154.3764327784155, 157.27174623054694, 159.75801681151012, 161.8352445213053, 163.50342935993228, 164.76257132739107, 165.4346894958004, 165.52917205337664, 165.81189438969707, 166.28285650476167, 166.93651145338887, 167.6367036594423, 168.32490000656165, 169.00110049474713, 169.66530512399862, 170.31751389431616, 170.95772680569965, 171.58594385814922, 172.20216505166476, 172.8063903862464, 173.40101356335765, 174.08746248475924, 174.91942568672616, 175.89657174101865, 176.05980159501775, 176.0246953348805, 175.7912529606071, 175.3594744721975, 174.72935986965155, 173.90090915296946, 172.87412232215107, 171.6489993771964, 170.22554031810557, 168.60374514487827, 166.78361385751487, 164.76514645601534, 162.5483429403795, 160.13320331060746, 157.51972756669915, 154.70791570865427, 151.69776773647354, 148.48928365015638, 145.0824634497031, 141.76657806612994, 138.65499338503406, 135.48304557533675, 132.22117066415183, 128.83697578011453, 125.33046092322488, 121.6660961366057, 117.91059295218098, 114.2970007802523, 110.72585357411893, 107.19200346247936, 103.69545044533321, 100.23619452268046, 96.81423569452109, 93.42957396085514, 90.08220932168214, 86.77214177700291, 83.4993713268171, 80.2638979711247, 77.06572170992568, 73.90484254322006, 70.78126047100781, 67.69497549328858, 64.64598761006314, 61.63429682133109, 58.6599031270924, 55.72280652734714, 52.82300702209525, 49.36985851683304, 45.68278441647272, 41.95175331688516, 38.17676521807035, 34.35782012002831, 30.494918022759023, 27.008939422907435, 25.44628086207963, 24.3224280930594, 23.637381115846527, 23.39113993044102, 23.486245325721313, 23.606013931256133, 23.72609275626233, 23.846481800739856, 23.967181064688727, 24.088190548108958, 24.209510251000527, 24.33114017336346, 24.45308031519774, 24.57533067650339, 24.69789125728037, 24.820762057528707, 24.943943077248385, 25.067434316439428, 25.19123577510181, 25.31534745323555, 25.43976935084065, 25.564501467917072, 25.689543804464858, 25.814896360484006, 25.940559135974492, 26.066532130936334, 26.192815345369528, 26.319408779274077, 26.446312432649968, 26.573526305497207, 26.701050397815802, 26.82888470960574, 26.95702924086705, 27.085483991599702, 27.214248961803694, 27.34332415147905, 27.472709560625738, 27.602405189243786, 27.732411037333204, 27.862727104893956, 27.99335339192606, 28.12428989842951, 28.255536624404307, 28.387093569850457, 28.518960734767973, 28.65113811915684, 28.783625723017042, 28.916423546348597, 29.0495315891515, 29.18294985142576, 29.318017497548684, 29.464502217941703, 29.624327223794975, 29.797492515108523, 29.983998091882363, 30.183843954116465, 30.397030101810856, 30.623556534965523, 30.86342325358052, 31.067575364871516, 31.268014647607135, 31.469667140610714, 31.672532843882248, 31.876611757421742, 32.08190388122921, 32.28840921530462, 32.496127759647976, 32.7050595142593, 32.91520447913857, 33.126562654285806, 33.339134039701, 33.55291863538417, 33.767916441335274, 33.98412745755433, 34.20155168404135, 34.42018912079633, 34.640039767819246, 34.861103625110154, 35.08338069266901, 35.30687097049581, 35.53157445859056, 35.75749115695328, 35.98448143513803, 36.2118318436771, 36.43944203814391, 36.66731201853849, 36.89544178486079, 37.12383133711091, 37.35248067528879, 37.581389799394394, 37.810558709427816, 38.03998740538896, 38.26967588727787, 38.49962415509452, 38.729832208838964, 38.960300048511144, 39.191027674111105, 39.42201508563887, 39.65326228309434, 39.884769266477576, 40.1165360357886, 40.34856259102736, 40.58084893219388, 40.813395059288204, 41.04620097231025, 41.27926667126005, 41.51259215613766, 41.746177426942985, 41.98002248367611, 42.21412732633697, 42.44849195492562, 42.68311636944201, 42.91800056988616, 43.153144556258084, 43.38854832855775, 43.624211886785204, 43.8601328720404, 44.0961508558575, 44.3321684087719, 44.56818553078361, 44.804202221892595, 45.04021848209889, 45.27623431140246, 45.51224970980337, 45.748264677301535, 45.996810258991, 46.28294866059316, 46.5739653830079, 46.86986042623519, 47.170633790275105, 47.47628547512756, 47.78681548079257, 48.102223807270136, 48.42251045456028, 48.747675422663015, 49.0777187115783, 49.4126403213062, 49.75244025184663, 50.0971185031996, 50.44667507536517, 50.80110996834331, 51.160423182134025, 51.52461471673731, 51.89368457215317, 52.26763274838156, 52.64645924542254, 53.03016406327609, 53.41874720194219, 53.812208661420925, 54.21054844171219, 54.61376654281601, 55.02176800847841, 55.434020336012935, 55.850440704337956, 56.27102911345348, 56.69578556335957, 57.12471005405606, 57.55780258554309, 57.995063157820596, 58.43649177088863, 58.88208842474716, 59.32695467287709, 59.77367888077191, 60.22409930932351, 60.67821595853192, 61.13602882839712, 61.59753791891909, 62.06274323009791, 62.53164476193352, 63.0042425144259, 63.480536487575066, 63.960526681381005, 64.44421309584375, 64.9315957309633, 65.42418268242236, 65.9247030665798, 66.43321311069892, 66.94971281477974, 67.47420217882227, 68.00668120282646, 68.54714988679233, 69.09560823071996, 69.6520562346092, 70.21649389846017, 70.78892122227279, 71.36933820604712, 71.95774484978314, 72.55414115348091, 73.1585271171403, 73.77090274076137, 74.39126802434416, 75.01962296788861, 75.65596757139475, 76.30268597362716, 76.97475967873292, 77.67480188422812, 78.40281259011292, 79.15879179638729, 79.9427395030513, 80.75465571010486, 81.59549862691506, 82.45171672995495, 83.30343883680162, 84.15066494745497, 84.99339506191511, 85.831629180182, 86.66536730225575, 87.49460942813613, 88.3193555578233, 89.13960569131719, 89.95535982861784, 90.76661796972525, 91.57338011463936, 92.54470889006834, 93.59699581185728, 94.66060277047926, 95.73552976593417, 96.82177679822207, 97.91934386734292, 99.02823097329687, 100.14843811608371, 101.27996529570349, 102.42281251215611, 103.576979765442, 104.7424670555608, 105.91927438251233, 107.10740174629713, 108.30684914691459, 109.51761658436538, 110.74055851055815, 111.9848002541815, 113.25024909422521, 114.5369050306886, 115.84476806357229, 117.17383819287559, 118.52411541859932, 119.89559974074304, 121.28829115930635, 122.70254280362252, 124.14923966341145, 125.63347857715712, 127.15525954485872, 128.714582566517, 130.3114476421317, 131.94585477170233, 133.61780395522962, 135.65533910838735, 137.81152598221644, 140.08268592754692, 142.46881894437843, 144.96992503271207, 147.58600419254648, 150.31705642388297, 153.1630817267203, 156.12408010105986, 159.20005154690088, 162.39206276463787, 165.80827817124023, 169.52073228370975, 173.529425102048, 177.79075797010452, 182.2623484975997, 186.944462590994, 191.837100250286, 196.9402614754784, 202.2539462665684, 207.77815462355878, 213.51288654644685, 219.45814203523508, 225.61392108992243, 231.98022371050743, 238.5570498969929, 245.34439964937576, 252.3422729676593, 261.9037919939175, 271.8452201145018, 282.03913172062533, 292.4855268122836, 303.1844053894813, 314.13576745221354, 325.33961300048543, 336.79749032723515, 348.61803692553485, 360.87266505443426, 373.56137471392793, 386.6841659040216, 400.24103862470906, 414.2319928759969, 428.5170106805169, 442.5448208728977, 456.27031476881325, 471.4093029234074, 489.1971066669327, 510.3563595203705, 566.273513868452, 610.7699376621175, 560.1523289876424, 521.5334497274551, 485.1816958143327, 455.6889468120724, 432.5529082524176, 411.8196538413268, 392.6439187983455, 375.02570312348297, 358.9636836645732, 340.3092641926306, 322.31761036772014, 304.98553968724354, 288.3129683335852, 265.60286438853154, 244.09492106100498, 224.36083753850335, 210.28730269685315, 198.98626969000443, 188.2150602228615, 177.91634515107276, 167.98111255193, 158.40936242543773, 149.20109477159156, 140.35630959039375, 131.8750068818463, 123.75718664594511, 116.00284888269414, 108.61199359208963, 101.58462077413516, 95.15569716006524, 90.23127469469607, 85.54133494211622, 81.07728355313776, 76.83912052776286, 72.82684586598943, 69.0404595678194, 65.47996163325094, 62.145352062285035, 59.036630854922365, 56.15379801116146, 53.49685353100371, 51.0657974144478, 53.954083737028576, 51.564366069015065, 43.014743002752695, 28.305214538245774, 17.24895439788467, 15.354088392319873, 13.569446132581536, 11.895025020534229, 10.330825056176717, 8.876846239509415, 7.533088570532625, 6.299552049245712, 5.176236675649261, 4.163142449742737, 3.2602693715264213, 2.467617441000488, 1.7851866581645615, 1.212977023018966, 0.7509885355634288, 0.39922119579817006, 0.15767500372302234, 0.026349959338082492, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5949961174967097, 7.4438874107823505, 21.952390040039596, 59.71950671836739, 114.29651913561709, 171.96755979856928, 232.7326287072514, 291.54842601982403, 383.1042352623676, 495.6893004595501, 600.3209004497977, 617.8701296598595, 611.226606985986, 594.0842373642988, 571.6889305484814, 551.8555691311807, 534.5483804122977, 519.0704359960057, 512.8742608389458, 514.6193959961595, 520.941113349486, 527.3758699829123, 533.8623312231196, 540.4004970701052, 546.9903675238718, 553.6319425844181, 560.3252222517426, 567.0702065258483, 573.8668954067322, 575.4373829044316, 584.2380414660297, 609.0899365751083, 614.8181025916249, 604.926640978149, 601.5111492358892, 600.0894872825297, 600.6616551180707, 603.227652742512, 607.797084323335, 614.3278379035959, 623.1067240472988, 631.5801022716519, 639.6218598919389, 647.6856468536022, 655.0299955534826, 662.8733060466155, 671.2155783330056, 680.0568124126485, 689.3970082855478, 699.2361659517001, 710.2100007072108, 721.5706240995705, 733.1285996546394, 744.8839273724225, 756.8366072529152, 768.9710876542915, 778.6617216987504, 772.2089605805143, 769.058648180349, 769.1727302299804, 770.586557393103, 773.0090785838477, 802.1170060469798, 821.0992623304153, 843.5934146269371, 861.5068449096069, 870.6079034221486, 874.6092425547079, 876.546103368909, 876.6975911861484, 875.381850367551, 873.4282292852492, 871.511745262109, 869.7664427430476, 868.1923217280648, 869.2241806789698, 871.9654419473768, 874.3259717851654, 876.2991827099876, 877.8850747218453, 879.0836478207368, 879.8945229078561, 881.0050778635525, 903.9664148289199, 933.2087310691654, 955.7769321223172, 971.6710179883738, 980.7504536813906, 981.4708025604772, 1103.4840465139878, 1041.3505134406319, 899.1479242447896, 847.2951483193086, 800.1381612632475, 757.676963076629, 719.9115537594329, 686.8419333116688, 658.4505325634784, 633.1234936003445, 610.3582764624775, 591.2040898430207, 573.9528034818217, 556.6436647819218, 539.323070073085, 521.8651408000675, 504.3730386604375, 486.9787508547573, 469.6822221704427, 451.5464365382435, 431.5480572227542, 411.78893084106994, 392.2690573931957, 373.33144723478324, 358.61854256517245, 348.581170270604, 339.72237038675854, 329.9594117326506, 320.22044736680704, 310.7047056246314, 301.4121865061195, 292.34289001127513, 283.49681614009444, 276.24381613536565, 271.06967840927916, 264.90793732745226, 257.7585928898882, 249.62164509658325, 240.49709394754152, 225.03530102422457, 208.72086171545928, 194.60375223551222, 184.34068511558377, 175.36800615582425, 166.69931287459133, 158.3346052718872, 150.27388334771368, 142.51714710206696, 135.06439653495076, 127.9156316463614, 124.6106954564879, 119.20172319250271, 111.46048843189159, 101.78572925786298, 89.36682871785338, 73.7612492574689, 54.96899087670222, 36.72845446795745, 23.483090492263358, 13.187577277650384, 5.8419148241199315, 1.4461031316685033, 1.2679197688283595e-08, 0.00013410613288420876, 0.0005312212994313936, 0.0011913581788394322, 0.0021145167711082613, 0.003300697076237567, 0.004749899094227914, 0.006462122825078613, 0.008437368268790477, 0.010675635425363135, 0.013176924294795955, 0.015941234877090128, 0.01896856717224434, 0.022258921180260023, 0.02581229690113563, 0.029628694334872845, 0.03370811348147084, 0.038050554340928584, 94.31588123864898, 231.23392569532245, 331.8034405403571, 423.31097609085873, 459.5476174700318, 441.97885155288037, 477.83112920423594, 496.1262885218678, 508.5542354653543, 520.6652802520824, 532.4594228820583, 543.9366633552768, 555.0970016717449, 565.9404378314503, 576.4669718344082, 586.6766036806034, 615.9902069872996, 631.50464412465, 633.0407215153278, 618.6359131012399, 590.3307271823619, 563.1285683252574, 535.4908934556108, 508.54377763828285, 482.749951803292, 458.109389261969, 434.69506503702337, 416.4190541522136, 404.2648935000537, 395.99254363485767, 389.1062461291251, 382.96717865298126, 376.5900601412693, 370.469550746768, 364.6056504694742, 358.998359309391, 353.64767726651417, 348.918187977742, 345.3441101620066, 341.0877634652737, 336.1491478875374, 330.52826342880456, 324.22511008906724, 318.7103601485883, 314.7827957269987, 311.0220897678552, 307.42824227115585, 304.00125323690236, 300.7411226650931, 297.6478505557296, 294.7209112609687, 291.9594791290794, 289.3635441602134, 286.93310635437444, 284.668165711559, 282.56872223176975, 280.499014064069, 278.3596223751952, 276.1786024945793, 274.08606828791886, 272.1128071393837, 270.25881904897483, 268.5241040166911, 266.90866204253433, 265.41249312650234, 264.0355972685973, 261.9348224742115, 260.0016432550753, 258.1506505704137, 256.3473064516184, 254.57950643531626, 252.84538688820112, 251.144947810272, 249.47818920152963, 247.8451110619735, 246.2427249549469, 244.6579026767729, 243.0890992910501, 241.53631479777619, 239.99954919695335, 238.4788024885795, 236.9740746726563, 235.48536574918282, 234.0126757181597, 232.5560045795862, 231.11535233346316, 229.69071897978964, 228.2821045185658, 230.46230540589428, 233.74371426652195, 232.52889451102345, 226.40731755424278, 225.45123502622724, 225.79869766747703, 227.08249344468214, 228.13691239797308, 228.96195452734867, 229.55761983281013, 229.92390831435648, 230.06081997198837, 229.96835480570542, 230.44760639134773, 231.42476648838058, 231.95483750106052, 232.03781942938707, 229.1773010543488, 224.94948078960144, 220.5847900225043, 216.08322875305964, 211.44479698126412, 206.66949470712333, 202.32460807595686, 197.84385766342064, 190.68551060050098, 183.39587844590807, 176.38971028344145, 169.66700611310475, 163.2277659348947, 157.07397499508883, 151.2786599192524, 145.87865622288012, 140.87396390596834, 136.26458296852277, 129.86160905219432, 124.16979355067907, 118.84625452853537, 113.8739877894969, 109.25299333355639, 133.21925322062856, 140.69838908484036, 122.4323035936223, 106.10124978588836, 96.68807544846163, 87.88667980632583, 79.69706285948519, 72.08071611233318, 64.81756909397106, 57.872714557108914, 51.246152501756654, 44.937882927904866, 38.94790583556114, 35.37239504615057, 32.30643859764402, 28.94500191771254, 25.288085006357736, 21.278386586187644, 16.851062638268772, 12.006052108497464, 6.743354996879629, 1.062971303407763, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] }, { "mode": "lines", "name": "DOS: nqsmall 12", "showlegend": true, "type": "scatter", "x": [ -0.0037195256267313916, -0.0036947287892198487, -0.0036699319517083063, -0.0036451351141967635, -0.0036203382766852206, -0.0035955414391736786, -0.0035707446016621357, -0.0035459477641505937, -0.003521150926639051, -0.003496354089127508, -0.0034715572516159656, -0.0034467604141044227, -0.00342196357659288, -0.003397166739081338, -0.003372369901569795, -0.003347573064058252, -0.0033227762265467097, -0.003297979389035167, -0.0032731825515236244, -0.003248385714012082, -0.003223588876500539, -0.0031987920389889967, -0.0031739952014774543, -0.0031491983639659114, -0.0031244015264543686, -0.003099604688942826, -0.0030748078514312837, -0.0030500110139197413, -0.0030252141764081984, -0.003000417338896656, -0.0029756205013851135, -0.0029508236638735707, -0.002926026826362028, -0.0029012299888504854, -0.0028764331513389425, -0.0028516363138274, -0.0028268394763158577, -0.002802042638804315, -0.0027772458012927724, -0.0027524489637812295, -0.002727652126269687, -0.0027028552887581447, -0.002678058451246602, -0.0026532616137350594, -0.002628464776223517, -0.002603667938711974, -0.0025788711012004312, -0.002554074263688889, -0.002529277426177346, -0.0025044805886658035, -0.002479683751154261, -0.002454886913642718, -0.002430090076131176, -0.002405293238619633, -0.0023804964011080905, -0.002355699563596548, -0.002330902726085005, -0.0023061058885734628, -0.0022813090510619203, -0.0022565122135503775, -0.0022317153760388346, -0.002206918538527292, -0.0021821217010157493, -0.0021573248635042073, -0.0021325280259926645, -0.0021077311884811216, -0.0020829343509695796, -0.0020581375134580368, -0.002033340675946494, -0.0020085438384349515, -0.0019837470009234086, -0.001958950163411866, -0.0019341533259003237, -0.0019093564883887809, -0.0018845596508772382, -0.0018597628133656958, -0.0018349659758541532, -0.0018101691383426103, -0.0017853723008310679, -0.0017605754633195254, -0.0017357786258079828, -0.00171098178829644, -0.0016861849507848975, -0.0016613881132733549, -0.001636591275761812, -0.0016117944382502696, -0.0015869976007387271, -0.0015622007632271845, -0.0015374039257156416, -0.0015126070882040992, -0.0014878102506925568, -0.001463013413181014, -0.0014382165756694713, -0.0014134197381579288, -0.0013886229006463862, -0.0013638260631348433, -0.001339029225623301, -0.0013142323881117585, -0.0012894355506002156, -0.001264638713088673, -0.0012398418755771305, -0.001215045038065588, -0.001190248200554045, -0.0011654513630425026, -0.0011406545255309602, -0.0011158576880194173, -0.0010910608505078747, -0.0010662640129963322, -0.0010414671754847898, -0.001016670337973247, -0.0009918735004617043, -0.0009670766629501619, -0.0009422798254386189, -0.0009174829879270765, -0.0008926861504155339, -0.0008678893129039914, -0.0008430924753924485, -0.000818295637880906, -0.0007934988003693636, -0.000768701962857821, -0.0007439051253462782, -0.0007191082878347356, -0.0006943114503231931, -0.0006695146128116502, -0.0006447177753001078, -0.0006199209377885653, -0.0005951241002770227, -0.0005703272627654799, -0.0005455304252539373, -0.0005207335877423949, -0.0004959367502308519, -0.00047113991271930945, -0.00044634307520776697, -0.0004215462376962245, -0.00039674940018468157, -0.00037195256267313946, -0.00034715572516159655, -0.0003223588876500537, -0.0002975620501385116, -0.00027276521262696867, -0.0002479683751154258, -0.00022317153760388367, -0.00019837470009234078, -0.00017357786258079792, -0.0001487810250692558, -0.0001239841875577129, -9.918735004617003e-05, -7.43905125346279e-05, -4.959367502308501e-05, -2.4796837511542876e-05, 0.0, 2.4796837511542876e-05, 4.959367502308501e-05, 7.43905125346279e-05, 9.918735004617077e-05, 0.0001239841875577129, 0.0001487810250692558, 0.00017357786258079865, 0.00019837470009234078, 0.00022317153760388367, 0.0002479683751154258, 0.00027276521262696867, 0.0002975620501385116, 0.0003223588876500537, 0.00034715572516159655, 0.00037195256267313946, 0.00039674940018468157, 0.0004215462376962245, 0.00044634307520776735, 0.00047113991271930945, 0.0004959367502308524, 0.0005207335877423952, 0.0005455304252539373, 0.0005703272627654802, 0.0005951241002770224, 0.0006199209377885653, 0.0006447177753001081, 0.0006695146128116502, 0.0006943114503231931, 0.0007191082878347361, 0.0007439051253462782, 0.000768701962857821, 0.0007934988003693639, 0.000818295637880906, 0.000843092475392449, 0.0008678893129039918, 0.0008926861504155339, 0.0009174829879270768, 0.0009422798254386189, 0.0009670766629501619, 0.0009918735004617047, 0.001016670337973247, 0.0010414671754847898, 0.0010662640129963327, 0.0010910608505078747, 0.0011158576880194175, 0.0011406545255309604, 0.0011654513630425026, 0.0011902482005540455, 0.0012150450380655877, 0.0012398418755771305, 0.0012646387130886734, 0.0012894355506002156, 0.0013142323881117585, 0.0013390292256233013, 0.0013638260631348433, 0.0013886229006463862, 0.001413419738157929, 0.0014382165756694713, 0.0014630134131810141, 0.001487810250692557, 0.0015126070882040992, 0.001537403925715642, 0.0015622007632271843, 0.0015869976007387271, 0.00161179443825027, 0.001636591275761812, 0.0016613881132733549, 0.001686184950784898, 0.00171098178829644, 0.0017357786258079828, 0.0017605754633195257, 0.0017853723008310679, 0.0018101691383426107, 0.0018349659758541536, 0.0018597628133656958, 0.0018845596508772387, 0.0019093564883887809, 0.0019341533259003237, 0.0019589501634118666, 0.0019837470009234086, 0.0020085438384349515, 0.0020333406759464943, 0.0020581375134580368, 0.0020829343509695796, 0.0021077311884811225, 0.0021325280259926645, 0.0021573248635042073, 0.0021821217010157493, 0.002206918538527292, 0.002231715376038835, 0.0022565122135503775, 0.0022813090510619203, 0.002306105888573463, 0.002330902726085005, 0.002355699563596548, 0.002380496401108091, 0.002405293238619633, 0.002430090076131176, 0.002454886913642719, 0.002479683751154261, 0.002504480588665804, 0.002529277426177346, 0.002554074263688889, 0.0025788711012004317, 0.002603667938711974, 0.002628464776223517, 0.00265326161373506, 0.002678058451246602, 0.0027028552887581447, 0.0027276521262696875, 0.0027524489637812295, 0.0027772458012927724, 0.002802042638804315, 0.0028268394763158577, 0.0028516363138274005, 0.0028764331513389425, 0.0029012299888504854, 0.0029260268263620283, 0.0029508236638735707, 0.0029756205013851127, 0.0030004173388966564, 0.0030252141764081984, 0.0030500110139197404, 0.003074807851431284, 0.003099604688942826, 0.0031244015264543686, 0.003149198363965912, 0.0031739952014774543, 0.0031987920389889963, 0.00322358887650054, 0.003248385714012082, 0.003273182551523624, 0.0032979793890351677, 0.0033227762265467097, 0.003347573064058252, 0.003372369901569796, 0.003397166739081338, 0.00342196357659288, 0.0034467604141044236, 0.0034715572516159656, 0.003496354089127508, 0.0035211509266390513, 0.0035459477641505937, 0.0035707446016621357, 0.0035955414391736777, 0.0036203382766852215, 0.0036451351141967635, 0.003669931951708306, 0.003694728789219849, 0.0037195256267313916, 0.0037443224642429336, 0.0037691193017544773, 0.0037939161392660193, 0.0038187129767775618, 0.003843509814289105, 0.0038683066518006475, 0.0038931034893121895, 0.003917900326823733, 0.003942697164335275, 0.003967494001846817, 0.003992290839358361, 0.004017087676869903, 0.004041884514381445, 0.004066681351892989, 0.004091478189404531, 0.0041162750269160735, 0.004141071864427617, 0.004165868701939159, 0.004190665539450701, 0.004215462376962243, 0.0042402592144737865, 0.004265056051985329, 0.004289852889496871, 0.004314649727008415, 0.004339446564519957, 0.004364243402031499, 0.004389040239543043, 0.004413837077054584, 0.004438633914566127, 0.00446343075207767, 0.0044882275895892125, 0.004513024427100755, 0.004537821264612298, 0.004562618102123841, 0.004587414939635382, 0.004612211777146926, 0.004637008614658468, 0.00466180545217001, 0.004686602289681554, 0.004711399127193096, 0.0047361959647046386, 0.004760992802216182, 0.004785789639727724, 0.004810586477239266, 0.00483538331475081, 0.004860180152262352, 0.004884976989773894, 0.004909773827285436, 0.00493457066479698, 0.004959367502308522, 0.004984164339820065, 0.005008961177331608, 0.00503375801484315, 0.005058554852354692, 0.005083351689866236, 0.005108148527377778, 0.00513294536488932, 0.005157742202400863, 0.005182539039912406, 0.005207335877423948, 0.0052321327149354915, 0.005256929552447034, 0.0052817263899585755, 0.00530652322747012, 0.005331320064981661, 0.005356116902493204, 0.005380913740004747, 0.005405710577516289, 0.005430507415027832, 0.005455304252539375, 0.0054801010900509175, 0.005504897927562459, 0.0055296947650740015, 0.005554491602585545, 0.005579288440097087, 0.00560408527760863, 0.005628882115120173, 0.005653678952631715, 0.005678475790143257, 0.005703272627654801, 0.005728069465166343, 0.005752866302677885, 0.005777663140189429, 0.005802459977700971, 0.005827256815212513, 0.0058520536527240565, 0.005876850490235599, 0.005901647327747141, 0.005926444165258685, 0.005951241002770227, 0.005976037840281769, 0.006000834677793313, 0.006025631515304854, 0.006050428352816397, 0.00607522519032794, 0.0061000220278394825, 0.006124818865351025, 0.0061496157028625665, 0.006174412540374111, 0.006199209377885652, 0.006224006215397195, 0.006248803052908738, 0.00627359989042028, 0.006298396727931823, 0.006323193565443366, 0.0063479904029549086, 0.00637278724046645, 0.006397584077977994, 0.006422380915489536, 0.006447177753001078, 0.006471974590512622, 0.006496771428024164, 0.006521568265535706, 0.00654636510304725, 0.006571161940558792, 0.006595958778070334, 0.006620755615581878, 0.0066455524530934194, 0.006670349290604962, 0.006695146128116506, 0.006719942965628048, 0.00674473980313959, 0.0067695366406511324, 0.006794333478162676, 0.006819130315674218, 0.00684392715318576, 0.006868723990697304, 0.0068935208282088455, 0.006918317665720388, 0.006943114503231931, 0.006967911340743474, 0.006992708178255016, 0.007017505015766559, 0.007042301853278102, 0.007067098690789643, 0.0070918955283011875, 0.007116692365812729, 0.0071414892033242715, 0.007166286040835815, 0.007191082878347357, 0.0072158797158589, 0.007240676553370443, 0.007265473390881985, 0.007290270228393527, 0.007315067065905071, 0.007339863903416613, 0.007364660740928155, 0.007389457578439698, 0.007414254415951241, 0.007439051253462783, 0.007463848090974325, 0.007488644928485869, 0.0075134417659974105, 0.007538238603508953, 0.007563035441020497, 0.007587832278532039, 0.007612629116043581, 0.007637425953555124, 0.007662222791066667, 0.007687019628578209, 0.0077118164660897525, 0.007736613303601295, 0.0077614101411128365, 0.007786206978624381, 0.007811003816135922, 0.007835800653647465, 0.007860597491159008, 0.00788539432867055, 0.007910191166182093, 0.007934988003693636, 0.007959784841205178, 0.007984581678716721, 0.008009378516228264, 0.008034175353739806, 0.00805897219125135, 0.00808376902876289, 0.008108565866274434, 0.008133362703785976, 0.008158159541297519, 0.008182956378809062, 0.008207753216320604, 0.008232550053832147, 0.00825734689134369, 0.008282143728855232, 0.008306940566366773, 0.008331737403878318, 0.00835653424138986, 0.008381331078901402, 0.008406127916412945, 0.008430924753924488, 0.00845572159143603, 0.008480518428947573, 0.008505315266459116, 0.008530112103970658, 0.008554908941482201, 0.008579705778993743, 0.008604502616505286, 0.00862929945401683, 0.008654096291528371, 0.008678893129039914, 0.008703689966551456, 0.008728486804062999, 0.00875328364157454, 0.008778080479086084, 0.008802877316597627, 0.008827674154109169, 0.008852470991620712, 0.008877267829132255, 0.008902064666643797, 0.008926861504155338, 0.008951658341666884, 0.008976455179178425, 0.009001252016689967, 0.009026048854201512, 0.009050845691713053, 0.009075642529224595, 0.009100439366736138, 0.009125236204247681, 0.009150033041759223, 0.009174829879270766, 0.00919962671678231, 0.009224423554293851, 0.009249220391805394, 0.009274017229316936, 0.00929881406682848, 0.00932361090434002, 0.009348407741851564, 0.009373204579363107, 0.009398001416874649, 0.009422798254386192, 0.009447595091897734, 0.009472391929409277, 0.00949718876692082, 0.009521985604432362, 0.009546782441943905, 0.009571579279455449, 0.00959637611696699, 0.009621172954478532, 0.009645969791990075, 0.009670766629501617, 0.009695563467013162, 0.009720360304524703, 0.009745157142036246, 0.009769953979547788, 0.00979475081705933, 0.009819547654570873, 0.009844344492082418, 0.00986914132959396, 0.009893938167105503, 0.009918735004617044, 0.009943531842128586, 0.00996832867964013, 0.009993125517151674, 0.010017922354663216, 0.010042719192174757, 0.0100675160296863, 0.010092312867197842, 0.010117109704709384, 0.010141906542220929, 0.010166703379732472, 0.010191500217244014, 0.010216297054755555, 0.010241093892267098, 0.01026589072977864, 0.010290687567290182, 0.010315484404801727, 0.01034028124231327, 0.010365078079824811, 0.010389874917336353, 0.010414671754847896, 0.010439468592359438, 0.010464265429870983, 0.010489062267382524, 0.010513859104894068, 0.01053865594240561, 0.010563452779917151, 0.010588249617428694, 0.01061304645494024, 0.01063784329245178, 0.010662640129963322, 0.010687436967474866, 0.010712233804986407, 0.010737030642497949, 0.010761827480009494, 0.010786624317521037, 0.010811421155032579, 0.01083621799254412, 0.010861014830055664, 0.010885811667567205, 0.010910608505078747, 0.010935405342590292, 0.010960202180101835, 0.010984999017613377, 0.011009795855124918, 0.011034592692636461, 0.011059389530148003, 0.011084186367659548, 0.01110898320517109, 0.011133780042682633, 0.011158576880194174, 0.011183373717705716, 0.01120817055521726, 0.011232967392728804, 0.011257764230240346, 0.011282561067751887, 0.01130735790526343, 0.011332154742774972, 0.011356951580286514, 0.011381748417798059, 0.011406545255309602, 0.011431342092821144, 0.011456138930332685, 0.011480935767844229, 0.01150573260535577, 0.011530529442867312, 0.011555326280378858, 0.0115801231178904, 0.011604919955401942, 0.011629716792913485, 0.011654513630425026, 0.011679310467936568, 0.011704107305448113, 0.011728904142959656, 0.011753700980471198, 0.01177849781798274, 0.011803294655494283, 0.011828091493005824, 0.01185288833051737, 0.011877685168028911, 0.011902482005540454, 0.011927278843051996, 0.011952075680563537, 0.01197687251807508, 0.012001669355586626, 0.012026466193098167, 0.012051263030609709, 0.012076059868121252, 0.012100856705632794, 0.012125653543144335, 0.012150450380655878, 0.012175247218167424, 0.012200044055678965, 0.012224840893190507, 0.01224963773070205, 0.012274434568213591, 0.012299231405725133, 0.012324028243236678, 0.012348825080748221, 0.012373621918259763, 0.012398418755771305, 0.012423215593282848, 0.01244801243079439, 0.012472809268305934, 0.012497606105817476, 0.01252240294332902, 0.01254719978084056, 0.012571996618352102, 0.012596793455863646, 0.01262159029337519, 0.012646387130886732, 0.012671183968398274, 0.012695980805909817, 0.012720777643421359, 0.0127455744809329, 0.012770371318444445, 0.012795168155955989, 0.01281996499346753, 0.012844761830979072, 0.012869558668490615, 0.012894355506002157, 0.012919152343513698, 0.012943949181025243, 0.012968746018536786, 0.012993542856048328, 0.01301833969355987, 0.013043136531071413, 0.013067933368582954, 0.0130927302060945, 0.013117527043606041, 0.013142323881117584, 0.013167120718629126, 0.013191917556140667, 0.01321671439365221, 0.013241511231163756, 0.013266308068675297, 0.013291104906186839, 0.013315901743698382, 0.013340698581209924, 0.013365495418721465, 0.013390292256233012, 0.013415089093744554, 0.013439885931256095, 0.013464682768767638, 0.01348947960627918, 0.013514276443790722, 0.013539073281302265, 0.01356387011881381, 0.013588666956325351, 0.013613463793836893, 0.013638260631348436, 0.013663057468859978, 0.01368785430637152, 0.013712651143883064, 0.013737447981394608, 0.01376224481890615, 0.013787041656417691, 0.013811838493929234, 0.013836635331440776, 0.01386143216895232, 0.013886229006463862, 0.013911025843975406, 0.013935822681486947, 0.013960619518998489, 0.013985416356510032, 0.014010213194021577, 0.014035010031533119, 0.01405980686904466, 0.014084603706556204, 0.014109400544067745, 0.014134197381579287, 0.01415899421909083, 0.014183791056602375, 0.014208587894113917, 0.014233384731625458, 0.014258181569137001, 0.014282978406648543, 0.014307775244160085, 0.01433257208167163, 0.014357368919183173, 0.014382165756694714, 0.014406962594206256, 0.0144317594317178, 0.01445655626922934, 0.014481353106740886, 0.014506149944252427, 0.01453094678176397, 0.014555743619275512, 0.014580540456787054, 0.014605337294298597, 0.014630134131810142, 0.014654930969321684, 0.014679727806833225, 0.014704524644344769, 0.01472932148185631, 0.014754118319367852, 0.014778915156879395, 0.01480371199439094, 0.014828508831902482, 0.014853305669414023, 0.014878102506925566, 0.014902899344437108, 0.01492769618194865, 0.014952493019460195, 0.014977289856971738, 0.01500208669448328, 0.015026883531994821, 0.015051680369506364, 0.015076477207017906, 0.015101274044529451, 0.015126070882040994, 0.015150867719552536, 0.015175664557064077, 0.01520046139457562, 0.015225258232087162, 0.015250055069598707, 0.015274851907110249, 0.015299648744621792, 0.015324445582133334, 0.015349242419644875, 0.015374039257156418, 0.01539883609466796, 0.015423632932179505, 0.015448429769691047, 0.01547322660720259, 0.015498023444714131, 0.015522820282225673, 0.015547617119737216, 0.015572413957248761, 0.015597210794760303, 0.015622007632271845, 0.015646804469783386, 0.01567160130729493, 0.015696398144806473, 0.015721194982318016, 0.01574599181982956, 0.0157707886573411, 0.015795585494852642, 0.015820382332364186, 0.015845179169875726, 0.015869976007387272, 0.015894772844898816, 0.015919569682410355, 0.0159443665199219, 0.015969163357433442, 0.015993960194944982, 0.016018757032456525, 0.016043553869968072, 0.01606835070747961, 0.016093147544991155, 0.0161179443825027, 0.016142741220014238, 0.01616753805752578, 0.016192334895037325, 0.016217131732548868, 0.01624192857006041, 0.01626672540757195, 0.016291522245083494, 0.016316319082595038, 0.01634111592010658, 0.016365912757618124, 0.016390709595129668, 0.016415506432641207, 0.01644030327015275, 0.016465100107664294, 0.016489896945175837, 0.01651469378268738, 0.01653949062019892, 0.016564287457710464, 0.016589084295222007, 0.016613881132733547, 0.01663867797024509, 0.016663474807756637, 0.016688271645268177, 0.01671306848277972, 0.016737865320291263, 0.016762662157802803, 0.016787458995314346, 0.01681225583282589, 0.016837052670337433, 0.016861849507848976, 0.016886646345360516, 0.01691144318287206, 0.016936240020383603, 0.016961036857895146, 0.01698583369540669, 0.017010630532918233, 0.017035427370429772, 0.017060224207941316, 0.01708502104545286, 0.017109817882964402, 0.017134614720475946, 0.017159411557987485, 0.01718420839549903, 0.017209005233010572, 0.017233802070522112, 0.017258598908033655, 0.017283395745545202, 0.017308192583056742, 0.017332989420568285, 0.01735778625807983, 0.017382583095591368, 0.01740737993310291, 0.017432176770614455, 0.017456973608125998, 0.01748177044563754, 0.01750656728314908, 0.017531364120660625, 0.017556160958172168, 0.01758095779568371, 0.017605754633195254, 0.017630551470706798, 0.017655348308218338, 0.01768014514572988, 0.017704941983241424, 0.017729738820752967, 0.01775453565826451, 0.01777933249577605, 0.017804129333287594, 0.017828926170799137, 0.017853723008310677, 0.01787851984582222, 0.017903316683333767, 0.017928113520845307, 0.01795291035835685, 0.017977707195868393, 0.018002504033379933, 0.018027300870891477, 0.018052097708403023, 0.018076894545914563, 0.018101691383426106, 0.01812648822093765, 0.01815128505844919, 0.018176081895960733, 0.018200878733472276, 0.01822567557098382, 0.018250472408495363, 0.018275269246006903, 0.018300066083518446, 0.01832486292102999, 0.018349659758541532, 0.018374456596053076, 0.01839925343356462, 0.01842405027107616, 0.018448847108587702, 0.018473643946099245, 0.01849844078361079, 0.018523237621122332, 0.018548034458633872, 0.018572831296145415, 0.01859762813365696, 0.0186224249711685, 0.01864722180868004, 0.01867201864619159, 0.018696815483703128, 0.01872161232121467, 0.018746409158726215, 0.018771205996237755, 0.018796002833749298, 0.01882079967126084, 0.018845596508772385, 0.018870393346283928, 0.018895190183795468, 0.01891998702130701, 0.018944783858818554, 0.018969580696330098, 0.01899437753384164, 0.019019174371353184, 0.019043971208864724, 0.019068768046376267, 0.01909356488388781, 0.019118361721399354, 0.019143158558910897, 0.019167955396422437, 0.01919275223393398, 0.019217549071445524, 0.019242345908957063, 0.019267142746468607, 0.019291939583980153, 0.019316736421491693, 0.019341533259003237, 0.01936633009651478, 0.01939112693402632, 0.019415923771537863, 0.019440720609049406, 0.01946551744656095, 0.019490314284072493, 0.019515111121584033, 0.019539907959095576, 0.01956470479660712, 0.019589501634118663, 0.019614298471630206, 0.01963909530914175, 0.01966389214665329, 0.019688688984164832, 0.019713485821676376, 0.01973828265918792, 0.019763079496699462, 0.019787876334211005, 0.019812673171722545, 0.01983747000923409, 0.019862266846745632, 0.01988706368425717, 0.01991186052176872, 0.01993665735928026, 0.0199614541967918, 0.019986251034303345, 0.020011047871814885, 0.020035844709326428, 0.020060641546837975, 0.020085438384349515, 0.020110235221861058, 0.0201350320593726, 0.02015982889688414, 0.020184625734395684, 0.020209422571907228, 0.02023421940941877, 0.020259016246930314, 0.020283813084441854, 0.020308609921953397, 0.02033340675946494, 0.020358203596976484, 0.020383000434488027, 0.02040779727199957, 0.02043259410951111, 0.020457390947022654, 0.020482187784534197, 0.020506984622045737, 0.020531781459557284, 0.020556578297068823, 0.020581375134580367, 0.02060617197209191, 0.02063096880960345, 0.020655765647114993, 0.02068056248462654, 0.02070535932213808, 0.020730156159649623, 0.020754952997161166, 0.020779749834672706, 0.02080454667218425, 0.020829343509695793, 0.020854140347207336, 0.02087893718471888, 0.02090373402223042, 0.020928530859741962, 0.020953327697253506, 0.02097812453476505, 0.021002921372276592, 0.021027718209788136, 0.021052515047299675, 0.02107731188481122, 0.021102108722322762, 0.021126905559834302, 0.02115170239734585, 0.02117649923485739, 0.02120129607236893, 0.021226092909880475, 0.021250889747392015, 0.021275686584903558, 0.021300483422415105, 0.021325280259926645, 0.021350077097438188, 0.02137487393494973, 0.02139967077246127, 0.021424467609972814, 0.02144926444748436, 0.0214740612849959, 0.021498858122507444, 0.021523654960018988, 0.021548451797530527, 0.02157324863504207, 0.021598045472553614, 0.021622842310065157, 0.0216476391475767, 0.02167243598508824, 0.021697232822599784, 0.021722029660111327, 0.021746826497622867, 0.021771623335134414, 0.021796420172645957, 0.021821217010157497, 0.02184601384766904, 0.021870810685180583, 0.021895607522692123, 0.02192040436020367, 0.02194520119771521, 0.021969998035226753, 0.021994794872738296, 0.022019591710249836, 0.02204438854776138, 0.022069185385272926, 0.022093982222784466, 0.02211877906029601, 0.022143575897807553, 0.022168372735319092, 0.022193169572830636, 0.02221796641034218, 0.022242763247853722, 0.022267560085365266, 0.022292356922876806, 0.02231715376038835, 0.022341950597899892, 0.022366747435411432, 0.02239154427292298, 0.022416341110434522, 0.022441137947946062, 0.022465934785457605, 0.02249073162296915, 0.022515528460480688, 0.022540325297992235, 0.022565122135503775, 0.022589918973015318, 0.02261471581052686, 0.0226395126480384, 0.022664309485549945, 0.02268910632306149, 0.02271390316057303, 0.022738699998084574, 0.022763496835596118, 0.022788293673107658, 0.0228130905106192, 0.022837887348130744, 0.022862684185642287, 0.022887481023153827, 0.02291227786066537, 0.022937074698176917, 0.022961871535688457, 0.0229866683732, 0.02301146521071154, 0.023036262048223087, 0.023061058885734623, 0.02308585572324617, 0.023110652560757717, 0.023135449398269253, 0.0231602462357808, 0.02318504307329234, 0.023209839910803883, 0.02323463674831543, 0.02325943358582697, 0.023284230423338513, 0.023309027260850053, 0.023333824098361596, 0.023358620935873136, 0.023383417773384683, 0.023408214610896226, 0.023433011448407766, 0.023457808285919313, 0.02348260512343085, 0.023507401960942396, 0.02353219879845394, 0.02355699563596548, 0.023581792473477026, 0.023606589310988565, 0.02363138614850011, 0.02365618298601165, 0.023680979823523192, 0.02370577666103474, 0.02373057349854628, 0.023755370336057822, 0.02378016717356936, 0.02380496401108091, 0.023829760848592445, 0.02385455768610399, 0.023879354523615535, 0.023904151361127075, 0.02392894819863862, 0.02395374503615016, 0.023978541873661705, 0.02400333871117325, 0.024028135548684788, 0.024052932386196334, 0.024077729223707874, 0.024102526061219418, 0.024127322898730957, 0.024152119736242504, 0.024176916573754047, 0.024201713411265587, 0.02422651024877713, 0.02425130708628867, 0.024276103923800217, 0.024300900761311757, 0.0243256975988233, 0.024350494436334847, 0.024375291273846383, 0.02440008811135793, 0.02442488494886947, 0.024449681786381013, 0.02447447862389256, 0.0244992754614041, 0.024524072298915643, 0.024548869136427183, 0.024573665973938726, 0.024598462811450266, 0.024623259648961813, 0.024648056486473356, 0.024672853323984896, 0.024697650161496443, 0.02472244699900798, 0.024747243836519526, 0.02477204067403107, 0.02479683751154261, 0.024821634349054156, 0.024846431186565696, 0.02487122802407724, 0.02489602486158878, 0.024920821699100322, 0.02494561853661187, 0.02497041537412341, 0.024995212211634952, 0.025020009049146492, 0.02504480588665804, 0.025069602724169575, 0.02509439956168112, 0.02511919639919267, 0.025143993236704205, 0.02516879007421575, 0.02519358691172729, 0.025218383749238835, 0.02524318058675038, 0.02526797742426192, 0.025292774261773465, 0.025317571099285004, 0.025342367936796548, 0.025367164774308087, 0.025391961611819634, 0.025416758449331178, 0.025441555286842717, 0.025466352124354264, 0.0254911489618658, 0.025515945799377347, 0.025540742636888887, 0.02556553947440043, 0.025590336311911977, 0.025615133149423517, 0.02563992998693506, 0.0256647268244466, 0.025689523661958143, 0.02571432049946969, 0.02573911733698123, 0.025763914174492773, 0.025788711012004313, 0.02581350784951586, 0.025838304687027396, 0.025863101524538943, 0.025887898362050486, 0.025912695199562026, 0.025937492037073573, 0.025962288874585113, 0.025987085712096656, 0.026011882549608203, 0.02603667938711974, 0.026061476224631286, 0.026086273062142826, 0.02611106989965437, 0.02613586673716591, 0.026160663574677456, 0.026185460412189, 0.02621025724970054, 0.026235054087212082, 0.026259850924723622, 0.02628464776223517, 0.02630944459974671, 0.02633424143725825, 0.0263590382747698, 0.026383835112281335, 0.02640863194979288, 0.02643342878730442, 0.026458225624815965, 0.02648302246232751, 0.02650781929983905, 0.026532616137350595, 0.026557412974862134, 0.026582209812373678, 0.026607006649885218, 0.026631803487396764, 0.026656600324908308, 0.026681397162419847, 0.026706193999931394, 0.02673099083744293, 0.026755787674954477, 0.026780584512466017, 0.02680538134997756, 0.026830178187489107, 0.026854975025000647, 0.02687977186251219, 0.02690456870002373, 0.026929365537535277, 0.02695416237504682, 0.02697895921255836, 0.027003756050069903, 0.027028552887581443, 0.02705334972509299, 0.02707814656260453, 0.027102943400116073, 0.02712774023762762, 0.027152537075139156, 0.027177333912650703, 0.027202130750162243, 0.027226927587673786, 0.027251724425185333, 0.027276521262696873, 0.027301318100208416, 0.027326114937719956, 0.0273509117752315, 0.02737570861274304, 0.027400505450254586, 0.02742530228776613, 0.02745009912527767, 0.027474895962789216, 0.027499692800300752, 0.0275244896378123, 0.02754928647532384, 0.027574083312835382, 0.02759888015034693, 0.02762367698785847, 0.02764847382537001, 0.02767327066288155, 0.027698067500393095, 0.02772286433790464, 0.02774766117541618, 0.027772458012927725, 0.027797254850439265, 0.02782205168795081, 0.027846848525462348, 0.027871645362973894, 0.027896442200485438, 0.027921239037996978, 0.027946035875508524, 0.027970832713020064, 0.027995629550531607, 0.028020426388043147, 0.02804522322555469, 0.028070020063066237, 0.028094816900577777, 0.02811961373808932, 0.02814441057560086, 0.028169207413112407, 0.02819400425062395, 0.02821880108813549, 0.028243597925647033, 0.028268394763158573, 0.02829319160067012, 0.02831798843818166, 0.028342785275693203, 0.02836758211320475, 0.028392378950716286, 0.028417175788227833, 0.028441972625739373, 0.028466769463250916, 0.028491566300762463, 0.028516363138274003, 0.028541159975785546, 0.028565956813297086, 0.028590753650808633, 0.02861555048832017, 0.028640347325831716, 0.02866514416334326, 0.0286899410008548, 0.028714737838366346, 0.028739534675877886, 0.02876433151338943, 0.02878912835090097, 0.028813925188412512, 0.02883872202592406, 0.0288635188634356, 0.028888315700947142, 0.02891311253845868, 0.02893790937597023, 0.02896270621348177, 0.02898750305099331, 0.029012299888504855, 0.029037096726016395, 0.02906189356352794, 0.02908669040103948, 0.029111487238551025, 0.02913628407606257, 0.029161080913574108, 0.029185877751085654, 0.029210674588597194, 0.029235471426108738, 0.029260268263620284, 0.029285065101131824, 0.029309861938643367, 0.029334658776154907, 0.02935945561366645, 0.02938425245117799, 0.029409049288689537, 0.02943384612620108, 0.02945864296371262, 0.029483439801224167, 0.029508236638735703, 0.02953303347624725, 0.02955783031375879, 0.029582627151270333, 0.02960742398878188, 0.02963222082629342, 0.029657017663804963, 0.029681814501316503, 0.029706611338828046, 0.029731408176339593, 0.029756205013851133, 0.029781001851362676, 0.029805798688874216, 0.029830595526385763, 0.0298553923638973, 0.029880189201408846, 0.02990498603892039, 0.02992978287643193, 0.029954579713943476, 0.029979376551455016, 0.03000417338896656, 0.0300289702264781, 0.030053767063989642, 0.03007856390150119, 0.03010336073901273, 0.030128157576524272, 0.030152954414035812, 0.03017775125154736, 0.030202548089058902, 0.03022734492657044, 0.03025214176408199, 0.030276938601593525, 0.03030173543910507, 0.03032653227661661, 0.030351329114128155, 0.0303761259516397, 0.03040092278915124, 0.030425719626662785, 0.030450516464174324, 0.030475313301685868, 0.030500110139197414, 0.030524906976708954, 0.030549703814220498, 0.030574500651732037, 0.030599297489243584, 0.03062409432675512, 0.030648891164266667, 0.03067368800177821, 0.03069848483928975, 0.030723281676801297, 0.030748078514312837, 0.03077287535182438, 0.03079767218933592, 0.030822469026847463, 0.03084726586435901, 0.03087206270187055, 0.030896859539382093, 0.030921656376893633, 0.03094645321440518, 0.030971250051916723, 0.030996046889428263, 0.031020843726939806, 0.031045640564451346, 0.031070437401962893, 0.031095234239474433, 0.031120031076985976, 0.031144827914497523, 0.03116962475200906, 0.031194421589520606, 0.031219218427032146, 0.03124401526454369, 0.03126881210205523, 0.03129360893956677, 0.03131840577707832, 0.03134320261458986, 0.031367999452101405, 0.031392796289612945, 0.031417593127124485, 0.03144238996463603, 0.03146718680214757, 0.03149198363965912, 0.03151678047717066, 0.0315415773146822, 0.03156637415219374, 0.031591170989705285, 0.03161596782721683, 0.03164076466472837, 0.03166556150223992, 0.03169035833975145, 0.031715155177263, 0.031739952014774545, 0.031764748852286084, 0.03178954568979763, 0.03181434252730917, 0.03183913936482071, 0.03186393620233225, 0.0318887330398438, 0.031913529877355344, 0.031938326714866884, 0.031963123552378424, 0.031987920389889964, 0.03201271722740151, 0.03203751406491305, 0.0320623109024246, 0.032087107739936144, 0.03211190457744768, 0.03213670141495922, 0.03216149825247076, 0.03218629508998231, 0.03221109192749386, 0.0322358887650054, 0.032260685602516936, 0.032285482440028476, 0.03231027927754002, 0.03233507611505156, 0.03235987295256311, 0.03238466979007465, 0.03240946662758619, 0.032434263465097736, 0.032459060302609276, 0.03248385714012082, 0.03250865397763236, 0.0325334508151439, 0.03255824765265545, 0.03258304449016699, 0.032607841327678536, 0.032632638165190075, 0.032657435002701615, 0.03268223184021316, 0.0327070286777247, 0.03273182551523625, 0.03275662235274779, 0.032781419190259335, 0.03280621602777087, 0.032831012865282415, 0.03285580970279396, 0.0328806065403055, 0.03290540337781705, 0.03293020021532859, 0.03295499705284013, 0.032979793890351675, 0.033004590727863214, 0.03302938756537476, 0.0330541844028863, 0.03307898124039784, 0.03310377807790938, 0.03312857491542093, 0.033153371752932474, 0.033178168590444014, 0.033202965427955554, 0.033227762265467094, 0.03325255910297864, 0.03327735594049018, 0.03330215277800173, 0.033326949615513274, 0.03335174645302481, 0.033376543290536353, 0.03340134012804789, 0.03342613696555944, 0.03345093380307099, 0.03347573064058253, 0.033500527478094067, 0.033525324315605606, 0.03355012115311715, 0.03357491799062869, 0.03359971482814024, 0.03362451166565178, 0.03364930850316332, 0.033674105340674866, 0.033698902178186406, 0.03372369901569795, 0.03374849585320949, 0.03377329269072103, 0.03379808952823258, 0.03382288636574412, 0.033847683203255666, 0.033872480040767206, 0.03389727687827875, 0.03392207371579029, 0.03394687055330183, 0.03397166739081338, 0.03399646422832492, 0.034021261065836465, 0.034046057903348005, 0.034070854740859545, 0.03409565157837109, 0.03412044841588263, 0.03414524525339418, 0.03417004209090572, 0.03419483892841726, 0.034219635765928805, 0.034244432603440345, 0.03426922944095189, 0.03429402627846343, 0.03431882311597497, 0.03434361995348651, 0.03436841679099806, 0.034393213628509604, 0.034418010466021144, 0.03444280730353269, 0.034467604141044224, 0.03449240097855577, 0.03451719781606731, 0.03454199465357886, 0.034566791491090404, 0.034591588328601944, 0.034616385166113484, 0.03464118200362502, 0.03466597884113657, 0.03469077567864812, 0.03471557251615966, 0.0347403693536712, 0.034765166191182736, 0.03478996302869428, 0.03481475986620582, 0.03483955670371737, 0.03486435354122891, 0.03488915037874045, 0.034913947216251996, 0.034938744053763536, 0.03496354089127508, 0.03498833772878663, 0.03501313456629816, 0.03503793140380971, 0.03506272824132125, 0.035087525078832796, 0.035112321916344336, 0.03513711875385588, 0.03516191559136742, 0.03518671242887896, 0.03521150926639051, 0.03523630610390205, 0.035261102941413595, 0.035285899778925135, 0.035310696616436675, 0.03533549345394822, 0.03536029029145976, 0.03538508712897131, 0.03540988396648285, 0.03543468080399439, 0.035459477641505935, 0.035484274479017475, 0.03550907131652902, 0.03553386815404056, 0.0355586649915521, 0.03558346182906364, 0.03560825866657519, 0.035633055504086734, 0.035657852341598274, 0.03568264917910982, 0.035707446016621354, 0.0357322428541329, 0.03575703969164444, 0.03578183652915599, 0.035806633366667534, 0.035831430204179074, 0.035856227041690614, 0.035881023879202154, 0.0359058207167137, 0.03593061755422525, 0.03595541439173679, 0.03598021122924833, 0.03600500806675987, 0.03602980490427141, 0.03605460174178295, 0.0360793985792945, 0.03610419541680605, 0.03612899225431758, 0.036153789091829126, 0.036178585929340666, 0.03620338276685221, 0.03622817960436376, 0.0362529764418753, 0.03627777327938684, 0.03630257011689838, 0.036327366954409926, 0.036352163791921466, 0.03637696062943301, 0.03640175746694455, 0.03642655430445609, 0.03645135114196764, 0.03647614797947918, 0.036500944816990726, 0.036525741654502265, 0.036550538492013805, 0.03657533532952535, 0.03660013216703689, 0.03662492900454844, 0.03664972584205998, 0.03667452267957152, 0.036699319517083065, 0.036724116354594605, 0.03674891319210615, 0.03677371002961769, 0.03679850686712924, 0.03682330370464077, 0.03684810054215232, 0.036872897379663865, 0.036897694217175404, 0.03692249105468695, 0.03694728789219849, 0.03697208472971003, 0.03699688156722157, 0.03702167840473312, 0.037046475242244664, 0.037071272079756204, 0.037096068917267744, 0.037120865754779284, 0.03714566259229083, 0.03717045942980238, 0.03719525626731392, 0.03722005310482546, 0.037244849942337, 0.03726964677984854, 0.03729444361736008, 0.03731924045487163, 0.03734403729238318, 0.03736883412989471, 0.037393630967406256, 0.037418427804917796, 0.03744322464242934, 0.03746802147994089, 0.03749281831745243, 0.03751761515496397, 0.03754241199247551, 0.037567208829987056, 0.037592005667498596, 0.03761680250501014, 0.03764159934252168, 0.03766639618003322, 0.03769119301754477, 0.03771598985505631, 0.037740786692567856, 0.037765583530079395, 0.037790380367590935, 0.03781517720510248, 0.03783997404261402, 0.03786477088012557, 0.03788956771763711, 0.037914364555148655, 0.037939161392660195, 0.037963958230171735, 0.03798875506768328, 0.03801355190519482, 0.03803834874270637, 0.03806314558021791, 0.03808794241772945, 0.038112739255240995, 0.038137536092752534, 0.03816233293026408, 0.03818712976777562, 0.03821192660528716, 0.0382367234427987, 0.03826152028031025, 0.038286317117821794, 0.038311113955333334, 0.038335910792844874, 0.038360707630356414, 0.03838550446786796, 0.03841030130537951, 0.03843509814289105, 0.038459894980402594, 0.03848469181791413, 0.038509488655425674, 0.03853428549293721, 0.03855908233044876, 0.03858387916796031, 0.03860867600547185, 0.038633472842983387, 0.038658269680494926, 0.03868306651800647, 0.03870786335551802, 0.03873266019302956, 0.0387574570305411, 0.03878225386805264, 0.038807050705564186, 0.038831847543075726, 0.03885664438058727, 0.03888144121809881, 0.03890623805561035, 0.0389310348931219, 0.03895583173063344, 0.038980628568144986, 0.039005425405656526, 0.039030222243168065, 0.03905501908067961, 0.03907981591819115, 0.0391046127557027, 0.03912940959321424, 0.039154206430725785, 0.039179003268237325, 0.039203800105748865, 0.03922859694326041, 0.03925339378077195, 0.0392781906182835, 0.03930298745579504, 0.03932778429330658, 0.039352581130818125, 0.039377377968329665, 0.03940217480584121, 0.03942697164335275, 0.03945176848086429, 0.03947656531837583, 0.03950136215588738, 0.039526158993398924, 0.039550955830910464, 0.03957575266842201, 0.039600549505933544, 0.03962534634344509, 0.03965014318095664, 0.03967494001846818, 0.039699736855979724, 0.039724533693491264, 0.039749330531002804, 0.03977412736851434, 0.03979892420602589, 0.03982372104353744, 0.03984851788104898, 0.03987331471856052, 0.039898111556072056, 0.0399229083935836, 0.03994770523109515, 0.03997250206860669, 0.03999729890611823, 0.04002209574362977, 0.040046892581141316, 0.040071689418652856, 0.0400964862561644, 0.04012128309367595, 0.04014607993118748, 0.04017087676869903, 0.04019567360621057, 0.040220470443722116, 0.040245267281233656, 0.0402700641187452, 0.04029486095625674, 0.04031965779376828, 0.04034445463127983, 0.04036925146879137, 0.040394048306302915, 0.040418845143814455, 0.040443641981325995, 0.04046843881883754, 0.04049323565634908, 0.04051803249386063, 0.04054282933137217, 0.04056762616888371, 0.040592423006395255, 0.040617219843906795, 0.04064201668141834, 0.04066681351892988, 0.04069161035644142, 0.04071640719395297, 0.04074120403146451, 0.040766000868976054, 0.040790797706487594, 0.04081559454399914, 0.040840391381510674, 0.04086518821902222, 0.04088998505653377, 0.04091478189404531, 0.040939578731556854, 0.040964375569068394, 0.040989172406579934, 0.041013969244091474, 0.04103876608160302, 0.04106356291911457, 0.04108835975662611, 0.04111315659413765, 0.04113795343164919, 0.04116275026916073, 0.04118754710667228, 0.04121234394418382, 0.04123714078169537, 0.0412619376192069, 0.041286734456718446, 0.041311531294229986, 0.04133632813174153, 0.04136112496925308, 0.04138592180676462, 0.04141071864427616, 0.0414355154817877, 0.041460312319299246, 0.041485109156810786, 0.04150990599432233, 0.04153470283183387, 0.04155949966934541, 0.04158429650685696, 0.0416090933443685, 0.041633890181880046, 0.041658687019391585, 0.041683483856903125, 0.04170828069441467, 0.04173307753192621, 0.04175787436943776, 0.0417826712069493, 0.04180746804446084, 0.041832264881972385, 0.041857061719483925, 0.04188185855699547, 0.04190665539450701, 0.04193145223201856, 0.0419562490695301, 0.04198104590704164, 0.042005842744553185, 0.042030639582064724, 0.04205543641957627, 0.04208023325708781, 0.04210503009459935, 0.0421298269321109, 0.04215462376962244, 0.042179420607133984, 0.042204217444645524, 0.042229014282157064, 0.042253811119668604, 0.04227860795718015, 0.0423034047946917, 0.04232820163220324, 0.04235299846971478, 0.04237779530722632, 0.04240259214473786, 0.04242738898224941, 0.04245218581976095, 0.0424769826572725, 0.04250177949478403, 0.042526576332295576, 0.042551373169807116, 0.04257617000731866, 0.04260096684483021, 0.04262576368234175, 0.04265056051985329, 0.04267535735736483, 0.042700154194876376, 0.042724951032387916, 0.04274974786989946, 0.042774544707411, 0.04279934154492254, 0.04282413838243409, 0.04284893521994563, 0.042873732057457176, 0.04289852889496872, 0.042923325732480255, 0.0429481225699918, 0.04297291940750334, 0.04299771624501489, 0.04302251308252643, 0.043047309920037975, 0.043072106757549515, 0.043096903595061055, 0.0431217004325726, 0.04314649727008414, 0.04317129410759569, 0.04319609094510723, 0.04322088778261877, 0.043245684620130315, 0.043270481457641854, 0.0432952782951534, 0.04332007513266494, 0.04334487197017648, 0.04336966880768803, 0.04339446564519957, 0.043419262482711114, 0.043444059320222654, 0.043468856157734194, 0.043493652995245734, 0.04351844983275728, 0.04354324667026883, 0.04356804350778037, 0.043592840345291914, 0.04361763718280345, 0.043642434020314994, 0.04366723085782654, 0.04369202769533808, 0.04371682453284963, 0.04374162137036117, 0.04376641820787271, 0.043791215045384246, 0.04381601188289579, 0.04384080872040734, 0.04386560555791888, 0.04389040239543042, 0.04391519923294196, 0.043939996070453506, 0.043964792907965046, 0.04398958974547659, 0.04401438658298813, 0.04403918342049967, 0.04406398025801122, 0.04408877709552276, 0.044113573933034306, 0.04413837077054585, 0.044163167608057385, 0.04418796444556893, 0.04421276128308047, 0.04423755812059202, 0.04426235495810356, 0.044287151795615105, 0.044311948633126645, 0.044336745470638185, 0.04436154230814973, 0.04438633914566127, 0.04441113598317282, 0.04443593282068436, 0.0444607296581959, 0.044485526495707445, 0.044510323333218985, 0.04453512017073053, 0.04455991700824207, 0.04458471384575361, 0.04460951068326516, 0.0446343075207767, 0.044659104358288244, 0.044683901195799784, 0.04470869803331133, 0.044733494870822864, 0.04475829170833441, 0.04478308854584596, 0.0448078853833575, 0.044832682220869044, 0.044857479058380584, 0.044882275895892124, 0.04490707273340367, 0.04493186957091521, 0.04495666640842676, 0.0449814632459383, 0.04500626008344984, 0.045031056920961376, 0.04505585375847292, 0.04508065059598447, 0.04510544743349601, 0.04513024427100755, 0.04515504110851909, 0.045179837946030636, 0.045204634783542176, 0.04522943162105372, 0.04525422845856527, 0.0452790252960768, 0.04530382213358835, 0.04532861897109989, 0.045353415808611436, 0.04537821264612298, 0.04540300948363452, 0.04542780632114606, 0.0454526031586576, 0.04547739999616915, 0.04550219683368069, 0.045526993671192235, 0.045551790508703775, 0.045576587346215315, 0.04560138418372686, 0.0456261810212384, 0.04565097785874995, 0.04567577469626149, 0.04570057153377303, 0.045725368371284575, 0.045750165208796115, 0.04577496204630766, 0.0457997588838192, 0.04582455572133074, 0.04584935255884229, 0.04587414939635383, 0.045898946233865374, 0.045923743071376914, 0.04594853990888846, 0.045973336746399994, 0.04599813358391154, 0.04602293042142309, 0.04604772725893463, 0.046072524096446174, 0.046097320933957714, 0.046122117771469254, 0.0461469146089808, 0.04617171144649234, 0.04619650828400389, 0.04622130512151543, 0.04624610195902697, 0.04627089879653851, 0.04629569563405005, 0.0463204924715616, 0.04634528930907314, 0.04637008614658469, 0.04639488298409622, 0.046419679821607766, 0.046444476659119306, 0.04646927349663085, 0.0464940703341424, 0.04651886717165394, 0.04654366400916548, 0.04656846084667702, 0.046593257684188566, 0.04661805452170011, 0.04664285135921165, 0.04666764819672319, 0.04669244503423473, 0.04671724187174628, 0.04674203870925782, 0.046766835546769366, 0.046791632384280905, 0.046816429221792445, 0.04684122605930399, 0.04686602289681553, 0.04689081973432708, 0.046915616571838625, 0.04694041340935016, 0.046965210246861705, 0.046990007084373245, 0.04701480392188479, 0.04703960075939633, 0.04706439759690788, 0.04708919443441942, 0.04711399127193096, 0.047138788109442505, 0.047163584946954044, 0.04718838178446559, 0.04721317862197713, 0.04723797545948867, 0.04726277229700022, 0.04728756913451176, 0.047312365972023304, 0.047337162809534844, 0.047361959647046384, 0.04738675648455793, 0.04741155332206947, 0.04743635015958102, 0.04746114699709256, 0.0474859438346041, 0.04751074067211564, 0.04753553750962718, 0.04756033434713873, 0.04758513118465027, 0.04760992802216182, 0.04763472485967335, 0.047659521697184896, 0.04768431853469644, 0.04770911537220798, 0.04773391220971953, 0.04775870904723107, 0.04778350588474261, 0.04780830272225415, 0.047833099559765696, 0.04785789639727724, 0.04788269323478878, 0.04790749007230032, 0.04793228690981186, 0.04795708374732341, 0.04798188058483495, 0.048006677422346496, 0.04803147425985804, 0.048056271097369575, 0.04808106793488112, 0.04810586477239266, 0.04813066160990421, 0.048155458447415755, 0.048180255284927295, 0.048205052122438835, 0.048229848959950375, 0.04825464579746192, 0.04827944263497346, 0.04830423947248501, 0.04832903630999655, 0.04835383314750809, 0.048378629985019635, 0.048403426822531175, 0.04842822366004272, 0.04845302049755426, 0.0484778173350658, 0.04850261417257735, 0.04852741101008889, 0.048552207847600434, 0.048577004685111974, 0.048601801522623514, 0.04862659836013506, 0.0486513951976466, 0.04867619203515815, 0.04870098887266969, 0.048725785710181234, 0.04875058254769277, 0.048775379385204314, 0.04880017622271586, 0.0488249730602274, 0.04884976989773895, 0.04887456673525049, 0.04889936357276203, 0.04892416041027357, 0.04894895724778511, 0.04897375408529666, 0.0489985509228082, 0.04902334776031974, 0.04904814459783128, 0.049072941435342826, 0.04909773827285437, 0.04912253511036591, 0.04914733194787745, 0.04917212878538899, 0.04919692562290054, 0.04922172246041208, 0.049246519297923626, 0.04927131613543517, 0.049296112972946705, 0.04932090981045825, 0.04934570664796979, 0.04937050348548134, 0.049395300322992886, 0.049420097160504425, 0.049444893998015965, 0.049469690835527505, 0.049494487673039045, 0.0495192845105506, 0.04954408134806214, 0.04956887818557368, 0.049593675023085225, 0.049618471860596765, 0.049643268698108305, 0.049668065535619844, 0.04969286237313139, 0.04971765921064293, 0.04974245604815447, 0.049767252885666025, 0.049792049723177564, 0.049816846560689104, 0.049841643398200644, 0.04986644023571219, 0.04989123707322373, 0.04991603391073527, 0.049940830748246824, 0.049965627585758364, 0.0499904244232699, 0.05001522126078145, 0.05004001809829299, 0.05006481493580453, 0.05008961177331607, 0.05011440861082762, 0.05013920544833916, 0.050164002285850696, 0.05018879912336225, 0.05021359596087379, 0.05023839279838533, 0.05026318963589687, 0.050287986473408416, 0.050312783310919956, 0.050337580148431496, 0.05036237698594305, 0.05038717382345459, 0.05041197066096612, 0.05043676749847766, 0.050461564335989216, 0.050486361173500756, 0.050511158011012296, 0.05053595484852384, 0.05056075168603538, 0.05058554852354692, 0.05061034536105846, 0.050635142198570016, 0.050659939036081555, 0.050684735873593095, 0.05070953271110464, 0.05073432954861618, 0.05075912638612772, 0.050783923223639275, 0.05080872006115081, 0.05083351689866235, 0.05085831373617389, 0.05088311057368544, 0.05090790741119698, 0.05093270424870852, 0.05095750108622007, 0.05098229792373161, 0.05100709476124315, 0.05103189159875469, 0.05105668843626624, 0.05108148527377778, 0.051106282111289314, 0.05113107894880087, 0.05115587578631241, 0.05118067262382395, 0.05120546946133549, 0.051230266298847034, 0.051255063136358574, 0.051279859973870114, 0.05130465681138167, 0.05132945364889321, 0.05135425048640475, 0.05137904732391629, 0.051403844161427834, 0.05142864099893937, 0.05145343783645091, 0.05147823467396247, 0.051503031511474, 0.05152782834898554, 0.05155262518649708, 0.05157742202400863 ], "y": [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.7331694378434693e-31, 0.00042195726906647243, 0.00168782907626589, 0.0037976154215982514, 0.00675131630506346, 0.010548931726661687, 0.015190461686392716, 0.0206759061842568, 0.027005265220253837, 0.0341785387943836, 0.04219572690664651, 0.051056829557042355, 0.06076184674557083, 0.07131077847223255, 0.08270362473702687, 0.09494038553995446, 0.10802106088101494, 0.12194565076020802, 0.13671415517753435, 0.15232657413299372, 0.16878290762658543, 0.1860831556583107, 0.2042273182281683, 0.22321539533615925, 0.24304738698228334, 0.26372329316653964, 0.28524311388892964, 0.30760684914945235, 0.3308144989481073, 0.35486606328489617, 0.379761542159817, 0.40550093557287153, 0.4320842435240592, 0.4595114660133786, 0.487782603040832, 0.5168976546064173, 0.5468566207101367, 0.5776595013519887, 0.609306296531973, 0.6417970062500908, 0.675131630506342, 0.7093101693007252, 0.7443326226332415, 0.7801989905038915, 0.8169092729126742, 0.8544634698595899, 0.8928615813446374, 0.9321036073678189, 0.972189547929132, 1.0131194030285795, 1.05489317266616, 1.097510856841872, 1.1409724555557186, 1.1852779688076973, 1.230427396597808, 1.276420738926053, 1.32325799579243, 1.370939167196941, 1.4194642531395845, 1.4688332536203594, 1.5190461686392693, 1.5701029981963124, 1.6220037422914861, 1.6747484009247944, 1.7283369740962342, 1.7827694618058083, 1.8380458640535162, 1.8941661808393544, 1.951130412163328, 2.0089385580254344, 2.067590618425671, 2.127086593364044, 2.1874264828405465, 2.2486102868551847, 2.310638005407955, 2.3735096384988568, 2.437225186127894, 2.501784648295062, 2.5671880250003642, 2.6334353162437996, 2.7005265220253656, 2.7684616423450668, 2.837240677202901, 2.906863626598867, 2.9773304905329674, 3.0486412690052, 3.3540879388307503, 4.079461420442225, 4.769005280253317, 5.422719518264073, 6.0406041344744485, 6.62265912888448, 7.168884501494149, 7.679280252303444, 8.153846381312396, 8.592582888520987, 8.995489773929203, 9.362567037537069, 9.693814679344566, 9.989232699351717, 10.248821097558501, 10.472579873964923, 10.660509028570987, 10.812608561376688, 10.928878472382035, 11.009318761587014, 11.053929428991639, 11.062710474595901, 11.035661898399802, 10.97278370040334, 10.87407588060652, 10.739538439009348, 10.873856009796464, 11.07870047747705, 11.284430754233831, 11.491046840066831, 11.698548734976038, 11.906936438961447, 12.116209952023066, 12.326369274160887, 12.53741440537493, 12.749345345665166, 12.962162095031616, 13.175864653474262, 13.390453020993132, 13.60592719758819, 13.82228718325947, 14.039532978006955, 14.257664581830644, 14.47668199473054, 14.693641373977929, 14.912944327518577, 15.135228157390497, 15.360492863593695, 15.588738446128158, 15.819964904993892, 16.05417224019091, 16.291360451719203, 16.531529539578752, 16.77467950376958, 17.020810344291696, 17.269922061145067, 17.522014654329713, 17.777088123845648, 18.035142469692836, 18.2961776918713, 18.560193790381053, 18.827190765222067, 19.09716861639435, 19.370127343897927, 19.64606694773277, 19.92498742789887, 20.20688878439625, 20.491771017224902, 20.77963412638483, 21.070478111876024, 21.364302973698507, 21.661108711852243, 21.96089532633725, 22.26366281715356, 22.569411184301128, 22.87814042777995, 23.18985054759006, 23.504541543731452, 23.822213416204107, 24.142866165008034, 24.46649979014325, 24.803257998831576, 25.179333956749893, 25.59606185912373, 26.053441705953038, 26.551473497237847, 27.090157232978175, 27.669492913173976, 28.289480537825266, 28.950120106932104, 29.563378645414225, 30.166240346004535, 30.78480982916777, 31.419087094903965, 32.069072143213035, 32.73476497409503, 33.416165587549955, 34.11327398357779, 34.826090162178524, 35.55461412335223, 36.298845867098805, 37.05878539341832, 39.192061466077064, 48.93143418915093, 52.092839646684865, 48.67627783867893, 41.086436792932965, 41.52332476061178, 41.966840701136945, 42.41698461450843, 42.75885863582342, 43.060234296404445, 43.365992136511046, 43.67613215614327, 43.99065435530109, 44.309558733984524, 44.632845292193565, 44.960514029928184, 45.29256494718845, 45.6289980439743, 45.96981332028576, 46.3150107761228, 46.664590411485506, 47.018552226373764, 47.37689622078764, 47.73962239472715, 48.10673074819222, 48.478221281182925, 48.85409399369925, 49.23434888574116, 49.663615290962746, 50.15638635870184, 50.6561627754605, 51.16088147137024, 51.67054244643098, 52.18514570064277, 52.70469123400556, 53.22917904651938, 53.758609138184255, 54.292981509000114, 54.83229615896704, 55.37655308808501, 55.92575229635397, 56.47989378377395, 57.03897755034501, 57.60300359606705, 58.17197192094014, 58.74588252496429, 59.32473540813939, 59.90853057046561, 60.49726801194275, 61.09724161144419, 61.827578203606514, 62.73357310895102, 63.81522632747782, 65.05180028986781, 66.03274427313872, 67.02342824898889, 68.02385221741821, 69.03128512599974, 70.03893853534743, 71.04649273716704, 72.05394773145856, 73.06130351822209, 74.06856009745755, 75.0757174691649, 76.08277563334421, 77.56681242276663, 79.07689588735208, 80.53018967919657, 81.9266937983002, 83.26640824466281, 84.54134418079599, 85.56486262670403, 86.54598830316479, 87.48472121017838, 88.38106134774472, 89.23500871586393, 90.04656331453594, 91.05541116280192, 92.18126550296569, 93.17564099710386, 94.03853764521644, 94.76988894899871, 95.36149567290425, 96.00500117815028, 96.99948257357899, 97.92122525787839, 98.77022923104842, 99.5464944930891, 100.3115231228385, 101.2559756877906, 102.22666725298403, 103.22359781841887, 104.24676738409511, 105.29617595001277, 106.37182351617186, 107.47371008257232, 108.60183564921415, 109.75620021609747, 110.93680378322206, 112.1436463505882, 113.3767279181957, 114.63604848604459, 115.92160805413482, 118.3569907308084, 121.84403312200824, 124.10662687506408, 125.3477710240426, 125.65224407567086, 127.42643106286228, 128.83357702079746, 130.278749794667, 131.76194938447068, 133.28317579020876, 134.8424290118811, 136.4397090494877, 138.07501590302851, 139.7483495725037, 141.45971005791327, 143.209097359257, 144.99651147653495, 146.73217307876178, 148.3397041256167, 150.021686400263, 151.75488044343558, 153.53596524596156, 155.36504175909343, 157.24210998283093, 159.1655709933609, 161.13141670730656, 163.14175966666835, 165.1951897766435, 167.28499086459743, 169.41029133130746, 171.64966030531866, 173.94104408221693, 176.27128881674042, 178.64039450888896, 181.0483611586625, 183.49518876606095, 185.98087733108466, 188.6151696767205, 191.84813452244381, 196.33945018598178, 201.58224046528838, 207.32813650066396, 213.01036858090575, 218.26754108187853, 223.5665671971654, 228.9074786093109, 234.33912844063744, 239.88963142260565, 246.81467539262266, 256.63163085704144, 264.7910851791922, 270.9428289255139, 275.08686209600666, 277.2231846906706, 277.3517967095052, 275.4726981525109, 271.5858890196873, 270.23132448959336, 271.52696167962574, 272.7947867647912, 274.037017306677, 275.25095470571745, 276.41621712439866, 277.3144009881046, 277.92544025628536, 278.5280103183191, 279.1259274616908, 279.6908446809046, 280.1615226042097, 280.62163915921013, 281.07119434590584, 281.51018816429695, 281.7373951286356, 279.40249864796345, 273.8305458473275, 269.76197309721783, 269.46792283865574, 269.9704503192999, 270.95979806229985, 271.7775979620075, 272.4448781561981, 273.12278029817554, 273.7947912600972, 274.4609110419629, 275.1211396437728, 275.7754770655269, 276.5764313513052, 279.3678808605016, 281.3243756321195, 284.4853176609804, 290.260709493839, 295.3025454663994, 299.6710043868906, 305.13575441687345, 299.9159645176749, 288.9427237733431, 287.5287312730367, 286.5598478390305, 285.9640239389342, 285.96915363060356, 286.9038508238232, 288.42351355623805, 289.67878825991505, 289.8639958433444, 289.0200446233961, 287.07482843763864, 284.6395244779031, 281.9946917944777, 279.2727211955592, 277.6374030342049, 277.8486098638766, 278.0539075607649, 278.2597555552703, 321.1897537222491, 285.74741438984563, 274.5258014495492, 274.59893823149514, 274.65375513528886, 274.6902521609304, 274.7050510695312, 274.6856671145762, 274.67595790363106, 274.6759393451047, 274.6856114389974, 274.7049741853091, 274.73402758403944, 274.77277163518875, 274.82120633875707, 274.8793316947443, 275.6516111278494, 276.8471006010445, 278.3938042567191, 280.26228605178125, 282.1164598515892, 283.86126641356856, 285.49670573771965, 286.54945246869545, 286.00391281628777, 285.0895150673465, 283.9742328420058, 282.65806614026553, 281.14101496212544, 279.49176666587044, 277.8093426733651, 276.0945369942426, 274.3473496285039, 272.56778057614844, 271.8023222607639, 273.25331647498706, 276.35953002914454, 281.12096292323645, 287.5276215414727, 288.3372014448116, 288.1786952869311, 287.0363972825873, 284.91030743178, 281.80042573450936, 277.706162152452, 272.626696110831, 271.0946881318521, 267.76345019243684, 260.6269648740581, 249.75305813891225, 246.0111754152137, 242.74876907924718, 239.42148699940608, 236.24272700934566, 233.19413746365575, 230.27226827024276, 227.47711942910703, 224.80869094024828, 222.26698280366645, 219.85199501936194, 217.56372758733437, 215.40218050758398, 213.36735378011076, 211.45924740491446, 209.6436875315499, 205.64400879972325, 201.89027433078786, 198.3830927576225, 195.12309312048643, 192.11027546196735, 189.3446397820652, 186.82618608077985, 184.5549143581117, 183.12903087809534, 181.95568144363128, 180.8594080592349, 179.71735512838833, 178.47738034423736, 177.29799872986212, 176.17921028526263, 175.12101501043867, 174.12341290539038, 173.1864039701177, 172.30998820462068, 171.49416560889932, 170.8075185115768, 182.1003418850979, 168.88649552344236, 166.72991067673934, 166.0273818986115, 165.274948624616, 164.4726108547528, 163.620368589022, 162.71628373104133, 161.84409149384325, 160.8969873255934, 159.85738342722917, 158.7252797987506, 157.35465573644072, 155.86397508538477, 154.80664248579524, 153.99127542690047, 153.14992553622855, 152.28259281377962, 151.38927725955372, 150.46997887355067, 149.52469765577055, 148.5300008152217, 147.11580155544274, 144.93956434392004, 142.86300818446776, 140.88613307708545, 139.0089390217733, 137.23142601853127, 135.55359406735923, 133.97544316825736, 132.49697332122525, 131.1181845262635, 129.8390767833718, 128.65963966517248, 127.57896633966541, 126.59640524103152, 125.71193614427793, 124.9255590494046, 124.23727395641156, 123.64708086529892, 123.15497977606648, 122.7606883042213, 122.41751272022464, 122.09143855513103, 121.78246580894067, 121.4905944816535, 121.21582457326949, 120.95815608378864, 120.7175890132109, 120.49412336153638, 120.29018513682308, 120.10861637525615, 119.94942144269663, 119.81260033914448, 119.69815306459972, 119.60607961906226, 119.53638000253218, 119.48649635944824, 119.44866134981945, 119.4223408575534, 119.73073293306184, 120.06715274427738, 120.41356853177152, 120.76998029554433, 121.13638803559574, 121.51279175192577, 121.89919144453454, 122.2955871134219, 122.70197875858794, 123.11836638003264, 123.53873925868041, 123.81123379687543, 124.07045131190674, 124.32370479815168, 124.5709942556102, 124.81231968428231, 125.04768108416803, 125.27707845526741, 125.50229000441861, 125.73384897304882, 125.97348842823718, 126.22120836998387, 126.47700879828884, 126.74088971315199, 127.0128511145734, 127.29289300255316, 127.60690116523993, 127.8932337514881, 128.12748105864995, 128.41447103249075, 128.74916563088775, 129.09845398261086, 129.46233608766016, 129.84081194603561, 130.23388155773725, 130.64154492276498, 132.29144382251562, 133.9586924799693, 135.2937109345453, 136.2964991862436, 136.96705723506412, 137.26566377929794, 137.17302672003314, 136.76868926736967, 136.36321430929402, 136.0212901035118, 135.74291665002303, 135.52714691868033, 135.37252529876613, 135.279035778141, 135.24667835680472, 135.27547119722794, 135.36579775195335, 135.51781186841208, 135.72851049724306, 135.963684588375, 136.21367327679292, 136.47847656249678, 136.85495248176386, 137.4738760679794, 138.1175190832064, 138.78588152744453, 139.47896340069397, 140.1967647029547, 140.93928543422686, 141.7065255945102, 142.49848518380506, 143.315164202111, 144.15656264942834, 145.02268052575698, 145.588545189571, 145.92824573468144, 146.2659440928592, 146.5995565424945, 146.92740499500667, 147.2494894503956, 147.56580990866146, 147.87636636980412, 148.18115883382367, 148.48018730072016, 148.7734517704935, 149.0609522431437, 149.3426887186707, 149.61866119707463, 149.8888696783554, 150.15331416251308, 150.41199464954764, 150.66491113945895, 150.91206363224717, 151.1534521279123, 151.38907662645423, 151.61893712787315, 151.84303363216884, 152.06136613934146, 152.37907187364794, 153.67734121555634, 155.14380225549795, 156.9133147343396, 158.77513593805043, 160.73088980145639, 162.78392665657225, 164.9343328237111, 167.18210830287285, 169.52725309405756, 171.96976719726527, 174.50965061249593, 177.14690333974985, 179.88152537902639, 180.50441801910057, 178.64914222886165, 176.76759683527362, 174.83246436523783, 172.84374481875412, 170.80143819582293, 168.70554449644405, 166.5560637206175, 164.35299586834316, 162.0963409396212, 159.78743914370506, 157.45282277879875, 155.1028095725304, 152.73739952489998, 150.3565926359076, 145.53190386106988, 140.25254482353284, 137.1969259411963, 134.7982373678549, 131.22068731211635, 127.30025836797725, 123.03695053543765, 118.43076381449747, 113.54597065692374, 108.47721765631265, 102.61351089618944, 95.89149563366483, 89.53100010642629, 83.53202431447393, 77.8945682578077, 72.61863193642698, 67.70421535033309, 63.15131849952532, 58.959545549441806, 55.12844234908797, 51.658008371162765, 48.548243615665804, 45.79914808259788, 43.410721771958556, 41.709902317396725, 40.25266275375112, 38.86326706775891, 37.54171525942013, 36.288007328734615, 35.102143275702645, 33.984123100324105, 32.933946802598975, 31.951614382527247, 31.037125840108928, 30.190331261536105, 29.411019876402552, 28.699190214392225, 28.054842275505116, 27.477976059741255, 26.968591567100606, 26.526688797583194, 26.15226775118897, 25.845328427918012, 25.60587082777029, 25.433894950745778, 25.32940079684451, 25.292388366066465, 25.32285765841166, 25.417360478886433, 25.527097897502976, 25.636256416479423, 25.744836035815773, 25.85283675551203, 25.96025857556819, 26.06710149598424, 26.173365516760185, 26.30202102374223, 26.43580873522292, 26.571285364370468, 26.708450911184862, 26.84730537566616, 26.98784875781431, 27.13008105762931, 27.274002275111197, 27.419612410259923, 27.56691146307555, 27.715899433558047, 27.866576321707395, 28.01894212752361, 28.17299685100668, 28.328707939769565, 28.48587953450207, 28.6444789009857, 28.80450603922048, 28.965960949206366, 29.12884363094339, 29.29315408443155, 29.458892309670826, 29.62605830666124, 29.794652075402805, 29.96467361589547, 30.13612292813926, 30.309000012134188, 30.48330486788026, 30.659037495377433, 30.83619789462577, 31.014786065625234, 31.19480200837581, 31.376245722877517, 31.557565080111218, 31.736346062024538, 31.916037505578853, 32.0966394107742, 32.27815177761053, 32.460574606087874, 32.643907896206215, 32.82782872811353, 33.01288322112773, 33.19924136221716, 33.386903151381816, 33.57586858862167, 33.76613767393676, 33.95771040732705, 34.15058678879257, 34.344766818333326, 34.54025049594931, 34.7370378216405, 34.935128795406904, 35.13452341724852, 35.33522168716535, 35.537223605157436, 35.74052917122474, 35.94513838536724, 36.15105124758496, 36.35826775787791, 36.56678791624607, 36.77661172268948, 36.9877391772081, 37.200170279801945, 37.41390503047099, 37.62894342921526, 37.84528547603476, 38.06293117092946, 38.281880513899395, 38.502133504944545, 38.72382595158439, 38.949194698503746, 39.17903020693694, 39.413332476884015, 39.65210150834492, 39.89533730131968, 40.14303985580833, 40.395209171810805, 40.651845249327124, 40.9129480883573, 41.17851768890134, 41.44855405095921, 41.72305717453094, 42.002027059616545, 42.28546370621596, 42.57336711432926, 42.865737283956385, 43.16257421509738, 43.463877907752206, 43.74224306645013, 44.011015315680666, 44.27066876483509, 44.52120341391338, 44.762619262915585, 44.99491631184168, 45.218094560691625, 45.43215400946549, 45.72788293211261, 46.04752595043744, 46.358164640598645, 46.66596889049337, 46.975570097337254, 47.28696587996558, 47.600156238378254, 47.91514117257531, 48.23192068255671, 48.55049476832255, 48.87086342987274, 49.193026667207306, 49.516984480326315, 49.84273686922966, 50.17028383391739, 50.49793975586159, 50.826297834101524, 51.15665198872551, 51.48900221973362, 51.823348527125766, 52.159690910902, 52.498029371062295, 52.83836390760666, 53.1806945205351, 53.52502120984766, 53.871343975544264, 54.21966281762489, 54.569977736089655, 54.92228873093846, 55.27659580217135, 55.63289894978831, 55.991198173789364, 56.351493474174475, 56.713784850943654, 57.078072304096914, 57.44435583363422, 57.81263543955562, 58.18291112186114, 58.5551828805507, 58.92945071562432, 59.40283027953327, 59.88674549667918, 60.375043072872714, 60.867723008113884, 61.36478530240276, 61.86622995573922, 62.372056968123296, 62.882266339555045, 63.39685807003444, 63.91583215956148, 64.43890930338779, 64.97078119030068, 65.5115255932637, 66.06114251227682, 66.61963194734007, 67.1869938984534, 67.76322836561684, 68.34822785531021, 68.94176639631446, 69.54383678890113, 70.15443903307022, 70.7735731288217, 71.40123907615559, 72.03743687507199, 72.68142743442695, 73.32891392114948, 73.97920266852407, 74.63229367655066, 75.2881869452293, 75.94688247455997, 76.60838026454279, 77.27268031517752, 77.93978262646435, 78.6096871984032, 79.28239403099407, 79.95790312423699, 80.63621447813202, 81.31732809267906, 82.0012439678781, 82.68796210372919, 83.37748250023229, 84.06980515738748, 84.76493007519478, 85.46285725365401, 86.16358669276532, 86.86711839252865, 87.57345235294403, 88.28581548118262, 89.05178998611234, 89.8740323196518, 90.75158748576057, 91.68437746455736, 92.67240225604212, 93.7156618602149, 94.81415627707561, 95.96788550662463, 97.1801666526703, 98.45662214636353, 99.72849377033266, 100.92003669183576, 102.11601105209752, 103.33226929205254, 104.56881141170149, 105.82563741104367, 107.10274729007985, 108.40014104880959, 109.71781868723266, 111.05578020534968, 112.41402560315984, 113.7925548806641, 115.19136803786157, 116.61046507475294, 118.04984599133802, 119.5095107876163, 120.98945946358857, 122.48969201925408, 124.01020845461352, 125.55100876966627, 127.11209296441294, 128.69346103885331, 130.2951129929868, 131.94692525086998, 133.68308277074053, 135.50362370180147, 137.4085480440526, 139.3978557974931, 141.4715469621242, 143.74787547362072, 146.60413012291383, 149.56773663661946, 152.53995790102064, 155.5207939161167, 158.5102446819069, 161.50831019839268, 164.5149904655726, 167.53028548344813, 170.82107105988754, 174.49636272203128, 178.28757230724574, 182.19173154332606, 186.20884043027414, 190.33889896808807, 194.58190715676977, 198.89623399191333, 203.3350047735369, 207.9230002856234, 212.66022052817152, 217.54666550118367, 222.714124771211, 228.70785916608585, 235.3682542962471, 242.6936161333845, 250.6839446775016, 259.33923992859457, 268.65950188666767, 278.6447305517163, 289.5029618356892, 302.21019057433654, 317.31484055948687, 334.9776310740213, 355.525217251902, 383.6779192257821, 411.27582965874575, 435.7658630916794, 457.1480195245765, 475.9920577067075, 500.60230799438244, 518.3937139806376, 533.2497651048834, 544.6398868624337, 548.3052756827302, 546.0557921881306, 543.2231719543835, 541.0749336726473, 535.2267283972449, 509.6316297224025, 462.05155313801197, 419.536876119537, 385.23387746263836, 359.71242319584906, 335.7364976753292, 313.4966610752661, 296.8993836656799, 287.48996355132834, 256.8768429208733, 246.5249945549869, 236.54534016065134, 227.0173962579181, 218.22683578950156, 210.40245944574875, 203.56306116054995, 197.70864093390645, 190.9014610695656, 183.33835512134488, 176.06233566294497, 168.55697137980695, 160.4178166231521, 151.6448713929764, 142.2850696684111, 133.03345104233784, 124.93402211032655, 117.01393986228682, 109.27320429822059, 101.71181541812972, 94.32977322201049, 87.12707770986658, 80.21979761532943, 74.89608708560434, 69.95017208781793, 65.38205262197154, 61.191728688066085, 57.376430079398716, 53.893275283495726, 50.72762541091558, 47.87948046165968, 45.34884043572672, 43.13570533311745, 41.240075153832215, 39.66194989787018, 38.29336265634477, 39.8366479093327, 41.00350740380974, 29.83997098886159, 14.004584465954366, 11.884600941490454, 9.938508158299832, 8.166306116383423, 6.567994815740383, 5.1435742563711555, 3.893044438276017, 2.816405361454374, 1.9136570259067371, 1.1847994316326762, 0.62983257863254, 0.24875646690606337, 0.04157109645339916, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9993893294957612, 12.50317679315755, 48.85915898017775, 113.83329261689116, 179.25842887549987, 229.15243203744956, 305.18622985816603, 441.3686074759777, 481.8050394188636, 534.3565087657254, 613.2039059610738, 599.7460901781828, 570.8553588214579, 550.6476191664357, 535.5742433077971, 534.0692108904161, 541.5833609344882, 549.1127678098494, 556.6574315164979, 558.8378868430343, 564.6931255531973, 574.2880262236521, 591.1220439079723, 581.7365146953507, 569.4941748030616, 560.414549583022, 554.3549361253121, 547.2432587674898, 540.9976093421546, 538.511475688578, 539.9870381990478, 543.8303056374368, 547.4675039324516, 551.3820613265082, 555.6795159243965, 560.3598677261147, 566.3527859800673, 573.3355644570792, 580.7905111154016, 588.7176259550384, 597.1169089759857, 605.9883601782473, 615.341053646788, 625.1877510278534, 635.5198042904784, 646.7165194848208, 686.2425467833589, 713.9266465063553, 758.553013254561, 730.2034265089382, 736.4078909415947, 741.7964495532325, 746.5165943419161, 750.2551937575446, 752.3140189496496, 753.9239352858007, 755.0886898426767, 755.7713919860508, 754.7604363045183, 750.8630513396292, 756.9763546573882, 762.1107828130276, 766.2709414951437, 769.4550322336032, 771.5978582805541, 772.6231134540323, 773.6559626627838, 776.9669699936661, 782.6377288065531, 790.3872677473786, 801.1262337607308, 813.5749435782279, 843.1221334042125, 872.195713101798, 893.6184035118482, 908.883932515636, 910.3801518044717, 906.7124748210824, 903.2035306884097, 899.3544195534708, 902.6688341178785, 905.3508152827427, 907.4087090259486, 908.8404409040277, 909.6246237363398, 914.3569622799863, 949.9603897773928, 971.3603765822617, 978.5284168065958, 965.5235482972929, 1204.2611937198362, 924.1275943880707, 862.0385373518692, 808.4687168179372, 763.4181330068112, 726.8958372278435, 697.6282784045652, 674.088449398449, 651.9531685582128, 631.1947061911254, 612.009436201228, 592.6708021419888, 571.2536803682872, 548.781196680188, 523.4888240163958, 498.8471858748934, 475.6336450973573, 454.3321603927694, 436.7758984518737, 422.6664582424775, 409.8210492336335, 397.52012282983856, 386.02063035649314, 375.3984049437749, 364.9019032428511, 355.69498429157494, 346.75939011156925, 337.2363421007963, 327.04909257134, 316.183969255676, 299.7588573459819, 282.02653939784835, 268.5585404564859, 259.1338410139674, 251.95818038201264, 244.28919943174805, 236.3933273658025, 228.74181559074927, 221.3346641065848, 214.17187291331084, 207.25344201092912, 205.99076856142807, 202.28426686443112, 195.8978090959672, 186.83139525603707, 168.03862400485892, 153.1523508641666, 142.78722884709893, 133.39802741364886, 124.45456195056136, 115.95683245783233, 107.90483893546384, 100.6738635817376, 97.21382976137401, 89.68871420176329, 78.74812348062228, 62.47250537221585, 40.12208463709229, 22.046175244924594, 9.766151527870914, 2.417505686779617, 6.730777505810226e-09, 7.119050943123364e-05, 0.0002819998915328947, 0.0006324348770825894, 0.001122495466080284, 0.0017521816585258122, 0.002521493454419473, 0.0034304308537609026, 0.004478993856550531, 0.005667182462788159, 0.006994996672473454, 0.00846243648560705, 0.010069501902188248, 0.011816192922217807, 0.013702509545694906, 0.015728451772620434, 0.01789401960299396, 97.6099593462702, 186.84198042169953, 281.7674915383538, 397.68044413561705, 460.3391947052833, 483.13364757245733, 516.6851015849579, 546.1658880512161, 572.2303810236931, 592.6195141562816, 610.8721251426576, 626.988213982829, 629.6261395340069, 609.8053050928728, 589.1505212041952, 570.9447741998912, 556.183900090507, 543.534833391787, 529.0972810867319, 517.2910708699696, 506.75268887061094, 496.54352704975173, 486.57552971088217, 475.6141064396693, 464.47781715176444, 453.2317480642301, 441.8758991770801, 430.50537941365474, 419.8011493474523, 409.4224412556689, 399.36925513831716, 389.6415909953897, 380.23944882689136, 371.1628286328175, 362.98251079716465, 355.6357099841652, 348.79461970794017, 342.4592399684845, 336.629570765806, 331.3056120998957, 326.48736397076186, 321.06432738556725, 315.50828190194636, 310.2518588742363, 305.3063759108588, 300.67183301181035, 296.3482301770931, 292.33556740670485, 288.9514302419782, 285.4298657627129, 281.70512370001666, 278.66112707573285, 276.14489517951, 273.8643123309269, 271.6490642527373, 269.4983209251962, 267.4120823483063, 265.3903485220658, 263.41410420761173, 261.4992579801617, 259.6513757157876, 257.87045741448816, 256.1565030762644, 254.50951270111514, 252.9294862890422, 251.41642384004356, 249.97032535412114, 248.7238657404261, 247.97130806847684, 247.01639186341012, 245.8591171252269, 244.4994838539263, 242.93749204950925, 241.20495630714402, 239.8529626182137, 238.9303242217372, 238.16151349811074, 237.54828017331332, 236.99778089594346, 236.51001566600024, 236.08498448348448, 235.7226873483956, 235.49361790401971, 235.16577943517225, 234.75652407487615, 234.32562009219646, 233.87506008552882, 233.40484405487297, 232.91497200022897, 232.41216472359366, 231.93167218495827, 231.368306837029, 229.83419602615825, 228.26023368923603, 226.64641982626154, 224.9927544372356, 223.29923752215706, 221.57502371114498, 219.84024337184323, 218.55319543181176, 217.76006936604674, 217.00468512267568, 217.61356978527445, 218.6422453907338, 219.2544783655573, 219.45026870974482, 219.22961642329636, 218.59252150621197, 220.75596759919856, 222.53078029184843, 219.1163142742248, 212.73352868416788, 208.11960039602639, 203.19952272381377, 197.97329566752302, 192.44091922716026, 184.84233363256467, 177.68238865936107, 171.27394953589004, 165.38564338284272, 160.17688607830308, 155.72808892433275, 152.03925192092868, 149.05961821955134, 146.18869036401648, 141.12384588837688, 135.7262608282099, 130.57799856373148, 125.67905909493426, 121.02944242182427, 116.62914854439806, 112.47817746265767, 108.04423378346054, 101.73587603216662, 95.9133988725134, 90.57680230450359, 104.75592657179084, 116.23917890371993, 89.29996986650401, 78.22046367679695, 68.07491765564993, 58.85237704760615, 50.277620974061705, 42.23112418033935, 34.7128866664352, 29.680378843535944, 25.759612146072215, 21.348067781906536, 16.39043779708827, 10.759876034755493, 4.451379846442942, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] }, { "mode": "lines", "name": "DOS: nqsmall 14", "showlegend": true, "type": "scatter", "x": [ -0.0037195256267313916, -0.0036947287892198487, -0.0036699319517083063, -0.0036451351141967635, -0.0036203382766852206, -0.0035955414391736786, -0.0035707446016621357, -0.0035459477641505937, -0.003521150926639051, -0.003496354089127508, -0.0034715572516159656, -0.0034467604141044227, -0.00342196357659288, -0.003397166739081338, -0.003372369901569795, -0.003347573064058252, -0.0033227762265467097, -0.003297979389035167, -0.0032731825515236244, -0.003248385714012082, -0.003223588876500539, -0.0031987920389889967, -0.0031739952014774543, -0.0031491983639659114, -0.0031244015264543686, -0.003099604688942826, -0.0030748078514312837, -0.0030500110139197413, -0.0030252141764081984, -0.003000417338896656, -0.0029756205013851135, -0.0029508236638735707, -0.002926026826362028, -0.0029012299888504854, -0.0028764331513389425, -0.0028516363138274, -0.0028268394763158577, -0.002802042638804315, -0.0027772458012927724, -0.0027524489637812295, -0.002727652126269687, -0.0027028552887581447, -0.002678058451246602, -0.0026532616137350594, -0.002628464776223517, -0.002603667938711974, -0.0025788711012004312, -0.002554074263688889, -0.002529277426177346, -0.0025044805886658035, -0.002479683751154261, -0.002454886913642718, -0.002430090076131176, -0.002405293238619633, -0.0023804964011080905, -0.002355699563596548, -0.002330902726085005, -0.0023061058885734628, -0.0022813090510619203, -0.0022565122135503775, -0.0022317153760388346, -0.002206918538527292, -0.0021821217010157493, -0.0021573248635042073, -0.0021325280259926645, -0.0021077311884811216, -0.0020829343509695796, -0.0020581375134580368, -0.002033340675946494, -0.0020085438384349515, -0.0019837470009234086, -0.001958950163411866, -0.0019341533259003237, -0.0019093564883887809, -0.0018845596508772382, -0.0018597628133656958, -0.0018349659758541532, -0.0018101691383426103, -0.0017853723008310679, -0.0017605754633195254, -0.0017357786258079828, -0.00171098178829644, -0.0016861849507848975, -0.0016613881132733549, -0.001636591275761812, -0.0016117944382502696, -0.0015869976007387271, -0.0015622007632271845, -0.0015374039257156416, -0.0015126070882040992, -0.0014878102506925568, -0.001463013413181014, -0.0014382165756694713, -0.0014134197381579288, -0.0013886229006463862, -0.0013638260631348433, -0.001339029225623301, -0.0013142323881117585, -0.0012894355506002156, -0.001264638713088673, -0.0012398418755771305, -0.001215045038065588, -0.001190248200554045, -0.0011654513630425026, -0.0011406545255309602, -0.0011158576880194173, -0.0010910608505078747, -0.0010662640129963322, -0.0010414671754847898, -0.001016670337973247, -0.0009918735004617043, -0.0009670766629501619, -0.0009422798254386189, -0.0009174829879270765, -0.0008926861504155339, -0.0008678893129039914, -0.0008430924753924485, -0.000818295637880906, -0.0007934988003693636, -0.000768701962857821, -0.0007439051253462782, -0.0007191082878347356, -0.0006943114503231931, -0.0006695146128116502, -0.0006447177753001078, -0.0006199209377885653, -0.0005951241002770227, -0.0005703272627654799, -0.0005455304252539373, -0.0005207335877423949, -0.0004959367502308519, -0.00047113991271930945, -0.00044634307520776697, -0.0004215462376962245, -0.00039674940018468157, -0.00037195256267313946, -0.00034715572516159655, -0.0003223588876500537, -0.0002975620501385116, -0.00027276521262696867, -0.0002479683751154258, -0.00022317153760388367, -0.00019837470009234078, -0.00017357786258079792, -0.0001487810250692558, -0.0001239841875577129, -9.918735004617003e-05, -7.43905125346279e-05, -4.959367502308501e-05, -2.4796837511542876e-05, 0.0, 2.4796837511542876e-05, 4.959367502308501e-05, 7.43905125346279e-05, 9.918735004617077e-05, 0.0001239841875577129, 0.0001487810250692558, 0.00017357786258079865, 0.00019837470009234078, 0.00022317153760388367, 0.0002479683751154258, 0.00027276521262696867, 0.0002975620501385116, 0.0003223588876500537, 0.00034715572516159655, 0.00037195256267313946, 0.00039674940018468157, 0.0004215462376962245, 0.00044634307520776735, 0.00047113991271930945, 0.0004959367502308524, 0.0005207335877423952, 0.0005455304252539373, 0.0005703272627654802, 0.0005951241002770224, 0.0006199209377885653, 0.0006447177753001081, 0.0006695146128116502, 0.0006943114503231931, 0.0007191082878347361, 0.0007439051253462782, 0.000768701962857821, 0.0007934988003693639, 0.000818295637880906, 0.000843092475392449, 0.0008678893129039918, 0.0008926861504155339, 0.0009174829879270768, 0.0009422798254386189, 0.0009670766629501619, 0.0009918735004617047, 0.001016670337973247, 0.0010414671754847898, 0.0010662640129963327, 0.0010910608505078747, 0.0011158576880194175, 0.0011406545255309604, 0.0011654513630425026, 0.0011902482005540455, 0.0012150450380655877, 0.0012398418755771305, 0.0012646387130886734, 0.0012894355506002156, 0.0013142323881117585, 0.0013390292256233013, 0.0013638260631348433, 0.0013886229006463862, 0.001413419738157929, 0.0014382165756694713, 0.0014630134131810141, 0.001487810250692557, 0.0015126070882040992, 0.001537403925715642, 0.0015622007632271843, 0.0015869976007387271, 0.00161179443825027, 0.001636591275761812, 0.0016613881132733549, 0.001686184950784898, 0.00171098178829644, 0.0017357786258079828, 0.0017605754633195257, 0.0017853723008310679, 0.0018101691383426107, 0.0018349659758541536, 0.0018597628133656958, 0.0018845596508772387, 0.0019093564883887809, 0.0019341533259003237, 0.0019589501634118666, 0.0019837470009234086, 0.0020085438384349515, 0.0020333406759464943, 0.0020581375134580368, 0.0020829343509695796, 0.0021077311884811225, 0.0021325280259926645, 0.0021573248635042073, 0.0021821217010157493, 0.002206918538527292, 0.002231715376038835, 0.0022565122135503775, 0.0022813090510619203, 0.002306105888573463, 0.002330902726085005, 0.002355699563596548, 0.002380496401108091, 0.002405293238619633, 0.002430090076131176, 0.002454886913642719, 0.002479683751154261, 0.002504480588665804, 0.002529277426177346, 0.002554074263688889, 0.0025788711012004317, 0.002603667938711974, 0.002628464776223517, 0.00265326161373506, 0.002678058451246602, 0.0027028552887581447, 0.0027276521262696875, 0.0027524489637812295, 0.0027772458012927724, 0.002802042638804315, 0.0028268394763158577, 0.0028516363138274005, 0.0028764331513389425, 0.0029012299888504854, 0.0029260268263620283, 0.0029508236638735707, 0.0029756205013851127, 0.0030004173388966564, 0.0030252141764081984, 0.0030500110139197404, 0.003074807851431284, 0.003099604688942826, 0.0031244015264543686, 0.003149198363965912, 0.0031739952014774543, 0.0031987920389889963, 0.00322358887650054, 0.003248385714012082, 0.003273182551523624, 0.0032979793890351677, 0.0033227762265467097, 0.003347573064058252, 0.003372369901569796, 0.003397166739081338, 0.00342196357659288, 0.0034467604141044236, 0.0034715572516159656, 0.003496354089127508, 0.0035211509266390513, 0.0035459477641505937, 0.0035707446016621357, 0.0035955414391736777, 0.0036203382766852215, 0.0036451351141967635, 0.003669931951708306, 0.003694728789219849, 0.0037195256267313916, 0.0037443224642429336, 0.0037691193017544773, 0.0037939161392660193, 0.0038187129767775618, 0.003843509814289105, 0.0038683066518006475, 0.0038931034893121895, 0.003917900326823733, 0.003942697164335275, 0.003967494001846817, 0.003992290839358361, 0.004017087676869903, 0.004041884514381445, 0.004066681351892989, 0.004091478189404531, 0.0041162750269160735, 0.004141071864427617, 0.004165868701939159, 0.004190665539450701, 0.004215462376962243, 0.0042402592144737865, 0.004265056051985329, 0.004289852889496871, 0.004314649727008415, 0.004339446564519957, 0.004364243402031499, 0.004389040239543043, 0.004413837077054584, 0.004438633914566127, 0.00446343075207767, 0.0044882275895892125, 0.004513024427100755, 0.004537821264612298, 0.004562618102123841, 0.004587414939635382, 0.004612211777146926, 0.004637008614658468, 0.00466180545217001, 0.004686602289681554, 0.004711399127193096, 0.0047361959647046386, 0.004760992802216182, 0.004785789639727724, 0.004810586477239266, 0.00483538331475081, 0.004860180152262352, 0.004884976989773894, 0.004909773827285436, 0.00493457066479698, 0.004959367502308522, 0.004984164339820065, 0.005008961177331608, 0.00503375801484315, 0.005058554852354692, 0.005083351689866236, 0.005108148527377778, 0.00513294536488932, 0.005157742202400863, 0.005182539039912406, 0.005207335877423948, 0.0052321327149354915, 0.005256929552447034, 0.0052817263899585755, 0.00530652322747012, 0.005331320064981661, 0.005356116902493204, 0.005380913740004747, 0.005405710577516289, 0.005430507415027832, 0.005455304252539375, 0.0054801010900509175, 0.005504897927562459, 0.0055296947650740015, 0.005554491602585545, 0.005579288440097087, 0.00560408527760863, 0.005628882115120173, 0.005653678952631715, 0.005678475790143257, 0.005703272627654801, 0.005728069465166343, 0.005752866302677885, 0.005777663140189429, 0.005802459977700971, 0.005827256815212513, 0.0058520536527240565, 0.005876850490235599, 0.005901647327747141, 0.005926444165258685, 0.005951241002770227, 0.005976037840281769, 0.006000834677793313, 0.006025631515304854, 0.006050428352816397, 0.00607522519032794, 0.0061000220278394825, 0.006124818865351025, 0.0061496157028625665, 0.006174412540374111, 0.006199209377885652, 0.006224006215397195, 0.006248803052908738, 0.00627359989042028, 0.006298396727931823, 0.006323193565443366, 0.0063479904029549086, 0.00637278724046645, 0.006397584077977994, 0.006422380915489536, 0.006447177753001078, 0.006471974590512622, 0.006496771428024164, 0.006521568265535706, 0.00654636510304725, 0.006571161940558792, 0.006595958778070334, 0.006620755615581878, 0.0066455524530934194, 0.006670349290604962, 0.006695146128116506, 0.006719942965628048, 0.00674473980313959, 0.0067695366406511324, 0.006794333478162676, 0.006819130315674218, 0.00684392715318576, 0.006868723990697304, 0.0068935208282088455, 0.006918317665720388, 0.006943114503231931, 0.006967911340743474, 0.006992708178255016, 0.007017505015766559, 0.007042301853278102, 0.007067098690789643, 0.0070918955283011875, 0.007116692365812729, 0.0071414892033242715, 0.007166286040835815, 0.007191082878347357, 0.0072158797158589, 0.007240676553370443, 0.007265473390881985, 0.007290270228393527, 0.007315067065905071, 0.007339863903416613, 0.007364660740928155, 0.007389457578439698, 0.007414254415951241, 0.007439051253462783, 0.007463848090974325, 0.007488644928485869, 0.0075134417659974105, 0.007538238603508953, 0.007563035441020497, 0.007587832278532039, 0.007612629116043581, 0.007637425953555124, 0.007662222791066667, 0.007687019628578209, 0.0077118164660897525, 0.007736613303601295, 0.0077614101411128365, 0.007786206978624381, 0.007811003816135922, 0.007835800653647465, 0.007860597491159008, 0.00788539432867055, 0.007910191166182093, 0.007934988003693636, 0.007959784841205178, 0.007984581678716721, 0.008009378516228264, 0.008034175353739806, 0.00805897219125135, 0.00808376902876289, 0.008108565866274434, 0.008133362703785976, 0.008158159541297519, 0.008182956378809062, 0.008207753216320604, 0.008232550053832147, 0.00825734689134369, 0.008282143728855232, 0.008306940566366773, 0.008331737403878318, 0.00835653424138986, 0.008381331078901402, 0.008406127916412945, 0.008430924753924488, 0.00845572159143603, 0.008480518428947573, 0.008505315266459116, 0.008530112103970658, 0.008554908941482201, 0.008579705778993743, 0.008604502616505286, 0.00862929945401683, 0.008654096291528371, 0.008678893129039914, 0.008703689966551456, 0.008728486804062999, 0.00875328364157454, 0.008778080479086084, 0.008802877316597627, 0.008827674154109169, 0.008852470991620712, 0.008877267829132255, 0.008902064666643797, 0.008926861504155338, 0.008951658341666884, 0.008976455179178425, 0.009001252016689967, 0.009026048854201512, 0.009050845691713053, 0.009075642529224595, 0.009100439366736138, 0.009125236204247681, 0.009150033041759223, 0.009174829879270766, 0.00919962671678231, 0.009224423554293851, 0.009249220391805394, 0.009274017229316936, 0.00929881406682848, 0.00932361090434002, 0.009348407741851564, 0.009373204579363107, 0.009398001416874649, 0.009422798254386192, 0.009447595091897734, 0.009472391929409277, 0.00949718876692082, 0.009521985604432362, 0.009546782441943905, 0.009571579279455449, 0.00959637611696699, 0.009621172954478532, 0.009645969791990075, 0.009670766629501617, 0.009695563467013162, 0.009720360304524703, 0.009745157142036246, 0.009769953979547788, 0.00979475081705933, 0.009819547654570873, 0.009844344492082418, 0.00986914132959396, 0.009893938167105503, 0.009918735004617044, 0.009943531842128586, 0.00996832867964013, 0.009993125517151674, 0.010017922354663216, 0.010042719192174757, 0.0100675160296863, 0.010092312867197842, 0.010117109704709384, 0.010141906542220929, 0.010166703379732472, 0.010191500217244014, 0.010216297054755555, 0.010241093892267098, 0.01026589072977864, 0.010290687567290182, 0.010315484404801727, 0.01034028124231327, 0.010365078079824811, 0.010389874917336353, 0.010414671754847896, 0.010439468592359438, 0.010464265429870983, 0.010489062267382524, 0.010513859104894068, 0.01053865594240561, 0.010563452779917151, 0.010588249617428694, 0.01061304645494024, 0.01063784329245178, 0.010662640129963322, 0.010687436967474866, 0.010712233804986407, 0.010737030642497949, 0.010761827480009494, 0.010786624317521037, 0.010811421155032579, 0.01083621799254412, 0.010861014830055664, 0.010885811667567205, 0.010910608505078747, 0.010935405342590292, 0.010960202180101835, 0.010984999017613377, 0.011009795855124918, 0.011034592692636461, 0.011059389530148003, 0.011084186367659548, 0.01110898320517109, 0.011133780042682633, 0.011158576880194174, 0.011183373717705716, 0.01120817055521726, 0.011232967392728804, 0.011257764230240346, 0.011282561067751887, 0.01130735790526343, 0.011332154742774972, 0.011356951580286514, 0.011381748417798059, 0.011406545255309602, 0.011431342092821144, 0.011456138930332685, 0.011480935767844229, 0.01150573260535577, 0.011530529442867312, 0.011555326280378858, 0.0115801231178904, 0.011604919955401942, 0.011629716792913485, 0.011654513630425026, 0.011679310467936568, 0.011704107305448113, 0.011728904142959656, 0.011753700980471198, 0.01177849781798274, 0.011803294655494283, 0.011828091493005824, 0.01185288833051737, 0.011877685168028911, 0.011902482005540454, 0.011927278843051996, 0.011952075680563537, 0.01197687251807508, 0.012001669355586626, 0.012026466193098167, 0.012051263030609709, 0.012076059868121252, 0.012100856705632794, 0.012125653543144335, 0.012150450380655878, 0.012175247218167424, 0.012200044055678965, 0.012224840893190507, 0.01224963773070205, 0.012274434568213591, 0.012299231405725133, 0.012324028243236678, 0.012348825080748221, 0.012373621918259763, 0.012398418755771305, 0.012423215593282848, 0.01244801243079439, 0.012472809268305934, 0.012497606105817476, 0.01252240294332902, 0.01254719978084056, 0.012571996618352102, 0.012596793455863646, 0.01262159029337519, 0.012646387130886732, 0.012671183968398274, 0.012695980805909817, 0.012720777643421359, 0.0127455744809329, 0.012770371318444445, 0.012795168155955989, 0.01281996499346753, 0.012844761830979072, 0.012869558668490615, 0.012894355506002157, 0.012919152343513698, 0.012943949181025243, 0.012968746018536786, 0.012993542856048328, 0.01301833969355987, 0.013043136531071413, 0.013067933368582954, 0.0130927302060945, 0.013117527043606041, 0.013142323881117584, 0.013167120718629126, 0.013191917556140667, 0.01321671439365221, 0.013241511231163756, 0.013266308068675297, 0.013291104906186839, 0.013315901743698382, 0.013340698581209924, 0.013365495418721465, 0.013390292256233012, 0.013415089093744554, 0.013439885931256095, 0.013464682768767638, 0.01348947960627918, 0.013514276443790722, 0.013539073281302265, 0.01356387011881381, 0.013588666956325351, 0.013613463793836893, 0.013638260631348436, 0.013663057468859978, 0.01368785430637152, 0.013712651143883064, 0.013737447981394608, 0.01376224481890615, 0.013787041656417691, 0.013811838493929234, 0.013836635331440776, 0.01386143216895232, 0.013886229006463862, 0.013911025843975406, 0.013935822681486947, 0.013960619518998489, 0.013985416356510032, 0.014010213194021577, 0.014035010031533119, 0.01405980686904466, 0.014084603706556204, 0.014109400544067745, 0.014134197381579287, 0.01415899421909083, 0.014183791056602375, 0.014208587894113917, 0.014233384731625458, 0.014258181569137001, 0.014282978406648543, 0.014307775244160085, 0.01433257208167163, 0.014357368919183173, 0.014382165756694714, 0.014406962594206256, 0.0144317594317178, 0.01445655626922934, 0.014481353106740886, 0.014506149944252427, 0.01453094678176397, 0.014555743619275512, 0.014580540456787054, 0.014605337294298597, 0.014630134131810142, 0.014654930969321684, 0.014679727806833225, 0.014704524644344769, 0.01472932148185631, 0.014754118319367852, 0.014778915156879395, 0.01480371199439094, 0.014828508831902482, 0.014853305669414023, 0.014878102506925566, 0.014902899344437108, 0.01492769618194865, 0.014952493019460195, 0.014977289856971738, 0.01500208669448328, 0.015026883531994821, 0.015051680369506364, 0.015076477207017906, 0.015101274044529451, 0.015126070882040994, 0.015150867719552536, 0.015175664557064077, 0.01520046139457562, 0.015225258232087162, 0.015250055069598707, 0.015274851907110249, 0.015299648744621792, 0.015324445582133334, 0.015349242419644875, 0.015374039257156418, 0.01539883609466796, 0.015423632932179505, 0.015448429769691047, 0.01547322660720259, 0.015498023444714131, 0.015522820282225673, 0.015547617119737216, 0.015572413957248761, 0.015597210794760303, 0.015622007632271845, 0.015646804469783386, 0.01567160130729493, 0.015696398144806473, 0.015721194982318016, 0.01574599181982956, 0.0157707886573411, 0.015795585494852642, 0.015820382332364186, 0.015845179169875726, 0.015869976007387272, 0.015894772844898816, 0.015919569682410355, 0.0159443665199219, 0.015969163357433442, 0.015993960194944982, 0.016018757032456525, 0.016043553869968072, 0.01606835070747961, 0.016093147544991155, 0.0161179443825027, 0.016142741220014238, 0.01616753805752578, 0.016192334895037325, 0.016217131732548868, 0.01624192857006041, 0.01626672540757195, 0.016291522245083494, 0.016316319082595038, 0.01634111592010658, 0.016365912757618124, 0.016390709595129668, 0.016415506432641207, 0.01644030327015275, 0.016465100107664294, 0.016489896945175837, 0.01651469378268738, 0.01653949062019892, 0.016564287457710464, 0.016589084295222007, 0.016613881132733547, 0.01663867797024509, 0.016663474807756637, 0.016688271645268177, 0.01671306848277972, 0.016737865320291263, 0.016762662157802803, 0.016787458995314346, 0.01681225583282589, 0.016837052670337433, 0.016861849507848976, 0.016886646345360516, 0.01691144318287206, 0.016936240020383603, 0.016961036857895146, 0.01698583369540669, 0.017010630532918233, 0.017035427370429772, 0.017060224207941316, 0.01708502104545286, 0.017109817882964402, 0.017134614720475946, 0.017159411557987485, 0.01718420839549903, 0.017209005233010572, 0.017233802070522112, 0.017258598908033655, 0.017283395745545202, 0.017308192583056742, 0.017332989420568285, 0.01735778625807983, 0.017382583095591368, 0.01740737993310291, 0.017432176770614455, 0.017456973608125998, 0.01748177044563754, 0.01750656728314908, 0.017531364120660625, 0.017556160958172168, 0.01758095779568371, 0.017605754633195254, 0.017630551470706798, 0.017655348308218338, 0.01768014514572988, 0.017704941983241424, 0.017729738820752967, 0.01775453565826451, 0.01777933249577605, 0.017804129333287594, 0.017828926170799137, 0.017853723008310677, 0.01787851984582222, 0.017903316683333767, 0.017928113520845307, 0.01795291035835685, 0.017977707195868393, 0.018002504033379933, 0.018027300870891477, 0.018052097708403023, 0.018076894545914563, 0.018101691383426106, 0.01812648822093765, 0.01815128505844919, 0.018176081895960733, 0.018200878733472276, 0.01822567557098382, 0.018250472408495363, 0.018275269246006903, 0.018300066083518446, 0.01832486292102999, 0.018349659758541532, 0.018374456596053076, 0.01839925343356462, 0.01842405027107616, 0.018448847108587702, 0.018473643946099245, 0.01849844078361079, 0.018523237621122332, 0.018548034458633872, 0.018572831296145415, 0.01859762813365696, 0.0186224249711685, 0.01864722180868004, 0.01867201864619159, 0.018696815483703128, 0.01872161232121467, 0.018746409158726215, 0.018771205996237755, 0.018796002833749298, 0.01882079967126084, 0.018845596508772385, 0.018870393346283928, 0.018895190183795468, 0.01891998702130701, 0.018944783858818554, 0.018969580696330098, 0.01899437753384164, 0.019019174371353184, 0.019043971208864724, 0.019068768046376267, 0.01909356488388781, 0.019118361721399354, 0.019143158558910897, 0.019167955396422437, 0.01919275223393398, 0.019217549071445524, 0.019242345908957063, 0.019267142746468607, 0.019291939583980153, 0.019316736421491693, 0.019341533259003237, 0.01936633009651478, 0.01939112693402632, 0.019415923771537863, 0.019440720609049406, 0.01946551744656095, 0.019490314284072493, 0.019515111121584033, 0.019539907959095576, 0.01956470479660712, 0.019589501634118663, 0.019614298471630206, 0.01963909530914175, 0.01966389214665329, 0.019688688984164832, 0.019713485821676376, 0.01973828265918792, 0.019763079496699462, 0.019787876334211005, 0.019812673171722545, 0.01983747000923409, 0.019862266846745632, 0.01988706368425717, 0.01991186052176872, 0.01993665735928026, 0.0199614541967918, 0.019986251034303345, 0.020011047871814885, 0.020035844709326428, 0.020060641546837975, 0.020085438384349515, 0.020110235221861058, 0.0201350320593726, 0.02015982889688414, 0.020184625734395684, 0.020209422571907228, 0.02023421940941877, 0.020259016246930314, 0.020283813084441854, 0.020308609921953397, 0.02033340675946494, 0.020358203596976484, 0.020383000434488027, 0.02040779727199957, 0.02043259410951111, 0.020457390947022654, 0.020482187784534197, 0.020506984622045737, 0.020531781459557284, 0.020556578297068823, 0.020581375134580367, 0.02060617197209191, 0.02063096880960345, 0.020655765647114993, 0.02068056248462654, 0.02070535932213808, 0.020730156159649623, 0.020754952997161166, 0.020779749834672706, 0.02080454667218425, 0.020829343509695793, 0.020854140347207336, 0.02087893718471888, 0.02090373402223042, 0.020928530859741962, 0.020953327697253506, 0.02097812453476505, 0.021002921372276592, 0.021027718209788136, 0.021052515047299675, 0.02107731188481122, 0.021102108722322762, 0.021126905559834302, 0.02115170239734585, 0.02117649923485739, 0.02120129607236893, 0.021226092909880475, 0.021250889747392015, 0.021275686584903558, 0.021300483422415105, 0.021325280259926645, 0.021350077097438188, 0.02137487393494973, 0.02139967077246127, 0.021424467609972814, 0.02144926444748436, 0.0214740612849959, 0.021498858122507444, 0.021523654960018988, 0.021548451797530527, 0.02157324863504207, 0.021598045472553614, 0.021622842310065157, 0.0216476391475767, 0.02167243598508824, 0.021697232822599784, 0.021722029660111327, 0.021746826497622867, 0.021771623335134414, 0.021796420172645957, 0.021821217010157497, 0.02184601384766904, 0.021870810685180583, 0.021895607522692123, 0.02192040436020367, 0.02194520119771521, 0.021969998035226753, 0.021994794872738296, 0.022019591710249836, 0.02204438854776138, 0.022069185385272926, 0.022093982222784466, 0.02211877906029601, 0.022143575897807553, 0.022168372735319092, 0.022193169572830636, 0.02221796641034218, 0.022242763247853722, 0.022267560085365266, 0.022292356922876806, 0.02231715376038835, 0.022341950597899892, 0.022366747435411432, 0.02239154427292298, 0.022416341110434522, 0.022441137947946062, 0.022465934785457605, 0.02249073162296915, 0.022515528460480688, 0.022540325297992235, 0.022565122135503775, 0.022589918973015318, 0.02261471581052686, 0.0226395126480384, 0.022664309485549945, 0.02268910632306149, 0.02271390316057303, 0.022738699998084574, 0.022763496835596118, 0.022788293673107658, 0.0228130905106192, 0.022837887348130744, 0.022862684185642287, 0.022887481023153827, 0.02291227786066537, 0.022937074698176917, 0.022961871535688457, 0.0229866683732, 0.02301146521071154, 0.023036262048223087, 0.023061058885734623, 0.02308585572324617, 0.023110652560757717, 0.023135449398269253, 0.0231602462357808, 0.02318504307329234, 0.023209839910803883, 0.02323463674831543, 0.02325943358582697, 0.023284230423338513, 0.023309027260850053, 0.023333824098361596, 0.023358620935873136, 0.023383417773384683, 0.023408214610896226, 0.023433011448407766, 0.023457808285919313, 0.02348260512343085, 0.023507401960942396, 0.02353219879845394, 0.02355699563596548, 0.023581792473477026, 0.023606589310988565, 0.02363138614850011, 0.02365618298601165, 0.023680979823523192, 0.02370577666103474, 0.02373057349854628, 0.023755370336057822, 0.02378016717356936, 0.02380496401108091, 0.023829760848592445, 0.02385455768610399, 0.023879354523615535, 0.023904151361127075, 0.02392894819863862, 0.02395374503615016, 0.023978541873661705, 0.02400333871117325, 0.024028135548684788, 0.024052932386196334, 0.024077729223707874, 0.024102526061219418, 0.024127322898730957, 0.024152119736242504, 0.024176916573754047, 0.024201713411265587, 0.02422651024877713, 0.02425130708628867, 0.024276103923800217, 0.024300900761311757, 0.0243256975988233, 0.024350494436334847, 0.024375291273846383, 0.02440008811135793, 0.02442488494886947, 0.024449681786381013, 0.02447447862389256, 0.0244992754614041, 0.024524072298915643, 0.024548869136427183, 0.024573665973938726, 0.024598462811450266, 0.024623259648961813, 0.024648056486473356, 0.024672853323984896, 0.024697650161496443, 0.02472244699900798, 0.024747243836519526, 0.02477204067403107, 0.02479683751154261, 0.024821634349054156, 0.024846431186565696, 0.02487122802407724, 0.02489602486158878, 0.024920821699100322, 0.02494561853661187, 0.02497041537412341, 0.024995212211634952, 0.025020009049146492, 0.02504480588665804, 0.025069602724169575, 0.02509439956168112, 0.02511919639919267, 0.025143993236704205, 0.02516879007421575, 0.02519358691172729, 0.025218383749238835, 0.02524318058675038, 0.02526797742426192, 0.025292774261773465, 0.025317571099285004, 0.025342367936796548, 0.025367164774308087, 0.025391961611819634, 0.025416758449331178, 0.025441555286842717, 0.025466352124354264, 0.0254911489618658, 0.025515945799377347, 0.025540742636888887, 0.02556553947440043, 0.025590336311911977, 0.025615133149423517, 0.02563992998693506, 0.0256647268244466, 0.025689523661958143, 0.02571432049946969, 0.02573911733698123, 0.025763914174492773, 0.025788711012004313, 0.02581350784951586, 0.025838304687027396, 0.025863101524538943, 0.025887898362050486, 0.025912695199562026, 0.025937492037073573, 0.025962288874585113, 0.025987085712096656, 0.026011882549608203, 0.02603667938711974, 0.026061476224631286, 0.026086273062142826, 0.02611106989965437, 0.02613586673716591, 0.026160663574677456, 0.026185460412189, 0.02621025724970054, 0.026235054087212082, 0.026259850924723622, 0.02628464776223517, 0.02630944459974671, 0.02633424143725825, 0.0263590382747698, 0.026383835112281335, 0.02640863194979288, 0.02643342878730442, 0.026458225624815965, 0.02648302246232751, 0.02650781929983905, 0.026532616137350595, 0.026557412974862134, 0.026582209812373678, 0.026607006649885218, 0.026631803487396764, 0.026656600324908308, 0.026681397162419847, 0.026706193999931394, 0.02673099083744293, 0.026755787674954477, 0.026780584512466017, 0.02680538134997756, 0.026830178187489107, 0.026854975025000647, 0.02687977186251219, 0.02690456870002373, 0.026929365537535277, 0.02695416237504682, 0.02697895921255836, 0.027003756050069903, 0.027028552887581443, 0.02705334972509299, 0.02707814656260453, 0.027102943400116073, 0.02712774023762762, 0.027152537075139156, 0.027177333912650703, 0.027202130750162243, 0.027226927587673786, 0.027251724425185333, 0.027276521262696873, 0.027301318100208416, 0.027326114937719956, 0.0273509117752315, 0.02737570861274304, 0.027400505450254586, 0.02742530228776613, 0.02745009912527767, 0.027474895962789216, 0.027499692800300752, 0.0275244896378123, 0.02754928647532384, 0.027574083312835382, 0.02759888015034693, 0.02762367698785847, 0.02764847382537001, 0.02767327066288155, 0.027698067500393095, 0.02772286433790464, 0.02774766117541618, 0.027772458012927725, 0.027797254850439265, 0.02782205168795081, 0.027846848525462348, 0.027871645362973894, 0.027896442200485438, 0.027921239037996978, 0.027946035875508524, 0.027970832713020064, 0.027995629550531607, 0.028020426388043147, 0.02804522322555469, 0.028070020063066237, 0.028094816900577777, 0.02811961373808932, 0.02814441057560086, 0.028169207413112407, 0.02819400425062395, 0.02821880108813549, 0.028243597925647033, 0.028268394763158573, 0.02829319160067012, 0.02831798843818166, 0.028342785275693203, 0.02836758211320475, 0.028392378950716286, 0.028417175788227833, 0.028441972625739373, 0.028466769463250916, 0.028491566300762463, 0.028516363138274003, 0.028541159975785546, 0.028565956813297086, 0.028590753650808633, 0.02861555048832017, 0.028640347325831716, 0.02866514416334326, 0.0286899410008548, 0.028714737838366346, 0.028739534675877886, 0.02876433151338943, 0.02878912835090097, 0.028813925188412512, 0.02883872202592406, 0.0288635188634356, 0.028888315700947142, 0.02891311253845868, 0.02893790937597023, 0.02896270621348177, 0.02898750305099331, 0.029012299888504855, 0.029037096726016395, 0.02906189356352794, 0.02908669040103948, 0.029111487238551025, 0.02913628407606257, 0.029161080913574108, 0.029185877751085654, 0.029210674588597194, 0.029235471426108738, 0.029260268263620284, 0.029285065101131824, 0.029309861938643367, 0.029334658776154907, 0.02935945561366645, 0.02938425245117799, 0.029409049288689537, 0.02943384612620108, 0.02945864296371262, 0.029483439801224167, 0.029508236638735703, 0.02953303347624725, 0.02955783031375879, 0.029582627151270333, 0.02960742398878188, 0.02963222082629342, 0.029657017663804963, 0.029681814501316503, 0.029706611338828046, 0.029731408176339593, 0.029756205013851133, 0.029781001851362676, 0.029805798688874216, 0.029830595526385763, 0.0298553923638973, 0.029880189201408846, 0.02990498603892039, 0.02992978287643193, 0.029954579713943476, 0.029979376551455016, 0.03000417338896656, 0.0300289702264781, 0.030053767063989642, 0.03007856390150119, 0.03010336073901273, 0.030128157576524272, 0.030152954414035812, 0.03017775125154736, 0.030202548089058902, 0.03022734492657044, 0.03025214176408199, 0.030276938601593525, 0.03030173543910507, 0.03032653227661661, 0.030351329114128155, 0.0303761259516397, 0.03040092278915124, 0.030425719626662785, 0.030450516464174324, 0.030475313301685868, 0.030500110139197414, 0.030524906976708954, 0.030549703814220498, 0.030574500651732037, 0.030599297489243584, 0.03062409432675512, 0.030648891164266667, 0.03067368800177821, 0.03069848483928975, 0.030723281676801297, 0.030748078514312837, 0.03077287535182438, 0.03079767218933592, 0.030822469026847463, 0.03084726586435901, 0.03087206270187055, 0.030896859539382093, 0.030921656376893633, 0.03094645321440518, 0.030971250051916723, 0.030996046889428263, 0.031020843726939806, 0.031045640564451346, 0.031070437401962893, 0.031095234239474433, 0.031120031076985976, 0.031144827914497523, 0.03116962475200906, 0.031194421589520606, 0.031219218427032146, 0.03124401526454369, 0.03126881210205523, 0.03129360893956677, 0.03131840577707832, 0.03134320261458986, 0.031367999452101405, 0.031392796289612945, 0.031417593127124485, 0.03144238996463603, 0.03146718680214757, 0.03149198363965912, 0.03151678047717066, 0.0315415773146822, 0.03156637415219374, 0.031591170989705285, 0.03161596782721683, 0.03164076466472837, 0.03166556150223992, 0.03169035833975145, 0.031715155177263, 0.031739952014774545, 0.031764748852286084, 0.03178954568979763, 0.03181434252730917, 0.03183913936482071, 0.03186393620233225, 0.0318887330398438, 0.031913529877355344, 0.031938326714866884, 0.031963123552378424, 0.031987920389889964, 0.03201271722740151, 0.03203751406491305, 0.0320623109024246, 0.032087107739936144, 0.03211190457744768, 0.03213670141495922, 0.03216149825247076, 0.03218629508998231, 0.03221109192749386, 0.0322358887650054, 0.032260685602516936, 0.032285482440028476, 0.03231027927754002, 0.03233507611505156, 0.03235987295256311, 0.03238466979007465, 0.03240946662758619, 0.032434263465097736, 0.032459060302609276, 0.03248385714012082, 0.03250865397763236, 0.0325334508151439, 0.03255824765265545, 0.03258304449016699, 0.032607841327678536, 0.032632638165190075, 0.032657435002701615, 0.03268223184021316, 0.0327070286777247, 0.03273182551523625, 0.03275662235274779, 0.032781419190259335, 0.03280621602777087, 0.032831012865282415, 0.03285580970279396, 0.0328806065403055, 0.03290540337781705, 0.03293020021532859, 0.03295499705284013, 0.032979793890351675, 0.033004590727863214, 0.03302938756537476, 0.0330541844028863, 0.03307898124039784, 0.03310377807790938, 0.03312857491542093, 0.033153371752932474, 0.033178168590444014, 0.033202965427955554, 0.033227762265467094, 0.03325255910297864, 0.03327735594049018, 0.03330215277800173, 0.033326949615513274, 0.03335174645302481, 0.033376543290536353, 0.03340134012804789, 0.03342613696555944, 0.03345093380307099, 0.03347573064058253, 0.033500527478094067, 0.033525324315605606, 0.03355012115311715, 0.03357491799062869, 0.03359971482814024, 0.03362451166565178, 0.03364930850316332, 0.033674105340674866, 0.033698902178186406, 0.03372369901569795, 0.03374849585320949, 0.03377329269072103, 0.03379808952823258, 0.03382288636574412, 0.033847683203255666, 0.033872480040767206, 0.03389727687827875, 0.03392207371579029, 0.03394687055330183, 0.03397166739081338, 0.03399646422832492, 0.034021261065836465, 0.034046057903348005, 0.034070854740859545, 0.03409565157837109, 0.03412044841588263, 0.03414524525339418, 0.03417004209090572, 0.03419483892841726, 0.034219635765928805, 0.034244432603440345, 0.03426922944095189, 0.03429402627846343, 0.03431882311597497, 0.03434361995348651, 0.03436841679099806, 0.034393213628509604, 0.034418010466021144, 0.03444280730353269, 0.034467604141044224, 0.03449240097855577, 0.03451719781606731, 0.03454199465357886, 0.034566791491090404, 0.034591588328601944, 0.034616385166113484, 0.03464118200362502, 0.03466597884113657, 0.03469077567864812, 0.03471557251615966, 0.0347403693536712, 0.034765166191182736, 0.03478996302869428, 0.03481475986620582, 0.03483955670371737, 0.03486435354122891, 0.03488915037874045, 0.034913947216251996, 0.034938744053763536, 0.03496354089127508, 0.03498833772878663, 0.03501313456629816, 0.03503793140380971, 0.03506272824132125, 0.035087525078832796, 0.035112321916344336, 0.03513711875385588, 0.03516191559136742, 0.03518671242887896, 0.03521150926639051, 0.03523630610390205, 0.035261102941413595, 0.035285899778925135, 0.035310696616436675, 0.03533549345394822, 0.03536029029145976, 0.03538508712897131, 0.03540988396648285, 0.03543468080399439, 0.035459477641505935, 0.035484274479017475, 0.03550907131652902, 0.03553386815404056, 0.0355586649915521, 0.03558346182906364, 0.03560825866657519, 0.035633055504086734, 0.035657852341598274, 0.03568264917910982, 0.035707446016621354, 0.0357322428541329, 0.03575703969164444, 0.03578183652915599, 0.035806633366667534, 0.035831430204179074, 0.035856227041690614, 0.035881023879202154, 0.0359058207167137, 0.03593061755422525, 0.03595541439173679, 0.03598021122924833, 0.03600500806675987, 0.03602980490427141, 0.03605460174178295, 0.0360793985792945, 0.03610419541680605, 0.03612899225431758, 0.036153789091829126, 0.036178585929340666, 0.03620338276685221, 0.03622817960436376, 0.0362529764418753, 0.03627777327938684, 0.03630257011689838, 0.036327366954409926, 0.036352163791921466, 0.03637696062943301, 0.03640175746694455, 0.03642655430445609, 0.03645135114196764, 0.03647614797947918, 0.036500944816990726, 0.036525741654502265, 0.036550538492013805, 0.03657533532952535, 0.03660013216703689, 0.03662492900454844, 0.03664972584205998, 0.03667452267957152, 0.036699319517083065, 0.036724116354594605, 0.03674891319210615, 0.03677371002961769, 0.03679850686712924, 0.03682330370464077, 0.03684810054215232, 0.036872897379663865, 0.036897694217175404, 0.03692249105468695, 0.03694728789219849, 0.03697208472971003, 0.03699688156722157, 0.03702167840473312, 0.037046475242244664, 0.037071272079756204, 0.037096068917267744, 0.037120865754779284, 0.03714566259229083, 0.03717045942980238, 0.03719525626731392, 0.03722005310482546, 0.037244849942337, 0.03726964677984854, 0.03729444361736008, 0.03731924045487163, 0.03734403729238318, 0.03736883412989471, 0.037393630967406256, 0.037418427804917796, 0.03744322464242934, 0.03746802147994089, 0.03749281831745243, 0.03751761515496397, 0.03754241199247551, 0.037567208829987056, 0.037592005667498596, 0.03761680250501014, 0.03764159934252168, 0.03766639618003322, 0.03769119301754477, 0.03771598985505631, 0.037740786692567856, 0.037765583530079395, 0.037790380367590935, 0.03781517720510248, 0.03783997404261402, 0.03786477088012557, 0.03788956771763711, 0.037914364555148655, 0.037939161392660195, 0.037963958230171735, 0.03798875506768328, 0.03801355190519482, 0.03803834874270637, 0.03806314558021791, 0.03808794241772945, 0.038112739255240995, 0.038137536092752534, 0.03816233293026408, 0.03818712976777562, 0.03821192660528716, 0.0382367234427987, 0.03826152028031025, 0.038286317117821794, 0.038311113955333334, 0.038335910792844874, 0.038360707630356414, 0.03838550446786796, 0.03841030130537951, 0.03843509814289105, 0.038459894980402594, 0.03848469181791413, 0.038509488655425674, 0.03853428549293721, 0.03855908233044876, 0.03858387916796031, 0.03860867600547185, 0.038633472842983387, 0.038658269680494926, 0.03868306651800647, 0.03870786335551802, 0.03873266019302956, 0.0387574570305411, 0.03878225386805264, 0.038807050705564186, 0.038831847543075726, 0.03885664438058727, 0.03888144121809881, 0.03890623805561035, 0.0389310348931219, 0.03895583173063344, 0.038980628568144986, 0.039005425405656526, 0.039030222243168065, 0.03905501908067961, 0.03907981591819115, 0.0391046127557027, 0.03912940959321424, 0.039154206430725785, 0.039179003268237325, 0.039203800105748865, 0.03922859694326041, 0.03925339378077195, 0.0392781906182835, 0.03930298745579504, 0.03932778429330658, 0.039352581130818125, 0.039377377968329665, 0.03940217480584121, 0.03942697164335275, 0.03945176848086429, 0.03947656531837583, 0.03950136215588738, 0.039526158993398924, 0.039550955830910464, 0.03957575266842201, 0.039600549505933544, 0.03962534634344509, 0.03965014318095664, 0.03967494001846818, 0.039699736855979724, 0.039724533693491264, 0.039749330531002804, 0.03977412736851434, 0.03979892420602589, 0.03982372104353744, 0.03984851788104898, 0.03987331471856052, 0.039898111556072056, 0.0399229083935836, 0.03994770523109515, 0.03997250206860669, 0.03999729890611823, 0.04002209574362977, 0.040046892581141316, 0.040071689418652856, 0.0400964862561644, 0.04012128309367595, 0.04014607993118748, 0.04017087676869903, 0.04019567360621057, 0.040220470443722116, 0.040245267281233656, 0.0402700641187452, 0.04029486095625674, 0.04031965779376828, 0.04034445463127983, 0.04036925146879137, 0.040394048306302915, 0.040418845143814455, 0.040443641981325995, 0.04046843881883754, 0.04049323565634908, 0.04051803249386063, 0.04054282933137217, 0.04056762616888371, 0.040592423006395255, 0.040617219843906795, 0.04064201668141834, 0.04066681351892988, 0.04069161035644142, 0.04071640719395297, 0.04074120403146451, 0.040766000868976054, 0.040790797706487594, 0.04081559454399914, 0.040840391381510674, 0.04086518821902222, 0.04088998505653377, 0.04091478189404531, 0.040939578731556854, 0.040964375569068394, 0.040989172406579934, 0.041013969244091474, 0.04103876608160302, 0.04106356291911457, 0.04108835975662611, 0.04111315659413765, 0.04113795343164919, 0.04116275026916073, 0.04118754710667228, 0.04121234394418382, 0.04123714078169537, 0.0412619376192069, 0.041286734456718446, 0.041311531294229986, 0.04133632813174153, 0.04136112496925308, 0.04138592180676462, 0.04141071864427616, 0.0414355154817877, 0.041460312319299246, 0.041485109156810786, 0.04150990599432233, 0.04153470283183387, 0.04155949966934541, 0.04158429650685696, 0.0416090933443685, 0.041633890181880046, 0.041658687019391585, 0.041683483856903125, 0.04170828069441467, 0.04173307753192621, 0.04175787436943776, 0.0417826712069493, 0.04180746804446084, 0.041832264881972385, 0.041857061719483925, 0.04188185855699547, 0.04190665539450701, 0.04193145223201856, 0.0419562490695301, 0.04198104590704164, 0.042005842744553185, 0.042030639582064724, 0.04205543641957627, 0.04208023325708781, 0.04210503009459935, 0.0421298269321109, 0.04215462376962244, 0.042179420607133984, 0.042204217444645524, 0.042229014282157064, 0.042253811119668604, 0.04227860795718015, 0.0423034047946917, 0.04232820163220324, 0.04235299846971478, 0.04237779530722632, 0.04240259214473786, 0.04242738898224941, 0.04245218581976095, 0.0424769826572725, 0.04250177949478403, 0.042526576332295576, 0.042551373169807116, 0.04257617000731866, 0.04260096684483021, 0.04262576368234175, 0.04265056051985329, 0.04267535735736483, 0.042700154194876376, 0.042724951032387916, 0.04274974786989946, 0.042774544707411, 0.04279934154492254, 0.04282413838243409, 0.04284893521994563, 0.042873732057457176, 0.04289852889496872, 0.042923325732480255, 0.0429481225699918, 0.04297291940750334, 0.04299771624501489, 0.04302251308252643, 0.043047309920037975, 0.043072106757549515, 0.043096903595061055, 0.0431217004325726, 0.04314649727008414, 0.04317129410759569, 0.04319609094510723, 0.04322088778261877, 0.043245684620130315, 0.043270481457641854, 0.0432952782951534, 0.04332007513266494, 0.04334487197017648, 0.04336966880768803, 0.04339446564519957, 0.043419262482711114, 0.043444059320222654, 0.043468856157734194, 0.043493652995245734, 0.04351844983275728, 0.04354324667026883, 0.04356804350778037, 0.043592840345291914, 0.04361763718280345, 0.043642434020314994, 0.04366723085782654, 0.04369202769533808, 0.04371682453284963, 0.04374162137036117, 0.04376641820787271, 0.043791215045384246, 0.04381601188289579, 0.04384080872040734, 0.04386560555791888, 0.04389040239543042, 0.04391519923294196, 0.043939996070453506, 0.043964792907965046, 0.04398958974547659, 0.04401438658298813, 0.04403918342049967, 0.04406398025801122, 0.04408877709552276, 0.044113573933034306, 0.04413837077054585, 0.044163167608057385, 0.04418796444556893, 0.04421276128308047, 0.04423755812059202, 0.04426235495810356, 0.044287151795615105, 0.044311948633126645, 0.044336745470638185, 0.04436154230814973, 0.04438633914566127, 0.04441113598317282, 0.04443593282068436, 0.0444607296581959, 0.044485526495707445, 0.044510323333218985, 0.04453512017073053, 0.04455991700824207, 0.04458471384575361, 0.04460951068326516, 0.0446343075207767, 0.044659104358288244, 0.044683901195799784, 0.04470869803331133, 0.044733494870822864, 0.04475829170833441, 0.04478308854584596, 0.0448078853833575, 0.044832682220869044, 0.044857479058380584, 0.044882275895892124, 0.04490707273340367, 0.04493186957091521, 0.04495666640842676, 0.0449814632459383, 0.04500626008344984, 0.045031056920961376, 0.04505585375847292, 0.04508065059598447, 0.04510544743349601, 0.04513024427100755, 0.04515504110851909, 0.045179837946030636, 0.045204634783542176, 0.04522943162105372, 0.04525422845856527, 0.0452790252960768, 0.04530382213358835, 0.04532861897109989, 0.045353415808611436, 0.04537821264612298, 0.04540300948363452, 0.04542780632114606, 0.0454526031586576, 0.04547739999616915, 0.04550219683368069, 0.045526993671192235, 0.045551790508703775, 0.045576587346215315, 0.04560138418372686, 0.0456261810212384, 0.04565097785874995, 0.04567577469626149, 0.04570057153377303, 0.045725368371284575, 0.045750165208796115, 0.04577496204630766, 0.0457997588838192, 0.04582455572133074, 0.04584935255884229, 0.04587414939635383, 0.045898946233865374, 0.045923743071376914, 0.04594853990888846, 0.045973336746399994, 0.04599813358391154, 0.04602293042142309, 0.04604772725893463, 0.046072524096446174, 0.046097320933957714, 0.046122117771469254, 0.0461469146089808, 0.04617171144649234, 0.04619650828400389, 0.04622130512151543, 0.04624610195902697, 0.04627089879653851, 0.04629569563405005, 0.0463204924715616, 0.04634528930907314, 0.04637008614658469, 0.04639488298409622, 0.046419679821607766, 0.046444476659119306, 0.04646927349663085, 0.0464940703341424, 0.04651886717165394, 0.04654366400916548, 0.04656846084667702, 0.046593257684188566, 0.04661805452170011, 0.04664285135921165, 0.04666764819672319, 0.04669244503423473, 0.04671724187174628, 0.04674203870925782, 0.046766835546769366, 0.046791632384280905, 0.046816429221792445, 0.04684122605930399, 0.04686602289681553, 0.04689081973432708, 0.046915616571838625, 0.04694041340935016, 0.046965210246861705, 0.046990007084373245, 0.04701480392188479, 0.04703960075939633, 0.04706439759690788, 0.04708919443441942, 0.04711399127193096, 0.047138788109442505, 0.047163584946954044, 0.04718838178446559, 0.04721317862197713, 0.04723797545948867, 0.04726277229700022, 0.04728756913451176, 0.047312365972023304, 0.047337162809534844, 0.047361959647046384, 0.04738675648455793, 0.04741155332206947, 0.04743635015958102, 0.04746114699709256, 0.0474859438346041, 0.04751074067211564, 0.04753553750962718, 0.04756033434713873, 0.04758513118465027, 0.04760992802216182, 0.04763472485967335, 0.047659521697184896, 0.04768431853469644, 0.04770911537220798, 0.04773391220971953, 0.04775870904723107, 0.04778350588474261, 0.04780830272225415, 0.047833099559765696, 0.04785789639727724, 0.04788269323478878, 0.04790749007230032, 0.04793228690981186, 0.04795708374732341, 0.04798188058483495, 0.048006677422346496, 0.04803147425985804, 0.048056271097369575, 0.04808106793488112, 0.04810586477239266, 0.04813066160990421, 0.048155458447415755, 0.048180255284927295, 0.048205052122438835, 0.048229848959950375, 0.04825464579746192, 0.04827944263497346, 0.04830423947248501, 0.04832903630999655, 0.04835383314750809, 0.048378629985019635, 0.048403426822531175, 0.04842822366004272, 0.04845302049755426, 0.0484778173350658, 0.04850261417257735, 0.04852741101008889, 0.048552207847600434, 0.048577004685111974, 0.048601801522623514, 0.04862659836013506, 0.0486513951976466, 0.04867619203515815, 0.04870098887266969, 0.048725785710181234, 0.04875058254769277, 0.048775379385204314, 0.04880017622271586, 0.0488249730602274, 0.04884976989773895, 0.04887456673525049, 0.04889936357276203, 0.04892416041027357, 0.04894895724778511, 0.04897375408529666, 0.0489985509228082, 0.04902334776031974, 0.04904814459783128, 0.049072941435342826, 0.04909773827285437, 0.04912253511036591, 0.04914733194787745, 0.04917212878538899, 0.04919692562290054, 0.04922172246041208, 0.049246519297923626, 0.04927131613543517, 0.049296112972946705, 0.04932090981045825, 0.04934570664796979, 0.04937050348548134, 0.049395300322992886, 0.049420097160504425, 0.049444893998015965, 0.049469690835527505, 0.049494487673039045, 0.0495192845105506, 0.04954408134806214, 0.04956887818557368, 0.049593675023085225, 0.049618471860596765, 0.049643268698108305, 0.049668065535619844, 0.04969286237313139, 0.04971765921064293, 0.04974245604815447, 0.049767252885666025, 0.049792049723177564, 0.049816846560689104, 0.049841643398200644, 0.04986644023571219, 0.04989123707322373, 0.04991603391073527, 0.049940830748246824, 0.049965627585758364, 0.0499904244232699, 0.05001522126078145, 0.05004001809829299, 0.05006481493580453, 0.05008961177331607, 0.05011440861082762, 0.05013920544833916, 0.050164002285850696, 0.05018879912336225, 0.05021359596087379, 0.05023839279838533, 0.05026318963589687, 0.050287986473408416, 0.050312783310919956, 0.050337580148431496, 0.05036237698594305, 0.05038717382345459, 0.05041197066096612, 0.05043676749847766, 0.050461564335989216, 0.050486361173500756, 0.050511158011012296, 0.05053595484852384, 0.05056075168603538, 0.05058554852354692, 0.05061034536105846, 0.050635142198570016, 0.050659939036081555, 0.050684735873593095, 0.05070953271110464, 0.05073432954861618, 0.05075912638612772, 0.050783923223639275, 0.05080872006115081, 0.05083351689866235, 0.05085831373617389, 0.05088311057368544, 0.05090790741119698, 0.05093270424870852, 0.05095750108622007, 0.05098229792373161, 0.05100709476124315, 0.05103189159875469, 0.05105668843626624, 0.05108148527377778, 0.051106282111289314, 0.05113107894880087, 0.05115587578631241, 0.05118067262382395, 0.05120546946133549, 0.051230266298847034, 0.051255063136358574, 0.051279859973870114, 0.05130465681138167, 0.05132945364889321, 0.05135425048640475, 0.05137904732391629, 0.051403844161427834, 0.05142864099893937, 0.05145343783645091, 0.05147823467396247, 0.051503031511474, 0.05152782834898554, 0.05155262518649708, 0.05157742202400863 ], "y": [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.7103578900671073e-31, 0.00041937889737369085, 0.0016775155894947634, 0.003774410076363217, 0.006710062357978955, 0.010484472434342147, 0.015097640305452574, 0.020549565971310507, 0.026840249431915812, 0.03396969068726829, 0.04193788973736836, 0.050744846582215765, 0.060390561221810315, 0.07087503365615246, 0.08219826388524169, 0.09436025190907855, 0.10736099772766289, 0.1212005013409941, 0.13587876274907315, 0.15139578195189954, 0.16775155894947288, 0.184946093741794, 0.20297938632886195, 0.22185143671067784, 0.24156224488724118, 0.2621118108585511, 0.28350013462460927, 0.30572721618541454, 0.3287930555409666, 0.35269765269126674, 0.37744100763631355, 0.4030231203761084, 0.4294439909106506, 0.45670361923993946, 0.48480200536397655, 0.51373914928276, 0.5435150509962917, 0.5741297105045708, 0.6055831278075962, 0.6378753029053701, 0.6710062357978915, 0.7049759264851588, 0.7397843749671749, 0.7754315812439382, 0.811917545315449, 0.8492422671817071, 0.8874057468427113, 0.9264079842984643, 0.9662489795489633, 1.006928732594211, 1.048447243434206, 1.0908045120689474, 1.1340005384984368, 1.1780353227226736, 1.222908864741657, 1.2686211645553886, 1.3151722221638669, 1.3625620375670933, 1.4107906107650672, 1.4598579417577873, 1.509764030545256, 1.560508877127472, 1.6120924815044337, 1.6645148436761446, 1.7177759636426013, 1.7718758414038065, 1.8268144769597603, 1.8825918703104578, 1.939208021455906, 1.9966629303961008, 2.0549565971310413, 2.1140890216607313, 2.174060203985167, 2.2348701441043515, 2.521048272923501, 3.1332057276313, 3.7096198800259668, 4.250290730107465, 4.755218277875823, 5.224402523331027, 5.657843466473071, 6.055541107301966, 6.417495445817711, 6.743706482020297, 7.034174215909733, 7.288898647486019, 7.5078797767491485, 7.691117603699127, 7.838612128335946, 7.950363350659619, 8.026371270670133, 8.066635888367495, 8.07115720375171, 8.039935216822768, 7.972969927580671, 7.870261336025424, 7.880550642237631, 8.052279509051164, 8.224893025543002, 8.398391191713156, 8.572774007561623, 8.748041473088396, 8.924193588293486, 9.101230353176884, 9.279151767738593, 9.457957831978614, 9.637648545896942, 9.81822390949359, 9.999683922768547, 10.18202858572181, 10.365257898353391, 10.549371860663276, 10.73192693637683, 10.916096507921047, 11.102984364505037, 11.292590506128818, 11.484914932792364, 11.679957644495682, 11.877718641238797, 12.07819792302168, 12.281395489844343, 12.487311341706773, 12.695945478608984, 12.907297900550976, 13.12136860753275, 13.338157599554297, 13.557664876615616, 13.779890438716729, 14.004834285857601, 14.232496418038258, 14.462876835258696, 14.695975537518908, 14.931792524818896, 15.17032779715867, 15.411581354538207, 15.655553196957525, 15.90224332441664, 16.151651736915507, 16.40377843445416, 16.658623417032587, 16.916186684650807, 17.176468237308793, 17.439468075006545, 17.7051861977441, 17.973622605521413, 18.26411472504704, 18.599756684972263, 18.980593023789982, 19.406623741500194, 19.877848838102945, 20.394268313598193, 20.955882167985916, 21.50947291885127, 22.044356093334255, 22.599547790033615, 23.175048008949418, 23.770856750081695, 24.38697401343035, 25.023399798995435, 25.68013410677698, 26.357176936774916, 35.81176044410754, 38.275122252304925, 28.134394473190536, 28.49824762849465, 28.866799183851676, 29.24004913926167, 29.61799749472456, 30.000644250240377, 30.38798940580916, 30.72530009402971, 30.977567255668223, 31.231301843091913, 31.486503856300676, 31.743173295294586, 32.00131016007363, 32.26091445063777, 32.521986166987055, 32.78452530912147, 33.048531877040986, 33.31400587074567, 33.58094729023545, 33.84935613551038, 34.119232406570404, 34.39057610341557, 34.66338722604587, 34.93766577446128, 35.26471266560809, 35.64636695259578, 36.033321327108794, 36.42439552796994, 36.81958955517919, 37.21890340873657, 37.62233708864202, 38.02989059489558, 38.44156392749729, 38.85735708644706, 39.277270071744965, 39.701302883390966, 40.12945552138509, 40.5617279857273, 40.998120276417644, 41.438632393456075, 41.88326433684261, 42.33201610657729, 42.78488770266005, 43.24187912509091, 43.702990373869895, 44.16822144899699, 44.73989703961737, 45.568045244216414, 46.6228220935493, 47.43185437791181, 48.23954630055198, 49.04665954458543, 49.85702040692676, 50.671156870809426, 51.68005938771458, 52.93620063590192, 54.14161904216911, 55.29631460651622, 56.40028732894327, 57.453537209450175, 58.456064248036924, 59.40786844470367, 60.30894979945023, 61.18528363856107, 62.33841383722186, 63.193836805976176, 63.80797485855204, 64.26030201457846, 64.55081827405535, 64.67952363698271, 64.75716835503438, 65.00876930715951, 65.21989566632921, 65.60616213636365, 66.16128793557735, 66.78399982435616, 67.43238226293691, 68.10643525131975, 68.8061587895046, 69.53155287749144, 70.28261751528039, 71.05935270287127, 71.8617584402642, 72.68983472745919, 73.59838370428791, 75.15913812189606, 76.37593067487803, 77.24876136323374, 77.77763018696312, 77.96253714606625, 78.09854163723779, 78.6993496085363, 79.313535872011, 79.94110042766172, 80.58204327548852, 81.23636441549137, 81.90406384767032, 82.58514157202534, 83.2795975885564, 84.10186378197528, 85.29277808987449, 87.01445800763325, 88.38915293661024, 89.55681077926532, 90.73175914197411, 91.9139980247368, 93.10352742755346, 94.30034735042396, 95.50470955819345, 96.71718542544288, 97.93071148377474, 99.14430614281989, 100.35796940257842, 101.58014788385161, 102.81495615128848, 103.86301083142334, 104.7760971976819, 105.70321425513109, 106.64436200377116, 107.5995404436019, 108.56556370175014, 109.53721545136048, 110.66121483447439, 112.47486468017553, 114.10453864683386, 115.55023673444957, 116.81195894302247, 117.88970527255252, 118.78347572303994, 119.49327029448452, 120.16790465627024, 121.40568331476936, 122.66067348533294, 123.9328751679607, 125.22228836265289, 126.5289130694094, 127.85274928823016, 129.19378565877557, 130.55087834328683, 131.92326669635494, 133.31095071797978, 134.71393040816145, 136.72560493564947, 139.42172088758096, 142.0930721873993, 144.34039457649513, 146.60143789792966, 148.87620215170293, 151.16468733781508, 153.46731613841743, 155.78246359702575, 158.1084431598787, 160.4447594580638, 162.65137498205382, 164.66824201537395, 166.74196732182088, 168.88727266398587, 171.10415804186914, 173.39262345547047, 175.75190869613505, 178.16660014561575, 180.64282349516952, 183.31336029316802, 186.04448414346535, 197.83474873681092, 199.24451205767295, 200.90933668420647, 202.82922261641176, 205.08060865001764, 208.445456646032, 213.1054881200914, 219.42544486637516, 226.63073130791756, 233.0466439564549, 239.38642359258415, 245.74962589719394, 252.3520064323948, 262.55602431226146, 271.1658591131373, 276.69396550947516, 279.140343501275, 278.50493628746835, 274.75466968731877, 273.3708822355917, 274.8196065840952, 276.26503181672734, 277.70703971335763, 278.6858797880718, 279.40595464619537, 280.0514822833664, 280.56291393933344, 281.0060218091188, 281.41887567502175, 281.8014755370417, 282.15382139517885, 275.99597058945363, 272.43918766579526, 272.17035393335954, 272.70699185708867, 273.78041271204563, 274.7183688844338, 275.48876371086817, 276.1175747738498, 276.76814033119916, 277.4689613146495, 278.1896003604497, 279.2716074705908, 282.899704420665, 284.4866454432219, 284.02897334050346, 282.5506671418506, 283.0298269718513, 283.5754829523714, 283.2874164450735, 283.0349873420928, 283.0466083624132, 283.32227950603465, 283.8620007729575, 284.66577216318166, 283.3846637371659, 276.53599893114756, 274.2579012867816, 274.7517192068499, 275.1500383013208, 275.5004681523154, 291.62723336018087, 293.9432163696214, 272.5691040889762, 272.776283963418, 272.9936234126979, 273.2708181018866, 273.5616068408035, 273.8659896294488, 274.183966467822, 275.7994574825993, 277.7266096924266, 279.8583610764958, 282.19471163480716, 284.2875128655939, 284.2844493867599, 281.9838897592019, 279.4845598333999, 279.8955253444019, 282.206130699685, 287.110576481778, 287.6756365149259, 286.543045101298, 285.02389368120026, 283.32890685858183, 281.33443041867145, 278.5479788025993, 276.36248198742607, 275.90320720269267, 275.4810882525276, 275.075974834443, 274.68786694843845, 274.3167645945145, 273.9593740602091, 273.61438962346034, 273.3077057119806, 273.03932232577034, 272.8086416401991, 272.65769117703985, 272.54343519565543, 272.472488794894, 273.38725075778933, 274.7014505923323, 276.23786264594133, 277.69597090582664, 279.0670015626282, 280.39298078111244, 281.64606520792114, 282.6182022269845, 282.1151008193881, 280.705525511526, 279.2264396391727, 277.7231491347369, 276.195653998219, 275.0412936452544, 275.96290414338847, 279.7692076430491, 285.8118660242871, 285.76205579961027, 284.6180243188478, 282.37977158199953, 279.0472975890651, 274.9040020342742, 271.93550888304935, 267.2796202255879, 260.937313415995, 252.9085884542709, 247.8557483429802, 244.24927395672103, 240.6026285945535, 236.90796680310524, 233.3420712201521, 229.9425550962713, 226.84269557033466, 223.92364160755545, 221.1765961797836, 218.60155928701946, 216.19853092926272, 211.7526033967268, 206.60576562928068, 202.18512341098, 198.44792896978637, 195.29190121610475, 193.2698383038828, 191.90367992314327, 190.57792099862246, 189.29256153032034, 188.04761602323381, 186.8436431324956, 185.68092921454823, 184.55947426939167, 183.47927829702587, 182.4403412974507, 193.42644356198522, 177.79188990494737, 176.2932503668842, 175.3175904632294, 174.57097804675112, 173.5380599362356, 171.76557542683454, 169.95005084468926, 168.09148618979998, 166.18604680740538, 164.22276854094173, 162.73764990530572, 161.58199346887992, 160.5002301259877, 159.5082886901872, 158.60616916147876, 157.79387153986207, 157.07139582533733, 156.43874201790462, 155.89590792105955, 155.44293858056054, 155.0838442395476, 154.82108078605083, 154.65464822007007, 154.60246550975478, 154.56894565586967, 154.67597250311945, 155.55984176643813, 154.61011827563382, 151.36654327586456, 148.472297425704, 145.92563642829563, 143.7201132807949, 141.85512557549234, 140.30022964390605, 139.0416972974701, 138.0797613568486, 137.19696208694762, 136.34306278360853, 135.51806344683112, 134.72196407661542, 133.95476467296163, 133.2164652358696, 132.50706576533932, 131.82656626137086, 131.17496672396413, 130.5522671531191, 129.95846754883596, 129.29075506781152, 128.38224182193187, 127.50016936328431, 126.64453769186873, 125.8153468076851, 125.04632696155588, 124.3426950062256, 123.6751758746628, 123.04376956686755, 122.44847608283973, 121.90684741897554, 121.42650371770613, 120.99534662510322, 120.6133761411668, 120.28059226589679, 119.99699499929332, 119.76258434135622, 119.5773602920856, 119.4413228514814, 119.35494716572616, 119.31900919178271, 119.33351997420776, 119.3984795130014, 119.5138878081636, 119.67974485969432, 119.89605066759374, 120.20678198202911, 120.56684752203746, 120.92623736191935, 121.28495150167478, 121.64298994130375, 122.79505523875073, 124.03277440416797, 124.90195542654635, 125.4025983058857, 125.55433235434347, 125.64079289681315, 125.75503273575221, 125.89705187116068, 126.06685030303852, 126.23384107272202, 126.19675934425915, 126.17231232392572, 126.16050001172174, 126.16132240764718, 126.17477951170206, 126.21173144280085, 126.3550022384649, 126.36138592477668, 126.36639026955513, 126.40001575063032, 126.47140599502657, 126.58056100274425, 126.72748077378303, 126.89652292691285, 127.06722448106675, 127.24040880787001, 127.41607590732247, 127.59422577942415, 127.77485842417516, 127.95797384157545, 128.14357203162498, 128.3316529943238, 128.52221672967192, 128.71526323766923, 128.9107925183159, 129.10880457161178, 129.30929939755688, 129.51180920762323, 129.7122946475619, 129.90982437195385, 130.10439838079915, 130.29601667409776, 130.4846792518498, 130.67038611405513, 130.85313726071377, 131.16895957359137, 131.54290736542418, 131.88767364933054, 132.20325842531022, 132.48966169336325, 132.74688345348972, 132.9749237056897, 133.17378244996286, 133.34345968630953, 133.4839554147296, 133.50027019787834, 133.50701203069366, 133.52028904092583, 133.5489335757964, 133.5932950498996, 133.65317040363104, 133.7281763901008, 133.9055204382564, 134.6983874188764, 135.87693897437111, 137.44117510474035, 139.35356321828291, 141.1498103866971, 142.73601418271105, 144.18171444737672, 145.48813281365267, 146.65526928153903, 147.6831238510355, 148.57169652214205, 149.29795656873802, 150.06007687246617, 155.00099473772107, 158.54414182025437, 160.6071926566776, 160.71036146834123, 160.86499637880948, 161.0710973880823, 161.33024518335708, 161.65450898252075, 162.37390908230083, 163.42802636035287, 164.04432583128641, 164.3759498688964, 164.72052822519714, 165.06872830678876, 165.41659151854972, 165.76411786048, 166.11130733257966, 166.45815993484854, 166.8048193945286, 167.2014187008095, 167.61728325888225, 168.02742323858794, 168.43183863992644, 168.8305294628979, 169.22349570750205, 169.61073737373925, 169.99225446160935, 170.36804697111222, 170.73811490224807, 170.61193706572172, 168.61889907737748, 167.05690917348136, 165.76104905142947, 163.914581008185, 160.86939588386912, 157.54344350562272, 154.06855271773043, 150.48794123226227, 146.80171126339204, 143.00986281111972, 139.11239587544483, 135.10931045636835, 131.00031192605007, 126.78160392014847, 122.4568828212225, 118.02584747176027, 113.48816698914663, 100.6631817423889, 97.13869862097394, 93.79150342907461, 90.62159616669095, 87.62897683382295, 84.81464263809562, 82.19170805419012, 79.76423747764957, 77.53223090847364, 75.49568834666222, 73.65460979221555, 71.82206878933589, 69.87136130549258, 67.81381951289731, 65.64944341154967, 63.37823300144977, 61.000188282597556, 58.51530925499308, 55.92359591863631, 53.225048273526866, 50.4196663196655, 47.50745005705182, 44.48839948568583, 41.362514605567576, 37.4898444299455, 33.75259174290129, 30.557329401855224, 27.870591203453216, 25.69185278216413, 24.021114137987993, 24.119666388750407, 24.240943933301402, 24.364095662024912, 24.489279497105098, 24.616495438541975, 24.74574348633555, 24.877023640485803, 25.01033590099277, 25.145680267856434, 25.28305674107678, 25.422465320653814, 25.563906006587537, 25.707378798877947, 25.852883697525055, 26.000420702528874, 26.14998981388937, 26.30159103160656, 26.455224355680432, 26.610889786111006, 26.768587322898266, 26.928316966042217, 27.09007871554289, 27.253872571400226, 27.419698533614255, 27.587562322960864, 27.763420306692105, 27.939141299234752, 28.086705396635814, 28.215215666001953, 28.324672107333193, 28.415074720629534, 28.496155198444466, 28.65519855791364, 28.814696478877956, 28.97464896133743, 29.13505600529205, 29.295917610741785, 29.45723377768669, 29.619004506126725, 29.779800890917176, 29.94033547406395, 30.101291139849145, 30.26266788827277, 30.424465719334826, 30.58668463303531, 30.74932462937423, 30.912385708351575, 31.07586786996739, 31.23977111422161, 31.404095441114247, 31.56884085064534, 31.734007342814852, 31.89959491762279, 32.06560357506919, 32.23203331515399, 32.39888413787723, 32.56615604323891, 32.73384903123902, 32.901963101877556, 33.070498255154526, 33.23945449106996, 33.408831809623784, 33.578630210816065, 33.748849694646744, 33.91949026111589, 34.09055191022345, 34.26203464196947, 34.433938456353886, 34.60626335337674, 34.77900933303804, 34.952176395337766, 35.125764540275924, 35.36516286615085, 35.6086507071612, 35.84811541021081, 36.08355942203153, 36.31510856573466, 36.542833590180344, 36.76397839012892, 36.985405746344654, 37.208977264061396, 37.434692943279146, 37.66255278399794, 37.89255678621774, 38.12470494993857, 38.358997275160405, 38.5954337618833, 38.8340144101072, 39.074739219832104, 39.31760819105804, 39.562621323785024, 39.80977861801297, 40.05908007374201, 40.31052569097205, 40.56411546970309, 40.81984940993516, 41.07772751166824, 41.33774977490234, 41.59991619963748, 41.86422678587366, 42.13068153361085, 42.39928044284904, 42.67002351358824, 42.94291074582852, 43.21794213956978, 43.494996096969764, 43.77248450987899, 44.04991731537726, 44.327294513464516, 44.60461610414077, 44.88188208740604, 45.15906243084249, 45.43607374836788, 45.71291115173063, 45.98957464093067, 46.26606421596804, 46.54237987684275, 46.818521623554766, 47.09427232888978, 47.37096184091738, 47.648875062097446, 47.92801199242995, 48.20785500239401, 48.4872918389235, 48.76628551819468, 49.0448360402076, 49.322943404962196, 49.60060761245856, 49.89441604498034, 50.24899218121516, 50.61285303558605, 50.97679955611516, 51.34083262452806, 51.7064773975452, 52.07511839241055, 52.44675560912405, 52.82138904768575, 53.19901870809562, 53.57964459035368, 53.96326669445989, 54.349885020414284, 54.73949956821682, 55.1321362388824, 55.52789378478189, 55.92678184721518, 56.328800426182156, 56.733949521682895, 57.14222913371736, 57.55363926228557, 57.96817990738753, 58.38585106902329, 58.80665274719277, 59.23058494189596, 59.657647653132905, 60.087840880903606, 60.52116462520807, 60.95761888604624, 61.39720366341823, 61.840112499646345, 62.28738458109043, 62.73917423884723, 63.195481472916654, 63.656306283298775, 64.12164866999363, 64.59150863300107, 65.0658861723212, 65.54478128795402, 66.02870597841013, 66.5188132758501, 67.01496934277418, 67.51717417918242, 68.02542778507464, 68.53973016045097, 69.07308139159375, 69.62910513196024, 70.20723385924225, 70.8074675734398, 71.42980627455277, 72.07424996258125, 72.74079863752523, 73.42945229938468, 74.1402116697351, 74.87179907805665, 75.6171651963482, 76.34451061958696, 77.05751919706168, 77.75619092877237, 78.44052581471905, 79.11052385490171, 79.74598008235179, 80.36703726934039, 81.13889638216352, 81.92073802859804, 82.7064280335016, 83.49596639687425, 84.28935311871612, 85.0865881990269, 85.88767163780683, 86.69260343505583, 87.50138359077393, 88.31420687769909, 89.13524982290598, 89.96555541230393, 90.80512364589262, 91.65395452367223, 92.51204804564276, 93.37940421180421, 94.25602302215648, 95.14190447669986, 96.03704857543401, 96.98931575871441, 98.0172971774868, 99.08442502662075, 100.1906993061163, 101.33477046078927, 102.50704164477992, 103.70563437952387, 104.93054866502163, 106.18178450127301, 107.45934188827763, 108.76322082603613, 110.09342131454792, 111.44994335381348, 112.83597735683357, 114.27110407770725, 115.75860212363884, 117.29847149462786, 118.89071219067525, 120.53532421178016, 122.23230755794334, 123.96521485727783, 125.71314668188424, 127.47603015826711, 129.25386528642613, 131.0497593840897, 132.87025465437804, 134.7184189357945, 136.59415129861148, 138.50127874473742, 140.45082856451856, 142.4419020513337, 144.4732710368544, 146.4705332943169, 148.70495720006397, 151.36739226797877, 154.4229019242525, 157.60742815643326, 160.86578044447754, 164.19086761477166, 167.58268966731393, 171.04124660210613, 174.56653841914718, 178.15856511843663, 181.8173266999758, 185.5508338769734, 189.4194162711319, 193.4323899661226, 197.5901308786778, 201.89397051364804, 206.34402580783868, 210.9402967612515, 215.68278337388472, 220.5714856457401, 225.725101344153, 231.5978269596766, 239.55722216900875, 250.63195586578337, 262.0498146171012, 273.4028516844739, 284.3337322888639, 296.5567346330839, 310.1731809584641, 324.81273624591864, 340.6543547018237, 361.1961280750795, 383.0841719567824, 405.45334658446916, 428.3917620986418, 451.8994184992943, 475.97631578643836, 500.62245396006233, 524.2262789051775, 537.9866038586525, 551.18351205726, 565.8929941762914, 575.9226586081545, 579.749828373197, 534.7417835434973, 506.5792684564714, 468.6770512092632, 433.2957222408786, 401.48430588962896, 373.26296008972696, 349.7700734060683, 328.72423524698877, 308.1805580087299, 288.01902803092685, 263.0168326214314, 245.77137998984392, 235.93065310906118, 226.4145524252846, 217.25639380924665, 208.45741099401835, 200.01760397960194, 191.93697276599917, 184.2155173532063, 192.0904719501331, 172.5767323514506, 165.09037574636255, 159.49288692816566, 154.5833907713582, 150.36188727594273, 144.78099137774979, 138.15611083983623, 131.91206583645348, 126.11563438461185, 120.52655393378532, 114.29669188302961, 107.33642404390955, 99.64575041642182, 91.2246710005701, 83.35067743824402, 75.6024591843514, 69.55829970509828, 64.08720072524012, 59.09979171439612, 54.596072672563864, 50.576043599745525, 47.0397044959392, 43.98705536114587, 41.41772454522319, 39.31698172331021, 37.51225375117343, 35.83448337339185, 34.28366421187486, 32.859796266621345, 31.562879537631662, 32.5023967308993, 32.767445024666735, 12.3237527121795, 9.911745013044898, 7.762155408928402, 5.874983899830432, 4.250230485750087, 2.8878951666881423, 1.7879779426439484, 0.9504788136180293, 0.3753977796099864, 0.06273484062004998, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.557609942435421, 19.48697260443648, 87.94321222149631, 159.5926625549782, 209.82331195329343, 333.0506785314247, 368.74423105018013, 397.8564830208966, 506.1668673839509, 596.1517872114296, 613.1050638873214, 587.6020792500943, 561.0091823054934, 563.8129020476565, 571.2151911060866, 581.6138561035077, 596.329866941057, 593.173598267145, 581.7717875674533, 559.9968198435075, 535.3415117169284, 527.5069749958722, 522.9079631625453, 524.7240946573744, 527.0122341605716, 528.5130413971449, 530.5312209926075, 534.2505811450771, 538.9700082162328, 544.049492636653, 549.4890344063359, 555.234385289808, 561.1720693668273, 568.0732979261657, 575.4035589357404, 592.425300328264, 589.952061347072, 591.0686645704506, 595.2101714107253, 596.1343282193525, 596.7484135457032, 601.0212283367015, 608.5076471177397, 616.6203675740485, 625.2978779807614, 634.7718568827069, 644.9437957474055, 655.832353560246, 667.4393245154907, 679.7638742356903, 692.837324650649, 707.2191533172772, 723.1143323514214, 725.1699262672336, 719.777232568275, 721.1851778625287, 724.5540700408754, 730.3646832525425, 773.4456491143585, 775.7995470057308, 779.1529939786701, 781.1778992184061, 782.6664697609508, 782.988785055212, 783.1032056104242, 778.7506668053118, 782.0991637668344, 786.7073125098566, 790.7753027827974, 794.2607014057068, 797.164868022147, 799.4512507620399, 801.1460042569269, 805.4276741574052, 814.4287329734705, 825.6786855420916, 837.7029500303998, 851.5789414646988, 887.1734184679764, 912.5576602557625, 929.8167005765273, 936.0327705688418, 922.9168659502401, 927.9707710963711, 932.5041842053625, 935.9333172989037, 938.0424734046483, 963.1633011776483, 988.0651972727967, 982.3877990284959, 966.4084820977635, 938.0911211002383, 870.6967317315188, 812.9367819853961, 769.0546107111716, 736.510821279532, 709.876967101461, 685.9734497553529, 664.5291137650312, 643.489033935051, 619.4536656791101, 591.8734555421973, 563.8721609205815, 538.7464896990085, 516.9633289465332, 498.7187599935636, 481.64060268441307, 465.91939179527856, 450.77682753072406, 436.3199762953957, 423.38749572102586, 410.42171513769136, 398.8216870786332, 387.7124519244481, 367.2889218037353, 348.2448190942111, 334.99938534950905, 324.1518975310871, 314.02363528943164, 304.6145986245381, 295.1605026341283, 285.74314486037656, 277.3300235010063, 270.7300917637236, 266.51696087222473, 260.5380382136388, 252.76034056574878, 242.54655359061778, 224.45644358270016, 213.41474822665677, 204.62050784743127, 197.18795841937555, 189.80125600165496, 182.71112656105913, 175.9420208409586, 169.49393884135475, 168.60093464919316, 165.93741455609617, 158.0000403758146, 140.83704049352312, 124.52378344527506, 113.95576920053269, 104.07340117974213, 94.83884380123749, 86.2520970650233, 81.75586266586949, 73.46917389950315, 59.35512552847151, 35.38256234713027, 15.208957700001207, 3.764813767747166, 4.032769035314436e-09, 4.265404432024529e-05, 0.00016896122766711346, 0.0003789255828097001, 0.0006725471097479847, 0.0010498258084818681, 0.0015107616790115293, 0.0020553547213367487, 0.0026836049354577868, 0.0033955123213745236, 0.004191076879086758, 0.005070298608594871, 0.006033177509898442, 0.0070797135829979325, 0.00820990682789284, 0.009423757244583707, 34.02444394672789, 130.1882103427166, 246.4862917316067, 355.93708527123476, 467.3246652098228, 538.3254781724867, 582.2287756472809, 632.9555152094555, 657.3292545030882, 634.7684695736648, 580.03687640593, 550.9941554221442, 544.1049973856076, 546.3887292253576, 534.511031014485, 527.0603031149112, 523.8852969795573, 524.944766137583, 527.6146064634581, 541.7188412916952, 550.0346942530815, 538.9784819777494, 519.6297685106405, 501.64498332495634, 483.0469855001653, 463.50992516361663, 444.5827697990311, 428.09608778656315, 413.32147011442146, 400.595714592448, 387.9642895784121, 375.8987447101546, 364.9144294171139, 355.21139363202184, 347.09088820600635, 340.43560619499306, 334.2620760123931, 328.5242240442272, 321.4824377642711, 316.6012434829364, 312.2199077447078, 308.23804954466675, 304.60723979578603, 301.16309169802645, 297.82457144500466, 294.6013539959713, 291.49343935092423, 288.50082750986473, 285.6225506299612, 282.8607764852908, 280.22375834184714, 277.7114961996313, 275.32399005864164, 273.06123991888114, 271.04854026051083, 269.0607768090496, 267.0884294296959, 265.1314981224522, 263.11671509478407, 261.03478449797296, 258.8753708614701, 256.83983364922403, 254.96143311529443, 253.1425047643405, 251.3152777684539, 249.57625606608207, 247.97190725528858, 246.49973128837001, 245.11898689040936, 243.83272628169374, 242.6200928794065, 241.5290555667003, 240.6841865135068, 240.06081569524738, 239.65503926920167, 237.73997750542225, 236.56749808695358, 235.39565733714798, 234.24916960189947, 233.1280348812092, 232.03225317507565, 230.9618244835004, 229.91674880648193, 228.82120443864846, 227.76531139952633, 226.83333481674273, 226.25351026203862, 225.73997223601899, 225.38571601921706, 225.5290043410287, 225.72109794910236, 225.71970167709196, 225.4646183913671, 224.8904375535278, 224.16049033950392, 223.3504208774615, 222.64006286397498, 221.84720537383822, 220.9728698628848, 220.06854896201952, 219.3264632967325, 218.54359269084188, 217.6798109277225, 216.75840962224717, 215.84070702650985, 215.27586402224617, 215.56318393229975, 215.9900637541261, 218.7883096542915, 219.66764637087613, 219.71883045123164, 219.00766941011852, 217.5519605484559, 214.8819407125813, 210.5148308700655, 205.43665632857602, 199.6474170881187, 193.14711314868964, 184.6522618400762, 173.6104027524488, 164.92645636165858, 161.8177563444736, 158.06094193792254, 154.0061463823073, 151.44367472561837, 148.27561679567054, 140.9991984637716, 135.32966081948408, 131.7610809883801, 128.9642620658714, 126.9264903784081, 124.90549858136518, 122.46539899540495, 118.30538861457845, 113.09633114343303, 108.05606421950955, 103.18458784281036, 98.48190201333203, 93.94800673108021, 87.17401124684841, 80.59006243472274, 74.70121396706622, 100.36809420207858, 72.73997412810775, 60.357054390443956, 49.379434378832556, 39.483632404185016, 30.42175880128327, 24.68837140014824, 19.696153610555157, 13.92551625673286, 7.164610863043468, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] }, { "mode": "lines", "name": "DOS: nqsmall 16", "showlegend": true, "type": "scatter", "x": [ -0.0037195256267313916, -0.0036947287892198487, -0.0036699319517083063, -0.0036451351141967635, -0.0036203382766852206, -0.0035955414391736786, -0.0035707446016621357, -0.0035459477641505937, -0.003521150926639051, -0.003496354089127508, -0.0034715572516159656, -0.0034467604141044227, -0.00342196357659288, -0.003397166739081338, -0.003372369901569795, -0.003347573064058252, -0.0033227762265467097, -0.003297979389035167, -0.0032731825515236244, -0.003248385714012082, -0.003223588876500539, -0.0031987920389889967, -0.0031739952014774543, -0.0031491983639659114, -0.0031244015264543686, -0.003099604688942826, -0.0030748078514312837, -0.0030500110139197413, -0.0030252141764081984, -0.003000417338896656, -0.0029756205013851135, -0.0029508236638735707, -0.002926026826362028, -0.0029012299888504854, -0.0028764331513389425, -0.0028516363138274, -0.0028268394763158577, -0.002802042638804315, -0.0027772458012927724, -0.0027524489637812295, -0.002727652126269687, -0.0027028552887581447, -0.002678058451246602, -0.0026532616137350594, -0.002628464776223517, -0.002603667938711974, -0.0025788711012004312, -0.002554074263688889, -0.002529277426177346, -0.0025044805886658035, -0.002479683751154261, -0.002454886913642718, -0.002430090076131176, -0.002405293238619633, -0.0023804964011080905, -0.002355699563596548, -0.002330902726085005, -0.0023061058885734628, -0.0022813090510619203, -0.0022565122135503775, -0.0022317153760388346, -0.002206918538527292, -0.0021821217010157493, -0.0021573248635042073, -0.0021325280259926645, -0.0021077311884811216, -0.0020829343509695796, -0.0020581375134580368, -0.002033340675946494, -0.0020085438384349515, -0.0019837470009234086, -0.001958950163411866, -0.0019341533259003237, -0.0019093564883887809, -0.0018845596508772382, -0.0018597628133656958, -0.0018349659758541532, -0.0018101691383426103, -0.0017853723008310679, -0.0017605754633195254, -0.0017357786258079828, -0.00171098178829644, -0.0016861849507848975, -0.0016613881132733549, -0.001636591275761812, -0.0016117944382502696, -0.0015869976007387271, -0.0015622007632271845, -0.0015374039257156416, -0.0015126070882040992, -0.0014878102506925568, -0.001463013413181014, -0.0014382165756694713, -0.0014134197381579288, -0.0013886229006463862, -0.0013638260631348433, -0.001339029225623301, -0.0013142323881117585, -0.0012894355506002156, -0.001264638713088673, -0.0012398418755771305, -0.001215045038065588, -0.001190248200554045, -0.0011654513630425026, -0.0011406545255309602, -0.0011158576880194173, -0.0010910608505078747, -0.0010662640129963322, -0.0010414671754847898, -0.001016670337973247, -0.0009918735004617043, -0.0009670766629501619, -0.0009422798254386189, -0.0009174829879270765, -0.0008926861504155339, -0.0008678893129039914, -0.0008430924753924485, -0.000818295637880906, -0.0007934988003693636, -0.000768701962857821, -0.0007439051253462782, -0.0007191082878347356, -0.0006943114503231931, -0.0006695146128116502, -0.0006447177753001078, -0.0006199209377885653, -0.0005951241002770227, -0.0005703272627654799, -0.0005455304252539373, -0.0005207335877423949, -0.0004959367502308519, -0.00047113991271930945, -0.00044634307520776697, -0.0004215462376962245, -0.00039674940018468157, -0.00037195256267313946, -0.00034715572516159655, -0.0003223588876500537, -0.0002975620501385116, -0.00027276521262696867, -0.0002479683751154258, -0.00022317153760388367, -0.00019837470009234078, -0.00017357786258079792, -0.0001487810250692558, -0.0001239841875577129, -9.918735004617003e-05, -7.43905125346279e-05, -4.959367502308501e-05, -2.4796837511542876e-05, 0.0, 2.4796837511542876e-05, 4.959367502308501e-05, 7.43905125346279e-05, 9.918735004617077e-05, 0.0001239841875577129, 0.0001487810250692558, 0.00017357786258079865, 0.00019837470009234078, 0.00022317153760388367, 0.0002479683751154258, 0.00027276521262696867, 0.0002975620501385116, 0.0003223588876500537, 0.00034715572516159655, 0.00037195256267313946, 0.00039674940018468157, 0.0004215462376962245, 0.00044634307520776735, 0.00047113991271930945, 0.0004959367502308524, 0.0005207335877423952, 0.0005455304252539373, 0.0005703272627654802, 0.0005951241002770224, 0.0006199209377885653, 0.0006447177753001081, 0.0006695146128116502, 0.0006943114503231931, 0.0007191082878347361, 0.0007439051253462782, 0.000768701962857821, 0.0007934988003693639, 0.000818295637880906, 0.000843092475392449, 0.0008678893129039918, 0.0008926861504155339, 0.0009174829879270768, 0.0009422798254386189, 0.0009670766629501619, 0.0009918735004617047, 0.001016670337973247, 0.0010414671754847898, 0.0010662640129963327, 0.0010910608505078747, 0.0011158576880194175, 0.0011406545255309604, 0.0011654513630425026, 0.0011902482005540455, 0.0012150450380655877, 0.0012398418755771305, 0.0012646387130886734, 0.0012894355506002156, 0.0013142323881117585, 0.0013390292256233013, 0.0013638260631348433, 0.0013886229006463862, 0.001413419738157929, 0.0014382165756694713, 0.0014630134131810141, 0.001487810250692557, 0.0015126070882040992, 0.001537403925715642, 0.0015622007632271843, 0.0015869976007387271, 0.00161179443825027, 0.001636591275761812, 0.0016613881132733549, 0.001686184950784898, 0.00171098178829644, 0.0017357786258079828, 0.0017605754633195257, 0.0017853723008310679, 0.0018101691383426107, 0.0018349659758541536, 0.0018597628133656958, 0.0018845596508772387, 0.0019093564883887809, 0.0019341533259003237, 0.0019589501634118666, 0.0019837470009234086, 0.0020085438384349515, 0.0020333406759464943, 0.0020581375134580368, 0.0020829343509695796, 0.0021077311884811225, 0.0021325280259926645, 0.0021573248635042073, 0.0021821217010157493, 0.002206918538527292, 0.002231715376038835, 0.0022565122135503775, 0.0022813090510619203, 0.002306105888573463, 0.002330902726085005, 0.002355699563596548, 0.002380496401108091, 0.002405293238619633, 0.002430090076131176, 0.002454886913642719, 0.002479683751154261, 0.002504480588665804, 0.002529277426177346, 0.002554074263688889, 0.0025788711012004317, 0.002603667938711974, 0.002628464776223517, 0.00265326161373506, 0.002678058451246602, 0.0027028552887581447, 0.0027276521262696875, 0.0027524489637812295, 0.0027772458012927724, 0.002802042638804315, 0.0028268394763158577, 0.0028516363138274005, 0.0028764331513389425, 0.0029012299888504854, 0.0029260268263620283, 0.0029508236638735707, 0.0029756205013851127, 0.0030004173388966564, 0.0030252141764081984, 0.0030500110139197404, 0.003074807851431284, 0.003099604688942826, 0.0031244015264543686, 0.003149198363965912, 0.0031739952014774543, 0.0031987920389889963, 0.00322358887650054, 0.003248385714012082, 0.003273182551523624, 0.0032979793890351677, 0.0033227762265467097, 0.003347573064058252, 0.003372369901569796, 0.003397166739081338, 0.00342196357659288, 0.0034467604141044236, 0.0034715572516159656, 0.003496354089127508, 0.0035211509266390513, 0.0035459477641505937, 0.0035707446016621357, 0.0035955414391736777, 0.0036203382766852215, 0.0036451351141967635, 0.003669931951708306, 0.003694728789219849, 0.0037195256267313916, 0.0037443224642429336, 0.0037691193017544773, 0.0037939161392660193, 0.0038187129767775618, 0.003843509814289105, 0.0038683066518006475, 0.0038931034893121895, 0.003917900326823733, 0.003942697164335275, 0.003967494001846817, 0.003992290839358361, 0.004017087676869903, 0.004041884514381445, 0.004066681351892989, 0.004091478189404531, 0.0041162750269160735, 0.004141071864427617, 0.004165868701939159, 0.004190665539450701, 0.004215462376962243, 0.0042402592144737865, 0.004265056051985329, 0.004289852889496871, 0.004314649727008415, 0.004339446564519957, 0.004364243402031499, 0.004389040239543043, 0.004413837077054584, 0.004438633914566127, 0.00446343075207767, 0.0044882275895892125, 0.004513024427100755, 0.004537821264612298, 0.004562618102123841, 0.004587414939635382, 0.004612211777146926, 0.004637008614658468, 0.00466180545217001, 0.004686602289681554, 0.004711399127193096, 0.0047361959647046386, 0.004760992802216182, 0.004785789639727724, 0.004810586477239266, 0.00483538331475081, 0.004860180152262352, 0.004884976989773894, 0.004909773827285436, 0.00493457066479698, 0.004959367502308522, 0.004984164339820065, 0.005008961177331608, 0.00503375801484315, 0.005058554852354692, 0.005083351689866236, 0.005108148527377778, 0.00513294536488932, 0.005157742202400863, 0.005182539039912406, 0.005207335877423948, 0.0052321327149354915, 0.005256929552447034, 0.0052817263899585755, 0.00530652322747012, 0.005331320064981661, 0.005356116902493204, 0.005380913740004747, 0.005405710577516289, 0.005430507415027832, 0.005455304252539375, 0.0054801010900509175, 0.005504897927562459, 0.0055296947650740015, 0.005554491602585545, 0.005579288440097087, 0.00560408527760863, 0.005628882115120173, 0.005653678952631715, 0.005678475790143257, 0.005703272627654801, 0.005728069465166343, 0.005752866302677885, 0.005777663140189429, 0.005802459977700971, 0.005827256815212513, 0.0058520536527240565, 0.005876850490235599, 0.005901647327747141, 0.005926444165258685, 0.005951241002770227, 0.005976037840281769, 0.006000834677793313, 0.006025631515304854, 0.006050428352816397, 0.00607522519032794, 0.0061000220278394825, 0.006124818865351025, 0.0061496157028625665, 0.006174412540374111, 0.006199209377885652, 0.006224006215397195, 0.006248803052908738, 0.00627359989042028, 0.006298396727931823, 0.006323193565443366, 0.0063479904029549086, 0.00637278724046645, 0.006397584077977994, 0.006422380915489536, 0.006447177753001078, 0.006471974590512622, 0.006496771428024164, 0.006521568265535706, 0.00654636510304725, 0.006571161940558792, 0.006595958778070334, 0.006620755615581878, 0.0066455524530934194, 0.006670349290604962, 0.006695146128116506, 0.006719942965628048, 0.00674473980313959, 0.0067695366406511324, 0.006794333478162676, 0.006819130315674218, 0.00684392715318576, 0.006868723990697304, 0.0068935208282088455, 0.006918317665720388, 0.006943114503231931, 0.006967911340743474, 0.006992708178255016, 0.007017505015766559, 0.007042301853278102, 0.007067098690789643, 0.0070918955283011875, 0.007116692365812729, 0.0071414892033242715, 0.007166286040835815, 0.007191082878347357, 0.0072158797158589, 0.007240676553370443, 0.007265473390881985, 0.007290270228393527, 0.007315067065905071, 0.007339863903416613, 0.007364660740928155, 0.007389457578439698, 0.007414254415951241, 0.007439051253462783, 0.007463848090974325, 0.007488644928485869, 0.0075134417659974105, 0.007538238603508953, 0.007563035441020497, 0.007587832278532039, 0.007612629116043581, 0.007637425953555124, 0.007662222791066667, 0.007687019628578209, 0.0077118164660897525, 0.007736613303601295, 0.0077614101411128365, 0.007786206978624381, 0.007811003816135922, 0.007835800653647465, 0.007860597491159008, 0.00788539432867055, 0.007910191166182093, 0.007934988003693636, 0.007959784841205178, 0.007984581678716721, 0.008009378516228264, 0.008034175353739806, 0.00805897219125135, 0.00808376902876289, 0.008108565866274434, 0.008133362703785976, 0.008158159541297519, 0.008182956378809062, 0.008207753216320604, 0.008232550053832147, 0.00825734689134369, 0.008282143728855232, 0.008306940566366773, 0.008331737403878318, 0.00835653424138986, 0.008381331078901402, 0.008406127916412945, 0.008430924753924488, 0.00845572159143603, 0.008480518428947573, 0.008505315266459116, 0.008530112103970658, 0.008554908941482201, 0.008579705778993743, 0.008604502616505286, 0.00862929945401683, 0.008654096291528371, 0.008678893129039914, 0.008703689966551456, 0.008728486804062999, 0.00875328364157454, 0.008778080479086084, 0.008802877316597627, 0.008827674154109169, 0.008852470991620712, 0.008877267829132255, 0.008902064666643797, 0.008926861504155338, 0.008951658341666884, 0.008976455179178425, 0.009001252016689967, 0.009026048854201512, 0.009050845691713053, 0.009075642529224595, 0.009100439366736138, 0.009125236204247681, 0.009150033041759223, 0.009174829879270766, 0.00919962671678231, 0.009224423554293851, 0.009249220391805394, 0.009274017229316936, 0.00929881406682848, 0.00932361090434002, 0.009348407741851564, 0.009373204579363107, 0.009398001416874649, 0.009422798254386192, 0.009447595091897734, 0.009472391929409277, 0.00949718876692082, 0.009521985604432362, 0.009546782441943905, 0.009571579279455449, 0.00959637611696699, 0.009621172954478532, 0.009645969791990075, 0.009670766629501617, 0.009695563467013162, 0.009720360304524703, 0.009745157142036246, 0.009769953979547788, 0.00979475081705933, 0.009819547654570873, 0.009844344492082418, 0.00986914132959396, 0.009893938167105503, 0.009918735004617044, 0.009943531842128586, 0.00996832867964013, 0.009993125517151674, 0.010017922354663216, 0.010042719192174757, 0.0100675160296863, 0.010092312867197842, 0.010117109704709384, 0.010141906542220929, 0.010166703379732472, 0.010191500217244014, 0.010216297054755555, 0.010241093892267098, 0.01026589072977864, 0.010290687567290182, 0.010315484404801727, 0.01034028124231327, 0.010365078079824811, 0.010389874917336353, 0.010414671754847896, 0.010439468592359438, 0.010464265429870983, 0.010489062267382524, 0.010513859104894068, 0.01053865594240561, 0.010563452779917151, 0.010588249617428694, 0.01061304645494024, 0.01063784329245178, 0.010662640129963322, 0.010687436967474866, 0.010712233804986407, 0.010737030642497949, 0.010761827480009494, 0.010786624317521037, 0.010811421155032579, 0.01083621799254412, 0.010861014830055664, 0.010885811667567205, 0.010910608505078747, 0.010935405342590292, 0.010960202180101835, 0.010984999017613377, 0.011009795855124918, 0.011034592692636461, 0.011059389530148003, 0.011084186367659548, 0.01110898320517109, 0.011133780042682633, 0.011158576880194174, 0.011183373717705716, 0.01120817055521726, 0.011232967392728804, 0.011257764230240346, 0.011282561067751887, 0.01130735790526343, 0.011332154742774972, 0.011356951580286514, 0.011381748417798059, 0.011406545255309602, 0.011431342092821144, 0.011456138930332685, 0.011480935767844229, 0.01150573260535577, 0.011530529442867312, 0.011555326280378858, 0.0115801231178904, 0.011604919955401942, 0.011629716792913485, 0.011654513630425026, 0.011679310467936568, 0.011704107305448113, 0.011728904142959656, 0.011753700980471198, 0.01177849781798274, 0.011803294655494283, 0.011828091493005824, 0.01185288833051737, 0.011877685168028911, 0.011902482005540454, 0.011927278843051996, 0.011952075680563537, 0.01197687251807508, 0.012001669355586626, 0.012026466193098167, 0.012051263030609709, 0.012076059868121252, 0.012100856705632794, 0.012125653543144335, 0.012150450380655878, 0.012175247218167424, 0.012200044055678965, 0.012224840893190507, 0.01224963773070205, 0.012274434568213591, 0.012299231405725133, 0.012324028243236678, 0.012348825080748221, 0.012373621918259763, 0.012398418755771305, 0.012423215593282848, 0.01244801243079439, 0.012472809268305934, 0.012497606105817476, 0.01252240294332902, 0.01254719978084056, 0.012571996618352102, 0.012596793455863646, 0.01262159029337519, 0.012646387130886732, 0.012671183968398274, 0.012695980805909817, 0.012720777643421359, 0.0127455744809329, 0.012770371318444445, 0.012795168155955989, 0.01281996499346753, 0.012844761830979072, 0.012869558668490615, 0.012894355506002157, 0.012919152343513698, 0.012943949181025243, 0.012968746018536786, 0.012993542856048328, 0.01301833969355987, 0.013043136531071413, 0.013067933368582954, 0.0130927302060945, 0.013117527043606041, 0.013142323881117584, 0.013167120718629126, 0.013191917556140667, 0.01321671439365221, 0.013241511231163756, 0.013266308068675297, 0.013291104906186839, 0.013315901743698382, 0.013340698581209924, 0.013365495418721465, 0.013390292256233012, 0.013415089093744554, 0.013439885931256095, 0.013464682768767638, 0.01348947960627918, 0.013514276443790722, 0.013539073281302265, 0.01356387011881381, 0.013588666956325351, 0.013613463793836893, 0.013638260631348436, 0.013663057468859978, 0.01368785430637152, 0.013712651143883064, 0.013737447981394608, 0.01376224481890615, 0.013787041656417691, 0.013811838493929234, 0.013836635331440776, 0.01386143216895232, 0.013886229006463862, 0.013911025843975406, 0.013935822681486947, 0.013960619518998489, 0.013985416356510032, 0.014010213194021577, 0.014035010031533119, 0.01405980686904466, 0.014084603706556204, 0.014109400544067745, 0.014134197381579287, 0.01415899421909083, 0.014183791056602375, 0.014208587894113917, 0.014233384731625458, 0.014258181569137001, 0.014282978406648543, 0.014307775244160085, 0.01433257208167163, 0.014357368919183173, 0.014382165756694714, 0.014406962594206256, 0.0144317594317178, 0.01445655626922934, 0.014481353106740886, 0.014506149944252427, 0.01453094678176397, 0.014555743619275512, 0.014580540456787054, 0.014605337294298597, 0.014630134131810142, 0.014654930969321684, 0.014679727806833225, 0.014704524644344769, 0.01472932148185631, 0.014754118319367852, 0.014778915156879395, 0.01480371199439094, 0.014828508831902482, 0.014853305669414023, 0.014878102506925566, 0.014902899344437108, 0.01492769618194865, 0.014952493019460195, 0.014977289856971738, 0.01500208669448328, 0.015026883531994821, 0.015051680369506364, 0.015076477207017906, 0.015101274044529451, 0.015126070882040994, 0.015150867719552536, 0.015175664557064077, 0.01520046139457562, 0.015225258232087162, 0.015250055069598707, 0.015274851907110249, 0.015299648744621792, 0.015324445582133334, 0.015349242419644875, 0.015374039257156418, 0.01539883609466796, 0.015423632932179505, 0.015448429769691047, 0.01547322660720259, 0.015498023444714131, 0.015522820282225673, 0.015547617119737216, 0.015572413957248761, 0.015597210794760303, 0.015622007632271845, 0.015646804469783386, 0.01567160130729493, 0.015696398144806473, 0.015721194982318016, 0.01574599181982956, 0.0157707886573411, 0.015795585494852642, 0.015820382332364186, 0.015845179169875726, 0.015869976007387272, 0.015894772844898816, 0.015919569682410355, 0.0159443665199219, 0.015969163357433442, 0.015993960194944982, 0.016018757032456525, 0.016043553869968072, 0.01606835070747961, 0.016093147544991155, 0.0161179443825027, 0.016142741220014238, 0.01616753805752578, 0.016192334895037325, 0.016217131732548868, 0.01624192857006041, 0.01626672540757195, 0.016291522245083494, 0.016316319082595038, 0.01634111592010658, 0.016365912757618124, 0.016390709595129668, 0.016415506432641207, 0.01644030327015275, 0.016465100107664294, 0.016489896945175837, 0.01651469378268738, 0.01653949062019892, 0.016564287457710464, 0.016589084295222007, 0.016613881132733547, 0.01663867797024509, 0.016663474807756637, 0.016688271645268177, 0.01671306848277972, 0.016737865320291263, 0.016762662157802803, 0.016787458995314346, 0.01681225583282589, 0.016837052670337433, 0.016861849507848976, 0.016886646345360516, 0.01691144318287206, 0.016936240020383603, 0.016961036857895146, 0.01698583369540669, 0.017010630532918233, 0.017035427370429772, 0.017060224207941316, 0.01708502104545286, 0.017109817882964402, 0.017134614720475946, 0.017159411557987485, 0.01718420839549903, 0.017209005233010572, 0.017233802070522112, 0.017258598908033655, 0.017283395745545202, 0.017308192583056742, 0.017332989420568285, 0.01735778625807983, 0.017382583095591368, 0.01740737993310291, 0.017432176770614455, 0.017456973608125998, 0.01748177044563754, 0.01750656728314908, 0.017531364120660625, 0.017556160958172168, 0.01758095779568371, 0.017605754633195254, 0.017630551470706798, 0.017655348308218338, 0.01768014514572988, 0.017704941983241424, 0.017729738820752967, 0.01775453565826451, 0.01777933249577605, 0.017804129333287594, 0.017828926170799137, 0.017853723008310677, 0.01787851984582222, 0.017903316683333767, 0.017928113520845307, 0.01795291035835685, 0.017977707195868393, 0.018002504033379933, 0.018027300870891477, 0.018052097708403023, 0.018076894545914563, 0.018101691383426106, 0.01812648822093765, 0.01815128505844919, 0.018176081895960733, 0.018200878733472276, 0.01822567557098382, 0.018250472408495363, 0.018275269246006903, 0.018300066083518446, 0.01832486292102999, 0.018349659758541532, 0.018374456596053076, 0.01839925343356462, 0.01842405027107616, 0.018448847108587702, 0.018473643946099245, 0.01849844078361079, 0.018523237621122332, 0.018548034458633872, 0.018572831296145415, 0.01859762813365696, 0.0186224249711685, 0.01864722180868004, 0.01867201864619159, 0.018696815483703128, 0.01872161232121467, 0.018746409158726215, 0.018771205996237755, 0.018796002833749298, 0.01882079967126084, 0.018845596508772385, 0.018870393346283928, 0.018895190183795468, 0.01891998702130701, 0.018944783858818554, 0.018969580696330098, 0.01899437753384164, 0.019019174371353184, 0.019043971208864724, 0.019068768046376267, 0.01909356488388781, 0.019118361721399354, 0.019143158558910897, 0.019167955396422437, 0.01919275223393398, 0.019217549071445524, 0.019242345908957063, 0.019267142746468607, 0.019291939583980153, 0.019316736421491693, 0.019341533259003237, 0.01936633009651478, 0.01939112693402632, 0.019415923771537863, 0.019440720609049406, 0.01946551744656095, 0.019490314284072493, 0.019515111121584033, 0.019539907959095576, 0.01956470479660712, 0.019589501634118663, 0.019614298471630206, 0.01963909530914175, 0.01966389214665329, 0.019688688984164832, 0.019713485821676376, 0.01973828265918792, 0.019763079496699462, 0.019787876334211005, 0.019812673171722545, 0.01983747000923409, 0.019862266846745632, 0.01988706368425717, 0.01991186052176872, 0.01993665735928026, 0.0199614541967918, 0.019986251034303345, 0.020011047871814885, 0.020035844709326428, 0.020060641546837975, 0.020085438384349515, 0.020110235221861058, 0.0201350320593726, 0.02015982889688414, 0.020184625734395684, 0.020209422571907228, 0.02023421940941877, 0.020259016246930314, 0.020283813084441854, 0.020308609921953397, 0.02033340675946494, 0.020358203596976484, 0.020383000434488027, 0.02040779727199957, 0.02043259410951111, 0.020457390947022654, 0.020482187784534197, 0.020506984622045737, 0.020531781459557284, 0.020556578297068823, 0.020581375134580367, 0.02060617197209191, 0.02063096880960345, 0.020655765647114993, 0.02068056248462654, 0.02070535932213808, 0.020730156159649623, 0.020754952997161166, 0.020779749834672706, 0.02080454667218425, 0.020829343509695793, 0.020854140347207336, 0.02087893718471888, 0.02090373402223042, 0.020928530859741962, 0.020953327697253506, 0.02097812453476505, 0.021002921372276592, 0.021027718209788136, 0.021052515047299675, 0.02107731188481122, 0.021102108722322762, 0.021126905559834302, 0.02115170239734585, 0.02117649923485739, 0.02120129607236893, 0.021226092909880475, 0.021250889747392015, 0.021275686584903558, 0.021300483422415105, 0.021325280259926645, 0.021350077097438188, 0.02137487393494973, 0.02139967077246127, 0.021424467609972814, 0.02144926444748436, 0.0214740612849959, 0.021498858122507444, 0.021523654960018988, 0.021548451797530527, 0.02157324863504207, 0.021598045472553614, 0.021622842310065157, 0.0216476391475767, 0.02167243598508824, 0.021697232822599784, 0.021722029660111327, 0.021746826497622867, 0.021771623335134414, 0.021796420172645957, 0.021821217010157497, 0.02184601384766904, 0.021870810685180583, 0.021895607522692123, 0.02192040436020367, 0.02194520119771521, 0.021969998035226753, 0.021994794872738296, 0.022019591710249836, 0.02204438854776138, 0.022069185385272926, 0.022093982222784466, 0.02211877906029601, 0.022143575897807553, 0.022168372735319092, 0.022193169572830636, 0.02221796641034218, 0.022242763247853722, 0.022267560085365266, 0.022292356922876806, 0.02231715376038835, 0.022341950597899892, 0.022366747435411432, 0.02239154427292298, 0.022416341110434522, 0.022441137947946062, 0.022465934785457605, 0.02249073162296915, 0.022515528460480688, 0.022540325297992235, 0.022565122135503775, 0.022589918973015318, 0.02261471581052686, 0.0226395126480384, 0.022664309485549945, 0.02268910632306149, 0.02271390316057303, 0.022738699998084574, 0.022763496835596118, 0.022788293673107658, 0.0228130905106192, 0.022837887348130744, 0.022862684185642287, 0.022887481023153827, 0.02291227786066537, 0.022937074698176917, 0.022961871535688457, 0.0229866683732, 0.02301146521071154, 0.023036262048223087, 0.023061058885734623, 0.02308585572324617, 0.023110652560757717, 0.023135449398269253, 0.0231602462357808, 0.02318504307329234, 0.023209839910803883, 0.02323463674831543, 0.02325943358582697, 0.023284230423338513, 0.023309027260850053, 0.023333824098361596, 0.023358620935873136, 0.023383417773384683, 0.023408214610896226, 0.023433011448407766, 0.023457808285919313, 0.02348260512343085, 0.023507401960942396, 0.02353219879845394, 0.02355699563596548, 0.023581792473477026, 0.023606589310988565, 0.02363138614850011, 0.02365618298601165, 0.023680979823523192, 0.02370577666103474, 0.02373057349854628, 0.023755370336057822, 0.02378016717356936, 0.02380496401108091, 0.023829760848592445, 0.02385455768610399, 0.023879354523615535, 0.023904151361127075, 0.02392894819863862, 0.02395374503615016, 0.023978541873661705, 0.02400333871117325, 0.024028135548684788, 0.024052932386196334, 0.024077729223707874, 0.024102526061219418, 0.024127322898730957, 0.024152119736242504, 0.024176916573754047, 0.024201713411265587, 0.02422651024877713, 0.02425130708628867, 0.024276103923800217, 0.024300900761311757, 0.0243256975988233, 0.024350494436334847, 0.024375291273846383, 0.02440008811135793, 0.02442488494886947, 0.024449681786381013, 0.02447447862389256, 0.0244992754614041, 0.024524072298915643, 0.024548869136427183, 0.024573665973938726, 0.024598462811450266, 0.024623259648961813, 0.024648056486473356, 0.024672853323984896, 0.024697650161496443, 0.02472244699900798, 0.024747243836519526, 0.02477204067403107, 0.02479683751154261, 0.024821634349054156, 0.024846431186565696, 0.02487122802407724, 0.02489602486158878, 0.024920821699100322, 0.02494561853661187, 0.02497041537412341, 0.024995212211634952, 0.025020009049146492, 0.02504480588665804, 0.025069602724169575, 0.02509439956168112, 0.02511919639919267, 0.025143993236704205, 0.02516879007421575, 0.02519358691172729, 0.025218383749238835, 0.02524318058675038, 0.02526797742426192, 0.025292774261773465, 0.025317571099285004, 0.025342367936796548, 0.025367164774308087, 0.025391961611819634, 0.025416758449331178, 0.025441555286842717, 0.025466352124354264, 0.0254911489618658, 0.025515945799377347, 0.025540742636888887, 0.02556553947440043, 0.025590336311911977, 0.025615133149423517, 0.02563992998693506, 0.0256647268244466, 0.025689523661958143, 0.02571432049946969, 0.02573911733698123, 0.025763914174492773, 0.025788711012004313, 0.02581350784951586, 0.025838304687027396, 0.025863101524538943, 0.025887898362050486, 0.025912695199562026, 0.025937492037073573, 0.025962288874585113, 0.025987085712096656, 0.026011882549608203, 0.02603667938711974, 0.026061476224631286, 0.026086273062142826, 0.02611106989965437, 0.02613586673716591, 0.026160663574677456, 0.026185460412189, 0.02621025724970054, 0.026235054087212082, 0.026259850924723622, 0.02628464776223517, 0.02630944459974671, 0.02633424143725825, 0.0263590382747698, 0.026383835112281335, 0.02640863194979288, 0.02643342878730442, 0.026458225624815965, 0.02648302246232751, 0.02650781929983905, 0.026532616137350595, 0.026557412974862134, 0.026582209812373678, 0.026607006649885218, 0.026631803487396764, 0.026656600324908308, 0.026681397162419847, 0.026706193999931394, 0.02673099083744293, 0.026755787674954477, 0.026780584512466017, 0.02680538134997756, 0.026830178187489107, 0.026854975025000647, 0.02687977186251219, 0.02690456870002373, 0.026929365537535277, 0.02695416237504682, 0.02697895921255836, 0.027003756050069903, 0.027028552887581443, 0.02705334972509299, 0.02707814656260453, 0.027102943400116073, 0.02712774023762762, 0.027152537075139156, 0.027177333912650703, 0.027202130750162243, 0.027226927587673786, 0.027251724425185333, 0.027276521262696873, 0.027301318100208416, 0.027326114937719956, 0.0273509117752315, 0.02737570861274304, 0.027400505450254586, 0.02742530228776613, 0.02745009912527767, 0.027474895962789216, 0.027499692800300752, 0.0275244896378123, 0.02754928647532384, 0.027574083312835382, 0.02759888015034693, 0.02762367698785847, 0.02764847382537001, 0.02767327066288155, 0.027698067500393095, 0.02772286433790464, 0.02774766117541618, 0.027772458012927725, 0.027797254850439265, 0.02782205168795081, 0.027846848525462348, 0.027871645362973894, 0.027896442200485438, 0.027921239037996978, 0.027946035875508524, 0.027970832713020064, 0.027995629550531607, 0.028020426388043147, 0.02804522322555469, 0.028070020063066237, 0.028094816900577777, 0.02811961373808932, 0.02814441057560086, 0.028169207413112407, 0.02819400425062395, 0.02821880108813549, 0.028243597925647033, 0.028268394763158573, 0.02829319160067012, 0.02831798843818166, 0.028342785275693203, 0.02836758211320475, 0.028392378950716286, 0.028417175788227833, 0.028441972625739373, 0.028466769463250916, 0.028491566300762463, 0.028516363138274003, 0.028541159975785546, 0.028565956813297086, 0.028590753650808633, 0.02861555048832017, 0.028640347325831716, 0.02866514416334326, 0.0286899410008548, 0.028714737838366346, 0.028739534675877886, 0.02876433151338943, 0.02878912835090097, 0.028813925188412512, 0.02883872202592406, 0.0288635188634356, 0.028888315700947142, 0.02891311253845868, 0.02893790937597023, 0.02896270621348177, 0.02898750305099331, 0.029012299888504855, 0.029037096726016395, 0.02906189356352794, 0.02908669040103948, 0.029111487238551025, 0.02913628407606257, 0.029161080913574108, 0.029185877751085654, 0.029210674588597194, 0.029235471426108738, 0.029260268263620284, 0.029285065101131824, 0.029309861938643367, 0.029334658776154907, 0.02935945561366645, 0.02938425245117799, 0.029409049288689537, 0.02943384612620108, 0.02945864296371262, 0.029483439801224167, 0.029508236638735703, 0.02953303347624725, 0.02955783031375879, 0.029582627151270333, 0.02960742398878188, 0.02963222082629342, 0.029657017663804963, 0.029681814501316503, 0.029706611338828046, 0.029731408176339593, 0.029756205013851133, 0.029781001851362676, 0.029805798688874216, 0.029830595526385763, 0.0298553923638973, 0.029880189201408846, 0.02990498603892039, 0.02992978287643193, 0.029954579713943476, 0.029979376551455016, 0.03000417338896656, 0.0300289702264781, 0.030053767063989642, 0.03007856390150119, 0.03010336073901273, 0.030128157576524272, 0.030152954414035812, 0.03017775125154736, 0.030202548089058902, 0.03022734492657044, 0.03025214176408199, 0.030276938601593525, 0.03030173543910507, 0.03032653227661661, 0.030351329114128155, 0.0303761259516397, 0.03040092278915124, 0.030425719626662785, 0.030450516464174324, 0.030475313301685868, 0.030500110139197414, 0.030524906976708954, 0.030549703814220498, 0.030574500651732037, 0.030599297489243584, 0.03062409432675512, 0.030648891164266667, 0.03067368800177821, 0.03069848483928975, 0.030723281676801297, 0.030748078514312837, 0.03077287535182438, 0.03079767218933592, 0.030822469026847463, 0.03084726586435901, 0.03087206270187055, 0.030896859539382093, 0.030921656376893633, 0.03094645321440518, 0.030971250051916723, 0.030996046889428263, 0.031020843726939806, 0.031045640564451346, 0.031070437401962893, 0.031095234239474433, 0.031120031076985976, 0.031144827914497523, 0.03116962475200906, 0.031194421589520606, 0.031219218427032146, 0.03124401526454369, 0.03126881210205523, 0.03129360893956677, 0.03131840577707832, 0.03134320261458986, 0.031367999452101405, 0.031392796289612945, 0.031417593127124485, 0.03144238996463603, 0.03146718680214757, 0.03149198363965912, 0.03151678047717066, 0.0315415773146822, 0.03156637415219374, 0.031591170989705285, 0.03161596782721683, 0.03164076466472837, 0.03166556150223992, 0.03169035833975145, 0.031715155177263, 0.031739952014774545, 0.031764748852286084, 0.03178954568979763, 0.03181434252730917, 0.03183913936482071, 0.03186393620233225, 0.0318887330398438, 0.031913529877355344, 0.031938326714866884, 0.031963123552378424, 0.031987920389889964, 0.03201271722740151, 0.03203751406491305, 0.0320623109024246, 0.032087107739936144, 0.03211190457744768, 0.03213670141495922, 0.03216149825247076, 0.03218629508998231, 0.03221109192749386, 0.0322358887650054, 0.032260685602516936, 0.032285482440028476, 0.03231027927754002, 0.03233507611505156, 0.03235987295256311, 0.03238466979007465, 0.03240946662758619, 0.032434263465097736, 0.032459060302609276, 0.03248385714012082, 0.03250865397763236, 0.0325334508151439, 0.03255824765265545, 0.03258304449016699, 0.032607841327678536, 0.032632638165190075, 0.032657435002701615, 0.03268223184021316, 0.0327070286777247, 0.03273182551523625, 0.03275662235274779, 0.032781419190259335, 0.03280621602777087, 0.032831012865282415, 0.03285580970279396, 0.0328806065403055, 0.03290540337781705, 0.03293020021532859, 0.03295499705284013, 0.032979793890351675, 0.033004590727863214, 0.03302938756537476, 0.0330541844028863, 0.03307898124039784, 0.03310377807790938, 0.03312857491542093, 0.033153371752932474, 0.033178168590444014, 0.033202965427955554, 0.033227762265467094, 0.03325255910297864, 0.03327735594049018, 0.03330215277800173, 0.033326949615513274, 0.03335174645302481, 0.033376543290536353, 0.03340134012804789, 0.03342613696555944, 0.03345093380307099, 0.03347573064058253, 0.033500527478094067, 0.033525324315605606, 0.03355012115311715, 0.03357491799062869, 0.03359971482814024, 0.03362451166565178, 0.03364930850316332, 0.033674105340674866, 0.033698902178186406, 0.03372369901569795, 0.03374849585320949, 0.03377329269072103, 0.03379808952823258, 0.03382288636574412, 0.033847683203255666, 0.033872480040767206, 0.03389727687827875, 0.03392207371579029, 0.03394687055330183, 0.03397166739081338, 0.03399646422832492, 0.034021261065836465, 0.034046057903348005, 0.034070854740859545, 0.03409565157837109, 0.03412044841588263, 0.03414524525339418, 0.03417004209090572, 0.03419483892841726, 0.034219635765928805, 0.034244432603440345, 0.03426922944095189, 0.03429402627846343, 0.03431882311597497, 0.03434361995348651, 0.03436841679099806, 0.034393213628509604, 0.034418010466021144, 0.03444280730353269, 0.034467604141044224, 0.03449240097855577, 0.03451719781606731, 0.03454199465357886, 0.034566791491090404, 0.034591588328601944, 0.034616385166113484, 0.03464118200362502, 0.03466597884113657, 0.03469077567864812, 0.03471557251615966, 0.0347403693536712, 0.034765166191182736, 0.03478996302869428, 0.03481475986620582, 0.03483955670371737, 0.03486435354122891, 0.03488915037874045, 0.034913947216251996, 0.034938744053763536, 0.03496354089127508, 0.03498833772878663, 0.03501313456629816, 0.03503793140380971, 0.03506272824132125, 0.035087525078832796, 0.035112321916344336, 0.03513711875385588, 0.03516191559136742, 0.03518671242887896, 0.03521150926639051, 0.03523630610390205, 0.035261102941413595, 0.035285899778925135, 0.035310696616436675, 0.03533549345394822, 0.03536029029145976, 0.03538508712897131, 0.03540988396648285, 0.03543468080399439, 0.035459477641505935, 0.035484274479017475, 0.03550907131652902, 0.03553386815404056, 0.0355586649915521, 0.03558346182906364, 0.03560825866657519, 0.035633055504086734, 0.035657852341598274, 0.03568264917910982, 0.035707446016621354, 0.0357322428541329, 0.03575703969164444, 0.03578183652915599, 0.035806633366667534, 0.035831430204179074, 0.035856227041690614, 0.035881023879202154, 0.0359058207167137, 0.03593061755422525, 0.03595541439173679, 0.03598021122924833, 0.03600500806675987, 0.03602980490427141, 0.03605460174178295, 0.0360793985792945, 0.03610419541680605, 0.03612899225431758, 0.036153789091829126, 0.036178585929340666, 0.03620338276685221, 0.03622817960436376, 0.0362529764418753, 0.03627777327938684, 0.03630257011689838, 0.036327366954409926, 0.036352163791921466, 0.03637696062943301, 0.03640175746694455, 0.03642655430445609, 0.03645135114196764, 0.03647614797947918, 0.036500944816990726, 0.036525741654502265, 0.036550538492013805, 0.03657533532952535, 0.03660013216703689, 0.03662492900454844, 0.03664972584205998, 0.03667452267957152, 0.036699319517083065, 0.036724116354594605, 0.03674891319210615, 0.03677371002961769, 0.03679850686712924, 0.03682330370464077, 0.03684810054215232, 0.036872897379663865, 0.036897694217175404, 0.03692249105468695, 0.03694728789219849, 0.03697208472971003, 0.03699688156722157, 0.03702167840473312, 0.037046475242244664, 0.037071272079756204, 0.037096068917267744, 0.037120865754779284, 0.03714566259229083, 0.03717045942980238, 0.03719525626731392, 0.03722005310482546, 0.037244849942337, 0.03726964677984854, 0.03729444361736008, 0.03731924045487163, 0.03734403729238318, 0.03736883412989471, 0.037393630967406256, 0.037418427804917796, 0.03744322464242934, 0.03746802147994089, 0.03749281831745243, 0.03751761515496397, 0.03754241199247551, 0.037567208829987056, 0.037592005667498596, 0.03761680250501014, 0.03764159934252168, 0.03766639618003322, 0.03769119301754477, 0.03771598985505631, 0.037740786692567856, 0.037765583530079395, 0.037790380367590935, 0.03781517720510248, 0.03783997404261402, 0.03786477088012557, 0.03788956771763711, 0.037914364555148655, 0.037939161392660195, 0.037963958230171735, 0.03798875506768328, 0.03801355190519482, 0.03803834874270637, 0.03806314558021791, 0.03808794241772945, 0.038112739255240995, 0.038137536092752534, 0.03816233293026408, 0.03818712976777562, 0.03821192660528716, 0.0382367234427987, 0.03826152028031025, 0.038286317117821794, 0.038311113955333334, 0.038335910792844874, 0.038360707630356414, 0.03838550446786796, 0.03841030130537951, 0.03843509814289105, 0.038459894980402594, 0.03848469181791413, 0.038509488655425674, 0.03853428549293721, 0.03855908233044876, 0.03858387916796031, 0.03860867600547185, 0.038633472842983387, 0.038658269680494926, 0.03868306651800647, 0.03870786335551802, 0.03873266019302956, 0.0387574570305411, 0.03878225386805264, 0.038807050705564186, 0.038831847543075726, 0.03885664438058727, 0.03888144121809881, 0.03890623805561035, 0.0389310348931219, 0.03895583173063344, 0.038980628568144986, 0.039005425405656526, 0.039030222243168065, 0.03905501908067961, 0.03907981591819115, 0.0391046127557027, 0.03912940959321424, 0.039154206430725785, 0.039179003268237325, 0.039203800105748865, 0.03922859694326041, 0.03925339378077195, 0.0392781906182835, 0.03930298745579504, 0.03932778429330658, 0.039352581130818125, 0.039377377968329665, 0.03940217480584121, 0.03942697164335275, 0.03945176848086429, 0.03947656531837583, 0.03950136215588738, 0.039526158993398924, 0.039550955830910464, 0.03957575266842201, 0.039600549505933544, 0.03962534634344509, 0.03965014318095664, 0.03967494001846818, 0.039699736855979724, 0.039724533693491264, 0.039749330531002804, 0.03977412736851434, 0.03979892420602589, 0.03982372104353744, 0.03984851788104898, 0.03987331471856052, 0.039898111556072056, 0.0399229083935836, 0.03994770523109515, 0.03997250206860669, 0.03999729890611823, 0.04002209574362977, 0.040046892581141316, 0.040071689418652856, 0.0400964862561644, 0.04012128309367595, 0.04014607993118748, 0.04017087676869903, 0.04019567360621057, 0.040220470443722116, 0.040245267281233656, 0.0402700641187452, 0.04029486095625674, 0.04031965779376828, 0.04034445463127983, 0.04036925146879137, 0.040394048306302915, 0.040418845143814455, 0.040443641981325995, 0.04046843881883754, 0.04049323565634908, 0.04051803249386063, 0.04054282933137217, 0.04056762616888371, 0.040592423006395255, 0.040617219843906795, 0.04064201668141834, 0.04066681351892988, 0.04069161035644142, 0.04071640719395297, 0.04074120403146451, 0.040766000868976054, 0.040790797706487594, 0.04081559454399914, 0.040840391381510674, 0.04086518821902222, 0.04088998505653377, 0.04091478189404531, 0.040939578731556854, 0.040964375569068394, 0.040989172406579934, 0.041013969244091474, 0.04103876608160302, 0.04106356291911457, 0.04108835975662611, 0.04111315659413765, 0.04113795343164919, 0.04116275026916073, 0.04118754710667228, 0.04121234394418382, 0.04123714078169537, 0.0412619376192069, 0.041286734456718446, 0.041311531294229986, 0.04133632813174153, 0.04136112496925308, 0.04138592180676462, 0.04141071864427616, 0.0414355154817877, 0.041460312319299246, 0.041485109156810786, 0.04150990599432233, 0.04153470283183387, 0.04155949966934541, 0.04158429650685696, 0.0416090933443685, 0.041633890181880046, 0.041658687019391585, 0.041683483856903125, 0.04170828069441467, 0.04173307753192621, 0.04175787436943776, 0.0417826712069493, 0.04180746804446084, 0.041832264881972385, 0.041857061719483925, 0.04188185855699547, 0.04190665539450701, 0.04193145223201856, 0.0419562490695301, 0.04198104590704164, 0.042005842744553185, 0.042030639582064724, 0.04205543641957627, 0.04208023325708781, 0.04210503009459935, 0.0421298269321109, 0.04215462376962244, 0.042179420607133984, 0.042204217444645524, 0.042229014282157064, 0.042253811119668604, 0.04227860795718015, 0.0423034047946917, 0.04232820163220324, 0.04235299846971478, 0.04237779530722632, 0.04240259214473786, 0.04242738898224941, 0.04245218581976095, 0.0424769826572725, 0.04250177949478403, 0.042526576332295576, 0.042551373169807116, 0.04257617000731866, 0.04260096684483021, 0.04262576368234175, 0.04265056051985329, 0.04267535735736483, 0.042700154194876376, 0.042724951032387916, 0.04274974786989946, 0.042774544707411, 0.04279934154492254, 0.04282413838243409, 0.04284893521994563, 0.042873732057457176, 0.04289852889496872, 0.042923325732480255, 0.0429481225699918, 0.04297291940750334, 0.04299771624501489, 0.04302251308252643, 0.043047309920037975, 0.043072106757549515, 0.043096903595061055, 0.0431217004325726, 0.04314649727008414, 0.04317129410759569, 0.04319609094510723, 0.04322088778261877, 0.043245684620130315, 0.043270481457641854, 0.0432952782951534, 0.04332007513266494, 0.04334487197017648, 0.04336966880768803, 0.04339446564519957, 0.043419262482711114, 0.043444059320222654, 0.043468856157734194, 0.043493652995245734, 0.04351844983275728, 0.04354324667026883, 0.04356804350778037, 0.043592840345291914, 0.04361763718280345, 0.043642434020314994, 0.04366723085782654, 0.04369202769533808, 0.04371682453284963, 0.04374162137036117, 0.04376641820787271, 0.043791215045384246, 0.04381601188289579, 0.04384080872040734, 0.04386560555791888, 0.04389040239543042, 0.04391519923294196, 0.043939996070453506, 0.043964792907965046, 0.04398958974547659, 0.04401438658298813, 0.04403918342049967, 0.04406398025801122, 0.04408877709552276, 0.044113573933034306, 0.04413837077054585, 0.044163167608057385, 0.04418796444556893, 0.04421276128308047, 0.04423755812059202, 0.04426235495810356, 0.044287151795615105, 0.044311948633126645, 0.044336745470638185, 0.04436154230814973, 0.04438633914566127, 0.04441113598317282, 0.04443593282068436, 0.0444607296581959, 0.044485526495707445, 0.044510323333218985, 0.04453512017073053, 0.04455991700824207, 0.04458471384575361, 0.04460951068326516, 0.0446343075207767, 0.044659104358288244, 0.044683901195799784, 0.04470869803331133, 0.044733494870822864, 0.04475829170833441, 0.04478308854584596, 0.0448078853833575, 0.044832682220869044, 0.044857479058380584, 0.044882275895892124, 0.04490707273340367, 0.04493186957091521, 0.04495666640842676, 0.0449814632459383, 0.04500626008344984, 0.045031056920961376, 0.04505585375847292, 0.04508065059598447, 0.04510544743349601, 0.04513024427100755, 0.04515504110851909, 0.045179837946030636, 0.045204634783542176, 0.04522943162105372, 0.04525422845856527, 0.0452790252960768, 0.04530382213358835, 0.04532861897109989, 0.045353415808611436, 0.04537821264612298, 0.04540300948363452, 0.04542780632114606, 0.0454526031586576, 0.04547739999616915, 0.04550219683368069, 0.045526993671192235, 0.045551790508703775, 0.045576587346215315, 0.04560138418372686, 0.0456261810212384, 0.04565097785874995, 0.04567577469626149, 0.04570057153377303, 0.045725368371284575, 0.045750165208796115, 0.04577496204630766, 0.0457997588838192, 0.04582455572133074, 0.04584935255884229, 0.04587414939635383, 0.045898946233865374, 0.045923743071376914, 0.04594853990888846, 0.045973336746399994, 0.04599813358391154, 0.04602293042142309, 0.04604772725893463, 0.046072524096446174, 0.046097320933957714, 0.046122117771469254, 0.0461469146089808, 0.04617171144649234, 0.04619650828400389, 0.04622130512151543, 0.04624610195902697, 0.04627089879653851, 0.04629569563405005, 0.0463204924715616, 0.04634528930907314, 0.04637008614658469, 0.04639488298409622, 0.046419679821607766, 0.046444476659119306, 0.04646927349663085, 0.0464940703341424, 0.04651886717165394, 0.04654366400916548, 0.04656846084667702, 0.046593257684188566, 0.04661805452170011, 0.04664285135921165, 0.04666764819672319, 0.04669244503423473, 0.04671724187174628, 0.04674203870925782, 0.046766835546769366, 0.046791632384280905, 0.046816429221792445, 0.04684122605930399, 0.04686602289681553, 0.04689081973432708, 0.046915616571838625, 0.04694041340935016, 0.046965210246861705, 0.046990007084373245, 0.04701480392188479, 0.04703960075939633, 0.04706439759690788, 0.04708919443441942, 0.04711399127193096, 0.047138788109442505, 0.047163584946954044, 0.04718838178446559, 0.04721317862197713, 0.04723797545948867, 0.04726277229700022, 0.04728756913451176, 0.047312365972023304, 0.047337162809534844, 0.047361959647046384, 0.04738675648455793, 0.04741155332206947, 0.04743635015958102, 0.04746114699709256, 0.0474859438346041, 0.04751074067211564, 0.04753553750962718, 0.04756033434713873, 0.04758513118465027, 0.04760992802216182, 0.04763472485967335, 0.047659521697184896, 0.04768431853469644, 0.04770911537220798, 0.04773391220971953, 0.04775870904723107, 0.04778350588474261, 0.04780830272225415, 0.047833099559765696, 0.04785789639727724, 0.04788269323478878, 0.04790749007230032, 0.04793228690981186, 0.04795708374732341, 0.04798188058483495, 0.048006677422346496, 0.04803147425985804, 0.048056271097369575, 0.04808106793488112, 0.04810586477239266, 0.04813066160990421, 0.048155458447415755, 0.048180255284927295, 0.048205052122438835, 0.048229848959950375, 0.04825464579746192, 0.04827944263497346, 0.04830423947248501, 0.04832903630999655, 0.04835383314750809, 0.048378629985019635, 0.048403426822531175, 0.04842822366004272, 0.04845302049755426, 0.0484778173350658, 0.04850261417257735, 0.04852741101008889, 0.048552207847600434, 0.048577004685111974, 0.048601801522623514, 0.04862659836013506, 0.0486513951976466, 0.04867619203515815, 0.04870098887266969, 0.048725785710181234, 0.04875058254769277, 0.048775379385204314, 0.04880017622271586, 0.0488249730602274, 0.04884976989773895, 0.04887456673525049, 0.04889936357276203, 0.04892416041027357, 0.04894895724778511, 0.04897375408529666, 0.0489985509228082, 0.04902334776031974, 0.04904814459783128, 0.049072941435342826, 0.04909773827285437, 0.04912253511036591, 0.04914733194787745, 0.04917212878538899, 0.04919692562290054, 0.04922172246041208, 0.049246519297923626, 0.04927131613543517, 0.049296112972946705, 0.04932090981045825, 0.04934570664796979, 0.04937050348548134, 0.049395300322992886, 0.049420097160504425, 0.049444893998015965, 0.049469690835527505, 0.049494487673039045, 0.0495192845105506, 0.04954408134806214, 0.04956887818557368, 0.049593675023085225, 0.049618471860596765, 0.049643268698108305, 0.049668065535619844, 0.04969286237313139, 0.04971765921064293, 0.04974245604815447, 0.049767252885666025, 0.049792049723177564, 0.049816846560689104, 0.049841643398200644, 0.04986644023571219, 0.04989123707322373, 0.04991603391073527, 0.049940830748246824, 0.049965627585758364, 0.0499904244232699, 0.05001522126078145, 0.05004001809829299, 0.05006481493580453, 0.05008961177331607, 0.05011440861082762, 0.05013920544833916, 0.050164002285850696, 0.05018879912336225, 0.05021359596087379, 0.05023839279838533, 0.05026318963589687, 0.050287986473408416, 0.050312783310919956, 0.050337580148431496, 0.05036237698594305, 0.05038717382345459, 0.05041197066096612, 0.05043676749847766, 0.050461564335989216, 0.050486361173500756, 0.050511158011012296, 0.05053595484852384, 0.05056075168603538, 0.05058554852354692, 0.05061034536105846, 0.050635142198570016, 0.050659939036081555, 0.050684735873593095, 0.05070953271110464, 0.05073432954861618, 0.05075912638612772, 0.050783923223639275, 0.05080872006115081, 0.05083351689866235, 0.05085831373617389, 0.05088311057368544, 0.05090790741119698, 0.05093270424870852, 0.05095750108622007, 0.05098229792373161, 0.05100709476124315, 0.05103189159875469, 0.05105668843626624, 0.05108148527377778, 0.051106282111289314, 0.05113107894880087, 0.05115587578631241, 0.05118067262382395, 0.05120546946133549, 0.051230266298847034, 0.051255063136358574, 0.051279859973870114, 0.05130465681138167, 0.05132945364889321, 0.05135425048640475, 0.05137904732391629, 0.051403844161427834, 0.05142864099893937, 0.05145343783645091, 0.05147823467396247, 0.051503031511474, 0.05152782834898554, 0.05155262518649708, 0.05157742202400863 ], "y": [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.696104462952414e-31, 0.00041776784347423863, 0.0016710713738969545, 0.003759910591268147, 0.0066842854955877174, 0.010444196086855841, 0.01503964236507229, 0.020470624330237344, 0.02673714198235087, 0.033839195321412656, 0.041776784347423115, 0.05054990906038204, 0.06015856946028917, 0.07060276554714502, 0.08188249732094903, 0.09399776478170184, 0.10694856792940309, 0.1207349067640524, 0.13535678128565062, 0.15081419149419728, 0.16710713738969196, 0.18423561897213564, 0.20219963624152712, 0.22099918919786765, 0.2406342778411567, 0.2611049021713935, 0.2824110621885796, 0.30455275789271385, 0.3275299892837961, 0.35134275636182755, 0.3759910591268066, 0.40147489757873484, 0.42779427171761153, 0.454949181543436, 0.48293962705620963, 0.511765608255931, 0.5414271251426014, 0.5719241777162205, 0.6032567659767872, 0.6354248899243036, 0.6684285495587676, 0.7022677448801797, 0.7369424758885411, 0.7724527425838509, 0.8087985449661099, 0.8459798830353162, 0.8839967567914703, 0.9228491662345745, 0.9625371113646255, 1.0030605921816258, 1.0444196086855753, 1.086614160876472, 1.1296442487543181, 1.1735098723191122, 1.2182110315708543, 1.2637477265095456, 1.3101199571351845, 1.3573277234477727, 1.4053710254473102, 1.4542498631337937, 1.5039642365072279, 1.5545141455676101, 1.6058995903149396, 1.6581205707492184, 1.711177086870445, 2.0061448799687183, 2.532510297069314, 3.0231957620555368, 3.4782012749274163, 3.897526835684943, 4.281172444328099, 4.629138100856911, 4.9414238052713575, 5.218029557571461, 5.458955357757202, 5.664201205828581, 5.833767101785613, 5.967653045628286, 6.0658590373566055, 6.128385076970564, 6.155231164470169, 6.146397299855419, 6.1018834831263105, 6.021689714282848, 5.9832770502325685, 6.1315282145150976, 6.280667023030912, 6.430693475780009, 6.58160757276239, 6.733409313978053, 6.8860986994269995, 7.039675729109238, 7.1941404030247575, 7.349492721173556, 7.505732683555644, 7.6628602901710146, 7.820875541019667, 7.979778436101607, 8.13849581767333, 8.296938787575058, 8.457949907241526, 8.621529176672727, 8.787676595868673, 8.956392164829357, 9.127675883554772, 9.301527752044937, 9.477947770299837, 9.656935938319478, 9.838492256103862, 10.022616723652977, 10.20930934096683, 10.398570108045426, 10.590399024888766, 10.784796091496846, 10.98176130786965, 11.18129467400721, 11.383396189909506, 11.588065855576534, 11.79530367100831, 12.005109636204816, 12.217483751166077, 12.432426015892059, 12.649936430382787, 12.870014994638252, 13.092661708658465, 13.317876572443412, 13.545659585993091, 13.776207570906374, 14.037180881393144, 14.348185446974227, 14.709221267649657, 15.12028834341938, 15.581386674283415, 16.09251626024181, 16.58575988884892, 17.086964210907155, 17.61345010964329, 18.165217585057235, 18.742266637149022, 19.34459726591868, 23.025878610583824, 30.575388528835763, 20.709745575122902, 21.022593624173577, 21.33927857307851, 21.659800421837726, 21.98415917045125, 22.312354818919026, 22.644387367241094, 22.980256815417444, 23.281714356167633, 23.496287578127248, 23.710956145759837, 23.925720059065377, 24.14057931804385, 24.355533922695304, 24.57058387301971, 24.785729169017063, 25.000969810687383, 25.21630579803065, 25.431737131046887, 25.647263809736053, 25.86288583409819, 26.0786032041333, 26.294415919841352, 26.58478672352566, 26.90166893661372, 27.222262533331488, 27.546567513678966, 27.874583877656157, 28.20631162526303, 28.54175075649961, 28.880901271365918, 29.223763169861922, 29.57033645198763, 29.920621117743043, 30.274617167128177, 30.632324600142994, 30.993743416787517, 31.358873617061796, 31.727715200965722, 32.10026816849938, 32.476532519662754, 32.856508254455825, 33.24019537287858, 33.62759387493109, 34.18550248104715, 35.10404455782418, 35.83107002285271, 36.53442890388261, 37.324135111268525, 38.418292524115806, 39.471759791690786, 40.48453691399332, 41.4566238910235, 42.38802072278139, 43.278727409266864, 44.128743950479944, 45.1739122068599, 46.082813692823095, 46.79449537897696, 47.30895726532157, 47.62619935185681, 47.6600915650697, 47.38445440568232, 47.5233137657314, 47.769821467238735, 48.03211053953145, 48.31018098260966, 48.595638457972164, 49.06382599558698, 49.60917426126481, 50.18111753808039, 50.77965582603372, 51.404789125124786, 52.17811065965052, 53.0479246114878, 53.763068449984, 54.323542175139025, 54.729345786952926, 54.980479285425716, 55.11443167139884, 55.59191515812027, 56.07772864003091, 56.57187211713078, 57.07434558941989, 57.58514905689821, 58.104282519565814, 58.63174597742264, 59.16753943046864, 59.711662878703955, 60.26411632212842, 60.8248997607422, 61.394013194545174, 61.98140027994473, 62.673190352917416, 63.48275763035017, 64.5169987956478, 65.93912604738482, 66.85694459856707, 67.78540936506153, 68.7245911760101, 69.67029031841538, 70.62014415831295, 71.57414313268036, 72.53878695522211, 73.52561647024758, 74.52388847674416, 75.5336029747117, 76.55475996415028, 77.58735944505997, 78.69934374994465, 79.6507418007106, 80.36463390717448, 80.83118444618158, 81.04826007077905, 81.42255062661617, 81.61527773350169, 82.2975379838385, 83.09996625034879, 83.91526745971615, 84.74344161194063, 85.58448870702229, 86.43840874496111, 87.305201725757, 88.18486764941008, 89.07740651592036, 89.98281832528772, 90.90110307751219, 91.8322607725939, 92.77566619418727, 93.72512124892222, 94.67903828464287, 95.63741730134922, 96.60025829904129, 97.567561277719, 98.55935362451963, 99.64394005743759, 100.82698687896499, 102.10711616314364, 103.52325128259008, 105.78605702077425, 107.28872257793809, 108.77538202131937, 111.81497485963446, 115.4641527037981, 116.93917914527735, 117.22133263991915, 118.47935850337836, 119.78749582907807, 121.11833104550843, 122.4304631292881, 123.31868019609637, 124.25737520172648, 125.21515349467029, 126.18150944079052, 127.35262874471371, 128.71124969199718, 130.3927721813853, 132.4885031265476, 134.18412497019716, 135.479637712334, 136.37504135295796, 136.87033589206914, 138.15849509315896, 139.63312608083518, 141.1459132764988, 142.68979848154746, 144.26000268056944, 145.85652587356466, 147.47791578617003, 149.1170108690439, 150.95550544679108, 153.40162414642876, 156.80481584679228, 159.43254774597878, 162.07618388190656, 164.73406837011677, 167.38849600074698, 170.0427715280092, 172.7002911221795, 175.37022710081104, 177.617218686661, 179.9659994927495, 182.41656951907734, 184.96892876564362, 187.6073572454171, 190.33772488191593, 193.3322519367217, 196.41371504811016, 199.58211421608135, 202.83744944063548, 206.17972072177244, 209.67371674558302, 214.4901353340003, 221.0636358975727, 228.65602385226916, 237.51748076066016, 245.93451136841858, 253.8738735272765, 264.8626990941789, 274.05691761335277, 278.6138140387017, 278.51071068883965, 273.7493901514764, 274.8749640541362, 276.5443911599946, 278.0813035127356, 278.92879746762105, 279.5955893614457, 280.1181676218314, 280.5883635366633, 281.291931775236, 282.38588266298166, 275.5534086149507, 275.55579557581734, 276.44888242184913, 278.0964158508842, 279.6399630887002, 280.92940939733813, 281.617014150394, 282.0724601065863, 282.1178233709911, 282.1476394753203, 286.2059837349474, 286.02098400802714, 284.0567254211889, 283.84976205953166, 283.1797368928692, 282.89194300814705, 282.92724769753073, 283.2617057952829, 283.87853599924756, 277.7326432048995, 276.77706470080875, 277.16623959836664, 277.80343968050255, 278.3353093070331, 317.66812054013474, 275.6027400785707, 275.85439374409884, 276.0517885030526, 276.1955130885992, 276.2855096807439, 276.3536749441384, 276.51868813134115, 276.7666199783284, 277.09100828085894, 277.4440952448431, 277.8051425698494, 278.17415025587786, 278.8334711622536, 279.7265312781671, 280.4704517699275, 281.55106373009176, 282.6992037289593, 279.1683373282386, 273.08555633811574, 272.12854287757267, 271.89290257746876, 271.79209161046515, 271.83663332474623, 271.91439283728096, 271.9608512719253, 271.99749930324674, 272.0176476310722, 272.15346047074314, 272.34741194570677, 273.3067069123742, 274.51831802100907, 275.88793385579953, 277.4089451683157, 278.8447848752829, 279.0674954226455, 277.89694627056787, 276.0841532425863, 277.8101244367581, 283.5994762450181, 283.17162155673105, 282.13725533203956, 280.6226662570227, 278.8146597782182, 277.05122693209705, 275.75309056428165, 275.7842281301734, 276.1998789877452, 276.8572651113247, 276.741368000417, 276.2760824390678, 275.8187810084058, 275.3694637084315, 274.9257675539984, 274.5066973312758, 275.1551810403371, 276.13287842547516, 277.0153830208845, 277.71217710607, 278.29748118783135, 278.7655989885742, 279.06885106626015, 281.89836322011405, 279.96020713950617, 278.1085274372988, 276.8576595092576, 278.60846071443837, 283.837769468679, 283.43997145700445, 281.7262119728631, 278.6691350162747, 275.0107537560684, 270.7200862744166, 265.1800117419369, 258.3996434588788, 250.87428352768998, 246.55982796991472, 242.50091257946457, 238.31293376223854, 234.36258842036102, 230.66419386791029, 227.21775010488625, 224.02325713128897, 221.08071494711865, 215.9885980246807, 209.6016838244932, 204.68518293903008, 201.27349634515534, 199.89632417837404, 198.58868867961505, 197.32723501917621, 196.11171309345167, 194.94212290244113, 193.82112249455642, 192.75163028297345, 202.8348255071335, 188.13485823855618, 186.48472828036253, 184.7120575254526, 182.83453072476348, 180.87114591894502, 178.87174838025132, 176.7856494312857, 174.63567923876093, 172.9328144119839, 171.62321128689183, 170.33525481501067, 169.06870653708734, 167.81029433914279, 166.55238217471268, 165.30625576192648, 164.14179559563027, 163.07699391797706, 162.114584291626, 161.25456671657713, 160.49694119283026, 159.8417077203855, 159.28965773678289, 158.84353845827223, 158.50358397051946, 158.27120718070873, 158.14880576621428, 157.2067713201304, 155.29318113678607, 153.54690908103748, 152.00485462608316, 150.6582387958402, 149.39356142870517, 148.20117419082374, 147.08133546266583, 146.03404524423166, 145.05930353552108, 144.15711033653423, 143.3274656472709, 142.5703694677313, 141.8584229372601, 141.13111373706255, 140.71415242944073, 140.37709770806907, 140.01255387576262, 139.6262546745207, 139.23541743365263, 138.82840556801995, 138.3964771280884, 137.9396321138581, 137.45787052532884, 136.9512358047858, 136.43079021309035, 135.90511089477857, 135.3790001745701, 134.85099563233152, 134.314901734533, 133.17139819613422, 131.56601315931667, 130.09224112256194, 128.75883025451884, 127.58398310269023, 126.61536335306936, 125.7414502377874, 124.9612550524286, 124.44475067193405, 124.63136692862707, 124.37412519759664, 123.71926565241895, 123.08365074558718, 122.50521597563394, 121.97438429759524, 121.47946429975524, 121.02045598211402, 120.59735934467155, 120.21017438742776, 119.85936645608973, 119.54604722425422, 119.27081734257756, 119.06220850177696, 118.9305107052225, 118.87026831230963, 118.8421760831252, 118.83845038946282, 118.85909123132261, 118.9040986087048, 118.97347252160905, 119.05737560081435, 119.14006052528126, 119.22132063686995, 119.7023158834529, 120.34617347909044, 120.69080081873608, 121.03845005142098, 121.38912117714507, 121.7484793017564, 121.91754071994716, 122.07720386639085, 122.23929189289942, 122.39854119824307, 122.5533913266064, 122.70384227798957, 122.84989405239237, 122.99200396868574, 123.13294181422064, 123.27317355960096, 123.41966165889554, 123.57456431146693, 123.73016576516471, 123.88646601998866, 124.04348961189942, 124.20453927201709, 124.36933727216596, 124.53780531246494, 124.70994339291414, 124.88575151351357, 125.06522967426322, 125.24837787516302, 125.43519611621305, 125.62568439741335, 125.81984271876377, 126.01767108026442, 126.21916948191533, 126.42456447999538, 126.60219429288767, 126.74974932067275, 127.08372929910144, 127.51866745957726, 128.05456380210006, 128.69247573331327, 129.39298688348265, 130.09910290571568, 130.84933129330378, 131.64367204624673, 132.4801851544004, 133.30330907555538, 134.09797086780625, 135.23936969557116, 137.0055287172607, 138.43584262610764, 139.53031142211222, 140.2889351052742, 140.87500940910192, 140.94662758478287, 140.83592986557406, 140.81559350607995, 140.88561850630052, 141.0375165981233, 141.19215768269646, 141.33019947173008, 141.46369471012412, 141.61799806671772, 141.7930567161572, 141.98165217015574, 142.18314183607322, 142.40434005766997, 142.66291112324728, 143.16718164369289, 143.4424012772165, 143.75572889857943, 144.10716450778156, 144.4923337016902, 144.88086605003477, 145.292557389001, 145.72740771858872, 146.18541703879794, 146.66658534962878, 147.1709126510812, 147.69875729709403, 148.25080803526552, 148.8270819824629, 149.427579138686, 150.05229950393493, 150.7073965644016, 151.46895511553484, 152.38162464247944, 153.4660933309017, 154.72260064512943, 156.1511465851625, 157.75173115100108, 159.5243543426451, 161.46901616009447, 163.95424485828556, 178.03823164145325, 183.89417779402092, 186.18266004689912, 187.51601663815003, 187.8955727614577, 187.37905434630653, 186.07356974199163, 183.58507316809357, 179.58771041181336, 174.081481473151, 169.34043890222006, 165.43714582421913, 161.90115743393903, 158.17567221065775, 154.22610514304236, 150.0680238590814, 146.12404496539872, 142.76679084469689, 139.74326320455057, 136.68093868405484, 133.54152972073254, 130.31273743466298, 126.99456182584616, 123.58700289428205, 120.09006063997072, 116.50373506291166, 112.82802616310585, 109.19403423999923, 105.77145098153912, 102.52818228842743, 99.46422816066413, 96.57958859824922, 93.87426360118232, 91.34825316946414, 88.70545374528619, 82.46426280935937, 79.43262155856847, 76.53727511452249, 73.77822347722126, 71.15546664666543, 68.66900462285457, 66.31883740578877, 64.10496499546798, 62.00197831345469, 59.857260519674114, 57.66472419119618, 55.42436932802139, 53.136195930149555, 50.80020399758066, 48.416393530314664, 45.98476452835157, 43.50530002329002, 40.97797615851033, 38.23123587050942, 34.54477059018975, 30.482139552860264, 26.741807427610713, 25.3445182269994, 24.587160453649588, 24.46111905194839, 24.590491050397585, 24.72088802208147, 24.852309967000053, 24.98475688515334, 25.11822877654133, 25.252725641163995, 25.38824747902134, 25.5247942901134, 25.662366074440136, 25.800962832001584, 25.940584562797735, 26.081231266828556, 26.22290294409409, 26.365599594594286, 26.509321218329195, 26.654067815298795, 26.799839385503102, 26.946635928942097, 27.094457445615785, 27.243303935524157, 27.393175398667225, 27.54407183504498, 27.69599324465744, 27.84893962750461, 28.002910983586457, 28.157907312902985, 28.313928615454216, 28.470965440867822, 28.628960928693047, 28.78790557576957, 28.947799382097433, 29.10864234767659, 29.27043447250706, 29.433175756588845, 29.596864143381712, 29.761294388781778, 29.926330258498506, 30.091971752531883, 30.25746379288692, 30.422028937192856, 30.5857481219705, 30.748621347219853, 30.91064861294091, 31.071829919133695, 31.232165265798173, 31.39165465293435, 31.550298080542248, 31.708095548621845, 31.865047057173147, 32.02115260619619, 32.17653810274839, 32.336308772059, 32.50312771672504, 32.676994936746524, 32.857910432123454, 33.04162664801849, 33.22606019459951, 33.41216060270333, 33.59992787232997, 33.78936200347943, 33.98046299615173, 34.173230850346854, 34.36766556606483, 34.5637671433056, 34.761535582069214, 34.96097088235564, 35.1620730441649, 35.36484206749697, 35.569277952351904, 35.77538069872964, 35.98294558990619, 36.1916429554644, 36.40146836095692, 36.612421806383736, 36.824503291744854, 37.03771281704027, 37.25205038226996, 37.467515987433956, 37.684109632532234, 37.90183131756483, 38.120681042531714, 38.34060108255379, 38.56136628250094, 38.78295395789611, 39.00589913893985, 39.230369024339815, 39.456345577205816, 39.68382879753787, 39.91281868533601, 40.143315240600174, 40.37531846333039, 40.60882835352667, 40.843844911189, 41.080368136317375, 41.31839802891181, 41.55793458897231, 41.79897781649886, 42.041527711491455, 42.28558427395009, 42.53214054776783, 42.79014638169058, 43.055477615845405, 43.3263364363556, 43.60274164447284, 43.8846932401971, 44.172191223528365, 44.46523559446667, 44.763826353011964, 45.06796349916434, 45.37764703292368, 45.692876954290064, 46.01365326326345, 46.339975959843834, 46.67184504403126, 47.009260515825744, 47.34938903829399, 47.682062023623864, 48.01556306890859, 48.336887426557006, 48.64317254436291, 48.94342948562926, 49.23765825035605, 49.525858838543265, 49.8038231235321, 50.132670164967884, 50.463148697492166, 50.79525860965101, 51.12889806475766, 51.46397794401064, 51.800498247409955, 52.1384589749556, 52.47786012664761, 52.818701702485924, 53.160983702470645, 53.5047061266017, 53.84986897487905, 54.196472247302786, 54.54451594387284, 54.89400006458927, 55.244924609452, 55.597289578461144, 55.951094971616556, 56.30634078891835, 56.663027030366464, 57.02115369596091, 57.38079949610414, 57.79846229107617, 58.23455670244474, 58.67563909963129, 59.12170948263583, 59.57276785145837, 60.02881420609887, 60.48984854655734, 60.95587087283386, 61.42688118492833, 61.90287948284076, 62.38409436005595, 62.87149672194734, 63.36518057154888, 63.865145908860654, 64.3713953233591, 64.8839645504746, 65.40337748475277, 65.93099054179008, 66.46519180972587, 67.00589602356689, 67.5531031833133, 68.1068132889649, 68.66697980678539, 69.23351084410982, 69.80640393039981, 70.38571202236265, 70.97261754842332, 71.56679761988221, 72.16354345208386, 72.76209487419273, 73.36245188620886, 73.9646144881322, 74.56858267996269, 75.17435646170055, 75.78193583334547, 76.39132079489768, 77.0025113463571, 77.61550748772375, 78.23030921899756, 78.8469165401787, 79.47717067393886, 80.18990872013745, 80.9341273093919, 81.71221658745029, 82.53043211883849, 83.39217393580874, 84.29739739312791, 85.12589403395711, 85.95594145600542, 86.79757187436422, 87.65078528903341, 88.515581700013, 89.39196110730322, 90.28014502836078, 91.17934675699081, 92.0895013440807, 93.01060878963038, 93.94266909364006, 94.88568225610969, 95.83964827703905, 96.80456715642832, 97.78043889427738, 98.76726349058649, 99.765431771803, 100.77968368522232, 101.8114145255271, 102.86062429271676, 103.92731298679192, 105.01173748882186, 106.12748984076491, 107.28075451839658, 108.51692715923491, 109.89788650158705, 111.42399053578113, 113.09523926181802, 114.80003786870896, 116.50374863112867, 118.21190762152813, 119.8462794692519, 121.45692757086495, 123.04823096390844, 124.62018964838292, 126.21293586850673, 128.0297424689053, 129.871519980853, 131.73826840434927, 133.62998773939466, 135.54667871146842, 137.48840163621182, 139.45519497460305, 141.4470587266411, 143.46399289232684, 145.59776604019905, 147.88213335103083, 150.28194199417212, 152.79805544910792, 155.4304737158394, 158.17919679436537, 161.0442246846871, 164.05365488764707, 167.20025033333982, 170.4835997267211, 173.90370306778993, 177.49484679337002, 181.3560148378853, 185.46732270572832, 189.8224545179426, 194.4062194432602, 199.07914620062232, 203.83377644669366, 208.6869175436691, 213.64421365634144, 218.70365280765898, 223.8145282595458, 231.1079991733128, 238.73535014531632, 246.81673887020185, 255.35211735928814, 264.40740289464276, 274.0456326219533, 284.2301200547537, 294.95630821688667, 306.22419710835703, 318.8809494713288, 336.04628483060634, 363.15072778444755, 386.71822847011316, 411.9557474643101, 438.8323315796038, 467.7261964953374, 499.1602124715491, 545.4369205010446, 608.797162735185, 621.6847997017562, 600.8813659556201, 577.0393144372063, 542.9989723198239, 499.57337338065304, 469.4338484439461, 444.11106303224886, 451.07289089413115, 383.5763286613372, 357.5936908153675, 335.525575138834, 316.5705415927943, 304.9585353656824, 292.6228909885802, 281.8308508662518, 269.58499507500505, 256.21553442856276, 242.68706174994884, 231.3558264367866, 221.00419745584267, 210.51264637694902, 199.5733406275035, 191.0618834862103, 181.1693552173794, 174.0826219570948, 167.22754614784606, 160.6169365165006, 154.25079306305534, 148.1291157875134, 142.25190468987165, 136.71403994940252, 131.92579592890434, 132.07007974382572, 126.78802746910365, 120.47157063026297, 113.6994685937974, 106.4750068423377, 99.12928961153052, 91.99869264759535, 86.4529828415586, 80.9458072346953, 74.43091387004691, 68.56858741359525, 62.46605069860501, 56.99277985413388, 52.16337992112634, 47.98783075366877, 44.466748380998894, 41.60013280311498, 39.14741125696476, 36.862017861653925, 34.74394342288608, 32.7937596773019, 31.012007677747373, 29.398687424222867, 27.953798916727575, 26.677342155262227, 30.440513100478476, 16.636728660174892, 8.497563268326802, 6.147523648307384, 4.177044960401671, 2.5861272046087254, 1.3747703809293028, 0.5429744893628273, 0.09073952990963254, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.295502232187965, 38.14938267604674, 120.45511951227475, 176.33028757068672, 291.4565737670239, 313.1768454077982, 347.6923092757778, 458.8822488814573, 527.970332937554, 664.7415485652222, 609.609871642939, 590.4250315560103, 606.1093691731701, 608.4987903182479, 584.5837650337559, 568.6625132319011, 553.7010216352503, 540.3750109536475, 532.1469591097699, 530.1184229193126, 530.0413556467144, 532.6463644340487, 536.5818909358818, 540.2852851076913, 544.3293947059268, 548.8301323361566, 553.8639341860007, 560.4835241292479, 562.546561296527, 548.6804806924554, 546.9521051185945, 546.0575445655444, 547.0753531650332, 549.5577795548959, 551.7972820900933, 554.4317272135843, 559.4136366392652, 565.0258086873615, 571.2922553125455, 577.9964024954261, 584.9722280603753, 592.6985610984833, 601.378435642996, 611.0499154007337, 621.7347535985529, 634.2229410691264, 671.4148862531091, 676.4558998479669, 704.6825646961619, 705.8799135376587, 707.369205702445, 709.8135399708765, 712.4270108141117, 714.0778181189866, 716.4916347665669, 715.5084621396958, 719.4126344950927, 725.4795512707063, 729.3756799403218, 731.1092428980697, 732.0481149216777, 735.441191702663, 740.0648320631597, 746.2715439183957, 754.2834188714615, 766.7947076331278, 787.2687466970394, 802.0905523039926, 805.6828282576895, 811.6578180753453, 814.4420267306404, 810.9715132667583, 816.1932644953702, 820.8229402470239, 824.8605405217224, 828.3039574976153, 831.084722726065, 835.1307630238013, 845.6940744882448, 857.9923382647888, 870.7404729354527, 897.0160930494472, 921.2473921188953, 944.7573526739716, 947.1545380332859, 947.4569925321499, 954.8409676701935, 960.6883647913877, 989.9267925795556, 1004.9242348939736, 982.960492365018, 972.7142211083358, 876.0673795797102, 816.703435265964, 777.4989221601975, 746.8156592822853, 719.5746821980684, 695.7997605899744, 670.8123661204256, 642.4366007721922, 612.2410169890518, 587.0427266328213, 565.5191440166947, 545.4626081337336, 526.2520376393769, 508.096500614853, 491.4121441445545, 475.0902558498767, 457.62617852839423, 444.86591889416417, 418.30880294986196, 400.85235415422693, 387.73698114857353, 375.7183211448211, 364.2228876185469, 353.1780164280965, 342.05267159661133, 330.99979461625105, 321.92996854783286, 312.0335971310367, 305.5957075292268, 295.66352042888826, 278.13189215503644, 268.37699740856675, 259.16455802950696, 250.57126381732658, 242.5971147720222, 234.34330425805734, 225.89256047974186, 220.6229344762214, 218.3227796412568, 212.55146180534655, 203.2424349335589, 187.74004443542054, 176.9006480261599, 168.4308151036042, 160.56962070512046, 153.52515456771675, 146.91979644628069, 142.28546147531287, 142.90681883518042, 134.51760469852923, 114.83484726773071, 100.8097917249047, 89.82714997905201, 79.76107332283199, 71.69064651498128, 65.37986987915032, 49.99739879577825, 22.421511357584254, 5.550203788991534, 2.6180367987034535e-09, 2.7690615719881728e-05, 0.0001096880847162439, 0.0002459950250259243, 0.00043661143664890984, 0.0006815373195851357, 0.0009807726738347183, 0.0013343174993975158, 0.0017421717962736961, 0.0022043355644631815, 0.002720808803965842, 0.0032915915147819245, 0.003916683696911158, 0.004596085350353837, 0.005329796475109642, 0.00611781707117892, 20.431603994653344, 169.6499051789962, 316.7254525802801, 447.1251288300951, 597.7986670285517, 665.3973799725488, 627.1873665972647, 603.3564464887739, 554.2138175141683, 547.3663497623638, 545.8979029431472, 543.5685990357422, 537.4005951992636, 535.8277134148431, 537.4840652262683, 542.3911415969999, 552.7520519793536, 556.3139811768503, 557.4048553457746, 554.5845972871607, 545.022776385913, 522.4930503344827, 492.0028767384138, 467.3144031014808, 447.0291036312915, 431.45191142140936, 417.7780730530393, 405.1273481604949, 393.49973674375804, 382.68952773134583, 372.01915837190165, 363.0589444498105, 355.1717144445122, 348.14335034114515, 341.73096949246167, 335.85606126489625, 330.2799117819056, 324.9654661269648, 319.91728210801114, 315.133837979575, 310.6416900587576, 306.42523419785215, 302.4718997474761, 298.8075308438114, 295.39374837352864, 291.44538407778157, 287.4888883416871, 283.78893051316714, 280.34551059222014, 277.34044550529114, 274.26858844176485, 271.64509951092134, 269.30940271684125, 267.10705805922225, 265.0321446967665, 263.0846626294763, 261.2646118573494, 259.5186441479434, 257.8372432558148, 256.2298457173051, 254.2434142130519, 252.88850651684155, 251.30863079454429, 249.75715263087616, 248.27617633521962, 246.86516644404662, 245.52363918403194, 244.25159455517704, 243.0490325574803, 241.91595319094336, 240.93028383892943, 239.97532200389966, 238.9937937337505, 238.08377249717785, 237.24318275034474, 236.29308469617152, 235.26615591792984, 234.18822909291262, 233.05731234096606, 231.85919889157543, 230.60838574671016, 229.5024741322274, 228.45049707399022, 227.4015507899164, 226.3735402136593, 225.3875431843335, 224.45636770530731, 223.57453014018913, 222.7420304889784, 221.95886875167537, 221.22513169688315, 220.97170282329222, 220.78500261298916, 220.3148032221164, 220.0742058211639, 219.86549384935853, 220.03467450382556, 220.16381594903766, 220.1581005097921, 219.76184925829193, 219.118147408066, 218.6692592901324, 218.00079626505737, 217.21668168465987, 216.4375806432044, 215.4034275280677, 214.38965607516252, 213.14216247475838, 211.5243946522603, 210.97461694859692, 210.58748234764778, 212.67895742461698, 214.08828771279073, 214.47529588552942, 213.7250728477342, 208.8555512629132, 205.4063310961774, 200.93747251630865, 195.32617665885866, 185.19096328830258, 173.5050227140773, 164.45806114521585, 160.88097609912674, 159.37433433637247, 156.38998732595545, 150.2104979540032, 140.53629686331206, 133.49034863070568, 132.0586889765361, 132.08946054180666, 129.40701676241446, 127.2140063093521, 121.81305616109834, 115.55529302034488, 112.52875479135638, 110.45542018141836, 108.63289208789548, 106.17976582453635, 101.46270282544725, 96.0027449227936, 90.58861615061565, 85.22031650890581, 78.71587727543132, 71.02668340506558, 78.4328419051603, 68.68502286715344, 53.98293151690334, 41.32737138204777, 30.258217383898614, 22.292764510989667, 16.43942522612542, 9.420421818586524, 0.945041457567605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] } ], "layout": { "hovermode": false, "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": "Energy (eV)" } }, "yaxis": { "title": { "text": "DOS (states/eV)" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "c.plotter.combiplotly();" ] }, { "cell_type": "markdown", "id": "5a017e91", "metadata": {}, "source": [ "A 16x16x16 $q$-mesh with the tetrahedron method gives a well converged phonon DOS." ] }, { "cell_type": "markdown", "id": "713bff28", "metadata": {}, "source": [ "To function `anaget_phbst_and_phdos_files` allows one to compute the phonon band structure on\n", "an automatically defined $q$-path as well as the phonon DOS:" ] }, { "cell_type": "code", "execution_count": 30, "id": "55efa81f", "metadata": {}, "outputs": [], "source": [ "phbst_file, phdos_file = ddb.anaget_phbst_and_phdos_files(ndivsm=10, nqsmall=16, lo_to_splitting=False)\n", "\n", "# Extract the phonon bands and the phonon DOS from phbst_file and phdos_file\n", "phbands = phbst_file.phbands\n", "phdos = phdos_file.phdos" ] }, { "cell_type": "markdown", "id": "77c944ed", "metadata": {}, "source": [ "Let's plot the phonon bands with plot:" ] }, { "cell_type": "code", "execution_count": 31, "id": "ce5bdfa1", "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://chart-studio.plotly.com", "responsive": true, "showLink": true }, "data": [ { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "y": [ 0.0, 0.0005958481034701485, 0.0011902521158242215, 0.0017817655359985737, 0.0023689369312623284, 0.002950307318387079, 0.0035244073648737504, 0.004089754419174196, 0.004644849409630538, 0.005188173703502295, 0.0057181860752842555, 0.006233319996764072, 0.006731981528519774, 0.00721254816197941, 0.007673369029675163, 0.008112766963914395, 0.008529042932800244, 0.008920483405773954, 0.009285371183233642, 0.009622000148016206, 0.009928694241940266, 0.010203830723558644, 0.01044586741931681, 0.010653373252214757, 0.010825060855518957, 0.010959819614454335, 0.011056747106115782, 0.01111517671313096, 0.011134699241584221, 0.011168582271487431, 0.011268445338631318, 0.011429083316919138, 0.011642290614602589, 0.011897443693659419, 0.012182128583448226, 0.012482722804952025, 0.012784896537068413, 0.013074057927574071, 0.013335814579914512, 0.013556543160091663, 0.013724135903897058, 0.013828913621406504, 0.013864571235531978, 0.013779662988811586, 0.013524207997304397, 0.013128741151262144, 0.012643661210682723, 0.01212017840583955, 0.011606158979236907, 0.011146465401578556, 0.010782216321466975, 0.0105478991864319, 0.010466996655282234, 0.010322636846724378, 0.010163237117076732, 0.009988607948716094, 0.009798591265598818, 0.009593063624402326, 0.009371938385533247, 0.00913516717873893, 0.008882741000188927, 0.008614691265434187, 0.00833109110118086, 0.008032057095252405, 0.007717751645895297, 0.007388385965978548, 0.0070442237113387965, 0.006685585121391774, 0.0063128514890323055, 0.005926469719636182, 0.005526956698443112, 0.005114903163471805, 0.004690976778095924, 0.004255924113175421, 0.0038105712819198165, 0.003355823019333758, 0.002892660059312807, 0.002422134732794484, 0.001945364786056158, 0.001463525495337799, 0.0009778402286252984, 0.0004895696744950367, 0.0, 0.0005358650745073206, 0.0010697839571917453, 0.0015998079483165756, 0.002123983497755503, 0.002640350317183838, 0.0031469401265581806, 0.0036417762917250996, 0.004122874617860287, 0.0045882455829848925, 0.005035898308865707, 0.005463846567849003, 0.005870117107085557, 0.0062527605292285494, 0.006609864894426995, 0.006939572097304604, 0.007240096922626626, 0.007509748497269094, 0.007746953642881998, 0.007950281409387106, 0.00811846785715102, 0.008250439983331167, 0.00834533758490328, 0.008402531842866816, 0.008421639515277742, 0.008435074116124678, 0.008475006682460162, 0.00854034167252158, 0.008629311267737038, 0.008739554477465168, 0.00886821386002861, 0.009012039801413489, 0.009167493549695599, 0.009330842652025348, 0.009498245289996673, 0.009665822603590876, 0.009829720041733714, 0.009986159945357969, 0.010131488005376254, 0.010262216085629251, 0.010375063330630437, 0.010466996655233927, 0.010547899186384912, 0.010782216321422565, 0.011146465401537816, 0.011606158979200561, 0.012120178405808283, 0.012643661210656994, 0.013128741151242584, 0.013524207997291496, 0.01377966298880551, 0.013864571235531978, 0.013744395906115292, 0.013435553540285267, 0.01302306443380849, 0.012563472122157002, 0.012088633157758615, 0.011617698621025241, 0.011163341309395333, 0.010734488840885296, 0.01033753727367969, 0.009976918814707976, 0.00965539557790815, 0.009374251611597308, 0.009133471441282476, 0.008931951135579153, 0.008767760254106794, 0.008638451537396941, 0.008541398871657337, 0.008474134065488194, 0.008434649869509774, 0.008421639515277742, 0.00843507411617806, 0.008475006682513433, 0.008540341672574637, 0.0086293112677898, 0.008739554477517572, 0.008868213860080625, 0.009012039801465074, 0.00916749354974673, 0.009330842652076045, 0.009498245290046954, 0.009665822603640795, 0.009829720041783235, 0.009986159945407197, 0.01013148800542519, 0.010262216085677954, 0.010375063330678894, 0.010466996655282234, 0.010486209341331383, 0.010616084043721124, 0.01083628945405738, 0.011117663987991275, 0.01142414871045093, 0.011714365535162113, 0.011944005664416255, 0.012071949462263662, 0.012071949462258416, 0.011944005664401116, 0.011714365535138306, 0.011424148710419966, 0.011117663987954468, 0.010836289454015928, 0.010616084043676238, 0.010486209341284173, 0.010466996655233927, 0.010596533035792518, 0.010711483558382296, 0.010812099511839195, 0.010898637212487142, 0.010971348268893009, 0.01103046924619102, 0.011076211299667483, 0.011108750426933146, 0.011128219006633114, 0.011134699241584221 ] }, { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "y": [ 0.0, 0.0005958481034703127, 0.001190252115824366, 0.0017817655359986175, 0.0023689369312623653, 0.002950307318387225, 0.0035244073648739065, 0.004089754419174217, 0.004644849409630607, 0.005188173703502313, 0.005718186075284371, 0.006233319996764128, 0.006731981528519776, 0.007212548161979423, 0.007673369029675183, 0.008112766963914405, 0.00852904293280028, 0.008920483405773973, 0.009285371183233693, 0.009622000148016232, 0.009928694241940284, 0.010203830723558667, 0.010445867419316829, 0.010653373252214767, 0.010825060855518966, 0.010959819614454372, 0.011056747106115804, 0.011115176713130963, 0.011134699241584235, 0.011205256528990497, 0.011411339878807079, 0.011737217422390573, 0.012159656484850734, 0.012651143121087777, 0.013182741559147913, 0.013726148188075037, 0.014254951270531726, 0.014745329968947838, 0.015176449430589014, 0.015530737486767799, 0.015794139043504147, 0.015956370853749416, 0.01601115256346213, 0.016034374940024302, 0.016114784993772183, 0.016241587852722977, 0.01638973260928492, 0.016538069748835028, 0.01667248775948562, 0.016784042662399565, 0.016867095049564487, 0.016918180831621363, 0.016935410066685003, 0.017384720871230212, 0.017692960355102746, 0.01785133782975082, 0.0178600946302589, 0.01772712060593466, 0.017465237884643676, 0.01708934001366542, 0.01661436879508854, 0.016054359181503126, 0.015422239395982008, 0.014729964395722425, 0.013988693836073632, 0.013208890606313719, 0.012400324417019812, 0.01157201155395882, 0.010732129137982481, 0.009887932269685052, 0.009045689294177792, 0.008210640308371377, 0.007386978288291225, 0.006577850003131912, 0.0057853738590993254, 0.005010672836497997, 0.004253921970749727, 0.0035144109085782755, 0.0027906226738949403, 0.002080329769076425, 0.0013807080927316494, 0.000688467963792988, 0.0, 0.0005358650745084461, 0.0010697839571920924, 0.0015998079483169252, 0.002123983497755699, 0.0026403503171840304, 0.0031469401265582044, 0.0036417762917251933, 0.004122874617860413, 0.004588245582985012, 0.005035898308865789, 0.005463846567849069, 0.005870117107085635, 0.006252760529228604, 0.006609864894427044, 0.0069395720973046485, 0.007240096922626693, 0.0075097484972691565, 0.007746953642882025, 0.00795028140938717, 0.008118467857151054, 0.008250439983331186, 0.008345337584903318, 0.008402531842866877, 0.008421639515277766, 0.008552368830924282, 0.008929558801678632, 0.009514020108253, 0.010254960798870085, 0.01110096925547409, 0.012005592889278304, 0.012928475193097791, 0.013834263190820737, 0.014690872991508308, 0.015468002779273217, 0.01613654317285202, 0.016669597245288336, 0.017045622712882076, 0.017252979637513835, 0.0172932089238577, 0.01718019192488727, 0.016935410066673547, 0.0169181808316116, 0.016867095049556326, 0.016784042662392914, 0.016672487759480346, 0.01653806974883103, 0.01638973260928198, 0.016241587852720785, 0.016114784993770448, 0.016034374940023015, 0.01601115256346213, 0.016092870858369544, 0.016284098174800334, 0.01649329732345975, 0.016653946052840193, 0.016722550634453277, 0.016669702578868847, 0.016477592812145815, 0.016140213535469565, 0.015662785399461646, 0.015059501813382045, 0.01435063645630155, 0.013560349063303652, 0.012715766367356354, 0.011847230272192711, 0.010989330790387459, 0.010182204976112481, 0.009472237280404291, 0.00891060307489176, 0.008547555277725438, 0.008421639515277766, 0.008552368830871682, 0.00892955880162851, 0.009514020108206352, 0.010254960798827404, 0.011100969255435383, 0.012005592889243574, 0.012928475193066787, 0.013834263190793492, 0.014690872991484874, 0.015468002779253786, 0.01613654317283685, 0.01666959724527776, 0.01704562271287634, 0.017252979637512995, 0.01729320892386144, 0.017180191924895113, 0.016935410066685003, 0.017058887502421793, 0.01712407982810915, 0.01713067088429244, 0.01708400096041491, 0.016996595704822676, 0.016889296830203793, 0.016790482057327354, 0.016730602555633335, 0.016730602555634414, 0.016790482057330126, 0.01688929683020706, 0.016996595704825073, 0.017084000960415423, 0.017130670884290343, 0.017124079828104096, 0.017058887502413553, 0.016935410066673547, 0.01636248105121326, 0.015690561442475985, 0.014949859644173922, 0.014175102174133663, 0.013405045106775941, 0.012682128205914047, 0.012051494673664304, 0.011558395887121865, 0.011243239101146395, 0.011134699241584235 ] }, { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "y": [ 0.0, 0.0014538419078690321, 0.0029032335259157015, 0.004343746600072835, 0.005770996187208085, 0.007180660465844731, 0.00856849838493545, 0.009930364537584448, 0.011262220734050475, 0.012560143866626452, 0.013820329806826234, 0.015039093256358861, 0.016212863691639857, 0.017338177801069245, 0.018411669117979392, 0.019430055899967942, 0.02039012869079994, 0.021288739406227705, 0.022122794173540513, 0.02288925246405959, 0.02358513519393277, 0.024207544306459747, 0.024753695748092743, 0.02522096659048016, 0.025606955294481704, 0.025909551877130833, 0.026127012361040227, 0.026258029897720733, 0.026301793998560002, 0.026286090109097274, 0.02623950281190267, 0.02616360938171818, 0.026061052075024845, 0.02593555615484597, 0.025791948052490056, 0.025636160270067602, 0.02547519724351854, 0.02531701971205174, 0.025170288612375784, 0.025043904695601357, 0.024946306357878856, 0.024884563662299252, 0.024863423666417854, 0.024867825915040886, 0.024881979818664246, 0.02490536601032983, 0.02493559163951616, 0.024969282218586502, 0.025002804480876096, 0.02503276311604355, 0.025056307349554035, 0.025071308068373727, 0.025076455494001424, 0.024885788008125666, 0.024691710131590047, 0.02448893259937908, 0.02426826607628745, 0.024018294795948438, 0.02372788335915151, 0.0233882680212108, 0.022993893941213418, 0.022542037452946705, 0.022031793538676566, 0.021463022284812196, 0.020835596988640733, 0.020149042968341836, 0.019402503594685323, 0.018594914854711247, 0.017725274066096888, 0.01679291776087313, 0.015797757151514557, 0.014740447358215954, 0.013622486004059983, 0.012446248413346237, 0.011214972168518692, 0.009932705070915586, 0.008604229282968738, 0.007234971921020413, 0.005830909537943754, 0.004398471334759577, 0.0029444438289767984, 0.001475878143179424, 0.0, 0.0015752049144679699, 0.0031455596120142097, 0.004706214290917459, 0.006252318864430038, 0.007779020044140273, 0.009281455017417981, 0.010754740490705761, 0.012193955812770224, 0.01359411887578574, 0.014950153566890147, 0.01625684779872418, 0.017508801728128114, 0.018700366896014592, 0.019825578998177936, 0.02087809021861594, 0.021851111919331576, 0.02273738515333153, 0.02352920441254738, 0.024218527211991712, 0.024797204179652046, 0.02525735451516167, 0.025591883224774604, 0.025795088687606244, 0.025863254765841344, 0.025850254452758015, 0.02581155106081679, 0.025748060485725692, 0.025661390259190158, 0.025553973019222537, 0.02542927499990637, 0.025292093152013594, 0.02514893738671793, 0.025008439526326597, 0.0248815999096589, 0.024781443752810123, 0.024721395641883952, 0.02471181415860328, 0.024755340877840926, 0.024843670032890126, 0.02495851288846004, 0.025076455494026186, 0.025071308068397465, 0.025056307349576458, 0.02503276311606439, 0.025002804480895, 0.02496928221860315, 0.024935591639530165, 0.024905366010340827, 0.024881979818671882, 0.024867825915044817, 0.024863423666417854, 0.02485059751140697, 0.024814563453843738, 0.02476252652447003, 0.024705877858282477, 0.02465871495575063, 0.02463513367472505, 0.02464575325513651, 0.0246949474435722, 0.02478027970868717, 0.02489423345928747, 0.025026910846114653, 0.025168303825861667, 0.025309583410400426, 0.025443550949176875, 0.025564607489768264, 0.025668528610556973, 0.025752206930466443, 0.025813432396006506, 0.02585073025638264, 0.025863254765841344, 0.02585025445275799, 0.025811551060816684, 0.025748060485725453, 0.025661390259189683, 0.02555397301922175, 0.025429274999905136, 0.02529209315201171, 0.02514893738671515, 0.025008439526322562, 0.024881599909653197, 0.02478144375280224, 0.02472139564187339, 0.024711814158589644, 0.0247553408778241, 0.024843670032870246, 0.024958512888437496, 0.025076455494001424, 0.025015041732317184, 0.024946284282089625, 0.02487612542946286, 0.0248100973232494, 0.02475278576737426, 0.024707535770290542, 0.024676462251258195, 0.024660695443637064, 0.02466069544363875, 0.02467646225126325, 0.02470753577029896, 0.024752785767385956, 0.024810097323264245, 0.024876125429480648, 0.024946284282110084, 0.02501504173233998, 0.025076455494026186, 0.025264916071552214, 0.025449245637172904, 0.025625703036453656, 0.025789826233413936, 0.02593714658984159, 0.02606358758213223, 0.02616566916290306, 0.02624061206135141, 0.02628639574458172, 0.026301793998560002 ] }, { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "y": [ 0.04448528301667473, 0.04447482345293691, 0.04444353277461056, 0.04439167558592679, 0.04431969472623454, 0.044228213840494336, 0.04411804062409022, 0.04399017039401243, 0.04384578954739967, 0.04368627838398631, 0.04351321269293084, 0.04332836343897397, 0.043133693830617596, 0.04293135301768156, 0.0427236656521673, 0.04251311656167339, 0.0423023298377823, 0.042094041744448044, 0.04189106701707379, 0.041696258365898554, 0.041512459329478044, 0.04134245105065657, 0.041188894061036305, 0.04105426673418512, 0.04094080265278314, 0.04085042965690793, 0.04078471370908452, 0.04074481083420514, 0.04073143019666888, 0.04073400667117505, 0.04074159856309975, 0.040753801980564386, 0.04076997191176644, 0.04078926156623936, 0.040810672254488645, 0.04083310970784135, 0.04085544278086241, 0.04087656095774555, 0.04089542780596655, 0.04091112829825151, 0.04092290862216424, 0.04093020764446551, 0.04093267957917706, 0.04093406480019913, 0.0409383197262515, 0.040946077614382126, 0.040958266946778316, 0.04097568761364499, 0.04099857421069857, 0.041026018522289626, 0.04105502393397208, 0.04107917533320556, 0.04108902188160734, 0.041187659659495834, 0.04131146450675919, 0.041464378897647175, 0.04164797547564517, 0.041860086195776865, 0.04209370804516242, 0.04233646719740807, 0.042571212933672706, 0.04277904026652484, 0.04294573293666878, 0.04306841474722046, 0.04315567733240191, 0.0432211473465637, 0.0432774288857823, 0.04333374544177305, 0.04339593887226231, 0.043467142264346864, 0.04354843406649547, 0.04363934107162087, 0.04373822024672338, 0.04384256587042602, 0.0439492729157343, 0.04405487255254749, 0.04415574643282249, 0.04424832182169918, 0.04432924759724571, 0.04439555013205952, 0.04444476726584819, 0.04447505776146406, 0.04448528301667473, 0.0444791942115283, 0.04446101817165053, 0.044431025257760826, 0.044389663496424966, 0.04433755464957638, 0.04427548857605468, 0.04420441575383993, 0.04412543780148134, 0.04403979581464368, 0.04394885632243018, 0.043854094672906165, 0.043757075683558064, 0.04365943144613966, 0.043562836261927716, 0.04346897880671029, 0.04337953178571369, 0.04329611953332548, 0.0432202842309549, 0.04315345164175581, 0.04309689746960368, 0.04305171561324771, 0.04301878967542731, 0.04299876907545634, 0.042992050986604795, 0.042983302566968994, 0.042957220313752084, 0.04291429138628804, 0.0428553214970866, 0.042781425487508226, 0.04269401394448593, 0.04259477567138161, 0.04248162089102041, 0.042303824025621425, 0.04211189863572431, 0.04191542808330787, 0.04172381072164429, 0.04154562825404588, 0.04138822004558614, 0.04125735391255255, 0.04115696882788631, 0.04108902188160038, 0.04107917533320212, 0.041055023933970425, 0.04102601852228859, 0.04099857421069767, 0.04097568761364409, 0.04095826694677739, 0.04094607761438129, 0.040938319726250796, 0.04093406480019871, 0.04093267957917706, 0.040938124975483936, 0.04095605488138708, 0.04099051663560193, 0.041046349948182966, 0.04112756543301018, 0.041236275418025284, 0.041372186745165684, 0.04153249962016188, 0.041712079630749646, 0.04190382488212047, 0.04209919939144172, 0.04228895277114695, 0.04246407941570837, 0.042617020368170305, 0.042742890784710746, 0.042840200525230326, 0.042910523465716104, 0.04295716181187837, 0.04298353902556028, 0.042992050986604795, 0.0429833025669869, 0.04295722031376997, 0.04291429138630588, 0.04285532149710439, 0.04278142548752592, 0.04269401394450353, 0.042594775671399084, 0.0424816208910174, 0.04230382402562044, 0.042111898635724974, 0.04191542808330984, 0.04172381072164729, 0.04154562825404978, 0.04138822004559086, 0.04125735391255799, 0.041156968827892514, 0.04108902188160734, 0.04111030711946763, 0.0411225399606451, 0.04112806253125427, 0.04112976400980184, 0.041129647966816105, 0.041128877532493335, 0.04112809199897491, 0.04112762678172078, 0.04112762678172086, 0.04112809199897508, 0.041128877532493655, 0.04112964796681649, 0.04112976400980217, 0.04112806253125425, 0.04112253996064405, 0.04111030711946431, 0.04108902188160038, 0.041010610966601226, 0.04094760692841038, 0.040896027993590836, 0.0408530418246438, 0.04081696035477525, 0.04078704102952653, 0.04076320295569457, 0.0407457342305217, 0.04073503632657828, 0.04073143019666888 ] }, { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "y": [ 0.044485283016712195, 0.04447482345293691, 0.04444353277461056, 0.04439167558592679, 0.044319694726234544, 0.04422821384049435, 0.04411804062409022, 0.04399017039401243, 0.04384578954739967, 0.04368627838398631, 0.04351321269293085, 0.04332836343897397, 0.043133693830617596, 0.04293135301768157, 0.042723665652167314, 0.04251311656167339, 0.04230232983778231, 0.04209404174444805, 0.04189106701707379, 0.04169625836589856, 0.04151245932947805, 0.04134245105065658, 0.041188894061036305, 0.04105426673418513, 0.04094080265278315, 0.04085042965690794, 0.04078471370908453, 0.04074481083420515, 0.04073143019666889, 0.04074074575201602, 0.04076868090641539, 0.040815183338265386, 0.040880102796145915, 0.04096308307760186, 0.041063382969339715, 0.04117959669058249, 0.04130923615131358, 0.04144813821696552, 0.04158969662702054, 0.041724061194718866, 0.04183782706562152, 0.041915370694971796, 0.041943075114274704, 0.041935319402488, 0.04191040899364346, 0.04186799964096019, 0.041810385551629574, 0.04174179196272809, 0.041667626277900514, 0.04159415466143973, 0.04152888708687799, 0.04148160222040608, 0.04146381325633704, 0.04160041319720256, 0.041743738320987565, 0.04189237939319925, 0.042044923994019476, 0.04219997841066058, 0.04235618819419463, 0.04251225687276712, 0.04266696238835759, 0.04281917091537214, 0.042967847820344164, 0.04311206562694312, 0.04325100895398051, 0.04338397649158231, 0.04351038016856226, 0.043629741739600617, 0.04374168708233545, 0.043845938540931856, 0.04394230568385034, 0.044030674859770524, 0.044110997937891895, 0.04418328060858552, 0.0442475705994922, 0.04430394613286445, 0.0443525049146466, 0.044393353906948686, 0.044426600095556185, 0.04445234242500413, 0.04447066503719503, 0.044481631916648647, 0.044485283016712195, 0.04447919421152832, 0.04446101817165055, 0.04443102525776083, 0.04438966349642498, 0.04433755464957638, 0.04427548857605468, 0.04420441575383995, 0.04412543780148135, 0.04403979581464369, 0.04394885632243018, 0.043854094672906165, 0.04375707568355807, 0.04365943144613966, 0.043562836261927716, 0.043468978806710294, 0.04337953178571369, 0.04329611953332548, 0.04322028423095491, 0.04315345164175582, 0.04309689746960368, 0.043051715613247735, 0.04301878967542732, 0.042998769075456356, 0.0429920509866048, 0.04298922585293537, 0.04297928968408118, 0.04295803305166262, 0.04291915350452573, 0.042855672290169275, 0.042762094414067926, 0.04263653284624322, 0.04248565577987093, 0.042368829135822246, 0.04224666888055009, 0.042121709773366704, 0.04199660617896155, 0.04187408467218715, 0.04175689146988682, 0.04164773523431017, 0.04154922622229933, 0.04146381325632113, 0.041481602220386236, 0.041528887086856404, 0.041594154661418074, 0.0416676262778798, 0.041741791962709114, 0.04181038555161313, 0.041867999640947035, 0.041910408993634275, 0.04193531940248332, 0.041943075114274704, 0.041956318991789275, 0.041994411388564315, 0.04205307378818622, 0.04212679099241408, 0.04221007761909147, 0.042298185331231794, 0.04238732608936466, 0.04247462736396435, 0.0425579802859849, 0.04263586507103105, 0.04270719064384164, 0.042771163589630214, 0.04282719489849291, 0.04287485477487645, 0.04291388941073688, 0.04294430441572853, 0.04296647585779569, 0.04298117963577508, 0.04298941803643543, 0.0429920509866048, 0.0429892258529177, 0.042979289684064365, 0.04295803305164726, 0.042919153504512406, 0.042855672290158436, 0.042762094414059815, 0.04263653284623781, 0.04248565577988825, 0.042368829135839406, 0.0422466688805671, 0.042121709773383545, 0.041996606178978234, 0.04187408467220365, 0.041756891469903176, 0.041647735234326355, 0.041549226222315376, 0.04146381325633704, 0.04151918111248269, 0.04160499987694972, 0.04171404068150525, 0.04183621533523533, 0.04195979747884492, 0.042071513548903545, 0.04215720369475911, 0.04220402053386315, 0.042204020533859965, 0.042157203694749956, 0.04207151354888942, 0.04195979747882707, 0.04183621533521496, 0.04171404068148363, 0.04160499987692822, 0.04151918111246308, 0.04146381325632113, 0.041335321881646, 0.041216273756088745, 0.04110793242074208, 0.041011468804923554, 0.04092794124044287, 0.04085827740287351, 0.040803258541830645, 0.04076350627897833, 0.04073947217457198, 0.04073143019666889 ] }, { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "y": [ 0.04448528301678009, 0.04866677482736557, 0.04866339257802208, 0.0486576806225212, 0.04864953031072376, 0.048638796899426164, 0.04862530701937498, 0.04860886839108383, 0.04858928182826573, 0.04856635552409109, 0.048539921541434335, 0.04850985431882024, 0.048476090854188345, 0.04843865203466963, 0.04839766433955389, 0.04835338085597037, 0.04830620021932535, 0.048256681741383596, 0.048205554654159564, 0.04815371913915109, 0.048102236721846645, 0.048052307814133575, 0.04800523482086159, 0.0479623704088768, 0.047925052303196415, 0.04789452820575989, 0.047871876794298884, 0.04785793271211804, 0.047853224367915705, 0.04782900824221787, 0.04775698705522154, 0.047639051105503254, 0.047478381460745914, 0.047279501405920944, 0.04704836120762234, 0.04679247236016061, 0.0465211153145468, 0.0462456470923737, 0.045979906975442554, 0.04574058910000693, 0.04554708817755275, 0.04541970822465694, 0.04537504989911104, 0.045394484430998944, 0.04544961655899271, 0.045533078560253105, 0.045634916633606255, 0.04574405218145114, 0.04584966749902549, 0.04594220002459005, 0.046013920798443374, 0.04605921431948011, 0.04607468963159275, 0.04583055235907391, 0.04560345313264514, 0.04539889934362, 0.045221770148371074, 0.04507697802718957, 0.04497042155937722, 0.04490999406769285, 0.04490592243278325, 0.04496886037919333, 0.045104472408652715, 0.04530754544990301, 0.04556230426947378, 0.045849000965125106, 0.04614992020834955, 0.0464515617681165, 0.04674441679014857, 0.04702207514280017, 0.047280390176268644, 0.0475168493660951, 0.0477301234442462, 0.04791974121656801, 0.04808584798284831, 0.04822901904137696, 0.04835010975536639, 0.04845013031496351, 0.04853013787677655, 0.0485911421680814, 0.04863402342049899, 0.04865946375196498, 0.04448528301678009, 0.04865658739235655, 0.048622721760326545, 0.04856646822041065, 0.04848811771261887, 0.04838809224530162, 0.04826696040707123, 0.0481254584677041, 0.0479645178964076, 0.04778530023179857, 0.04758924023943071, 0.0473780981019629, 0.04715402086221313, 0.04691961226337865, 0.04667800819496509, 0.04643295176601178, 0.046188857194032054, 0.04595084504925665, 0.045724723467577506, 0.045516882769892936, 0.04533406886647071, 0.045183010635941996, 0.04506990492427841, 0.04499981065798409, 0.044976057900884825, 0.044969548025143746, 0.04495174071190692, 0.04492763835097012, 0.0449048909014151, 0.04489241178917213, 0.04489825167662173, 0.04492749877776639, 0.04498136970771857, 0.04505786681537374, 0.04515324184463348, 0.04526332386016874, 0.04538432813063079, 0.045513214912835956, 0.04564778043395249, 0.045786613201441145, 0.04592898298618531, 0.04607468963162265, 0.04605921431950975, 0.046013920798472295, 0.045942200024617796, 0.04584966749905146, 0.04574405218147467, 0.04563491663362659, 0.04553307856026938, 0.04544961655900412, 0.04539448443100482, 0.04537504989911104, 0.04537052697431801, 0.04535701756627438, 0.04533471498449625, 0.04530399054495389, 0.04526546197550072, 0.045220079162924254, 0.04516921805107278, 0.04511477069806547, 0.045059213973040184, 0.04500562744773712, 0.04495760835648053, 0.04491899876230719, 0.04489332003985542, 0.04488287116707535, 0.044887678635480675, 0.04490482323433683, 0.04492873410359341, 0.04495252580523728, 0.04496978119305411, 0.044976057900884825, 0.04496954802514345, 0.04495174071190569, 0.04492763835096732, 0.04490489090141012, 0.04489241178916447, 0.04489825167661106, 0.044927498777752733, 0.044981369707702175, 0.04505786681535493, 0.04515324184461264, 0.04526332386014617, 0.04538432813060672, 0.04551321491281057, 0.04564778043392588, 0.04578661320141339, 0.045928982986156476, 0.04607468963159275, 0.04598980290078556, 0.045885097607356144, 0.04576572629625578, 0.045638849977849366, 0.04551388855086102, 0.045402481023001276, 0.045317634582793836, 0.04527143300406534, 0.04527143300406887, 0.045317634582804, 0.04540248102301716, 0.04551388855088137, 0.04563884997787311, 0.045765726296282006, 0.0458850976073841, 0.04598980290081468, 0.04607468963162265, 0.04632941632716412, 0.04658735687478576, 0.04684047478065828, 0.04708048455958477, 0.04729930554274744, 0.04748948065759559, 0.047644519085929676, 0.047759151858457485, 0.04782950779049783, 0.047853224367915705 ] } ], "layout": { "hovermode": false, "template": { "data": { "bar": [ { "error_x": { "color": "#f2f5fa" }, "error_y": { "color": "#f2f5fa" }, "marker": { "line": { "color": "rgb(17,17,17)", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "rgb(17,17,17)", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#A2B1C6", "gridcolor": "#506784", "linecolor": "#506784", "minorgridcolor": "#506784", "startlinecolor": "#A2B1C6" }, "baxis": { "endlinecolor": "#A2B1C6", "gridcolor": "#506784", "linecolor": "#506784", "minorgridcolor": "#506784", "startlinecolor": "#A2B1C6" }, "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": [ { "marker": { "line": { "color": "#283442" } }, "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": { "line": { "color": "#283442" } }, "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": "#506784" }, "line": { "color": "rgb(17,17,17)" } }, "header": { "fill": { "color": "#2a3f5f" }, "line": { "color": "rgb(17,17,17)" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#f2f5fa", "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": "#f2f5fa" }, "geo": { "bgcolor": "rgb(17,17,17)", "lakecolor": "rgb(17,17,17)", "landcolor": "rgb(17,17,17)", "showlakes": true, "showland": true, "subunitcolor": "#506784" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "dark" }, "paper_bgcolor": "rgb(17,17,17)", "plot_bgcolor": "rgb(17,17,17)", "polar": { "angularaxis": { "gridcolor": "#506784", "linecolor": "#506784", "ticks": "" }, "bgcolor": "rgb(17,17,17)", "radialaxis": { "gridcolor": "#506784", "linecolor": "#506784", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "gridwidth": 2, "linecolor": "#506784", "showbackground": true, "ticks": "", "zerolinecolor": "#C8D4E3" }, "yaxis": { "backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "gridwidth": 2, "linecolor": "#506784", "showbackground": true, "ticks": "", "zerolinecolor": "#C8D4E3" }, "zaxis": { "backgroundcolor": "rgb(17,17,17)", "gridcolor": "#506784", "gridwidth": 2, "linecolor": "#506784", "showbackground": true, "ticks": "", "zerolinecolor": "#C8D4E3" } }, "shapedefaults": { "line": { "color": "#f2f5fa" } }, "sliderdefaults": { "bgcolor": "#C8D4E3", "bordercolor": "rgb(17,17,17)", "borderwidth": 1, "tickwidth": 0 }, "ternary": { "aaxis": { "gridcolor": "#506784", "linecolor": "#506784", "ticks": "" }, "baxis": { "gridcolor": "#506784", "linecolor": "#506784", "ticks": "" }, "bgcolor": "rgb(17,17,17)", "caxis": { "gridcolor": "#506784", "linecolor": "#506784", "ticks": "" } }, "title": { "x": 0.05 }, "updatemenudefaults": { "bgcolor": "#506784", "borderwidth": 0 }, "xaxis": { "automargin": true, "gridcolor": "#283442", "linecolor": "#506784", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "#283442", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "#283442", "linecolor": "#506784", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "#283442", "zerolinewidth": 2 } } }, "xaxis": { "range": [ 0, 197 ], "tickfont": { "size": 16 }, "ticktext": [ "Γ", "X", "W", "K", "Γ", "L", "U", "W", "L", "K", "U", "X" ], "tickvals": [ 0, 28, 42, 52, 82, 106, 123, 133, 153, 170, 187, 197 ], "title": { "text": "Wave Vector" } }, "yaxis": { "title": { "text": "Energy (eV)" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "phbands.plotly(template=\"plotly_dark\");" ] }, { "cell_type": "markdown", "id": "4325f167", "metadata": {}, "source": [ "as well as the high-symmetry **q**-path:" ] }, { "cell_type": "code", "execution_count": 32, "id": "82f10df0", "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://chart-studio.plotly.com", "responsive": true, "showLink": true }, "data": [ { "line": { "color": "green", "width": 3 }, "mode": "lines", "name": "a", "showlegend": false, "type": "scatter3d", "x": [ 0.0, -1.1190857135572159 ], "y": [ 0.0, 1.1190857135572159 ], "z": [ 0.0, 1.1190857135572159 ] }, { "line": { "color": "green", "width": 3 }, "mode": "lines", "name": "b", "showlegend": false, "type": "scatter3d", "x": [ 0.0, 1.1190857135572159 ], "y": [ 0.0, -1.1190857135572159 ], "z": [ 0.0, 1.1190857135572159 ] }, { "line": { "color": "green", "width": 3 }, "mode": "lines", "name": "c", "showlegend": false, "type": "scatter3d", "x": [ 0.0, 1.1190857135572159 ], "y": [ 0.0, 1.1190857135572159 ], "z": [ 0.0, -1.1190857135572159 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.1190857135572156, -0.5595428567786079 ], "y": [ -0.5595428567786079, -1.1190857135572156 ], "z": [ 0.0, 0.0 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.1190857135572156, -1.1190857135572156 ], "y": [ -0.5595428567786079, 0.0 ], "z": [ 0.0, 0.5595428567786079 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.5595428567786079, 0.0 ], "y": [ -1.1190857135572156, -1.1190857135572156 ], "z": [ 0.0, 0.5595428567786079 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.0, 0.0 ], "y": [ -1.1190857135572156, -0.5595428567786077 ], "z": [ 0.5595428567786079, 1.1190857135572159 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.0, -0.5595428567786077 ], "y": [ -0.5595428567786077, 0.0 ], "z": [ 1.1190857135572159, 1.1190857135572159 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.5595428567786077, -1.1190857135572156 ], "y": [ 0.0, 0.0 ], "z": [ 1.1190857135572159, 0.5595428567786079 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786079, 0.0 ], "y": [ -1.1190857135572159, -1.1190857135572156 ], "z": [ 1.584346508031403e-16, 0.5595428567786079 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786079, -1.9804331350392537e-16 ], "y": [ -1.1190857135572159, -1.1190857135572159 ], "z": [ 1.584346508031403e-16, -0.5595428567786079 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.5595428567786079, -1.9804331350392537e-16 ], "y": [ -1.1190857135572156, -1.1190857135572159 ], "z": [ 0.0, -0.5595428567786079 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.1190857135572159, -0.5595428567786077 ], "y": [ 0.5595428567786079, 1.1190857135572159 ], "z": [ 1.584346508031403e-16, 0.0 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.1190857135572159, -1.1190857135572156 ], "y": [ 0.5595428567786079, 0.0 ], "z": [ 1.584346508031403e-16, 0.5595428567786079 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.5595428567786077, 0.0 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 0.0, 0.5595428567786077 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.0, 0.0 ], "y": [ 1.1190857135572159, 0.5595428567786077 ], "z": [ 0.5595428567786077, 1.1190857135572159 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.0, -0.5595428567786077 ], "y": [ 0.5595428567786077, 0.0 ], "z": [ 1.1190857135572159, 1.1190857135572159 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786077, 0.0 ], "y": [ 0.0, -0.5595428567786077 ], "z": [ 1.1190857135572159, 1.1190857135572159 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786077, 0.0 ], "y": [ 0.0, 0.5595428567786077 ], "z": [ 1.1190857135572159, 1.1190857135572159 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786077, 1.1190857135572159 ], "y": [ 0.0, -1.9804331350392537e-16 ], "z": [ 1.1190857135572159, 0.5595428567786079 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786079, 1.1190857135572159 ], "y": [ -1.1190857135572159, -0.5595428567786079 ], "z": [ 1.584346508031403e-16, 1.584346508031403e-16 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.1190857135572159, 1.1190857135572159 ], "y": [ -0.5595428567786079, -1.9804331350392537e-16 ], "z": [ 1.584346508031403e-16, 0.5595428567786079 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.1190857135572159, -1.1190857135572159 ], "y": [ 0.5595428567786079, -1.9804331350392537e-16 ], "z": [ 1.584346508031403e-16, -0.5595428567786079 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.1190857135572156, -1.1190857135572159 ], "y": [ -0.5595428567786079, -1.9804331350392537e-16 ], "z": [ 0.0, -0.5595428567786079 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.5595428567786079, -1.1190857135572159 ], "y": [ -1.584346508031403e-16, -1.9804331350392537e-16 ], "z": [ -1.1190857135572159, -0.5595428567786079 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.5595428567786079, -1.584346508031403e-16 ], "y": [ -1.584346508031403e-16, -0.5595428567786079 ], "z": [ -1.1190857135572159, -1.1190857135572159 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.9804331350392537e-16, -1.584346508031403e-16 ], "y": [ -1.1190857135572159, -0.5595428567786079 ], "z": [ -0.5595428567786079, -1.1190857135572159 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786077, 0.0 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 0.0, -0.5595428567786077 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786077, 1.1190857135572156 ], "y": [ 1.1190857135572159, 0.5595428567786079 ], "z": [ 0.0, 0.0 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.0, 0.0 ], "y": [ 1.1190857135572159, 0.5595428567786079 ], "z": [ -0.5595428567786077, -1.1190857135572156 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.0, 0.5595428567786079 ], "y": [ 0.5595428567786079, 0.0 ], "z": [ -1.1190857135572156, -1.1190857135572156 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786079, 1.1190857135572156 ], "y": [ 0.0, 0.0 ], "z": [ -1.1190857135572156, -0.5595428567786079 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.1190857135572156, 1.1190857135572156 ], "y": [ 0.0, 0.5595428567786079 ], "z": [ -0.5595428567786079, 0.0 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.1190857135572159, 1.1190857135572156 ], "y": [ -1.9804331350392537e-16, 0.5595428567786079 ], "z": [ 0.5595428567786079, 0.0 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.1190857135572159, 1.1190857135572156 ], "y": [ -0.5595428567786079, 0.0 ], "z": [ 1.584346508031403e-16, -0.5595428567786079 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.5595428567786077, 0.0 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 0.0, -0.5595428567786077 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.0, 0.5595428567786077 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 0.5595428567786077, 0.0 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.5595428567786079, 0.0 ], "y": [ -1.584346508031403e-16, 0.5595428567786079 ], "z": [ -1.1190857135572159, -1.1190857135572156 ] }, { "line": { "color": "black", "width": 1 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.584346508031403e-16, 0.5595428567786079 ], "y": [ -0.5595428567786079, 0.0 ], "z": [ -1.1190857135572159, -1.1190857135572156 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.0, -1.6049519982436357e-18 ], "y": [ 0.0, 0.03996734691275771 ], "z": [ 0.0, 1.6049519982436357e-18 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.6049519982436357e-18, -3.2099039964872715e-18 ], "y": [ 0.03996734691275771, 0.07993469382551542 ], "z": [ 1.6049519982436357e-18, 3.2099039964872715e-18 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -3.2099039964872715e-18, -1.345409042777293e-18 ], "y": [ 0.07993469382551542, 0.11990204073827312 ], "z": [ 3.2099039964872715e-18, 1.345409042777293e-18 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.345409042777293e-18, -6.419807992974543e-18 ], "y": [ 0.11990204073827312, 0.15986938765103084 ], "z": [ 1.345409042777293e-18, 6.419807992974543e-18 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -6.419807992974543e-18, -3.728989907419957e-18 ], "y": [ 0.15986938765103084, 0.19983673456378856 ], "z": [ 6.419807992974543e-18, 3.728989907419957e-18 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -3.728989907419957e-18, -2.690818085554586e-18 ], "y": [ 0.19983673456378856, 0.23980408147654625 ], "z": [ 3.728989907419957e-18, 2.690818085554586e-18 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -2.690818085554586e-18, 0.0 ], "y": [ 0.23980408147654625, 0.27977142838930397 ], "z": [ 2.690818085554586e-18, 0.0 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.0, -1.2839615985949086e-17 ], "y": [ 0.27977142838930397, 0.3197387753020617 ], "z": [ 0.0, 1.2839615985949086e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.2839615985949086e-17, 5.381636171109172e-18 ], "y": [ 0.3197387753020617, 0.3597061222148194 ], "z": [ 1.2839615985949086e-17, -5.381636171109172e-18 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.381636171109172e-18, -7.457979814839914e-18 ], "y": [ 0.3597061222148194, 0.3996734691275771 ], "z": [ -5.381636171109172e-18, 7.457979814839914e-18 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -7.457979814839914e-18, 7.457979814839914e-18 ], "y": [ 0.3996734691275771, 0.4396408160403348 ], "z": [ 7.457979814839914e-18, -7.457979814839914e-18 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 7.457979814839914e-18, -5.381636171109172e-18 ], "y": [ 0.4396408160403348, 0.4796081629530925 ], "z": [ -7.457979814839914e-18, 5.381636171109172e-18 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -5.381636171109172e-18, 1.2839615985949086e-17 ], "y": [ 0.4796081629530925, 0.5195755098658502 ], "z": [ 5.381636171109172e-18, -1.2839615985949086e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.2839615985949086e-17, 0.0 ], "y": [ 0.5195755098658502, 0.5595428567786079 ], "z": [ -1.2839615985949086e-17, 0.0 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.0, -1.2839615985949086e-17 ], "y": [ 0.5595428567786079, 0.5995102036913657 ], "z": [ 0.0, 1.2839615985949086e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.2839615985949086e-17, -2.5679231971898172e-17 ], "y": [ 0.5995102036913657, 0.6394775506041234 ], "z": [ 1.2839615985949086e-17, 2.5679231971898172e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -2.5679231971898172e-17, 1.699230327341057e-17 ], "y": [ 0.6394775506041234, 0.679444897516881 ], "z": [ 2.5679231971898172e-17, -1.699230327341057e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.699230327341057e-17, 1.0763272342218344e-17 ], "y": [ 0.679444897516881, 0.7194122444296388 ], "z": [ -1.699230327341057e-17, -1.0763272342218344e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.0763272342218344e-17, -2.0763436437307418e-18 ], "y": [ 0.7194122444296388, 0.7593795913423965 ], "z": [ -1.0763272342218344e-17, 2.0763436437307418e-18 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -2.0763436437307418e-18, -1.4915959629679828e-17 ], "y": [ 0.7593795913423965, 0.7993469382551542 ], "z": [ 2.0763436437307418e-18, 1.4915959629679828e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.4915959629679828e-17, 2.7755575615628914e-17 ], "y": [ 0.7993469382551542, 0.8393142851679118 ], "z": [ 1.4915959629679828e-17, -2.7755575615628914e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.7755575615628914e-17, 1.4915959629679828e-17 ], "y": [ 0.8393142851679118, 0.8792816320806696 ], "z": [ -2.7755575615628914e-17, -1.4915959629679828e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.4915959629679828e-17, 2.0763436437307418e-18 ], "y": [ 0.8792816320806696, 0.9192489789934273 ], "z": [ -1.4915959629679828e-17, -2.0763436437307418e-18 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.0763436437307418e-18, -1.0763272342218344e-17 ], "y": [ 0.9192489789934273, 0.959216325906185 ], "z": [ -2.0763436437307418e-18, 1.0763272342218344e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.0763272342218344e-17, -1.699230327341057e-17 ], "y": [ 0.959216325906185, 0.9991836728189428 ], "z": [ 1.0763272342218344e-17, 1.699230327341057e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.699230327341057e-17, 2.5679231971898172e-17 ], "y": [ 0.9991836728189428, 1.0391510197317004 ], "z": [ 1.699230327341057e-17, -2.5679231971898172e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.5679231971898172e-17, 1.2839615985949086e-17 ], "y": [ 1.0391510197317004, 1.0791183666444581 ], "z": [ -2.5679231971898172e-17, -1.2839615985949086e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.2839615985949086e-17, 0.0 ], "y": [ 1.0791183666444581, 1.1190857135572159 ], "z": [ -1.2839615985949086e-17, 0.0 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.0, 0.039967346912757766 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 0.0, -4.92821203000656e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.039967346912757766, 0.07993469382551541 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ -4.92821203000656e-17, 2.5679231971898172e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.07993469382551541, 0.11990204073827318 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 2.5679231971898172e-17, -2.360288832816743e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.11990204073827318, 0.15986938765103081 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ -2.360288832816743e-17, 5.1358463943796343e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.15986938765103081, 0.1998367345637886 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 5.1358463943796343e-17, 2.0763436437307418e-18 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.1998367345637886, 0.23980408147654622 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 2.0763436437307418e-18, 7.703769591569452e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.23980408147654622, 0.279771428389304 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 7.703769591569452e-17, 2.7755575615628914e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.279771428389304, 0.31973877530206163 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 2.7755575615628914e-17, 1.0271692788759269e-16 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.31973877530206163, 0.3597061222148194 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 1.0271692788759269e-16, 5.3434807587527085e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.3597061222148194, 0.3996734691275772 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 5.3434807587527085e-17, 4.1526872874614836e-18 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.3996734691275772, 0.4396408160403348 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 4.1526872874614836e-18, 7.911403955942526e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.4396408160403348, 0.4796081629530925 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 7.911403955942526e-17, -8.1190383203156e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.4796081629530925, 0.5195755098658503 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ -8.1190383203156e-17, -1.9450201040705946e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5195755098658503, 0.5595428567786079 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ -1.9450201040705946e-17, -5.551115123125783e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786079, 0.5875199996175383 ], "y": [ 1.1190857135572159, 1.0911085707182855 ], "z": [ -5.551115123125783e-17, -5.551115123125783e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5875199996175383, 0.6154971424564688 ], "y": [ 1.0911085707182855, 1.063131427879355 ], "z": [ -5.551115123125783e-17, 5.551115123125783e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.6154971424564688, 0.6434742852953991 ], "y": [ 1.063131427879355, 1.0351542850404247 ], "z": [ 5.551115123125783e-17, -5.551115123125783e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.6434742852953991, 0.6714514281343295 ], "y": [ 1.0351542850404247, 1.0071771422014943 ], "z": [ -5.551115123125783e-17, -5.551115123125783e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.6714514281343295, 0.6994285709732599 ], "y": [ 1.0071771422014943, 0.9791999993625639 ], "z": [ -5.551115123125783e-17, 5.551115123125783e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.6994285709732599, 0.7274057138121903 ], "y": [ 0.9791999993625639, 0.9512228565236335 ], "z": [ 5.551115123125783e-17, -5.551115123125783e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.7274057138121903, 0.7553828566511207 ], "y": [ 0.9512228565236335, 0.9232457136847031 ], "z": [ -5.551115123125783e-17, -5.551115123125783e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.7553828566511207, 0.7833599994900511 ], "y": [ 0.9232457136847031, 0.8952685708457727 ], "z": [ -5.551115123125783e-17, 5.551115123125783e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.7833599994900511, 0.8113371423289815 ], "y": [ 0.8952685708457727, 0.8672914280068423 ], "z": [ 5.551115123125783e-17, -5.551115123125783e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.8113371423289815, 0.8393142851679118 ], "y": [ 0.8672914280068423, 0.839314285167912 ], "z": [ -5.551115123125783e-17, -5.551115123125783e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.8393142851679118, 0.8113371423289815 ], "y": [ 0.839314285167912, 0.8113371423289815 ], "z": [ -5.551115123125783e-17, -1.4009111347474604e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.8113371423289815, 0.7833599994900511 ], "y": [ 0.8113371423289815, 0.7833599994900511 ], "z": [ -1.4009111347474604e-17, 2.749292853630862e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.7833599994900511, 0.7553828566511207 ], "y": [ 0.7833599994900511, 0.7553828566511208 ], "z": [ 2.749292853630862e-17, -5.524850415193753e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.7553828566511207, 0.7274057138121903 ], "y": [ 0.7553828566511208, 0.7274057138121903 ], "z": [ -5.524850415193753e-17, -1.374646426815431e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.7274057138121903, 0.6994285709732599 ], "y": [ 0.7274057138121903, 0.6994285709732599 ], "z": [ -1.374646426815431e-17, 2.7755575615628914e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.6994285709732599, 0.6714514281343295 ], "y": [ 0.6994285709732599, 0.6714514281343296 ], "z": [ 2.7755575615628914e-17, -4.176468696310352e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.6714514281343295, 0.6434742852953991 ], "y": [ 0.6714514281343296, 0.6434742852953991 ], "z": [ -4.176468696310352e-17, -2.6264707932029434e-19 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.6434742852953991, 0.6154971424564688 ], "y": [ 0.6434742852953991, 0.6154971424564688 ], "z": [ -2.6264707932029434e-19, 2.801822269494921e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.6154971424564688, 0.5875199996175383 ], "y": [ 0.6154971424564688, 0.5875199996175384 ], "z": [ 2.801822269494921e-17, -4.1502039883783223e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5875199996175383, 0.5595428567786079 ], "y": [ 0.5875199996175384, 0.5595428567786079 ], "z": [ -4.1502039883783223e-17, 0.0 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786079, 0.5315657139396776 ], "y": [ 0.5595428567786079, 0.5315657139396774 ], "z": [ 0.0, 4.1502039883783223e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5315657139396776, 0.5035885711007472 ], "y": [ 0.5315657139396774, 0.5035885711007472 ], "z": [ 4.1502039883783223e-17, 2.088234348155176e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5035885711007472, 0.47561142826181674 ], "y": [ 0.5035885711007472, 0.47561142826181674 ], "z": [ 2.088234348155176e-17, 6.873232134077155e-18 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.47561142826181674, 0.44763428542288636 ], "y": [ 0.47561142826181674, 0.44763428542288636 ], "z": [ 6.873232134077155e-18, -1.374646426815431e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.44763428542288636, 0.4196571425839559 ], "y": [ 0.44763428542288636, 0.419657142583956 ], "z": [ -1.374646426815431e-17, -2.7755575615628914e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.4196571425839559, 0.39167999974502554 ], "y": [ 0.419657142583956, 0.39167999974502554 ], "z": [ -2.7755575615628914e-17, 1.374646426815431e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.39167999974502554, 0.36370285690609516 ], "y": [ 0.39167999974502554, 0.36370285690609516 ], "z": [ 1.374646426815431e-17, -6.873232134077155e-18 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.36370285690609516, 0.3357257140671647 ], "y": [ 0.36370285690609516, 0.3357257140671648 ], "z": [ -6.873232134077155e-18, -2.088234348155176e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.3357257140671647, 0.3077485712282344 ], "y": [ 0.3357257140671648, 0.3077485712282344 ], "z": [ -2.088234348155176e-17, 1.4009111347474604e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.3077485712282344, 0.27977142838930397 ], "y": [ 0.3077485712282344, 0.27977142838930397 ], "z": [ 1.4009111347474604e-17, 0.0 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.27977142838930397, 0.25179428555037353 ], "y": [ 0.27977142838930397, 0.25179428555037353 ], "z": [ 0.0, -1.4009111347474604e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.25179428555037353, 0.22381714271144312 ], "y": [ 0.25179428555037353, 0.22381714271144312 ], "z": [ -1.4009111347474604e-17, -2.6264707932029434e-19 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.22381714271144312, 0.19583999987251283 ], "y": [ 0.22381714271144312, 0.19583999987251283 ], "z": [ -2.6264707932029434e-19, 2.6264707932029434e-19 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.19583999987251283, 0.1678628570335824 ], "y": [ 0.19583999987251283, 0.16786285703358242 ], "z": [ 2.6264707932029434e-19, -1.374646426815431e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.1678628570335824, 0.13988571419465198 ], "y": [ 0.16786285703358242, 0.13988571419465198 ], "z": [ -1.374646426815431e-17, 0.0 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.13988571419465198, 0.11190857135572156 ], "y": [ 0.13988571419465198, 0.11190857135572156 ], "z": [ 0.0, -1.3132353966014717e-19 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.11190857135572156, 0.08393142851679114 ], "y": [ 0.11190857135572156, 0.08393142851679114 ], "z": [ -1.3132353966014717e-19, -2.6264707932029434e-19 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.08393142851679114, 0.05595428567786084 ], "y": [ 0.08393142851679114, 0.05595428567786084 ], "z": [ -2.6264707932029434e-19, 2.6264707932029434e-19 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.05595428567786084, 0.02797714283893042 ], "y": [ 0.05595428567786084, 0.02797714283893042 ], "z": [ 2.6264707932029434e-19, 1.3132353966014717e-19 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.02797714283893042, 0.0 ], "y": [ 0.02797714283893042, 0.0 ], "z": [ 1.3132353966014717e-19, 0.0 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.0, 0.023314285699108664 ], "y": [ 0.0, 0.02331428569910866 ], "z": [ 0.0, 0.023314285699108664 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.023314285699108664, 0.04662857139821733 ], "y": [ 0.02331428569910866, 0.04662857139821732 ], "z": [ 0.023314285699108664, 0.04662857139821733 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.04662857139821733, 0.06994285709732599 ], "y": [ 0.04662857139821732, 0.06994285709732599 ], "z": [ 0.04662857139821733, 0.06994285709732599 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.06994285709732599, 0.09325714279643466 ], "y": [ 0.06994285709732599, 0.09325714279643464 ], "z": [ 0.06994285709732599, 0.09325714279643466 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.09325714279643466, 0.11657142849554332 ], "y": [ 0.09325714279643464, 0.11657142849554333 ], "z": [ 0.09325714279643466, 0.11657142849554332 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.11657142849554332, 0.13988571419465198 ], "y": [ 0.11657142849554333, 0.13988571419465198 ], "z": [ 0.11657142849554332, 0.13988571419465198 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.13988571419465198, 0.16319999989376066 ], "y": [ 0.13988571419465198, 0.16319999989376066 ], "z": [ 0.13988571419465198, 0.16319999989376066 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.16319999989376066, 0.1865142855928693 ], "y": [ 0.16319999989376066, 0.18651428559286928 ], "z": [ 0.16319999989376066, 0.1865142855928693 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.1865142855928693, 0.20982857129197796 ], "y": [ 0.18651428559286928, 0.209828571291978 ], "z": [ 0.1865142855928693, 0.20982857129197796 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.20982857129197796, 0.23314285699108664 ], "y": [ 0.209828571291978, 0.23314285699108667 ], "z": [ 0.20982857129197796, 0.23314285699108664 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.23314285699108664, 0.2564571426901953 ], "y": [ 0.23314285699108667, 0.25645714269019526 ], "z": [ 0.23314285699108664, 0.2564571426901953 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.2564571426901953, 0.27977142838930397 ], "y": [ 0.25645714269019526, 0.27977142838930397 ], "z": [ 0.2564571426901953, 0.27977142838930397 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.27977142838930397, 0.3030857140884126 ], "y": [ 0.27977142838930397, 0.3030857140884126 ], "z": [ 0.27977142838930397, 0.3030857140884126 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.3030857140884126, 0.3263999997875213 ], "y": [ 0.3030857140884126, 0.3263999997875213 ], "z": [ 0.3030857140884126, 0.3263999997875213 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.3263999997875213, 0.34971428548662997 ], "y": [ 0.3263999997875213, 0.34971428548662997 ], "z": [ 0.3263999997875213, 0.34971428548662997 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.34971428548662997, 0.3730285711857386 ], "y": [ 0.34971428548662997, 0.37302857118573857 ], "z": [ 0.34971428548662997, 0.3730285711857386 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.3730285711857386, 0.3963428568848473 ], "y": [ 0.37302857118573857, 0.39634285688484727 ], "z": [ 0.3730285711857386, 0.3963428568848473 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.3963428568848473, 0.4196571425839559 ], "y": [ 0.39634285688484727, 0.419657142583956 ], "z": [ 0.3963428568848473, 0.4196571425839559 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.4196571425839559, 0.44297142828306457 ], "y": [ 0.419657142583956, 0.4429714282830646 ], "z": [ 0.4196571425839559, 0.44297142828306457 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.44297142828306457, 0.4662857139821733 ], "y": [ 0.4429714282830646, 0.46628571398217333 ], "z": [ 0.44297142828306457, 0.4662857139821733 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.4662857139821733, 0.4895999996812819 ], "y": [ 0.46628571398217333, 0.489599999681282 ], "z": [ 0.4662857139821733, 0.4895999996812819 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.4895999996812819, 0.5129142853803906 ], "y": [ 0.489599999681282, 0.5129142853803905 ], "z": [ 0.4895999996812819, 0.5129142853803906 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5129142853803906, 0.5362285710794993 ], "y": [ 0.5129142853803905, 0.5362285710794993 ], "z": [ 0.5129142853803906, 0.5362285710794993 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5362285710794993, 0.5595428567786079 ], "y": [ 0.5362285710794993, 0.5595428567786079 ], "z": [ 0.5362285710794993, 0.5595428567786079 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786079, 0.5430857139321783 ], "y": [ 0.5595428567786079, 0.5924571424714672 ], "z": [ 0.5595428567786079, 0.5430857139321783 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5430857139321783, 0.5266285710857487 ], "y": [ 0.5924571424714672, 0.6253714281643263 ], "z": [ 0.5430857139321783, 0.5266285710857486 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5266285710857487, 0.5101714282393189 ], "y": [ 0.6253714281643263, 0.6582857138571859 ], "z": [ 0.5266285710857486, 0.510171428239319 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5101714282393189, 0.49371428539288936 ], "y": [ 0.6582857138571859, 0.6911999995500451 ], "z": [ 0.510171428239319, 0.49371428539288936 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.49371428539288936, 0.4772571425464597 ], "y": [ 0.6911999995500451, 0.7241142852429043 ], "z": [ 0.49371428539288936, 0.47725714254645973 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.4772571425464597, 0.46079999970003005 ], "y": [ 0.7241142852429043, 0.7570285709357636 ], "z": [ 0.47725714254645973, 0.46079999970003005 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.46079999970003005, 0.4443428568536005 ], "y": [ 0.7570285709357636, 0.789942856628623 ], "z": [ 0.46079999970003005, 0.4443428568536005 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.4443428568536005, 0.42788571400717074 ], "y": [ 0.789942856628623, 0.8228571423214823 ], "z": [ 0.4443428568536005, 0.42788571400717085 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.42788571400717074, 0.41142857116074116 ], "y": [ 0.8228571423214823, 0.8557714280143415 ], "z": [ 0.42788571400717085, 0.41142857116074116 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.41142857116074116, 0.3949714283143114 ], "y": [ 0.8557714280143415, 0.8886857137072008 ], "z": [ 0.41142857116074116, 0.3949714283143115 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.3949714283143114, 0.37851428546788185 ], "y": [ 0.8886857137072008, 0.9215999994000602 ], "z": [ 0.3949714283143115, 0.3785142854678819 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.37851428546788185, 0.36205714262145217 ], "y": [ 0.9215999994000602, 0.9545142850929195 ], "z": [ 0.3785142854678819, 0.3620571426214523 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.36205714262145217, 0.34559999977502254 ], "y": [ 0.9545142850929195, 0.9874285707857787 ], "z": [ 0.3620571426214523, 0.3455999997750226 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.34559999977502254, 0.3291428569285929 ], "y": [ 0.9874285707857787, 1.0203428564786379 ], "z": [ 0.3455999997750226, 0.32914285692859296 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.3291428569285929, 0.3126857140821633 ], "y": [ 1.0203428564786379, 1.0532571421714974 ], "z": [ 0.32914285692859296, 0.3126857140821633 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.3126857140821633, 0.2962285712357336 ], "y": [ 1.0532571421714974, 1.0861714278643566 ], "z": [ 0.3126857140821633, 0.2962285712357336 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.2962285712357336, 0.279771428389304 ], "y": [ 1.0861714278643566, 1.1190857135572159 ], "z": [ 0.2962285712357336, 0.2797714283893039 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.279771428389304, 0.3077485712282343 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 0.2797714283893039, 0.2517942855503737 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.3077485712282343, 0.3357257140671648 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 0.2517942855503737, 0.22381714271144315 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.3357257140671648, 0.36370285690609516 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 0.22381714271144315, 0.1958399998725128 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.36370285690609516, 0.39167999974502565 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 0.1958399998725128, 0.16786285703358234 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.39167999974502565, 0.4196571425839559 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 0.16786285703358234, 0.139885714194652 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.4196571425839559, 0.4476342854228863 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 0.139885714194652, 0.11190857135572166 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.4476342854228863, 0.4756114282618168 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 0.11190857135572166, 0.0839314285167912 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.4756114282618168, 0.5035885711007471 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 0.0839314285167912, 0.05595428567786086 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5035885711007471, 0.5315657139396777 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 0.05595428567786086, 0.027977142838930283 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5315657139396777, 0.5595428567786079 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 0.027977142838930283, -5.551115123125783e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786079, 0.5595428567786079 ], "y": [ 1.1190857135572159, 1.0911085707182855 ], "z": [ -5.551115123125783e-17, 0.027977142838930283 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786079, 0.5595428567786079 ], "y": [ 1.0911085707182855, 1.063131427879355 ], "z": [ 0.027977142838930283, 0.05595428567786086 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786079, 0.5595428567786079 ], "y": [ 1.063131427879355, 1.0351542850404247 ], "z": [ 0.05595428567786086, 0.08393142851679108 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786079, 0.5595428567786078 ], "y": [ 1.0351542850404247, 1.0071771422014943 ], "z": [ 0.08393142851679108, 0.11190857135572155 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786078, 0.5595428567786079 ], "y": [ 1.0071771422014943, 0.9791999993625639 ], "z": [ 0.11190857135572155, 0.139885714194652 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786079, 0.5595428567786079 ], "y": [ 0.9791999993625639, 0.9512228565236335 ], "z": [ 0.139885714194652, 0.16786285703358234 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786079, 0.5595428567786079 ], "y": [ 0.9512228565236335, 0.9232457136847031 ], "z": [ 0.16786285703358234, 0.1958399998725128 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786079, 0.5595428567786079 ], "y": [ 0.9232457136847031, 0.8952685708457727 ], "z": [ 0.1958399998725128, 0.22381714271144315 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786079, 0.5595428567786078 ], "y": [ 0.8952685708457727, 0.8672914280068422 ], "z": [ 0.22381714271144315, 0.2517942855503736 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786078, 0.5595428567786079 ], "y": [ 0.8672914280068422, 0.839314285167912 ], "z": [ 0.2517942855503736, 0.2797714283893039 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786079, 0.559542856778608 ], "y": [ 0.839314285167912, 0.8113371423289816 ], "z": [ 0.2797714283893039, 0.3077485712282344 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.559542856778608, 0.5595428567786079 ], "y": [ 0.8113371423289816, 0.7833599994900511 ], "z": [ 0.3077485712282344, 0.33572571406716484 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786079, 0.5595428567786079 ], "y": [ 0.7833599994900511, 0.7553828566511207 ], "z": [ 0.33572571406716484, 0.3637028569060952 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786079, 0.5595428567786079 ], "y": [ 0.7553828566511207, 0.7274057138121903 ], "z": [ 0.3637028569060952, 0.39167999974502565 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786079, 0.5595428567786079 ], "y": [ 0.7274057138121903, 0.6994285709732599 ], "z": [ 0.39167999974502565, 0.419657142583956 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786079, 0.559542856778608 ], "y": [ 0.6994285709732599, 0.6714514281343296 ], "z": [ 0.419657142583956, 0.44763428542288636 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.559542856778608, 0.5595428567786079 ], "y": [ 0.6714514281343296, 0.6434742852953991 ], "z": [ 0.44763428542288636, 0.4756114282618168 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786079, 0.5595428567786079 ], "y": [ 0.6434742852953991, 0.6154971424564687 ], "z": [ 0.4756114282618168, 0.5035885711007472 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786079, 0.5595428567786079 ], "y": [ 0.6154971424564687, 0.5875199996175383 ], "z": [ 0.5035885711007472, 0.5315657139396776 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786079, 0.5595428567786079 ], "y": [ 0.5875199996175383, 0.5595428567786079 ], "z": [ 0.5315657139396776, 0.5595428567786079 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5595428567786079, 0.5759999996250376 ], "y": [ 0.5595428567786079, 0.5759999996250375 ], "z": [ 0.5595428567786079, 0.5266285710857488 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5759999996250376, 0.5924571424714673 ], "y": [ 0.5759999996250375, 0.5924571424714672 ], "z": [ 0.5266285710857488, 0.49371428539288936 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5924571424714673, 0.6089142853178968 ], "y": [ 0.5924571424714672, 0.6089142853178967 ], "z": [ 0.49371428539288936, 0.46079999970003027 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.6089142853178968, 0.6253714281643266 ], "y": [ 0.6089142853178967, 0.6253714281643264 ], "z": [ 0.46079999970003027, 0.42788571400717085 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.6253714281643266, 0.6418285710107561 ], "y": [ 0.6253714281643264, 0.6418285710107562 ], "z": [ 0.42788571400717085, 0.3949714283143115 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.6418285710107561, 0.6582857138571858 ], "y": [ 0.6418285710107562, 0.6582857138571859 ], "z": [ 0.3949714283143115, 0.36205714262145205 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.6582857138571858, 0.6747428567036154 ], "y": [ 0.6582857138571859, 0.6747428567036154 ], "z": [ 0.36205714262145205, 0.32914285692859296 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.6747428567036154, 0.6911999995500452 ], "y": [ 0.6747428567036154, 0.6911999995500451 ], "z": [ 0.32914285692859296, 0.2962285712357336 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.6911999995500452, 0.7076571423964747 ], "y": [ 0.6911999995500451, 0.7076571423964747 ], "z": [ 0.2962285712357336, 0.2633142855428744 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.7076571423964747, 0.7241142852429044 ], "y": [ 0.7076571423964747, 0.7241142852429044 ], "z": [ 0.2633142855428744, 0.23039999985001494 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.7241142852429044, 0.7405714280893341 ], "y": [ 0.7241142852429044, 0.740571428089334 ], "z": [ 0.23039999985001494, 0.19748571415715582 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.7405714280893341, 0.7570285709357637 ], "y": [ 0.740571428089334, 0.7570285709357637 ], "z": [ 0.19748571415715582, 0.16457142846429637 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.7570285709357637, 0.7734857137821933 ], "y": [ 0.7570285709357637, 0.7734857137821933 ], "z": [ 0.16457142846429637, 0.13165714277143717 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.7734857137821933, 0.789942856628623 ], "y": [ 0.7734857137821933, 0.7899428566286228 ], "z": [ 0.13165714277143717, 0.09874285707857806 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.789942856628623, 0.8063999994750526 ], "y": [ 0.7899428566286228, 0.8063999994750526 ], "z": [ 0.09874285707857806, 0.06582857138571861 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.8063999994750526, 0.8228571423214823 ], "y": [ 0.8063999994750526, 0.8228571423214823 ], "z": [ 0.06582857138571861, 0.03291428569285916 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.8228571423214823, 0.8393142851679118 ], "y": [ 0.8228571423214823, 0.839314285167912 ], "z": [ 0.03291428569285916, -5.551115123125783e-17 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.8393142851679118, 0.8063999994750527 ], "y": [ 0.839314285167912, 0.8557714280143416 ], "z": [ -5.551115123125783e-17, 0.016457142846429608 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.8063999994750527, 0.7734857137821933 ], "y": [ 0.8557714280143416, 0.8722285708607713 ], "z": [ 0.016457142846429608, 0.03291428569285927 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.7734857137821933, 0.7405714280893341 ], "y": [ 0.8722285708607713, 0.8886857137072007 ], "z": [ 0.03291428569285927, 0.04937142853928906 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.7405714280893341, 0.7076571423964747 ], "y": [ 0.8886857137072007, 0.9051428565536305 ], "z": [ 0.04937142853928906, 0.06582857138571861 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.7076571423964747, 0.6747428567036154 ], "y": [ 0.9051428565536305, 0.9215999994000601 ], "z": [ 0.06582857138571861, 0.08228571423214827 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.6747428567036154, 0.6418285710107562 ], "y": [ 0.9215999994000601, 0.9380571422464898 ], "z": [ 0.08228571423214827, 0.09874285707857783 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.6418285710107562, 0.6089142853178969 ], "y": [ 0.9380571422464898, 0.9545142850929194 ], "z": [ 0.09874285707857783, 0.1151999999250075 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.6089142853178969, 0.5759999996250376 ], "y": [ 0.9545142850929194, 0.9709714279393491 ], "z": [ 0.1151999999250075, 0.13165714277143717 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5759999996250376, 0.5430857139321783 ], "y": [ 0.9709714279393491, 0.9874285707857787 ], "z": [ 0.13165714277143717, 0.14811428561786671 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.5430857139321783, 0.510171428239319 ], "y": [ 0.9874285707857787, 1.0038857136322084 ], "z": [ 0.14811428561786671, 0.16457142846429648 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.510171428239319, 0.4772571425464597 ], "y": [ 1.0038857136322084, 1.0203428564786379 ], "z": [ 0.16457142846429648, 0.18102857131072617 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.4772571425464597, 0.4443428568536003 ], "y": [ 1.0203428564786379, 1.0367999993250676 ], "z": [ 0.18102857131072617, 0.1974857141571557 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.4443428568536003, 0.41142857116074116 ], "y": [ 1.0367999993250676, 1.0532571421714974 ], "z": [ 0.1974857141571557, 0.2139428570035854 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.41142857116074116, 0.378514285467882 ], "y": [ 1.0532571421714974, 1.0697142850179269 ], "z": [ 0.2139428570035854, 0.23039999985001494 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.378514285467882, 0.3455999997750225 ], "y": [ 1.0697142850179269, 1.0861714278643566 ], "z": [ 0.23039999985001494, 0.24685714269644474 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.3455999997750225, 0.31268571408216317 ], "y": [ 1.0861714278643566, 1.1026285707107863 ], "z": [ 0.24685714269644474, 0.2633142855428744 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.31268571408216317, 0.279771428389304 ], "y": [ 1.1026285707107863, 1.1190857135572159 ], "z": [ 0.2633142855428744, 0.2797714283893039 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.279771428389304, 0.2517942855503736 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 0.2797714283893039, 0.25179428555037364 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.2517942855503736, 0.2238171427114432 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 0.25179428555037364, 0.2238171427114432 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.2238171427114432, 0.1958399998725128 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 0.2238171427114432, 0.1958399998725128 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.1958399998725128, 0.16786285703358234 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 0.1958399998725128, 0.1678628570335824 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.16786285703358234, 0.139885714194652 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 0.1678628570335824, 0.13988571419465196 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.139885714194652, 0.1119085713557216 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 0.13988571419465196, 0.11190857135572155 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.1119085713557216, 0.08393142851679114 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 0.11190857135572155, 0.08393142851679125 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.08393142851679114, 0.0559542856778608 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 0.08393142851679125, 0.05595428567786083 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.0559542856778608, 0.02797714283893034 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 0.05595428567786083, 0.02797714283893042 ] }, { "line": { "color": "red", "width": 3 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.02797714283893034, 0.0 ], "y": [ 1.1190857135572159, 1.1190857135572159 ], "z": [ 0.02797714283893042, 0.0 ] }, { "marker": { "color": "blue", "size": 4 }, "mode": "markers+text", "showlegend": false, "text": [ "Γ", "X", "W", "K", "L", "U" ], "textposition": "top right", "type": "scatter3d", "x": [ 0.0, 0.0, 0.5595428567786079, 0.8393142851679118, 0.5595428567786079, 0.279771428389304 ], "y": [ 0.0, 1.1190857135572159, 1.1190857135572159, 0.839314285167912, 0.5595428567786079, 1.1190857135572159 ], "z": [ 0.0, 0.0, -5.551115123125783e-17, -5.551115123125783e-17, 0.5595428567786079, 0.2797714283893039 ] } ], "layout": { "hovermode": false, "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 } } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "phbands.qpoints.plotly();" ] }, { "cell_type": "markdown", "id": "cfd59736", "metadata": {}, "source": [ "Do you see the two strange dips for the highest phonon band, at the $\\Gamma$ point?\n", "They are due to the lack of LO-TO splitting for the ANADDB treatment of the first list of vector.\n", "See also the discussion in the [second DFPT lesson](https://docs.abinit.org/tutorial/rf2/index.html)." ] }, { "cell_type": "markdown", "id": "bd25002f", "metadata": {}, "source": [ "For years, Abinit users had to patch manually the output frequencies to include the LO-TO splitting.\n", "These days are finally gone and we can plot the LO-TO splitting with AbiPy by just setting\n", "lo_to_splitting=True`:" ] }, { "cell_type": "code", "execution_count": 33, "id": "34dff971", "metadata": {}, "outputs": [], "source": [ "phbst_file, phdos_file = ddb.anaget_phbst_and_phdos_files(ndivsm=10, nqsmall=16, lo_to_splitting=True)\n", "\n", "# Extract the phonon bands and the phonon DOS from phbst_file and phdos_file\n", "phbands = phbst_file.phbands\n", "phdos = phdos_file.phdos" ] }, { "cell_type": "code", "execution_count": 34, "id": "1cc2a892", "metadata": {}, "outputs": [], "source": [ "#phbst_file.phbands.qpoints.plot();" ] }, { "cell_type": "markdown", "id": "f82b294c", "metadata": {}, "source": [ "The band structure plot now correctly shows the non-analytical behaviour around $\\Gamma$:" ] }, { "cell_type": "code", "execution_count": 35, "id": "1772958b", "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://chart-studio.plotly.com", "responsive": true, "showLink": true }, "data": [ { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "y": [ 0.0, 0.0005958481034701485, 0.0011902521158242215, 0.0017817655359985737, 0.0023689369312623284, 0.002950307318387079, 0.0035244073648737504, 0.004089754419174196, 0.004644849409630538, 0.005188173703502295, 0.0057181860752842555, 0.006233319996764072, 0.006731981528519774, 0.00721254816197941, 0.007673369029675163, 0.008112766963914395, 0.008529042932800244, 0.008920483405773954, 0.009285371183233642, 0.009622000148016206, 0.009928694241940266, 0.010203830723558644, 0.01044586741931681, 0.010653373252214757, 0.010825060855518957, 0.010959819614454335, 0.011056747106115782, 0.01111517671313096, 0.011134699241584221, 0.011168582271487431, 0.011268445338631318, 0.011429083316919138, 0.011642290614602589, 0.011897443693659419, 0.012182128583448226, 0.012482722804952025, 0.012784896537068413, 0.013074057927574071, 0.013335814579914512, 0.013556543160091663, 0.013724135903897058, 0.013828913621406504, 0.013864571235531978, 0.013779662988811586, 0.013524207997304397, 0.013128741151262144, 0.012643661210682723, 0.01212017840583955, 0.011606158979236907, 0.011146465401578556, 0.010782216321466975, 0.0105478991864319, 0.010466996655282234, 0.010322636846724378, 0.010163237117076732, 0.009988607948716094, 0.009798591265598818, 0.009593063624402326, 0.009371938385533247, 0.00913516717873893, 0.008882741000188927, 0.008614691265434187, 0.00833109110118086, 0.008032057095252405, 0.007717751645895297, 0.007388385965978548, 0.0070442237113387965, 0.006685585121391774, 0.0063128514890323055, 0.005926469719636182, 0.005526956698443112, 0.005114903163471805, 0.004690976778095924, 0.004255924113175421, 0.0038105712819198165, 0.003355823019333758, 0.002892660059312807, 0.002422134732794484, 0.001945364786056158, 0.001463525495337799, 0.0009778402286252984, 0.0004895696744950367, 0.0 ] }, { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "y": [ 0.0, 0.0005958481034703127, 0.001190252115824366, 0.0017817655359986175, 0.0023689369312623653, 0.002950307318387225, 0.0035244073648739065, 0.004089754419174217, 0.004644849409630607, 0.005188173703502313, 0.005718186075284371, 0.006233319996764128, 0.006731981528519776, 0.007212548161979423, 0.007673369029675183, 0.008112766963914405, 0.00852904293280028, 0.008920483405773973, 0.009285371183233693, 0.009622000148016232, 0.009928694241940284, 0.010203830723558667, 0.010445867419316829, 0.010653373252214767, 0.010825060855518966, 0.010959819614454372, 0.011056747106115804, 0.011115176713130963, 0.011134699241584235, 0.011205256528990497, 0.011411339878807079, 0.011737217422390573, 0.012159656484850734, 0.012651143121087777, 0.013182741559147913, 0.013726148188075037, 0.014254951270531726, 0.014745329968947838, 0.015176449430589014, 0.015530737486767799, 0.015794139043504147, 0.015956370853749416, 0.01601115256346213, 0.016034374940024302, 0.016114784993772183, 0.016241587852722977, 0.01638973260928492, 0.016538069748835028, 0.01667248775948562, 0.016784042662399565, 0.016867095049564487, 0.016918180831621363, 0.016935410066685003, 0.017384720871230212, 0.017692960355102746, 0.01785133782975082, 0.0178600946302589, 0.01772712060593466, 0.017465237884643676, 0.01708934001366542, 0.01661436879508854, 0.016054359181503126, 0.015422239395982008, 0.014729964395722425, 0.013988693836073632, 0.013208890606313719, 0.012400324417019812, 0.01157201155395882, 0.010732129137982481, 0.009887932269685052, 0.009045689294177792, 0.008210640308371377, 0.007386978288291225, 0.006577850003131912, 0.0057853738590993254, 0.005010672836497997, 0.004253921970749727, 0.0035144109085782755, 0.0027906226738949403, 0.002080329769076425, 0.0013807080927316494, 0.000688467963792988, 0.0 ] }, { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "y": [ 0.0, 0.0014538419078690321, 0.0029032335259157015, 0.004343746600072835, 0.005770996187208085, 0.007180660465844731, 0.00856849838493545, 0.009930364537584448, 0.011262220734050475, 0.012560143866626452, 0.013820329806826234, 0.015039093256358861, 0.016212863691639857, 0.017338177801069245, 0.018411669117979392, 0.019430055899967942, 0.02039012869079994, 0.021288739406227705, 0.022122794173540513, 0.02288925246405959, 0.02358513519393277, 0.024207544306459747, 0.024753695748092743, 0.02522096659048016, 0.025606955294481704, 0.025909551877130833, 0.026127012361040227, 0.026258029897720733, 0.026301793998560002, 0.026286090109097274, 0.02623950281190267, 0.02616360938171818, 0.026061052075024845, 0.02593555615484597, 0.025791948052490056, 0.025636160270067602, 0.02547519724351854, 0.02531701971205174, 0.025170288612375784, 0.025043904695601357, 0.024946306357878856, 0.024884563662299252, 0.024863423666417854, 0.024867825915040886, 0.024881979818664246, 0.02490536601032983, 0.02493559163951616, 0.024969282218586502, 0.025002804480876096, 0.02503276311604355, 0.025056307349554035, 0.025071308068373727, 0.025076455494001424, 0.024885788008125666, 0.024691710131590047, 0.02448893259937908, 0.02426826607628745, 0.024018294795948438, 0.02372788335915151, 0.0233882680212108, 0.022993893941213418, 0.022542037452946705, 0.022031793538676566, 0.021463022284812196, 0.020835596988640733, 0.020149042968341836, 0.019402503594685323, 0.018594914854711247, 0.017725274066096888, 0.01679291776087313, 0.015797757151514557, 0.014740447358215954, 0.013622486004059983, 0.012446248413346237, 0.011214972168518692, 0.009932705070915586, 0.008604229282968738, 0.007234971921020413, 0.005830909537943754, 0.004398471334759577, 0.0029444438289767984, 0.001475878143179424, 0.0 ] }, { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "y": [ 0.044485283016674725, 0.04447482345293691, 0.04444353277461056, 0.04439167558592679, 0.04431969472623454, 0.044228213840494336, 0.04411804062409022, 0.04399017039401243, 0.04384578954739967, 0.04368627838398631, 0.04351321269293084, 0.04332836343897397, 0.043133693830617596, 0.04293135301768156, 0.0427236656521673, 0.04251311656167339, 0.0423023298377823, 0.042094041744448044, 0.04189106701707379, 0.041696258365898554, 0.041512459329478044, 0.04134245105065657, 0.041188894061036305, 0.04105426673418512, 0.04094080265278314, 0.04085042965690793, 0.04078471370908452, 0.04074481083420514, 0.04073143019666888, 0.04073400667117505, 0.04074159856309975, 0.040753801980564386, 0.04076997191176644, 0.04078926156623936, 0.040810672254488645, 0.04083310970784135, 0.04085544278086241, 0.04087656095774555, 0.04089542780596655, 0.04091112829825151, 0.04092290862216424, 0.04093020764446551, 0.04093267957917706, 0.04093406480019913, 0.0409383197262515, 0.040946077614382126, 0.040958266946778316, 0.04097568761364499, 0.04099857421069857, 0.041026018522289626, 0.04105502393397208, 0.04107917533320556, 0.04108902188160734, 0.041187659659495834, 0.04131146450675919, 0.041464378897647175, 0.04164797547564517, 0.041860086195776865, 0.04209370804516242, 0.04233646719740807, 0.042571212933672706, 0.04277904026652484, 0.04294573293666878, 0.04306841474722046, 0.04315567733240191, 0.0432211473465637, 0.0432774288857823, 0.04333374544177305, 0.04339593887226231, 0.043467142264346864, 0.04354843406649547, 0.04363934107162087, 0.04373822024672338, 0.04384256587042602, 0.0439492729157343, 0.04405487255254749, 0.04415574643282249, 0.04424832182169918, 0.04432924759724571, 0.04439555013205952, 0.04444476726584819, 0.04447505776146406, 0.04448528301667473 ] }, { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "y": [ 0.04448528301678008, 0.04447482345293691, 0.04444353277461056, 0.04439167558592679, 0.044319694726234544, 0.04422821384049435, 0.04411804062409022, 0.04399017039401243, 0.04384578954739967, 0.04368627838398631, 0.04351321269293085, 0.04332836343897397, 0.043133693830617596, 0.04293135301768157, 0.042723665652167314, 0.04251311656167339, 0.04230232983778231, 0.04209404174444805, 0.04189106701707379, 0.04169625836589856, 0.04151245932947805, 0.04134245105065658, 0.041188894061036305, 0.04105426673418513, 0.04094080265278315, 0.04085042965690794, 0.04078471370908453, 0.04074481083420515, 0.04073143019666889, 0.04074074575201602, 0.04076868090641539, 0.040815183338265386, 0.040880102796145915, 0.04096308307760186, 0.041063382969339715, 0.04117959669058249, 0.04130923615131358, 0.04144813821696552, 0.04158969662702054, 0.041724061194718866, 0.04183782706562152, 0.041915370694971796, 0.041943075114274704, 0.041935319402488, 0.04191040899364346, 0.04186799964096019, 0.041810385551629574, 0.04174179196272809, 0.041667626277900514, 0.04159415466143973, 0.04152888708687799, 0.04148160222040608, 0.04146381325633704, 0.04160041319720256, 0.041743738320987565, 0.04189237939319925, 0.042044923994019476, 0.04219997841066058, 0.04235618819419463, 0.04251225687276712, 0.04266696238835759, 0.04281917091537214, 0.042967847820344164, 0.04311206562694312, 0.04325100895398051, 0.04338397649158231, 0.04351038016856226, 0.043629741739600617, 0.04374168708233545, 0.043845938540931856, 0.04394230568385034, 0.044030674859770524, 0.044110997937891895, 0.04418328060858552, 0.0442475705994922, 0.04430394613286445, 0.0443525049146466, 0.044393353906948686, 0.044426600095556185, 0.04445234242500413, 0.04447066503719503, 0.044481631916648647, 0.04448528301674723 ] }, { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "y": [ 0.04866789465232308, 0.04866677482736557, 0.04866339257802208, 0.0486576806225212, 0.04864953031072376, 0.048638796899426164, 0.04862530701937498, 0.04860886839108383, 0.04858928182826573, 0.04856635552409109, 0.048539921541434335, 0.04850985431882024, 0.048476090854188345, 0.04843865203466963, 0.04839766433955389, 0.04835338085597037, 0.04830620021932535, 0.048256681741383596, 0.048205554654159564, 0.04815371913915109, 0.048102236721846645, 0.048052307814133575, 0.04800523482086159, 0.0479623704088768, 0.047925052303196415, 0.04789452820575989, 0.047871876794298884, 0.04785793271211804, 0.047853224367915705, 0.04782900824221787, 0.04775698705522154, 0.047639051105503254, 0.047478381460745914, 0.047279501405920944, 0.04704836120762234, 0.04679247236016061, 0.0465211153145468, 0.0462456470923737, 0.045979906975442554, 0.04574058910000693, 0.04554708817755275, 0.04541970822465694, 0.04537504989911104, 0.045394484430998944, 0.04544961655899271, 0.045533078560253105, 0.045634916633606255, 0.04574405218145114, 0.04584966749902549, 0.04594220002459005, 0.046013920798443374, 0.04605921431948011, 0.04607468963159275, 0.04583055235907391, 0.04560345313264514, 0.04539889934362, 0.045221770148371074, 0.04507697802718957, 0.04497042155937722, 0.04490999406769285, 0.04490592243278325, 0.04496886037919333, 0.045104472408652715, 0.04530754544990301, 0.04556230426947378, 0.045849000965125106, 0.04614992020834955, 0.0464515617681165, 0.04674441679014857, 0.04702207514280017, 0.047280390176268644, 0.0475168493660951, 0.0477301234442462, 0.04791974121656801, 0.04808584798284831, 0.04822901904137696, 0.04835010975536639, 0.04845013031496351, 0.04853013787677655, 0.0485911421680814, 0.04863402342049899, 0.04865946375196498, 0.04866789465235512 ] }, { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "type": "scatter", "x": [ 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 ], "y": [ 0.0, 0.0005358650745073206, 0.0010697839571917453, 0.0015998079483165756, 0.002123983497755503, 0.002640350317183838, 0.0031469401265581806, 0.0036417762917250996, 0.004122874617860287, 0.0045882455829848925, 0.005035898308865707, 0.005463846567849003, 0.005870117107085557, 0.0062527605292285494, 0.006609864894426995, 0.006939572097304604, 0.007240096922626626, 0.007509748497269094, 0.007746953642881998, 0.007950281409387106, 0.00811846785715102, 0.008250439983331167, 0.00834533758490328, 0.008402531842866816, 0.008421639515277742, 0.008435074116124678, 0.008475006682460162, 0.00854034167252158, 0.008629311267737038, 0.008739554477465168, 0.00886821386002861, 0.009012039801413489, 0.009167493549695599, 0.009330842652025348, 0.009498245289996673, 0.009665822603590876, 0.009829720041733714, 0.009986159945357969, 0.010131488005376254, 0.010262216085629251, 0.010375063330630437, 0.010466996655233927, 0.010547899186384912, 0.010782216321422565, 0.011146465401537816, 0.011606158979200561, 0.012120178405808283, 0.012643661210656994, 0.013128741151242584, 0.013524207997291496, 0.01377966298880551, 0.013864571235531978, 0.013744395906115292, 0.013435553540285267, 0.01302306443380849, 0.012563472122157002, 0.012088633157758615, 0.011617698621025241, 0.011163341309395333, 0.010734488840885296, 0.01033753727367969, 0.009976918814707976, 0.00965539557790815, 0.009374251611597308, 0.009133471441282476, 0.008931951135579153, 0.008767760254106794, 0.008638451537396941, 0.008541398871657337, 0.008474134065488194, 0.008434649869509774, 0.008421639515277742, 0.00843507411617806, 0.008475006682513433, 0.008540341672574637, 0.0086293112677898, 0.008739554477517572, 0.008868213860080625, 0.009012039801465074, 0.00916749354974673, 0.009330842652076045, 0.009498245290046954, 0.009665822603640795, 0.009829720041783235, 0.009986159945407197, 0.01013148800542519, 0.010262216085677954, 0.010375063330678894, 0.010466996655282234, 0.010486209341331383, 0.010616084043721124, 0.01083628945405738, 0.011117663987991275, 0.01142414871045093, 0.011714365535162113, 0.011944005664416255, 0.012071949462263662, 0.012071949462258416, 0.011944005664401116, 0.011714365535138306, 0.011424148710419966, 0.011117663987954468, 0.010836289454015928, 0.010616084043676238, 0.010486209341284173, 0.010466996655233927, 0.010596533035792518, 0.010711483558382296, 0.010812099511839195, 0.010898637212487142, 0.010971348268893009, 0.01103046924619102, 0.011076211299667483, 0.011108750426933146, 0.011128219006633114, 0.011134699241584221 ] }, { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "type": "scatter", "x": [ 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 ], "y": [ 0.0, 0.0005358650745084461, 0.0010697839571920924, 0.0015998079483169252, 0.002123983497755699, 0.0026403503171840304, 0.0031469401265582044, 0.0036417762917251933, 0.004122874617860413, 0.004588245582985012, 0.005035898308865789, 0.005463846567849069, 0.005870117107085635, 0.006252760529228604, 0.006609864894427044, 0.0069395720973046485, 0.007240096922626693, 0.0075097484972691565, 0.007746953642882025, 0.00795028140938717, 0.008118467857151054, 0.008250439983331186, 0.008345337584903318, 0.008402531842866877, 0.008421639515277766, 0.008552368830924282, 0.008929558801678632, 0.009514020108253, 0.010254960798870085, 0.01110096925547409, 0.012005592889278304, 0.012928475193097791, 0.013834263190820737, 0.014690872991508308, 0.015468002779273217, 0.01613654317285202, 0.016669597245288336, 0.017045622712882076, 0.017252979637513835, 0.0172932089238577, 0.01718019192488727, 0.016935410066673547, 0.0169181808316116, 0.016867095049556326, 0.016784042662392914, 0.016672487759480346, 0.01653806974883103, 0.01638973260928198, 0.016241587852720785, 0.016114784993770448, 0.016034374940023015, 0.01601115256346213, 0.016092870858369544, 0.016284098174800334, 0.01649329732345975, 0.016653946052840193, 0.016722550634453277, 0.016669702578868847, 0.016477592812145815, 0.016140213535469565, 0.015662785399461646, 0.015059501813382045, 0.01435063645630155, 0.013560349063303652, 0.012715766367356354, 0.011847230272192711, 0.010989330790387459, 0.010182204976112481, 0.009472237280404291, 0.00891060307489176, 0.008547555277725438, 0.008421639515277766, 0.008552368830871682, 0.00892955880162851, 0.009514020108206352, 0.010254960798827404, 0.011100969255435383, 0.012005592889243574, 0.012928475193066787, 0.013834263190793492, 0.014690872991484874, 0.015468002779253786, 0.01613654317283685, 0.01666959724527776, 0.01704562271287634, 0.017252979637512995, 0.01729320892386144, 0.017180191924895113, 0.016935410066685003, 0.017058887502421793, 0.01712407982810915, 0.01713067088429244, 0.01708400096041491, 0.016996595704822676, 0.016889296830203793, 0.016790482057327354, 0.016730602555633335, 0.016730602555634414, 0.016790482057330126, 0.01688929683020706, 0.016996595704825073, 0.017084000960415423, 0.017130670884290343, 0.017124079828104096, 0.017058887502413553, 0.016935410066673547, 0.01636248105121326, 0.015690561442475985, 0.014949859644173922, 0.014175102174133663, 0.013405045106775941, 0.012682128205914047, 0.012051494673664304, 0.011558395887121865, 0.011243239101146395, 0.011134699241584235 ] }, { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "type": "scatter", "x": [ 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 ], "y": [ 0.0, 0.0015752049144679699, 0.0031455596120142097, 0.004706214290917459, 0.006252318864430038, 0.007779020044140273, 0.009281455017417981, 0.010754740490705761, 0.012193955812770224, 0.01359411887578574, 0.014950153566890147, 0.01625684779872418, 0.017508801728128114, 0.018700366896014592, 0.019825578998177936, 0.02087809021861594, 0.021851111919331576, 0.02273738515333153, 0.02352920441254738, 0.024218527211991712, 0.024797204179652046, 0.02525735451516167, 0.025591883224774604, 0.025795088687606244, 0.025863254765841344, 0.025850254452758015, 0.02581155106081679, 0.025748060485725692, 0.025661390259190158, 0.025553973019222537, 0.02542927499990637, 0.025292093152013594, 0.02514893738671793, 0.025008439526326597, 0.0248815999096589, 0.024781443752810123, 0.024721395641883952, 0.02471181415860328, 0.024755340877840926, 0.024843670032890126, 0.02495851288846004, 0.025076455494026186, 0.025071308068397465, 0.025056307349576458, 0.02503276311606439, 0.025002804480895, 0.02496928221860315, 0.024935591639530165, 0.024905366010340827, 0.024881979818671882, 0.024867825915044817, 0.024863423666417854, 0.02485059751140697, 0.024814563453843738, 0.02476252652447003, 0.024705877858282477, 0.02465871495575063, 0.02463513367472505, 0.02464575325513651, 0.0246949474435722, 0.02478027970868717, 0.02489423345928747, 0.025026910846114653, 0.025168303825861667, 0.025309583410400426, 0.025443550949176875, 0.025564607489768264, 0.025668528610556973, 0.025752206930466443, 0.025813432396006506, 0.02585073025638264, 0.025863254765841344, 0.02585025445275799, 0.025811551060816684, 0.025748060485725453, 0.025661390259189683, 0.02555397301922175, 0.025429274999905136, 0.02529209315201171, 0.02514893738671515, 0.025008439526322562, 0.024881599909653197, 0.02478144375280224, 0.02472139564187339, 0.024711814158589644, 0.0247553408778241, 0.024843670032870246, 0.024958512888437496, 0.025076455494001424, 0.025015041732317184, 0.024946284282089625, 0.02487612542946286, 0.0248100973232494, 0.02475278576737426, 0.024707535770290542, 0.024676462251258195, 0.024660695443637064, 0.02466069544363875, 0.02467646225126325, 0.02470753577029896, 0.024752785767385956, 0.024810097323264245, 0.024876125429480648, 0.024946284282110084, 0.02501504173233998, 0.025076455494026186, 0.025264916071552214, 0.025449245637172904, 0.025625703036453656, 0.025789826233413936, 0.02593714658984159, 0.02606358758213223, 0.02616566916290306, 0.02624061206135141, 0.02628639574458172, 0.026301793998560002 ] }, { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "type": "scatter", "x": [ 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 ], "y": [ 0.044485283016690656, 0.0444791942115283, 0.04446101817165053, 0.044431025257760826, 0.044389663496424966, 0.04433755464957638, 0.04427548857605468, 0.04420441575383993, 0.04412543780148134, 0.04403979581464368, 0.04394885632243018, 0.043854094672906165, 0.043757075683558064, 0.04365943144613966, 0.043562836261927716, 0.04346897880671029, 0.04337953178571369, 0.04329611953332548, 0.0432202842309549, 0.04315345164175581, 0.04309689746960368, 0.04305171561324771, 0.04301878967542731, 0.04299876907545634, 0.042992050986604795, 0.042983302566968994, 0.042957220313752084, 0.04291429138628804, 0.0428553214970866, 0.042781425487508226, 0.04269401394448593, 0.04259477567138161, 0.04248162089102041, 0.042303824025621425, 0.04211189863572431, 0.04191542808330787, 0.04172381072164429, 0.04154562825404588, 0.04138822004558614, 0.04125735391255255, 0.04115696882788631, 0.04108902188160038, 0.04107917533320212, 0.041055023933970425, 0.04102601852228859, 0.04099857421069767, 0.04097568761364409, 0.04095826694677739, 0.04094607761438129, 0.040938319726250796, 0.04093406480019871, 0.04093267957917706, 0.040938124975483936, 0.04095605488138708, 0.04099051663560193, 0.041046349948182966, 0.04112756543301018, 0.041236275418025284, 0.041372186745165684, 0.04153249962016188, 0.041712079630749646, 0.04190382488212047, 0.04209919939144172, 0.04228895277114695, 0.04246407941570837, 0.042617020368170305, 0.042742890784710746, 0.042840200525230326, 0.042910523465716104, 0.04295716181187837, 0.04298353902556028, 0.042992050986604795, 0.0429833025669869, 0.04295722031376997, 0.04291429138630588, 0.04285532149710439, 0.04278142548752592, 0.04269401394450353, 0.042594775671399084, 0.0424816208910174, 0.04230382402562044, 0.042111898635724974, 0.04191542808330984, 0.04172381072164729, 0.04154562825404978, 0.04138822004559086, 0.04125735391255799, 0.041156968827892514, 0.04108902188160734, 0.04111030711946763, 0.0411225399606451, 0.04112806253125427, 0.04112976400980184, 0.041129647966816105, 0.041128877532493335, 0.04112809199897491, 0.04112762678172078, 0.04112762678172086, 0.04112809199897508, 0.041128877532493655, 0.04112964796681649, 0.04112976400980217, 0.04112806253125425, 0.04112253996064405, 0.04111030711946431, 0.04108902188160038, 0.041010610966601226, 0.04094760692841038, 0.040896027993590836, 0.0408530418246438, 0.04081696035477525, 0.04078704102952653, 0.04076320295569457, 0.0407457342305217, 0.04073503632657828, 0.04073143019666888 ] }, { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "type": "scatter", "x": [ 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 ], "y": [ 0.04448528301675401, 0.04447919421152832, 0.04446101817165055, 0.04443102525776083, 0.04438966349642498, 0.04433755464957638, 0.04427548857605468, 0.04420441575383995, 0.04412543780148135, 0.04403979581464369, 0.04394885632243018, 0.043854094672906165, 0.04375707568355807, 0.04365943144613966, 0.043562836261927716, 0.043468978806710294, 0.04337953178571369, 0.04329611953332548, 0.04322028423095491, 0.04315345164175582, 0.04309689746960368, 0.043051715613247735, 0.04301878967542732, 0.042998769075456356, 0.0429920509866048, 0.04298922585293537, 0.04297928968408118, 0.04295803305166262, 0.04291915350452573, 0.042855672290169275, 0.042762094414067926, 0.04263653284624322, 0.04248565577987093, 0.042368829135822246, 0.04224666888055009, 0.042121709773366704, 0.04199660617896155, 0.04187408467218715, 0.04175689146988682, 0.04164773523431017, 0.04154922622229933, 0.04146381325632113, 0.041481602220386236, 0.041528887086856404, 0.041594154661418074, 0.0416676262778798, 0.041741791962709114, 0.04181038555161313, 0.041867999640947035, 0.041910408993634275, 0.04193531940248332, 0.041943075114274704, 0.041956318991789275, 0.041994411388564315, 0.04205307378818622, 0.04212679099241408, 0.04221007761909147, 0.042298185331231794, 0.04238732608936466, 0.04247462736396435, 0.0425579802859849, 0.04263586507103105, 0.04270719064384164, 0.042771163589630214, 0.04282719489849291, 0.04287485477487645, 0.04291388941073688, 0.04294430441572853, 0.04296647585779569, 0.04298117963577508, 0.04298941803643543, 0.0429920509866048, 0.0429892258529177, 0.042979289684064365, 0.04295803305164726, 0.042919153504512406, 0.042855672290158436, 0.042762094414059815, 0.04263653284623781, 0.04248565577988825, 0.042368829135839406, 0.0422466688805671, 0.042121709773383545, 0.041996606178978234, 0.04187408467220365, 0.041756891469903176, 0.041647735234326355, 0.041549226222315376, 0.04146381325633704, 0.04151918111248269, 0.04160499987694972, 0.04171404068150525, 0.04183621533523533, 0.04195979747884492, 0.042071513548903545, 0.04215720369475911, 0.04220402053386315, 0.042204020533859965, 0.042157203694749956, 0.04207151354888942, 0.04195979747882707, 0.04183621533521496, 0.04171404068148363, 0.04160499987692822, 0.04151918111246308, 0.04146381325632113, 0.041335321881646, 0.041216273756088745, 0.04110793242074208, 0.041011468804923554, 0.04092794124044287, 0.04085827740287351, 0.040803258541830645, 0.04076350627897833, 0.04073947217457198, 0.04073143019666889 ] }, { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "type": "scatter", "x": [ 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 ], "y": [ 0.04866789465233235, 0.04865658739235655, 0.048622721760326545, 0.04856646822041065, 0.04848811771261887, 0.04838809224530162, 0.04826696040707123, 0.0481254584677041, 0.0479645178964076, 0.04778530023179857, 0.04758924023943071, 0.0473780981019629, 0.04715402086221313, 0.04691961226337865, 0.04667800819496509, 0.04643295176601178, 0.046188857194032054, 0.04595084504925665, 0.045724723467577506, 0.045516882769892936, 0.04533406886647071, 0.045183010635941996, 0.04506990492427841, 0.04499981065798409, 0.044976057900884825, 0.044969548025143746, 0.04495174071190692, 0.04492763835097012, 0.0449048909014151, 0.04489241178917213, 0.04489825167662173, 0.04492749877776639, 0.04498136970771857, 0.04505786681537374, 0.04515324184463348, 0.04526332386016874, 0.04538432813063079, 0.045513214912835956, 0.04564778043395249, 0.045786613201441145, 0.04592898298618531, 0.04607468963162265, 0.04605921431950975, 0.046013920798472295, 0.045942200024617796, 0.04584966749905146, 0.04574405218147467, 0.04563491663362659, 0.04553307856026938, 0.04544961655900412, 0.04539448443100482, 0.04537504989911104, 0.04537052697431801, 0.04535701756627438, 0.04533471498449625, 0.04530399054495389, 0.04526546197550072, 0.045220079162924254, 0.04516921805107278, 0.04511477069806547, 0.045059213973040184, 0.04500562744773712, 0.04495760835648053, 0.04491899876230719, 0.04489332003985542, 0.04488287116707535, 0.044887678635480675, 0.04490482323433683, 0.04492873410359341, 0.04495252580523728, 0.04496978119305411, 0.044976057900884825, 0.04496954802514345, 0.04495174071190569, 0.04492763835096732, 0.04490489090141012, 0.04489241178916447, 0.04489825167661106, 0.044927498777752733, 0.044981369707702175, 0.04505786681535493, 0.04515324184461264, 0.04526332386014617, 0.04538432813060672, 0.04551321491281057, 0.04564778043392588, 0.04578661320141339, 0.045928982986156476, 0.04607468963159275, 0.04598980290078556, 0.045885097607356144, 0.04576572629625578, 0.045638849977849366, 0.04551388855086102, 0.045402481023001276, 0.045317634582793836, 0.04527143300406534, 0.04527143300406887, 0.045317634582804, 0.04540248102301716, 0.04551388855088137, 0.04563884997787311, 0.045765726296282006, 0.0458850976073841, 0.04598980290081468, 0.04607468963162265, 0.04632941632716412, 0.04658735687478576, 0.04684047478065828, 0.04708048455958477, 0.04729930554274744, 0.04748948065759559, 0.047644519085929676, 0.047759151858457485, 0.04782950779049783, 0.047853224367915705 ] } ], "layout": { "hovermode": false, "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": { "range": [ 0, 197 ], "tickfont": { "size": 16 }, "ticktext": [ "Γ", "X", "W", "K", "Γ", "L", "U", "W", "L", "K", "U", "X" ], "tickvals": [ 0, 28, 42, 52, 82, 106, 123, 133, 153, 170, 187, 197 ], "title": { "text": "Wave Vector" } }, "yaxis": { "title": { "text": "Energy (eV)" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "phbands.plotly();" ] }, { "cell_type": "markdown", "id": "c894a19f", "metadata": {}, "source": [ "```{warning}\n", "`lo_to_splitting=True` works only when the DDB contains the Born effective charges\n", "and the dielectric constant, that must be computed in the Abinit run.\n", "```" ] }, { "cell_type": "markdown", "id": "aedfafd4", "metadata": {}, "source": [ "To plot bands and DOS on the same figure:" ] }, { "cell_type": "code", "execution_count": 36, "id": "7361d837", "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://chart-studio.plotly.com", "responsive": true, "showLink": true }, "data": [ { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "y": [ 0.0, 0.0005958481034701485, 0.0011902521158242215, 0.0017817655359985737, 0.0023689369312623284, 0.002950307318387079, 0.0035244073648737504, 0.004089754419174196, 0.004644849409630538, 0.005188173703502295, 0.0057181860752842555, 0.006233319996764072, 0.006731981528519774, 0.00721254816197941, 0.007673369029675163, 0.008112766963914395, 0.008529042932800244, 0.008920483405773954, 0.009285371183233642, 0.009622000148016206, 0.009928694241940266, 0.010203830723558644, 0.01044586741931681, 0.010653373252214757, 0.010825060855518957, 0.010959819614454335, 0.011056747106115782, 0.01111517671313096, 0.011134699241584221, 0.011168582271487431, 0.011268445338631318, 0.011429083316919138, 0.011642290614602589, 0.011897443693659419, 0.012182128583448226, 0.012482722804952025, 0.012784896537068413, 0.013074057927574071, 0.013335814579914512, 0.013556543160091663, 0.013724135903897058, 0.013828913621406504, 0.013864571235531978, 0.013779662988811586, 0.013524207997304397, 0.013128741151262144, 0.012643661210682723, 0.01212017840583955, 0.011606158979236907, 0.011146465401578556, 0.010782216321466975, 0.0105478991864319, 0.010466996655282234, 0.010322636846724378, 0.010163237117076732, 0.009988607948716094, 0.009798591265598818, 0.009593063624402326, 0.009371938385533247, 0.00913516717873893, 0.008882741000188927, 0.008614691265434187, 0.00833109110118086, 0.008032057095252405, 0.007717751645895297, 0.007388385965978548, 0.0070442237113387965, 0.006685585121391774, 0.0063128514890323055, 0.005926469719636182, 0.005526956698443112, 0.005114903163471805, 0.004690976778095924, 0.004255924113175421, 0.0038105712819198165, 0.003355823019333758, 0.002892660059312807, 0.002422134732794484, 0.001945364786056158, 0.001463525495337799, 0.0009778402286252984, 0.0004895696744950367, 0.0 ] }, { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "y": [ 0.0, 0.0005958481034703127, 0.001190252115824366, 0.0017817655359986175, 0.0023689369312623653, 0.002950307318387225, 0.0035244073648739065, 0.004089754419174217, 0.004644849409630607, 0.005188173703502313, 0.005718186075284371, 0.006233319996764128, 0.006731981528519776, 0.007212548161979423, 0.007673369029675183, 0.008112766963914405, 0.00852904293280028, 0.008920483405773973, 0.009285371183233693, 0.009622000148016232, 0.009928694241940284, 0.010203830723558667, 0.010445867419316829, 0.010653373252214767, 0.010825060855518966, 0.010959819614454372, 0.011056747106115804, 0.011115176713130963, 0.011134699241584235, 0.011205256528990497, 0.011411339878807079, 0.011737217422390573, 0.012159656484850734, 0.012651143121087777, 0.013182741559147913, 0.013726148188075037, 0.014254951270531726, 0.014745329968947838, 0.015176449430589014, 0.015530737486767799, 0.015794139043504147, 0.015956370853749416, 0.01601115256346213, 0.016034374940024302, 0.016114784993772183, 0.016241587852722977, 0.01638973260928492, 0.016538069748835028, 0.01667248775948562, 0.016784042662399565, 0.016867095049564487, 0.016918180831621363, 0.016935410066685003, 0.017384720871230212, 0.017692960355102746, 0.01785133782975082, 0.0178600946302589, 0.01772712060593466, 0.017465237884643676, 0.01708934001366542, 0.01661436879508854, 0.016054359181503126, 0.015422239395982008, 0.014729964395722425, 0.013988693836073632, 0.013208890606313719, 0.012400324417019812, 0.01157201155395882, 0.010732129137982481, 0.009887932269685052, 0.009045689294177792, 0.008210640308371377, 0.007386978288291225, 0.006577850003131912, 0.0057853738590993254, 0.005010672836497997, 0.004253921970749727, 0.0035144109085782755, 0.0027906226738949403, 0.002080329769076425, 0.0013807080927316494, 0.000688467963792988, 0.0 ] }, { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "y": [ 0.0, 0.0014538419078690321, 0.0029032335259157015, 0.004343746600072835, 0.005770996187208085, 0.007180660465844731, 0.00856849838493545, 0.009930364537584448, 0.011262220734050475, 0.012560143866626452, 0.013820329806826234, 0.015039093256358861, 0.016212863691639857, 0.017338177801069245, 0.018411669117979392, 0.019430055899967942, 0.02039012869079994, 0.021288739406227705, 0.022122794173540513, 0.02288925246405959, 0.02358513519393277, 0.024207544306459747, 0.024753695748092743, 0.02522096659048016, 0.025606955294481704, 0.025909551877130833, 0.026127012361040227, 0.026258029897720733, 0.026301793998560002, 0.026286090109097274, 0.02623950281190267, 0.02616360938171818, 0.026061052075024845, 0.02593555615484597, 0.025791948052490056, 0.025636160270067602, 0.02547519724351854, 0.02531701971205174, 0.025170288612375784, 0.025043904695601357, 0.024946306357878856, 0.024884563662299252, 0.024863423666417854, 0.024867825915040886, 0.024881979818664246, 0.02490536601032983, 0.02493559163951616, 0.024969282218586502, 0.025002804480876096, 0.02503276311604355, 0.025056307349554035, 0.025071308068373727, 0.025076455494001424, 0.024885788008125666, 0.024691710131590047, 0.02448893259937908, 0.02426826607628745, 0.024018294795948438, 0.02372788335915151, 0.0233882680212108, 0.022993893941213418, 0.022542037452946705, 0.022031793538676566, 0.021463022284812196, 0.020835596988640733, 0.020149042968341836, 0.019402503594685323, 0.018594914854711247, 0.017725274066096888, 0.01679291776087313, 0.015797757151514557, 0.014740447358215954, 0.013622486004059983, 0.012446248413346237, 0.011214972168518692, 0.009932705070915586, 0.008604229282968738, 0.007234971921020413, 0.005830909537943754, 0.004398471334759577, 0.0029444438289767984, 0.001475878143179424, 0.0 ] }, { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "y": [ 0.044485283016674725, 0.04447482345293691, 0.04444353277461056, 0.04439167558592679, 0.04431969472623454, 0.044228213840494336, 0.04411804062409022, 0.04399017039401243, 0.04384578954739967, 0.04368627838398631, 0.04351321269293084, 0.04332836343897397, 0.043133693830617596, 0.04293135301768156, 0.0427236656521673, 0.04251311656167339, 0.0423023298377823, 0.042094041744448044, 0.04189106701707379, 0.041696258365898554, 0.041512459329478044, 0.04134245105065657, 0.041188894061036305, 0.04105426673418512, 0.04094080265278314, 0.04085042965690793, 0.04078471370908452, 0.04074481083420514, 0.04073143019666888, 0.04073400667117505, 0.04074159856309975, 0.040753801980564386, 0.04076997191176644, 0.04078926156623936, 0.040810672254488645, 0.04083310970784135, 0.04085544278086241, 0.04087656095774555, 0.04089542780596655, 0.04091112829825151, 0.04092290862216424, 0.04093020764446551, 0.04093267957917706, 0.04093406480019913, 0.0409383197262515, 0.040946077614382126, 0.040958266946778316, 0.04097568761364499, 0.04099857421069857, 0.041026018522289626, 0.04105502393397208, 0.04107917533320556, 0.04108902188160734, 0.041187659659495834, 0.04131146450675919, 0.041464378897647175, 0.04164797547564517, 0.041860086195776865, 0.04209370804516242, 0.04233646719740807, 0.042571212933672706, 0.04277904026652484, 0.04294573293666878, 0.04306841474722046, 0.04315567733240191, 0.0432211473465637, 0.0432774288857823, 0.04333374544177305, 0.04339593887226231, 0.043467142264346864, 0.04354843406649547, 0.04363934107162087, 0.04373822024672338, 0.04384256587042602, 0.0439492729157343, 0.04405487255254749, 0.04415574643282249, 0.04424832182169918, 0.04432924759724571, 0.04439555013205952, 0.04444476726584819, 0.04447505776146406, 0.04448528301667473 ] }, { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "y": [ 0.04448528301678008, 0.04447482345293691, 0.04444353277461056, 0.04439167558592679, 0.044319694726234544, 0.04422821384049435, 0.04411804062409022, 0.04399017039401243, 0.04384578954739967, 0.04368627838398631, 0.04351321269293085, 0.04332836343897397, 0.043133693830617596, 0.04293135301768157, 0.042723665652167314, 0.04251311656167339, 0.04230232983778231, 0.04209404174444805, 0.04189106701707379, 0.04169625836589856, 0.04151245932947805, 0.04134245105065658, 0.041188894061036305, 0.04105426673418513, 0.04094080265278315, 0.04085042965690794, 0.04078471370908453, 0.04074481083420515, 0.04073143019666889, 0.04074074575201602, 0.04076868090641539, 0.040815183338265386, 0.040880102796145915, 0.04096308307760186, 0.041063382969339715, 0.04117959669058249, 0.04130923615131358, 0.04144813821696552, 0.04158969662702054, 0.041724061194718866, 0.04183782706562152, 0.041915370694971796, 0.041943075114274704, 0.041935319402488, 0.04191040899364346, 0.04186799964096019, 0.041810385551629574, 0.04174179196272809, 0.041667626277900514, 0.04159415466143973, 0.04152888708687799, 0.04148160222040608, 0.04146381325633704, 0.04160041319720256, 0.041743738320987565, 0.04189237939319925, 0.042044923994019476, 0.04219997841066058, 0.04235618819419463, 0.04251225687276712, 0.04266696238835759, 0.04281917091537214, 0.042967847820344164, 0.04311206562694312, 0.04325100895398051, 0.04338397649158231, 0.04351038016856226, 0.043629741739600617, 0.04374168708233545, 0.043845938540931856, 0.04394230568385034, 0.044030674859770524, 0.044110997937891895, 0.04418328060858552, 0.0442475705994922, 0.04430394613286445, 0.0443525049146466, 0.044393353906948686, 0.044426600095556185, 0.04445234242500413, 0.04447066503719503, 0.044481631916648647, 0.04448528301674723 ] }, { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "y": [ 0.04866789465232308, 0.04866677482736557, 0.04866339257802208, 0.0486576806225212, 0.04864953031072376, 0.048638796899426164, 0.04862530701937498, 0.04860886839108383, 0.04858928182826573, 0.04856635552409109, 0.048539921541434335, 0.04850985431882024, 0.048476090854188345, 0.04843865203466963, 0.04839766433955389, 0.04835338085597037, 0.04830620021932535, 0.048256681741383596, 0.048205554654159564, 0.04815371913915109, 0.048102236721846645, 0.048052307814133575, 0.04800523482086159, 0.0479623704088768, 0.047925052303196415, 0.04789452820575989, 0.047871876794298884, 0.04785793271211804, 0.047853224367915705, 0.04782900824221787, 0.04775698705522154, 0.047639051105503254, 0.047478381460745914, 0.047279501405920944, 0.04704836120762234, 0.04679247236016061, 0.0465211153145468, 0.0462456470923737, 0.045979906975442554, 0.04574058910000693, 0.04554708817755275, 0.04541970822465694, 0.04537504989911104, 0.045394484430998944, 0.04544961655899271, 0.045533078560253105, 0.045634916633606255, 0.04574405218145114, 0.04584966749902549, 0.04594220002459005, 0.046013920798443374, 0.04605921431948011, 0.04607468963159275, 0.04583055235907391, 0.04560345313264514, 0.04539889934362, 0.045221770148371074, 0.04507697802718957, 0.04497042155937722, 0.04490999406769285, 0.04490592243278325, 0.04496886037919333, 0.045104472408652715, 0.04530754544990301, 0.04556230426947378, 0.045849000965125106, 0.04614992020834955, 0.0464515617681165, 0.04674441679014857, 0.04702207514280017, 0.047280390176268644, 0.0475168493660951, 0.0477301234442462, 0.04791974121656801, 0.04808584798284831, 0.04822901904137696, 0.04835010975536639, 0.04845013031496351, 0.04853013787677655, 0.0485911421680814, 0.04863402342049899, 0.04865946375196498, 0.04866789465235512 ] }, { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "type": "scatter", "x": [ 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 ], "y": [ 0.0, 0.0005358650745073206, 0.0010697839571917453, 0.0015998079483165756, 0.002123983497755503, 0.002640350317183838, 0.0031469401265581806, 0.0036417762917250996, 0.004122874617860287, 0.0045882455829848925, 0.005035898308865707, 0.005463846567849003, 0.005870117107085557, 0.0062527605292285494, 0.006609864894426995, 0.006939572097304604, 0.007240096922626626, 0.007509748497269094, 0.007746953642881998, 0.007950281409387106, 0.00811846785715102, 0.008250439983331167, 0.00834533758490328, 0.008402531842866816, 0.008421639515277742, 0.008435074116124678, 0.008475006682460162, 0.00854034167252158, 0.008629311267737038, 0.008739554477465168, 0.00886821386002861, 0.009012039801413489, 0.009167493549695599, 0.009330842652025348, 0.009498245289996673, 0.009665822603590876, 0.009829720041733714, 0.009986159945357969, 0.010131488005376254, 0.010262216085629251, 0.010375063330630437, 0.010466996655233927, 0.010547899186384912, 0.010782216321422565, 0.011146465401537816, 0.011606158979200561, 0.012120178405808283, 0.012643661210656994, 0.013128741151242584, 0.013524207997291496, 0.01377966298880551, 0.013864571235531978, 0.013744395906115292, 0.013435553540285267, 0.01302306443380849, 0.012563472122157002, 0.012088633157758615, 0.011617698621025241, 0.011163341309395333, 0.010734488840885296, 0.01033753727367969, 0.009976918814707976, 0.00965539557790815, 0.009374251611597308, 0.009133471441282476, 0.008931951135579153, 0.008767760254106794, 0.008638451537396941, 0.008541398871657337, 0.008474134065488194, 0.008434649869509774, 0.008421639515277742, 0.00843507411617806, 0.008475006682513433, 0.008540341672574637, 0.0086293112677898, 0.008739554477517572, 0.008868213860080625, 0.009012039801465074, 0.00916749354974673, 0.009330842652076045, 0.009498245290046954, 0.009665822603640795, 0.009829720041783235, 0.009986159945407197, 0.01013148800542519, 0.010262216085677954, 0.010375063330678894, 0.010466996655282234, 0.010486209341331383, 0.010616084043721124, 0.01083628945405738, 0.011117663987991275, 0.01142414871045093, 0.011714365535162113, 0.011944005664416255, 0.012071949462263662, 0.012071949462258416, 0.011944005664401116, 0.011714365535138306, 0.011424148710419966, 0.011117663987954468, 0.010836289454015928, 0.010616084043676238, 0.010486209341284173, 0.010466996655233927, 0.010596533035792518, 0.010711483558382296, 0.010812099511839195, 0.010898637212487142, 0.010971348268893009, 0.01103046924619102, 0.011076211299667483, 0.011108750426933146, 0.011128219006633114, 0.011134699241584221 ] }, { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "type": "scatter", "x": [ 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 ], "y": [ 0.0, 0.0005358650745084461, 0.0010697839571920924, 0.0015998079483169252, 0.002123983497755699, 0.0026403503171840304, 0.0031469401265582044, 0.0036417762917251933, 0.004122874617860413, 0.004588245582985012, 0.005035898308865789, 0.005463846567849069, 0.005870117107085635, 0.006252760529228604, 0.006609864894427044, 0.0069395720973046485, 0.007240096922626693, 0.0075097484972691565, 0.007746953642882025, 0.00795028140938717, 0.008118467857151054, 0.008250439983331186, 0.008345337584903318, 0.008402531842866877, 0.008421639515277766, 0.008552368830924282, 0.008929558801678632, 0.009514020108253, 0.010254960798870085, 0.01110096925547409, 0.012005592889278304, 0.012928475193097791, 0.013834263190820737, 0.014690872991508308, 0.015468002779273217, 0.01613654317285202, 0.016669597245288336, 0.017045622712882076, 0.017252979637513835, 0.0172932089238577, 0.01718019192488727, 0.016935410066673547, 0.0169181808316116, 0.016867095049556326, 0.016784042662392914, 0.016672487759480346, 0.01653806974883103, 0.01638973260928198, 0.016241587852720785, 0.016114784993770448, 0.016034374940023015, 0.01601115256346213, 0.016092870858369544, 0.016284098174800334, 0.01649329732345975, 0.016653946052840193, 0.016722550634453277, 0.016669702578868847, 0.016477592812145815, 0.016140213535469565, 0.015662785399461646, 0.015059501813382045, 0.01435063645630155, 0.013560349063303652, 0.012715766367356354, 0.011847230272192711, 0.010989330790387459, 0.010182204976112481, 0.009472237280404291, 0.00891060307489176, 0.008547555277725438, 0.008421639515277766, 0.008552368830871682, 0.00892955880162851, 0.009514020108206352, 0.010254960798827404, 0.011100969255435383, 0.012005592889243574, 0.012928475193066787, 0.013834263190793492, 0.014690872991484874, 0.015468002779253786, 0.01613654317283685, 0.01666959724527776, 0.01704562271287634, 0.017252979637512995, 0.01729320892386144, 0.017180191924895113, 0.016935410066685003, 0.017058887502421793, 0.01712407982810915, 0.01713067088429244, 0.01708400096041491, 0.016996595704822676, 0.016889296830203793, 0.016790482057327354, 0.016730602555633335, 0.016730602555634414, 0.016790482057330126, 0.01688929683020706, 0.016996595704825073, 0.017084000960415423, 0.017130670884290343, 0.017124079828104096, 0.017058887502413553, 0.016935410066673547, 0.01636248105121326, 0.015690561442475985, 0.014949859644173922, 0.014175102174133663, 0.013405045106775941, 0.012682128205914047, 0.012051494673664304, 0.011558395887121865, 0.011243239101146395, 0.011134699241584235 ] }, { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "type": "scatter", "x": [ 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 ], "y": [ 0.0, 0.0015752049144679699, 0.0031455596120142097, 0.004706214290917459, 0.006252318864430038, 0.007779020044140273, 0.009281455017417981, 0.010754740490705761, 0.012193955812770224, 0.01359411887578574, 0.014950153566890147, 0.01625684779872418, 0.017508801728128114, 0.018700366896014592, 0.019825578998177936, 0.02087809021861594, 0.021851111919331576, 0.02273738515333153, 0.02352920441254738, 0.024218527211991712, 0.024797204179652046, 0.02525735451516167, 0.025591883224774604, 0.025795088687606244, 0.025863254765841344, 0.025850254452758015, 0.02581155106081679, 0.025748060485725692, 0.025661390259190158, 0.025553973019222537, 0.02542927499990637, 0.025292093152013594, 0.02514893738671793, 0.025008439526326597, 0.0248815999096589, 0.024781443752810123, 0.024721395641883952, 0.02471181415860328, 0.024755340877840926, 0.024843670032890126, 0.02495851288846004, 0.025076455494026186, 0.025071308068397465, 0.025056307349576458, 0.02503276311606439, 0.025002804480895, 0.02496928221860315, 0.024935591639530165, 0.024905366010340827, 0.024881979818671882, 0.024867825915044817, 0.024863423666417854, 0.02485059751140697, 0.024814563453843738, 0.02476252652447003, 0.024705877858282477, 0.02465871495575063, 0.02463513367472505, 0.02464575325513651, 0.0246949474435722, 0.02478027970868717, 0.02489423345928747, 0.025026910846114653, 0.025168303825861667, 0.025309583410400426, 0.025443550949176875, 0.025564607489768264, 0.025668528610556973, 0.025752206930466443, 0.025813432396006506, 0.02585073025638264, 0.025863254765841344, 0.02585025445275799, 0.025811551060816684, 0.025748060485725453, 0.025661390259189683, 0.02555397301922175, 0.025429274999905136, 0.02529209315201171, 0.02514893738671515, 0.025008439526322562, 0.024881599909653197, 0.02478144375280224, 0.02472139564187339, 0.024711814158589644, 0.0247553408778241, 0.024843670032870246, 0.024958512888437496, 0.025076455494001424, 0.025015041732317184, 0.024946284282089625, 0.02487612542946286, 0.0248100973232494, 0.02475278576737426, 0.024707535770290542, 0.024676462251258195, 0.024660695443637064, 0.02466069544363875, 0.02467646225126325, 0.02470753577029896, 0.024752785767385956, 0.024810097323264245, 0.024876125429480648, 0.024946284282110084, 0.02501504173233998, 0.025076455494026186, 0.025264916071552214, 0.025449245637172904, 0.025625703036453656, 0.025789826233413936, 0.02593714658984159, 0.02606358758213223, 0.02616566916290306, 0.02624061206135141, 0.02628639574458172, 0.026301793998560002 ] }, { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "type": "scatter", "x": [ 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 ], "y": [ 0.044485283016690656, 0.0444791942115283, 0.04446101817165053, 0.044431025257760826, 0.044389663496424966, 0.04433755464957638, 0.04427548857605468, 0.04420441575383993, 0.04412543780148134, 0.04403979581464368, 0.04394885632243018, 0.043854094672906165, 0.043757075683558064, 0.04365943144613966, 0.043562836261927716, 0.04346897880671029, 0.04337953178571369, 0.04329611953332548, 0.0432202842309549, 0.04315345164175581, 0.04309689746960368, 0.04305171561324771, 0.04301878967542731, 0.04299876907545634, 0.042992050986604795, 0.042983302566968994, 0.042957220313752084, 0.04291429138628804, 0.0428553214970866, 0.042781425487508226, 0.04269401394448593, 0.04259477567138161, 0.04248162089102041, 0.042303824025621425, 0.04211189863572431, 0.04191542808330787, 0.04172381072164429, 0.04154562825404588, 0.04138822004558614, 0.04125735391255255, 0.04115696882788631, 0.04108902188160038, 0.04107917533320212, 0.041055023933970425, 0.04102601852228859, 0.04099857421069767, 0.04097568761364409, 0.04095826694677739, 0.04094607761438129, 0.040938319726250796, 0.04093406480019871, 0.04093267957917706, 0.040938124975483936, 0.04095605488138708, 0.04099051663560193, 0.041046349948182966, 0.04112756543301018, 0.041236275418025284, 0.041372186745165684, 0.04153249962016188, 0.041712079630749646, 0.04190382488212047, 0.04209919939144172, 0.04228895277114695, 0.04246407941570837, 0.042617020368170305, 0.042742890784710746, 0.042840200525230326, 0.042910523465716104, 0.04295716181187837, 0.04298353902556028, 0.042992050986604795, 0.0429833025669869, 0.04295722031376997, 0.04291429138630588, 0.04285532149710439, 0.04278142548752592, 0.04269401394450353, 0.042594775671399084, 0.0424816208910174, 0.04230382402562044, 0.042111898635724974, 0.04191542808330984, 0.04172381072164729, 0.04154562825404978, 0.04138822004559086, 0.04125735391255799, 0.041156968827892514, 0.04108902188160734, 0.04111030711946763, 0.0411225399606451, 0.04112806253125427, 0.04112976400980184, 0.041129647966816105, 0.041128877532493335, 0.04112809199897491, 0.04112762678172078, 0.04112762678172086, 0.04112809199897508, 0.041128877532493655, 0.04112964796681649, 0.04112976400980217, 0.04112806253125425, 0.04112253996064405, 0.04111030711946431, 0.04108902188160038, 0.041010610966601226, 0.04094760692841038, 0.040896027993590836, 0.0408530418246438, 0.04081696035477525, 0.04078704102952653, 0.04076320295569457, 0.0407457342305217, 0.04073503632657828, 0.04073143019666888 ] }, { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "type": "scatter", "x": [ 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 ], "y": [ 0.04448528301675401, 0.04447919421152832, 0.04446101817165055, 0.04443102525776083, 0.04438966349642498, 0.04433755464957638, 0.04427548857605468, 0.04420441575383995, 0.04412543780148135, 0.04403979581464369, 0.04394885632243018, 0.043854094672906165, 0.04375707568355807, 0.04365943144613966, 0.043562836261927716, 0.043468978806710294, 0.04337953178571369, 0.04329611953332548, 0.04322028423095491, 0.04315345164175582, 0.04309689746960368, 0.043051715613247735, 0.04301878967542732, 0.042998769075456356, 0.0429920509866048, 0.04298922585293537, 0.04297928968408118, 0.04295803305166262, 0.04291915350452573, 0.042855672290169275, 0.042762094414067926, 0.04263653284624322, 0.04248565577987093, 0.042368829135822246, 0.04224666888055009, 0.042121709773366704, 0.04199660617896155, 0.04187408467218715, 0.04175689146988682, 0.04164773523431017, 0.04154922622229933, 0.04146381325632113, 0.041481602220386236, 0.041528887086856404, 0.041594154661418074, 0.0416676262778798, 0.041741791962709114, 0.04181038555161313, 0.041867999640947035, 0.041910408993634275, 0.04193531940248332, 0.041943075114274704, 0.041956318991789275, 0.041994411388564315, 0.04205307378818622, 0.04212679099241408, 0.04221007761909147, 0.042298185331231794, 0.04238732608936466, 0.04247462736396435, 0.0425579802859849, 0.04263586507103105, 0.04270719064384164, 0.042771163589630214, 0.04282719489849291, 0.04287485477487645, 0.04291388941073688, 0.04294430441572853, 0.04296647585779569, 0.04298117963577508, 0.04298941803643543, 0.0429920509866048, 0.0429892258529177, 0.042979289684064365, 0.04295803305164726, 0.042919153504512406, 0.042855672290158436, 0.042762094414059815, 0.04263653284623781, 0.04248565577988825, 0.042368829135839406, 0.0422466688805671, 0.042121709773383545, 0.041996606178978234, 0.04187408467220365, 0.041756891469903176, 0.041647735234326355, 0.041549226222315376, 0.04146381325633704, 0.04151918111248269, 0.04160499987694972, 0.04171404068150525, 0.04183621533523533, 0.04195979747884492, 0.042071513548903545, 0.04215720369475911, 0.04220402053386315, 0.042204020533859965, 0.042157203694749956, 0.04207151354888942, 0.04195979747882707, 0.04183621533521496, 0.04171404068148363, 0.04160499987692822, 0.04151918111246308, 0.04146381325632113, 0.041335321881646, 0.041216273756088745, 0.04110793242074208, 0.041011468804923554, 0.04092794124044287, 0.04085827740287351, 0.040803258541830645, 0.04076350627897833, 0.04073947217457198, 0.04073143019666889 ] }, { "legendgroup": "", "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "", "showlegend": false, "type": "scatter", "x": [ 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 ], "y": [ 0.04866789465233235, 0.04865658739235655, 0.048622721760326545, 0.04856646822041065, 0.04848811771261887, 0.04838809224530162, 0.04826696040707123, 0.0481254584677041, 0.0479645178964076, 0.04778530023179857, 0.04758924023943071, 0.0473780981019629, 0.04715402086221313, 0.04691961226337865, 0.04667800819496509, 0.04643295176601178, 0.046188857194032054, 0.04595084504925665, 0.045724723467577506, 0.045516882769892936, 0.04533406886647071, 0.045183010635941996, 0.04506990492427841, 0.04499981065798409, 0.044976057900884825, 0.044969548025143746, 0.04495174071190692, 0.04492763835097012, 0.0449048909014151, 0.04489241178917213, 0.04489825167662173, 0.04492749877776639, 0.04498136970771857, 0.04505786681537374, 0.04515324184463348, 0.04526332386016874, 0.04538432813063079, 0.045513214912835956, 0.04564778043395249, 0.045786613201441145, 0.04592898298618531, 0.04607468963162265, 0.04605921431950975, 0.046013920798472295, 0.045942200024617796, 0.04584966749905146, 0.04574405218147467, 0.04563491663362659, 0.04553307856026938, 0.04544961655900412, 0.04539448443100482, 0.04537504989911104, 0.04537052697431801, 0.04535701756627438, 0.04533471498449625, 0.04530399054495389, 0.04526546197550072, 0.045220079162924254, 0.04516921805107278, 0.04511477069806547, 0.045059213973040184, 0.04500562744773712, 0.04495760835648053, 0.04491899876230719, 0.04489332003985542, 0.04488287116707535, 0.044887678635480675, 0.04490482323433683, 0.04492873410359341, 0.04495252580523728, 0.04496978119305411, 0.044976057900884825, 0.04496954802514345, 0.04495174071190569, 0.04492763835096732, 0.04490489090141012, 0.04489241178916447, 0.04489825167661106, 0.044927498777752733, 0.044981369707702175, 0.04505786681535493, 0.04515324184461264, 0.04526332386014617, 0.04538432813060672, 0.04551321491281057, 0.04564778043392588, 0.04578661320141339, 0.045928982986156476, 0.04607468963159275, 0.04598980290078556, 0.045885097607356144, 0.04576572629625578, 0.045638849977849366, 0.04551388855086102, 0.045402481023001276, 0.045317634582793836, 0.04527143300406534, 0.04527143300406887, 0.045317634582804, 0.04540248102301716, 0.04551388855088137, 0.04563884997787311, 0.045765726296282006, 0.0458850976073841, 0.04598980290081468, 0.04607468963162265, 0.04632941632716412, 0.04658735687478576, 0.04684047478065828, 0.04708048455958477, 0.04729930554274744, 0.04748948065759559, 0.047644519085929676, 0.047759151858457485, 0.04782950779049783, 0.047853224367915705 ] }, { "line": { "color": "black", "width": 2.0 }, "mode": "lines", "name": "DOS", "showlegend": false, "type": "scatter", "x": [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.696104462952414e-31, 0.00041776784347423863, 0.0016710713738969545, 0.003759910591268147, 0.0066842854955877174, 0.010444196086855841, 0.01503964236507229, 0.020470624330237344, 0.02673714198235087, 0.033839195321412656, 0.041776784347423115, 0.05054990906038204, 0.06015856946028917, 0.07060276554714502, 0.08188249732094903, 0.09399776478170184, 0.10694856792940309, 0.1207349067640524, 0.13535678128565062, 0.15081419149419728, 0.16710713738969196, 0.18423561897213564, 0.20219963624152712, 0.22099918919786765, 0.2406342778411567, 0.2611049021713935, 0.2824110621885796, 0.30455275789271385, 0.3275299892837961, 0.35134275636182755, 0.3759910591268066, 0.40147489757873484, 0.42779427171761153, 0.454949181543436, 0.48293962705620963, 0.511765608255931, 0.5414271251426014, 0.5719241777162205, 0.6032567659767872, 0.6354248899243036, 0.6684285495587676, 0.7022677448801797, 0.7369424758885411, 0.7724527425838509, 0.8087985449661099, 0.8459798830353162, 0.8839967567914703, 0.9228491662345745, 0.9625371113646255, 1.0030605921816258, 1.0444196086855753, 1.086614160876472, 1.1296442487543181, 1.1735098723191122, 1.2182110315708543, 1.2637477265095456, 1.3101199571351845, 1.3573277234477727, 1.4053710254473102, 1.4542498631337937, 1.5039642365072279, 1.5545141455676101, 1.6058995903149396, 1.6581205707492184, 1.711177086870445, 2.0061448799687183, 2.532510297069314, 3.0231957620555368, 3.4782012749274163, 3.897526835684943, 4.281172444328099, 4.629138100856911, 4.9414238052713575, 5.218029557571461, 5.458955357757202, 5.664201205828581, 5.833767101785613, 5.967653045628286, 6.0658590373566055, 6.128385076970564, 6.155231164470169, 6.146397299855419, 6.1018834831263105, 6.021689714282848, 5.9832770502325685, 6.1315282145150976, 6.280667023030912, 6.430693475780009, 6.58160757276239, 6.733409313978053, 6.8860986994269995, 7.039675729109238, 7.1941404030247575, 7.349492721173556, 7.505732683555644, 7.6628602901710146, 7.820875541019667, 7.979778436101607, 8.13849581767333, 8.296938787575058, 8.457949907241526, 8.621529176672727, 8.787676595868673, 8.956392164829357, 9.127675883554772, 9.301527752044937, 9.477947770299837, 9.656935938319478, 9.838492256103862, 10.022616723652977, 10.20930934096683, 10.398570108045426, 10.590399024888766, 10.784796091496846, 10.98176130786965, 11.18129467400721, 11.383396189909506, 11.588065855576534, 11.79530367100831, 12.005109636204816, 12.217483751166077, 12.432426015892059, 12.649936430382787, 12.870014994638252, 13.092661708658465, 13.317876572443412, 13.545659585993091, 13.776207570906374, 14.037180881393144, 14.348185446974227, 14.709221267649657, 15.12028834341938, 15.581386674283415, 16.09251626024181, 16.58575988884892, 17.086964210907155, 17.61345010964329, 18.165217585057235, 18.742266637149022, 19.34459726591868, 23.025878610583824, 30.575388528835763, 20.709745575122902, 21.022593624173577, 21.33927857307851, 21.659800421837726, 21.98415917045125, 22.312354818919026, 22.644387367241094, 22.980256815417444, 23.281714356167633, 23.496287578127248, 23.710956145759837, 23.925720059065377, 24.14057931804385, 24.355533922695304, 24.57058387301971, 24.785729169017063, 25.000969810687383, 25.21630579803065, 25.431737131046887, 25.647263809736053, 25.86288583409819, 26.0786032041333, 26.294415919841352, 26.58478672352566, 26.90166893661372, 27.222262533331488, 27.546567513678966, 27.874583877656157, 28.20631162526303, 28.54175075649961, 28.880901271365918, 29.223763169861922, 29.57033645198763, 29.920621117743043, 30.274617167128177, 30.632324600142994, 30.993743416787517, 31.358873617061796, 31.727715200965722, 32.10026816849938, 32.476532519662754, 32.856508254455825, 33.24019537287858, 33.62759387493109, 34.18550248104715, 35.10404455782418, 35.83107002285271, 36.53442890388261, 37.324135111268525, 38.418292524115806, 39.471759791690786, 40.48453691399332, 41.4566238910235, 42.38802072278139, 43.278727409266864, 44.128743950479944, 45.1739122068599, 46.082813692823095, 46.79449537897696, 47.30895726532157, 47.62619935185681, 47.6600915650697, 47.38445440568232, 47.5233137657314, 47.769821467238735, 48.03211053953145, 48.31018098260966, 48.595638457972164, 49.06382599558698, 49.60917426126481, 50.18111753808039, 50.77965582603372, 51.404789125124786, 52.17811065965052, 53.0479246114878, 53.763068449984, 54.323542175139025, 54.729345786952926, 54.980479285425716, 55.11443167139884, 55.59191515812027, 56.07772864003091, 56.57187211713078, 57.07434558941989, 57.58514905689821, 58.104282519565814, 58.63174597742264, 59.16753943046864, 59.711662878703955, 60.26411632212842, 60.8248997607422, 61.394013194545174, 61.98140027994473, 62.673190352917416, 63.48275763035017, 64.5169987956478, 65.93912604738482, 66.85694459856707, 67.78540936506153, 68.7245911760101, 69.67029031841538, 70.62014415831295, 71.57414313268036, 72.53878695522211, 73.52561647024758, 74.52388847674416, 75.5336029747117, 76.55475996415028, 77.58735944505997, 78.69934374994465, 79.6507418007106, 80.36463390717448, 80.83118444618158, 81.04826007077905, 81.42255062661617, 81.61527773350169, 82.2975379838385, 83.09996625034879, 83.91526745971615, 84.74344161194063, 85.58448870702229, 86.43840874496111, 87.305201725757, 88.18486764941008, 89.07740651592036, 89.98281832528772, 90.90110307751219, 91.8322607725939, 92.77566619418727, 93.72512124892222, 94.67903828464287, 95.63741730134922, 96.60025829904129, 97.567561277719, 98.55935362451963, 99.64394005743759, 100.82698687896499, 102.10711616314364, 103.52325128259008, 105.78605702077425, 107.28872257793809, 108.77538202131937, 111.81497485963446, 115.4641527037981, 116.93917914527735, 117.22133263991915, 118.47935850337836, 119.78749582907807, 121.11833104550843, 122.4304631292881, 123.31868019609637, 124.25737520172648, 125.21515349467029, 126.18150944079052, 127.35262874471371, 128.71124969199718, 130.3927721813853, 132.4885031265476, 134.18412497019716, 135.479637712334, 136.37504135295796, 136.87033589206914, 138.15849509315896, 139.63312608083518, 141.1459132764988, 142.68979848154746, 144.26000268056944, 145.85652587356466, 147.47791578617003, 149.1170108690439, 150.95550544679108, 153.40162414642876, 156.80481584679228, 159.43254774597878, 162.07618388190656, 164.73406837011677, 167.38849600074698, 170.0427715280092, 172.7002911221795, 175.37022710081104, 177.617218686661, 179.9659994927495, 182.41656951907734, 184.96892876564362, 187.6073572454171, 190.33772488191593, 193.3322519367217, 196.41371504811016, 199.58211421608135, 202.83744944063548, 206.17972072177244, 209.67371674558302, 214.4901353340003, 221.0636358975727, 228.65602385226916, 237.51748076066016, 245.93451136841858, 253.8738735272765, 264.8626990941789, 274.05691761335277, 278.6138140387017, 278.51071068883965, 273.7493901514764, 274.8749640541362, 276.5443911599946, 278.0813035127356, 278.92879746762105, 279.5955893614457, 280.1181676218314, 280.5883635366633, 281.291931775236, 282.38588266298166, 275.5534086149507, 275.55579557581734, 276.44888242184913, 278.0964158508842, 279.6399630887002, 280.92940939733813, 281.617014150394, 282.0724601065863, 282.1178233709911, 282.1476394753203, 286.2059837349474, 286.02098400802714, 284.0567254211889, 283.84976205953166, 283.1797368928692, 282.89194300814705, 282.92724769753073, 283.2617057952829, 283.87853599924756, 277.7326432048995, 276.77706470080875, 277.16623959836664, 277.80343968050255, 278.3353093070331, 317.66812054013474, 275.6027400785707, 275.85439374409884, 276.0517885030526, 276.1955130885992, 276.2855096807439, 276.3536749441384, 276.51868813134115, 276.7666199783284, 277.09100828085894, 277.4440952448431, 277.8051425698494, 278.17415025587786, 278.8334711622536, 279.7265312781671, 280.4704517699275, 281.55106373009176, 282.6992037289593, 279.1683373282386, 273.08555633811574, 272.12854287757267, 271.89290257746876, 271.79209161046515, 271.83663332474623, 271.91439283728096, 271.9608512719253, 271.99749930324674, 272.0176476310722, 272.15346047074314, 272.34741194570677, 273.3067069123742, 274.51831802100907, 275.88793385579953, 277.4089451683157, 278.8447848752829, 279.0674954226455, 277.89694627056787, 276.0841532425863, 277.8101244367581, 283.5994762450181, 283.17162155673105, 282.13725533203956, 280.6226662570227, 278.8146597782182, 277.05122693209705, 275.75309056428165, 275.7842281301734, 276.1998789877452, 276.8572651113247, 276.741368000417, 276.2760824390678, 275.8187810084058, 275.3694637084315, 274.9257675539984, 274.5066973312758, 275.1551810403371, 276.13287842547516, 277.0153830208845, 277.71217710607, 278.29748118783135, 278.7655989885742, 279.06885106626015, 281.89836322011405, 279.96020713950617, 278.1085274372988, 276.8576595092576, 278.60846071443837, 283.837769468679, 283.43997145700445, 281.7262119728631, 278.6691350162747, 275.0107537560684, 270.7200862744166, 265.1800117419369, 258.3996434588788, 250.87428352768998, 246.55982796991472, 242.50091257946457, 238.31293376223854, 234.36258842036102, 230.66419386791029, 227.21775010488625, 224.02325713128897, 221.08071494711865, 215.9885980246807, 209.6016838244932, 204.68518293903008, 201.27349634515534, 199.89632417837404, 198.58868867961505, 197.32723501917621, 196.11171309345167, 194.94212290244113, 193.82112249455642, 192.75163028297345, 202.8348255071335, 188.13485823855618, 186.48472828036253, 184.7120575254526, 182.83453072476348, 180.87114591894502, 178.87174838025132, 176.7856494312857, 174.63567923876093, 172.9328144119839, 171.62321128689183, 170.33525481501067, 169.06870653708734, 167.81029433914279, 166.55238217471268, 165.30625576192648, 164.14179559563027, 163.07699391797706, 162.114584291626, 161.25456671657713, 160.49694119283026, 159.8417077203855, 159.28965773678289, 158.84353845827223, 158.50358397051946, 158.27120718070873, 158.14880576621428, 157.2067713201304, 155.29318113678607, 153.54690908103748, 152.00485462608316, 150.6582387958402, 149.39356142870517, 148.20117419082374, 147.08133546266583, 146.03404524423166, 145.05930353552108, 144.15711033653423, 143.3274656472709, 142.5703694677313, 141.8584229372601, 141.13111373706255, 140.71415242944073, 140.37709770806907, 140.01255387576262, 139.6262546745207, 139.23541743365263, 138.82840556801995, 138.3964771280884, 137.9396321138581, 137.45787052532884, 136.9512358047858, 136.43079021309035, 135.90511089477857, 135.3790001745701, 134.85099563233152, 134.314901734533, 133.17139819613422, 131.56601315931667, 130.09224112256194, 128.75883025451884, 127.58398310269023, 126.61536335306936, 125.7414502377874, 124.9612550524286, 124.44475067193405, 124.63136692862707, 124.37412519759664, 123.71926565241895, 123.08365074558718, 122.50521597563394, 121.97438429759524, 121.47946429975524, 121.02045598211402, 120.59735934467155, 120.21017438742776, 119.85936645608973, 119.54604722425422, 119.27081734257756, 119.06220850177696, 118.9305107052225, 118.87026831230963, 118.8421760831252, 118.83845038946282, 118.85909123132261, 118.9040986087048, 118.97347252160905, 119.05737560081435, 119.14006052528126, 119.22132063686995, 119.7023158834529, 120.34617347909044, 120.69080081873608, 121.03845005142098, 121.38912117714507, 121.7484793017564, 121.91754071994716, 122.07720386639085, 122.23929189289942, 122.39854119824307, 122.5533913266064, 122.70384227798957, 122.84989405239237, 122.99200396868574, 123.13294181422064, 123.27317355960096, 123.41966165889554, 123.57456431146693, 123.73016576516471, 123.88646601998866, 124.04348961189942, 124.20453927201709, 124.36933727216596, 124.53780531246494, 124.70994339291414, 124.88575151351357, 125.06522967426322, 125.24837787516302, 125.43519611621305, 125.62568439741335, 125.81984271876377, 126.01767108026442, 126.21916948191533, 126.42456447999538, 126.60219429288767, 126.74974932067275, 127.08372929910144, 127.51866745957726, 128.05456380210006, 128.69247573331327, 129.39298688348265, 130.09910290571568, 130.84933129330378, 131.64367204624673, 132.4801851544004, 133.30330907555538, 134.09797086780625, 135.23936969557116, 137.0055287172607, 138.43584262610764, 139.53031142211222, 140.2889351052742, 140.87500940910192, 140.94662758478287, 140.83592986557406, 140.81559350607995, 140.88561850630052, 141.0375165981233, 141.19215768269646, 141.33019947173008, 141.46369471012412, 141.61799806671772, 141.7930567161572, 141.98165217015574, 142.18314183607322, 142.40434005766997, 142.66291112324728, 143.16718164369289, 143.4424012772165, 143.75572889857943, 144.10716450778156, 144.4923337016902, 144.88086605003477, 145.292557389001, 145.72740771858872, 146.18541703879794, 146.66658534962878, 147.1709126510812, 147.69875729709403, 148.25080803526552, 148.8270819824629, 149.427579138686, 150.05229950393493, 150.7073965644016, 151.46895511553484, 152.38162464247944, 153.4660933309017, 154.72260064512943, 156.1511465851625, 157.75173115100108, 159.5243543426451, 161.46901616009447, 163.95424485828556, 178.03823164145325, 183.89417779402092, 186.18266004689912, 187.51601663815003, 187.8955727614577, 187.37905434630653, 186.07356974199163, 183.58507316809357, 179.58771041181336, 174.081481473151, 169.34043890222006, 165.43714582421913, 161.90115743393903, 158.17567221065775, 154.22610514304236, 150.0680238590814, 146.12404496539872, 142.76679084469689, 139.74326320455057, 136.68093868405484, 133.54152972073254, 130.31273743466298, 126.99456182584616, 123.58700289428205, 120.09006063997072, 116.50373506291166, 112.82802616310585, 109.19403423999923, 105.77145098153912, 102.52818228842743, 99.46422816066413, 96.57958859824922, 93.87426360118232, 91.34825316946414, 88.70545374528619, 82.46426280935937, 79.43262155856847, 76.53727511452249, 73.77822347722126, 71.15546664666543, 68.66900462285457, 66.31883740578877, 64.10496499546798, 62.00197831345469, 59.857260519674114, 57.66472419119618, 55.42436932802139, 53.136195930149555, 50.80020399758066, 48.416393530314664, 45.98476452835157, 43.50530002329002, 40.97797615851033, 38.23123587050942, 34.54477059018975, 30.482139552860264, 26.741807427610713, 25.3445182269994, 24.587160453649588, 24.46111905194839, 24.590491050397585, 24.72088802208147, 24.852309967000053, 24.98475688515334, 25.11822877654133, 25.252725641163995, 25.38824747902134, 25.5247942901134, 25.662366074440136, 25.800962832001584, 25.940584562797735, 26.081231266828556, 26.22290294409409, 26.365599594594286, 26.509321218329195, 26.654067815298795, 26.799839385503102, 26.946635928942097, 27.094457445615785, 27.243303935524157, 27.393175398667225, 27.54407183504498, 27.69599324465744, 27.84893962750461, 28.002910983586457, 28.157907312902985, 28.313928615454216, 28.470965440867822, 28.628960928693047, 28.78790557576957, 28.947799382097433, 29.10864234767659, 29.27043447250706, 29.433175756588845, 29.596864143381712, 29.761294388781778, 29.926330258498506, 30.091971752531883, 30.25746379288692, 30.422028937192856, 30.5857481219705, 30.748621347219853, 30.91064861294091, 31.071829919133695, 31.232165265798173, 31.39165465293435, 31.550298080542248, 31.708095548621845, 31.865047057173147, 32.02115260619619, 32.17653810274839, 32.336308772059, 32.50312771672504, 32.676994936746524, 32.857910432123454, 33.04162664801849, 33.22606019459951, 33.41216060270333, 33.59992787232997, 33.78936200347943, 33.98046299615173, 34.173230850346854, 34.36766556606483, 34.5637671433056, 34.761535582069214, 34.96097088235564, 35.1620730441649, 35.36484206749697, 35.569277952351904, 35.77538069872964, 35.98294558990619, 36.1916429554644, 36.40146836095692, 36.612421806383736, 36.824503291744854, 37.03771281704027, 37.25205038226996, 37.467515987433956, 37.684109632532234, 37.90183131756483, 38.120681042531714, 38.34060108255379, 38.56136628250094, 38.78295395789611, 39.00589913893985, 39.230369024339815, 39.456345577205816, 39.68382879753787, 39.91281868533601, 40.143315240600174, 40.37531846333039, 40.60882835352667, 40.843844911189, 41.080368136317375, 41.31839802891181, 41.55793458897231, 41.79897781649886, 42.041527711491455, 42.28558427395009, 42.53214054776783, 42.79014638169058, 43.055477615845405, 43.3263364363556, 43.60274164447284, 43.8846932401971, 44.172191223528365, 44.46523559446667, 44.763826353011964, 45.06796349916434, 45.37764703292368, 45.692876954290064, 46.01365326326345, 46.339975959843834, 46.67184504403126, 47.009260515825744, 47.34938903829399, 47.682062023623864, 48.01556306890859, 48.336887426557006, 48.64317254436291, 48.94342948562926, 49.23765825035605, 49.525858838543265, 49.8038231235321, 50.132670164967884, 50.463148697492166, 50.79525860965101, 51.12889806475766, 51.46397794401064, 51.800498247409955, 52.1384589749556, 52.47786012664761, 52.818701702485924, 53.160983702470645, 53.5047061266017, 53.84986897487905, 54.196472247302786, 54.54451594387284, 54.89400006458927, 55.244924609452, 55.597289578461144, 55.951094971616556, 56.30634078891835, 56.663027030366464, 57.02115369596091, 57.38079949610414, 57.79846229107617, 58.23455670244474, 58.67563909963129, 59.12170948263583, 59.57276785145837, 60.02881420609887, 60.48984854655734, 60.95587087283386, 61.42688118492833, 61.90287948284076, 62.38409436005595, 62.87149672194734, 63.36518057154888, 63.865145908860654, 64.3713953233591, 64.8839645504746, 65.40337748475277, 65.93099054179008, 66.46519180972587, 67.00589602356689, 67.5531031833133, 68.1068132889649, 68.66697980678539, 69.23351084410982, 69.80640393039981, 70.38571202236265, 70.97261754842332, 71.56679761988221, 72.16354345208386, 72.76209487419273, 73.36245188620886, 73.9646144881322, 74.56858267996269, 75.17435646170055, 75.78193583334547, 76.39132079489768, 77.0025113463571, 77.61550748772375, 78.23030921899756, 78.8469165401787, 79.47717067393886, 80.18990872013745, 80.9341273093919, 81.71221658745029, 82.53043211883849, 83.39217393580874, 84.29739739312791, 85.12589403395711, 85.95594145600542, 86.79757187436422, 87.65078528903341, 88.515581700013, 89.39196110730322, 90.28014502836078, 91.17934675699081, 92.0895013440807, 93.01060878963038, 93.94266909364006, 94.88568225610969, 95.83964827703905, 96.80456715642832, 97.78043889427738, 98.76726349058649, 99.765431771803, 100.77968368522232, 101.8114145255271, 102.86062429271676, 103.92731298679192, 105.01173748882186, 106.12748984076491, 107.28075451839658, 108.51692715923491, 109.89788650158705, 111.42399053578113, 113.09523926181802, 114.80003786870896, 116.50374863112867, 118.21190762152813, 119.8462794692519, 121.45692757086495, 123.04823096390844, 124.62018964838292, 126.21293586850673, 128.0297424689053, 129.871519980853, 131.73826840434927, 133.62998773939466, 135.54667871146842, 137.48840163621182, 139.45519497460305, 141.4470587266411, 143.46399289232684, 145.59776604019905, 147.88213335103083, 150.28194199417212, 152.79805544910792, 155.4304737158394, 158.17919679436537, 161.0442246846871, 164.05365488764707, 167.20025033333982, 170.4835997267211, 173.90370306778993, 177.49484679337002, 181.3560148378853, 185.46732270572832, 189.8224545179426, 194.4062194432602, 199.07914620062232, 203.83377644669366, 208.6869175436691, 213.64421365634144, 218.70365280765898, 223.8145282595458, 231.1079991733128, 238.73535014531632, 246.81673887020185, 255.35211735928814, 264.40740289464276, 274.0456326219533, 284.2301200547537, 294.95630821688667, 306.22419710835703, 318.8809494713288, 336.04628483060634, 363.15072778444755, 386.71822847011316, 411.9557474643101, 438.8323315796038, 467.7261964953374, 499.1602124715491, 545.4369205010446, 608.797162735185, 621.6847997017562, 600.8813659556201, 577.0393144372063, 542.9989723198239, 499.57337338065304, 469.4338484439461, 444.11106303224886, 451.07289089413115, 383.5763286613372, 357.5936908153675, 335.525575138834, 316.5705415927943, 304.9585353656824, 292.6228909885802, 281.8308508662518, 269.58499507500505, 256.21553442856276, 242.68706174994884, 231.3558264367866, 221.00419745584267, 210.51264637694902, 199.5733406275035, 191.0618834862103, 181.1693552173794, 174.0826219570948, 167.22754614784606, 160.6169365165006, 154.25079306305534, 148.1291157875134, 142.25190468987165, 136.71403994940252, 131.92579592890434, 132.07007974382572, 126.78802746910365, 120.47157063026297, 113.6994685937974, 106.4750068423377, 99.12928961153052, 91.99869264759535, 86.4529828415586, 80.9458072346953, 74.43091387004691, 68.56858741359525, 62.46605069860501, 56.99277985413388, 52.16337992112634, 47.98783075366877, 44.466748380998894, 41.60013280311498, 39.14741125696476, 36.862017861653925, 34.74394342288608, 32.7937596773019, 31.012007677747373, 29.398687424222867, 27.953798916727575, 26.677342155262227, 30.440513100478476, 16.636728660174892, 8.497563268326802, 6.147523648307384, 4.177044960401671, 2.5861272046087254, 1.3747703809293028, 0.5429744893628273, 0.09073952990963254, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.295502232187965, 38.14938267604674, 120.45511951227475, 176.33028757068672, 291.4565737670239, 313.1768454077982, 347.6923092757778, 458.8822488814573, 527.970332937554, 664.7415485652222, 609.609871642939, 590.4250315560103, 606.1093691731701, 608.4987903182479, 584.5837650337559, 568.6625132319011, 553.7010216352503, 540.3750109536475, 532.1469591097699, 530.1184229193126, 530.0413556467144, 532.6463644340487, 536.5818909358818, 540.2852851076913, 544.3293947059268, 548.8301323361566, 553.8639341860007, 560.4835241292479, 562.546561296527, 548.6804806924554, 546.9521051185945, 546.0575445655444, 547.0753531650332, 549.5577795548959, 551.7972820900933, 554.4317272135843, 559.4136366392652, 565.0258086873615, 571.2922553125455, 577.9964024954261, 584.9722280603753, 592.6985610984833, 601.378435642996, 611.0499154007337, 621.7347535985529, 634.2229410691264, 671.4148862531091, 676.4558998479669, 704.6825646961619, 705.8799135376587, 707.369205702445, 709.8135399708765, 712.4270108141117, 714.0778181189866, 716.4916347665669, 715.5084621396958, 719.4126344950927, 725.4795512707063, 729.3756799403218, 731.1092428980697, 732.0481149216777, 735.441191702663, 740.0648320631597, 746.2715439183957, 754.2834188714615, 766.7947076331278, 787.2687466970394, 802.0905523039926, 805.6828282576895, 811.6578180753453, 814.4420267306404, 810.9715132667583, 816.1932644953702, 820.8229402470239, 824.8605405217224, 828.3039574976153, 831.084722726065, 835.1307630238013, 845.6940744882448, 857.9923382647888, 870.7404729354527, 897.0160930494472, 921.2473921188953, 944.7573526739716, 947.1545380332859, 947.4569925321499, 954.8409676701935, 960.6883647913877, 989.9267925795556, 1004.9242348939736, 982.960492365018, 972.7142211083358, 876.0673795797102, 816.703435265964, 777.4989221601975, 746.8156592822853, 719.5746821980684, 695.7997605899744, 670.8123661204256, 642.4366007721922, 612.2410169890518, 587.0427266328213, 565.5191440166947, 545.4626081337336, 526.2520376393769, 508.096500614853, 491.4121441445545, 475.0902558498767, 457.62617852839423, 444.86591889416417, 418.30880294986196, 400.85235415422693, 387.73698114857353, 375.7183211448211, 364.2228876185469, 353.1780164280965, 342.05267159661133, 330.99979461625105, 321.92996854783286, 312.0335971310367, 305.5957075292268, 295.66352042888826, 278.13189215503644, 268.37699740856675, 259.16455802950696, 250.57126381732658, 242.5971147720222, 234.34330425805734, 225.89256047974186, 220.6229344762214, 218.3227796412568, 212.55146180534655, 203.2424349335589, 187.74004443542054, 176.9006480261599, 168.4308151036042, 160.56962070512046, 153.52515456771675, 146.91979644628069, 142.28546147531287, 142.90681883518042, 134.51760469852923, 114.83484726773071, 100.8097917249047, 89.82714997905201, 79.76107332283199, 71.69064651498128, 65.37986987915032, 49.99739879577825, 22.421511357584254, 5.550203788991534, 2.6180367987034535e-09, 2.7690615719881728e-05, 0.0001096880847162439, 0.0002459950250259243, 0.00043661143664890984, 0.0006815373195851357, 0.0009807726738347183, 0.0013343174993975158, 0.0017421717962736961, 0.0022043355644631815, 0.002720808803965842, 0.0032915915147819245, 0.003916683696911158, 0.004596085350353837, 0.005329796475109642, 0.00611781707117892, 20.431603994653344, 169.6499051789962, 316.7254525802801, 447.1251288300951, 597.7986670285517, 665.3973799725488, 627.1873665972647, 603.3564464887739, 554.2138175141683, 547.3663497623638, 545.8979029431472, 543.5685990357422, 537.4005951992636, 535.8277134148431, 537.4840652262683, 542.3911415969999, 552.7520519793536, 556.3139811768503, 557.4048553457746, 554.5845972871607, 545.022776385913, 522.4930503344827, 492.0028767384138, 467.3144031014808, 447.0291036312915, 431.45191142140936, 417.7780730530393, 405.1273481604949, 393.49973674375804, 382.68952773134583, 372.01915837190165, 363.0589444498105, 355.1717144445122, 348.14335034114515, 341.73096949246167, 335.85606126489625, 330.2799117819056, 324.9654661269648, 319.91728210801114, 315.133837979575, 310.6416900587576, 306.42523419785215, 302.4718997474761, 298.8075308438114, 295.39374837352864, 291.44538407778157, 287.4888883416871, 283.78893051316714, 280.34551059222014, 277.34044550529114, 274.26858844176485, 271.64509951092134, 269.30940271684125, 267.10705805922225, 265.0321446967665, 263.0846626294763, 261.2646118573494, 259.5186441479434, 257.8372432558148, 256.2298457173051, 254.2434142130519, 252.88850651684155, 251.30863079454429, 249.75715263087616, 248.27617633521962, 246.86516644404662, 245.52363918403194, 244.25159455517704, 243.0490325574803, 241.91595319094336, 240.93028383892943, 239.97532200389966, 238.9937937337505, 238.08377249717785, 237.24318275034474, 236.29308469617152, 235.26615591792984, 234.18822909291262, 233.05731234096606, 231.85919889157543, 230.60838574671016, 229.5024741322274, 228.45049707399022, 227.4015507899164, 226.3735402136593, 225.3875431843335, 224.45636770530731, 223.57453014018913, 222.7420304889784, 221.95886875167537, 221.22513169688315, 220.97170282329222, 220.78500261298916, 220.3148032221164, 220.0742058211639, 219.86549384935853, 220.03467450382556, 220.16381594903766, 220.1581005097921, 219.76184925829193, 219.118147408066, 218.6692592901324, 218.00079626505737, 217.21668168465987, 216.4375806432044, 215.4034275280677, 214.38965607516252, 213.14216247475838, 211.5243946522603, 210.97461694859692, 210.58748234764778, 212.67895742461698, 214.08828771279073, 214.47529588552942, 213.7250728477342, 208.8555512629132, 205.4063310961774, 200.93747251630865, 195.32617665885866, 185.19096328830258, 173.5050227140773, 164.45806114521585, 160.88097609912674, 159.37433433637247, 156.38998732595545, 150.2104979540032, 140.53629686331206, 133.49034863070568, 132.0586889765361, 132.08946054180666, 129.40701676241446, 127.2140063093521, 121.81305616109834, 115.55529302034488, 112.52875479135638, 110.45542018141836, 108.63289208789548, 106.17976582453635, 101.46270282544725, 96.0027449227936, 90.58861615061565, 85.22031650890581, 78.71587727543132, 71.02668340506558, 78.4328419051603, 68.68502286715344, 53.98293151690334, 41.32737138204777, 30.258217383898614, 22.292764510989667, 16.43942522612542, 9.420421818586524, 0.945041457567605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "xaxis": "x2", "y": [ -0.0037195256267313916, -0.0036947287892198487, -0.0036699319517083063, -0.0036451351141967635, -0.0036203382766852206, -0.0035955414391736786, -0.0035707446016621357, -0.0035459477641505937, -0.003521150926639051, -0.003496354089127508, -0.0034715572516159656, -0.0034467604141044227, -0.00342196357659288, -0.003397166739081338, -0.003372369901569795, -0.003347573064058252, -0.0033227762265467097, -0.003297979389035167, -0.0032731825515236244, -0.003248385714012082, -0.003223588876500539, -0.0031987920389889967, -0.0031739952014774543, -0.0031491983639659114, -0.0031244015264543686, -0.003099604688942826, -0.0030748078514312837, -0.0030500110139197413, -0.0030252141764081984, -0.003000417338896656, -0.0029756205013851135, -0.0029508236638735707, -0.002926026826362028, -0.0029012299888504854, -0.0028764331513389425, -0.0028516363138274, -0.0028268394763158577, -0.002802042638804315, -0.0027772458012927724, -0.0027524489637812295, -0.002727652126269687, -0.0027028552887581447, -0.002678058451246602, -0.0026532616137350594, -0.002628464776223517, -0.002603667938711974, -0.0025788711012004312, -0.002554074263688889, -0.002529277426177346, -0.0025044805886658035, -0.002479683751154261, -0.002454886913642718, -0.002430090076131176, -0.002405293238619633, -0.0023804964011080905, -0.002355699563596548, -0.002330902726085005, -0.0023061058885734628, -0.0022813090510619203, -0.0022565122135503775, -0.0022317153760388346, -0.002206918538527292, -0.0021821217010157493, -0.0021573248635042073, -0.0021325280259926645, -0.0021077311884811216, -0.0020829343509695796, -0.0020581375134580368, -0.002033340675946494, -0.0020085438384349515, -0.0019837470009234086, -0.001958950163411866, -0.0019341533259003237, -0.0019093564883887809, -0.0018845596508772382, -0.0018597628133656958, -0.0018349659758541532, -0.0018101691383426103, -0.0017853723008310679, -0.0017605754633195254, -0.0017357786258079828, -0.00171098178829644, -0.0016861849507848975, -0.0016613881132733549, -0.001636591275761812, -0.0016117944382502696, -0.0015869976007387271, -0.0015622007632271845, -0.0015374039257156416, -0.0015126070882040992, -0.0014878102506925568, -0.001463013413181014, -0.0014382165756694713, -0.0014134197381579288, -0.0013886229006463862, -0.0013638260631348433, -0.001339029225623301, -0.0013142323881117585, -0.0012894355506002156, -0.001264638713088673, -0.0012398418755771305, -0.001215045038065588, -0.001190248200554045, -0.0011654513630425026, -0.0011406545255309602, -0.0011158576880194173, -0.0010910608505078747, -0.0010662640129963322, -0.0010414671754847898, -0.001016670337973247, -0.0009918735004617043, -0.0009670766629501619, -0.0009422798254386189, -0.0009174829879270765, -0.0008926861504155339, -0.0008678893129039914, -0.0008430924753924485, -0.000818295637880906, -0.0007934988003693636, -0.000768701962857821, -0.0007439051253462782, -0.0007191082878347356, -0.0006943114503231931, -0.0006695146128116502, -0.0006447177753001078, -0.0006199209377885653, -0.0005951241002770227, -0.0005703272627654799, -0.0005455304252539373, -0.0005207335877423949, -0.0004959367502308519, -0.00047113991271930945, -0.00044634307520776697, -0.0004215462376962245, -0.00039674940018468157, -0.00037195256267313946, -0.00034715572516159655, -0.0003223588876500537, -0.0002975620501385116, -0.00027276521262696867, -0.0002479683751154258, -0.00022317153760388367, -0.00019837470009234078, -0.00017357786258079792, -0.0001487810250692558, -0.0001239841875577129, -9.918735004617003e-05, -7.43905125346279e-05, -4.959367502308501e-05, -2.4796837511542876e-05, 0.0, 2.4796837511542876e-05, 4.959367502308501e-05, 7.43905125346279e-05, 9.918735004617077e-05, 0.0001239841875577129, 0.0001487810250692558, 0.00017357786258079865, 0.00019837470009234078, 0.00022317153760388367, 0.0002479683751154258, 0.00027276521262696867, 0.0002975620501385116, 0.0003223588876500537, 0.00034715572516159655, 0.00037195256267313946, 0.00039674940018468157, 0.0004215462376962245, 0.00044634307520776735, 0.00047113991271930945, 0.0004959367502308524, 0.0005207335877423952, 0.0005455304252539373, 0.0005703272627654802, 0.0005951241002770224, 0.0006199209377885653, 0.0006447177753001081, 0.0006695146128116502, 0.0006943114503231931, 0.0007191082878347361, 0.0007439051253462782, 0.000768701962857821, 0.0007934988003693639, 0.000818295637880906, 0.000843092475392449, 0.0008678893129039918, 0.0008926861504155339, 0.0009174829879270768, 0.0009422798254386189, 0.0009670766629501619, 0.0009918735004617047, 0.001016670337973247, 0.0010414671754847898, 0.0010662640129963327, 0.0010910608505078747, 0.0011158576880194175, 0.0011406545255309604, 0.0011654513630425026, 0.0011902482005540455, 0.0012150450380655877, 0.0012398418755771305, 0.0012646387130886734, 0.0012894355506002156, 0.0013142323881117585, 0.0013390292256233013, 0.0013638260631348433, 0.0013886229006463862, 0.001413419738157929, 0.0014382165756694713, 0.0014630134131810141, 0.001487810250692557, 0.0015126070882040992, 0.001537403925715642, 0.0015622007632271843, 0.0015869976007387271, 0.00161179443825027, 0.001636591275761812, 0.0016613881132733549, 0.001686184950784898, 0.00171098178829644, 0.0017357786258079828, 0.0017605754633195257, 0.0017853723008310679, 0.0018101691383426107, 0.0018349659758541536, 0.0018597628133656958, 0.0018845596508772387, 0.0019093564883887809, 0.0019341533259003237, 0.0019589501634118666, 0.0019837470009234086, 0.0020085438384349515, 0.0020333406759464943, 0.0020581375134580368, 0.0020829343509695796, 0.0021077311884811225, 0.0021325280259926645, 0.0021573248635042073, 0.0021821217010157493, 0.002206918538527292, 0.002231715376038835, 0.0022565122135503775, 0.0022813090510619203, 0.002306105888573463, 0.002330902726085005, 0.002355699563596548, 0.002380496401108091, 0.002405293238619633, 0.002430090076131176, 0.002454886913642719, 0.002479683751154261, 0.002504480588665804, 0.002529277426177346, 0.002554074263688889, 0.0025788711012004317, 0.002603667938711974, 0.002628464776223517, 0.00265326161373506, 0.002678058451246602, 0.0027028552887581447, 0.0027276521262696875, 0.0027524489637812295, 0.0027772458012927724, 0.002802042638804315, 0.0028268394763158577, 0.0028516363138274005, 0.0028764331513389425, 0.0029012299888504854, 0.0029260268263620283, 0.0029508236638735707, 0.0029756205013851127, 0.0030004173388966564, 0.0030252141764081984, 0.0030500110139197404, 0.003074807851431284, 0.003099604688942826, 0.0031244015264543686, 0.003149198363965912, 0.0031739952014774543, 0.0031987920389889963, 0.00322358887650054, 0.003248385714012082, 0.003273182551523624, 0.0032979793890351677, 0.0033227762265467097, 0.003347573064058252, 0.003372369901569796, 0.003397166739081338, 0.00342196357659288, 0.0034467604141044236, 0.0034715572516159656, 0.003496354089127508, 0.0035211509266390513, 0.0035459477641505937, 0.0035707446016621357, 0.0035955414391736777, 0.0036203382766852215, 0.0036451351141967635, 0.003669931951708306, 0.003694728789219849, 0.0037195256267313916, 0.0037443224642429336, 0.0037691193017544773, 0.0037939161392660193, 0.0038187129767775618, 0.003843509814289105, 0.0038683066518006475, 0.0038931034893121895, 0.003917900326823733, 0.003942697164335275, 0.003967494001846817, 0.003992290839358361, 0.004017087676869903, 0.004041884514381445, 0.004066681351892989, 0.004091478189404531, 0.0041162750269160735, 0.004141071864427617, 0.004165868701939159, 0.004190665539450701, 0.004215462376962243, 0.0042402592144737865, 0.004265056051985329, 0.004289852889496871, 0.004314649727008415, 0.004339446564519957, 0.004364243402031499, 0.004389040239543043, 0.004413837077054584, 0.004438633914566127, 0.00446343075207767, 0.0044882275895892125, 0.004513024427100755, 0.004537821264612298, 0.004562618102123841, 0.004587414939635382, 0.004612211777146926, 0.004637008614658468, 0.00466180545217001, 0.004686602289681554, 0.004711399127193096, 0.0047361959647046386, 0.004760992802216182, 0.004785789639727724, 0.004810586477239266, 0.00483538331475081, 0.004860180152262352, 0.004884976989773894, 0.004909773827285436, 0.00493457066479698, 0.004959367502308522, 0.004984164339820065, 0.005008961177331608, 0.00503375801484315, 0.005058554852354692, 0.005083351689866236, 0.005108148527377778, 0.00513294536488932, 0.005157742202400863, 0.005182539039912406, 0.005207335877423948, 0.0052321327149354915, 0.005256929552447034, 0.0052817263899585755, 0.00530652322747012, 0.005331320064981661, 0.005356116902493204, 0.005380913740004747, 0.005405710577516289, 0.005430507415027832, 0.005455304252539375, 0.0054801010900509175, 0.005504897927562459, 0.0055296947650740015, 0.005554491602585545, 0.005579288440097087, 0.00560408527760863, 0.005628882115120173, 0.005653678952631715, 0.005678475790143257, 0.005703272627654801, 0.005728069465166343, 0.005752866302677885, 0.005777663140189429, 0.005802459977700971, 0.005827256815212513, 0.0058520536527240565, 0.005876850490235599, 0.005901647327747141, 0.005926444165258685, 0.005951241002770227, 0.005976037840281769, 0.006000834677793313, 0.006025631515304854, 0.006050428352816397, 0.00607522519032794, 0.0061000220278394825, 0.006124818865351025, 0.0061496157028625665, 0.006174412540374111, 0.006199209377885652, 0.006224006215397195, 0.006248803052908738, 0.00627359989042028, 0.006298396727931823, 0.006323193565443366, 0.0063479904029549086, 0.00637278724046645, 0.006397584077977994, 0.006422380915489536, 0.006447177753001078, 0.006471974590512622, 0.006496771428024164, 0.006521568265535706, 0.00654636510304725, 0.006571161940558792, 0.006595958778070334, 0.006620755615581878, 0.0066455524530934194, 0.006670349290604962, 0.006695146128116506, 0.006719942965628048, 0.00674473980313959, 0.0067695366406511324, 0.006794333478162676, 0.006819130315674218, 0.00684392715318576, 0.006868723990697304, 0.0068935208282088455, 0.006918317665720388, 0.006943114503231931, 0.006967911340743474, 0.006992708178255016, 0.007017505015766559, 0.007042301853278102, 0.007067098690789643, 0.0070918955283011875, 0.007116692365812729, 0.0071414892033242715, 0.007166286040835815, 0.007191082878347357, 0.0072158797158589, 0.007240676553370443, 0.007265473390881985, 0.007290270228393527, 0.007315067065905071, 0.007339863903416613, 0.007364660740928155, 0.007389457578439698, 0.007414254415951241, 0.007439051253462783, 0.007463848090974325, 0.007488644928485869, 0.0075134417659974105, 0.007538238603508953, 0.007563035441020497, 0.007587832278532039, 0.007612629116043581, 0.007637425953555124, 0.007662222791066667, 0.007687019628578209, 0.0077118164660897525, 0.007736613303601295, 0.0077614101411128365, 0.007786206978624381, 0.007811003816135922, 0.007835800653647465, 0.007860597491159008, 0.00788539432867055, 0.007910191166182093, 0.007934988003693636, 0.007959784841205178, 0.007984581678716721, 0.008009378516228264, 0.008034175353739806, 0.00805897219125135, 0.00808376902876289, 0.008108565866274434, 0.008133362703785976, 0.008158159541297519, 0.008182956378809062, 0.008207753216320604, 0.008232550053832147, 0.00825734689134369, 0.008282143728855232, 0.008306940566366773, 0.008331737403878318, 0.00835653424138986, 0.008381331078901402, 0.008406127916412945, 0.008430924753924488, 0.00845572159143603, 0.008480518428947573, 0.008505315266459116, 0.008530112103970658, 0.008554908941482201, 0.008579705778993743, 0.008604502616505286, 0.00862929945401683, 0.008654096291528371, 0.008678893129039914, 0.008703689966551456, 0.008728486804062999, 0.00875328364157454, 0.008778080479086084, 0.008802877316597627, 0.008827674154109169, 0.008852470991620712, 0.008877267829132255, 0.008902064666643797, 0.008926861504155338, 0.008951658341666884, 0.008976455179178425, 0.009001252016689967, 0.009026048854201512, 0.009050845691713053, 0.009075642529224595, 0.009100439366736138, 0.009125236204247681, 0.009150033041759223, 0.009174829879270766, 0.00919962671678231, 0.009224423554293851, 0.009249220391805394, 0.009274017229316936, 0.00929881406682848, 0.00932361090434002, 0.009348407741851564, 0.009373204579363107, 0.009398001416874649, 0.009422798254386192, 0.009447595091897734, 0.009472391929409277, 0.00949718876692082, 0.009521985604432362, 0.009546782441943905, 0.009571579279455449, 0.00959637611696699, 0.009621172954478532, 0.009645969791990075, 0.009670766629501617, 0.009695563467013162, 0.009720360304524703, 0.009745157142036246, 0.009769953979547788, 0.00979475081705933, 0.009819547654570873, 0.009844344492082418, 0.00986914132959396, 0.009893938167105503, 0.009918735004617044, 0.009943531842128586, 0.00996832867964013, 0.009993125517151674, 0.010017922354663216, 0.010042719192174757, 0.0100675160296863, 0.010092312867197842, 0.010117109704709384, 0.010141906542220929, 0.010166703379732472, 0.010191500217244014, 0.010216297054755555, 0.010241093892267098, 0.01026589072977864, 0.010290687567290182, 0.010315484404801727, 0.01034028124231327, 0.010365078079824811, 0.010389874917336353, 0.010414671754847896, 0.010439468592359438, 0.010464265429870983, 0.010489062267382524, 0.010513859104894068, 0.01053865594240561, 0.010563452779917151, 0.010588249617428694, 0.01061304645494024, 0.01063784329245178, 0.010662640129963322, 0.010687436967474866, 0.010712233804986407, 0.010737030642497949, 0.010761827480009494, 0.010786624317521037, 0.010811421155032579, 0.01083621799254412, 0.010861014830055664, 0.010885811667567205, 0.010910608505078747, 0.010935405342590292, 0.010960202180101835, 0.010984999017613377, 0.011009795855124918, 0.011034592692636461, 0.011059389530148003, 0.011084186367659548, 0.01110898320517109, 0.011133780042682633, 0.011158576880194174, 0.011183373717705716, 0.01120817055521726, 0.011232967392728804, 0.011257764230240346, 0.011282561067751887, 0.01130735790526343, 0.011332154742774972, 0.011356951580286514, 0.011381748417798059, 0.011406545255309602, 0.011431342092821144, 0.011456138930332685, 0.011480935767844229, 0.01150573260535577, 0.011530529442867312, 0.011555326280378858, 0.0115801231178904, 0.011604919955401942, 0.011629716792913485, 0.011654513630425026, 0.011679310467936568, 0.011704107305448113, 0.011728904142959656, 0.011753700980471198, 0.01177849781798274, 0.011803294655494283, 0.011828091493005824, 0.01185288833051737, 0.011877685168028911, 0.011902482005540454, 0.011927278843051996, 0.011952075680563537, 0.01197687251807508, 0.012001669355586626, 0.012026466193098167, 0.012051263030609709, 0.012076059868121252, 0.012100856705632794, 0.012125653543144335, 0.012150450380655878, 0.012175247218167424, 0.012200044055678965, 0.012224840893190507, 0.01224963773070205, 0.012274434568213591, 0.012299231405725133, 0.012324028243236678, 0.012348825080748221, 0.012373621918259763, 0.012398418755771305, 0.012423215593282848, 0.01244801243079439, 0.012472809268305934, 0.012497606105817476, 0.01252240294332902, 0.01254719978084056, 0.012571996618352102, 0.012596793455863646, 0.01262159029337519, 0.012646387130886732, 0.012671183968398274, 0.012695980805909817, 0.012720777643421359, 0.0127455744809329, 0.012770371318444445, 0.012795168155955989, 0.01281996499346753, 0.012844761830979072, 0.012869558668490615, 0.012894355506002157, 0.012919152343513698, 0.012943949181025243, 0.012968746018536786, 0.012993542856048328, 0.01301833969355987, 0.013043136531071413, 0.013067933368582954, 0.0130927302060945, 0.013117527043606041, 0.013142323881117584, 0.013167120718629126, 0.013191917556140667, 0.01321671439365221, 0.013241511231163756, 0.013266308068675297, 0.013291104906186839, 0.013315901743698382, 0.013340698581209924, 0.013365495418721465, 0.013390292256233012, 0.013415089093744554, 0.013439885931256095, 0.013464682768767638, 0.01348947960627918, 0.013514276443790722, 0.013539073281302265, 0.01356387011881381, 0.013588666956325351, 0.013613463793836893, 0.013638260631348436, 0.013663057468859978, 0.01368785430637152, 0.013712651143883064, 0.013737447981394608, 0.01376224481890615, 0.013787041656417691, 0.013811838493929234, 0.013836635331440776, 0.01386143216895232, 0.013886229006463862, 0.013911025843975406, 0.013935822681486947, 0.013960619518998489, 0.013985416356510032, 0.014010213194021577, 0.014035010031533119, 0.01405980686904466, 0.014084603706556204, 0.014109400544067745, 0.014134197381579287, 0.01415899421909083, 0.014183791056602375, 0.014208587894113917, 0.014233384731625458, 0.014258181569137001, 0.014282978406648543, 0.014307775244160085, 0.01433257208167163, 0.014357368919183173, 0.014382165756694714, 0.014406962594206256, 0.0144317594317178, 0.01445655626922934, 0.014481353106740886, 0.014506149944252427, 0.01453094678176397, 0.014555743619275512, 0.014580540456787054, 0.014605337294298597, 0.014630134131810142, 0.014654930969321684, 0.014679727806833225, 0.014704524644344769, 0.01472932148185631, 0.014754118319367852, 0.014778915156879395, 0.01480371199439094, 0.014828508831902482, 0.014853305669414023, 0.014878102506925566, 0.014902899344437108, 0.01492769618194865, 0.014952493019460195, 0.014977289856971738, 0.01500208669448328, 0.015026883531994821, 0.015051680369506364, 0.015076477207017906, 0.015101274044529451, 0.015126070882040994, 0.015150867719552536, 0.015175664557064077, 0.01520046139457562, 0.015225258232087162, 0.015250055069598707, 0.015274851907110249, 0.015299648744621792, 0.015324445582133334, 0.015349242419644875, 0.015374039257156418, 0.01539883609466796, 0.015423632932179505, 0.015448429769691047, 0.01547322660720259, 0.015498023444714131, 0.015522820282225673, 0.015547617119737216, 0.015572413957248761, 0.015597210794760303, 0.015622007632271845, 0.015646804469783386, 0.01567160130729493, 0.015696398144806473, 0.015721194982318016, 0.01574599181982956, 0.0157707886573411, 0.015795585494852642, 0.015820382332364186, 0.015845179169875726, 0.015869976007387272, 0.015894772844898816, 0.015919569682410355, 0.0159443665199219, 0.015969163357433442, 0.015993960194944982, 0.016018757032456525, 0.016043553869968072, 0.01606835070747961, 0.016093147544991155, 0.0161179443825027, 0.016142741220014238, 0.01616753805752578, 0.016192334895037325, 0.016217131732548868, 0.01624192857006041, 0.01626672540757195, 0.016291522245083494, 0.016316319082595038, 0.01634111592010658, 0.016365912757618124, 0.016390709595129668, 0.016415506432641207, 0.01644030327015275, 0.016465100107664294, 0.016489896945175837, 0.01651469378268738, 0.01653949062019892, 0.016564287457710464, 0.016589084295222007, 0.016613881132733547, 0.01663867797024509, 0.016663474807756637, 0.016688271645268177, 0.01671306848277972, 0.016737865320291263, 0.016762662157802803, 0.016787458995314346, 0.01681225583282589, 0.016837052670337433, 0.016861849507848976, 0.016886646345360516, 0.01691144318287206, 0.016936240020383603, 0.016961036857895146, 0.01698583369540669, 0.017010630532918233, 0.017035427370429772, 0.017060224207941316, 0.01708502104545286, 0.017109817882964402, 0.017134614720475946, 0.017159411557987485, 0.01718420839549903, 0.017209005233010572, 0.017233802070522112, 0.017258598908033655, 0.017283395745545202, 0.017308192583056742, 0.017332989420568285, 0.01735778625807983, 0.017382583095591368, 0.01740737993310291, 0.017432176770614455, 0.017456973608125998, 0.01748177044563754, 0.01750656728314908, 0.017531364120660625, 0.017556160958172168, 0.01758095779568371, 0.017605754633195254, 0.017630551470706798, 0.017655348308218338, 0.01768014514572988, 0.017704941983241424, 0.017729738820752967, 0.01775453565826451, 0.01777933249577605, 0.017804129333287594, 0.017828926170799137, 0.017853723008310677, 0.01787851984582222, 0.017903316683333767, 0.017928113520845307, 0.01795291035835685, 0.017977707195868393, 0.018002504033379933, 0.018027300870891477, 0.018052097708403023, 0.018076894545914563, 0.018101691383426106, 0.01812648822093765, 0.01815128505844919, 0.018176081895960733, 0.018200878733472276, 0.01822567557098382, 0.018250472408495363, 0.018275269246006903, 0.018300066083518446, 0.01832486292102999, 0.018349659758541532, 0.018374456596053076, 0.01839925343356462, 0.01842405027107616, 0.018448847108587702, 0.018473643946099245, 0.01849844078361079, 0.018523237621122332, 0.018548034458633872, 0.018572831296145415, 0.01859762813365696, 0.0186224249711685, 0.01864722180868004, 0.01867201864619159, 0.018696815483703128, 0.01872161232121467, 0.018746409158726215, 0.018771205996237755, 0.018796002833749298, 0.01882079967126084, 0.018845596508772385, 0.018870393346283928, 0.018895190183795468, 0.01891998702130701, 0.018944783858818554, 0.018969580696330098, 0.01899437753384164, 0.019019174371353184, 0.019043971208864724, 0.019068768046376267, 0.01909356488388781, 0.019118361721399354, 0.019143158558910897, 0.019167955396422437, 0.01919275223393398, 0.019217549071445524, 0.019242345908957063, 0.019267142746468607, 0.019291939583980153, 0.019316736421491693, 0.019341533259003237, 0.01936633009651478, 0.01939112693402632, 0.019415923771537863, 0.019440720609049406, 0.01946551744656095, 0.019490314284072493, 0.019515111121584033, 0.019539907959095576, 0.01956470479660712, 0.019589501634118663, 0.019614298471630206, 0.01963909530914175, 0.01966389214665329, 0.019688688984164832, 0.019713485821676376, 0.01973828265918792, 0.019763079496699462, 0.019787876334211005, 0.019812673171722545, 0.01983747000923409, 0.019862266846745632, 0.01988706368425717, 0.01991186052176872, 0.01993665735928026, 0.0199614541967918, 0.019986251034303345, 0.020011047871814885, 0.020035844709326428, 0.020060641546837975, 0.020085438384349515, 0.020110235221861058, 0.0201350320593726, 0.02015982889688414, 0.020184625734395684, 0.020209422571907228, 0.02023421940941877, 0.020259016246930314, 0.020283813084441854, 0.020308609921953397, 0.02033340675946494, 0.020358203596976484, 0.020383000434488027, 0.02040779727199957, 0.02043259410951111, 0.020457390947022654, 0.020482187784534197, 0.020506984622045737, 0.020531781459557284, 0.020556578297068823, 0.020581375134580367, 0.02060617197209191, 0.02063096880960345, 0.020655765647114993, 0.02068056248462654, 0.02070535932213808, 0.020730156159649623, 0.020754952997161166, 0.020779749834672706, 0.02080454667218425, 0.020829343509695793, 0.020854140347207336, 0.02087893718471888, 0.02090373402223042, 0.020928530859741962, 0.020953327697253506, 0.02097812453476505, 0.021002921372276592, 0.021027718209788136, 0.021052515047299675, 0.02107731188481122, 0.021102108722322762, 0.021126905559834302, 0.02115170239734585, 0.02117649923485739, 0.02120129607236893, 0.021226092909880475, 0.021250889747392015, 0.021275686584903558, 0.021300483422415105, 0.021325280259926645, 0.021350077097438188, 0.02137487393494973, 0.02139967077246127, 0.021424467609972814, 0.02144926444748436, 0.0214740612849959, 0.021498858122507444, 0.021523654960018988, 0.021548451797530527, 0.02157324863504207, 0.021598045472553614, 0.021622842310065157, 0.0216476391475767, 0.02167243598508824, 0.021697232822599784, 0.021722029660111327, 0.021746826497622867, 0.021771623335134414, 0.021796420172645957, 0.021821217010157497, 0.02184601384766904, 0.021870810685180583, 0.021895607522692123, 0.02192040436020367, 0.02194520119771521, 0.021969998035226753, 0.021994794872738296, 0.022019591710249836, 0.02204438854776138, 0.022069185385272926, 0.022093982222784466, 0.02211877906029601, 0.022143575897807553, 0.022168372735319092, 0.022193169572830636, 0.02221796641034218, 0.022242763247853722, 0.022267560085365266, 0.022292356922876806, 0.02231715376038835, 0.022341950597899892, 0.022366747435411432, 0.02239154427292298, 0.022416341110434522, 0.022441137947946062, 0.022465934785457605, 0.02249073162296915, 0.022515528460480688, 0.022540325297992235, 0.022565122135503775, 0.022589918973015318, 0.02261471581052686, 0.0226395126480384, 0.022664309485549945, 0.02268910632306149, 0.02271390316057303, 0.022738699998084574, 0.022763496835596118, 0.022788293673107658, 0.0228130905106192, 0.022837887348130744, 0.022862684185642287, 0.022887481023153827, 0.02291227786066537, 0.022937074698176917, 0.022961871535688457, 0.0229866683732, 0.02301146521071154, 0.023036262048223087, 0.023061058885734623, 0.02308585572324617, 0.023110652560757717, 0.023135449398269253, 0.0231602462357808, 0.02318504307329234, 0.023209839910803883, 0.02323463674831543, 0.02325943358582697, 0.023284230423338513, 0.023309027260850053, 0.023333824098361596, 0.023358620935873136, 0.023383417773384683, 0.023408214610896226, 0.023433011448407766, 0.023457808285919313, 0.02348260512343085, 0.023507401960942396, 0.02353219879845394, 0.02355699563596548, 0.023581792473477026, 0.023606589310988565, 0.02363138614850011, 0.02365618298601165, 0.023680979823523192, 0.02370577666103474, 0.02373057349854628, 0.023755370336057822, 0.02378016717356936, 0.02380496401108091, 0.023829760848592445, 0.02385455768610399, 0.023879354523615535, 0.023904151361127075, 0.02392894819863862, 0.02395374503615016, 0.023978541873661705, 0.02400333871117325, 0.024028135548684788, 0.024052932386196334, 0.024077729223707874, 0.024102526061219418, 0.024127322898730957, 0.024152119736242504, 0.024176916573754047, 0.024201713411265587, 0.02422651024877713, 0.02425130708628867, 0.024276103923800217, 0.024300900761311757, 0.0243256975988233, 0.024350494436334847, 0.024375291273846383, 0.02440008811135793, 0.02442488494886947, 0.024449681786381013, 0.02447447862389256, 0.0244992754614041, 0.024524072298915643, 0.024548869136427183, 0.024573665973938726, 0.024598462811450266, 0.024623259648961813, 0.024648056486473356, 0.024672853323984896, 0.024697650161496443, 0.02472244699900798, 0.024747243836519526, 0.02477204067403107, 0.02479683751154261, 0.024821634349054156, 0.024846431186565696, 0.02487122802407724, 0.02489602486158878, 0.024920821699100322, 0.02494561853661187, 0.02497041537412341, 0.024995212211634952, 0.025020009049146492, 0.02504480588665804, 0.025069602724169575, 0.02509439956168112, 0.02511919639919267, 0.025143993236704205, 0.02516879007421575, 0.02519358691172729, 0.025218383749238835, 0.02524318058675038, 0.02526797742426192, 0.025292774261773465, 0.025317571099285004, 0.025342367936796548, 0.025367164774308087, 0.025391961611819634, 0.025416758449331178, 0.025441555286842717, 0.025466352124354264, 0.0254911489618658, 0.025515945799377347, 0.025540742636888887, 0.02556553947440043, 0.025590336311911977, 0.025615133149423517, 0.02563992998693506, 0.0256647268244466, 0.025689523661958143, 0.02571432049946969, 0.02573911733698123, 0.025763914174492773, 0.025788711012004313, 0.02581350784951586, 0.025838304687027396, 0.025863101524538943, 0.025887898362050486, 0.025912695199562026, 0.025937492037073573, 0.025962288874585113, 0.025987085712096656, 0.026011882549608203, 0.02603667938711974, 0.026061476224631286, 0.026086273062142826, 0.02611106989965437, 0.02613586673716591, 0.026160663574677456, 0.026185460412189, 0.02621025724970054, 0.026235054087212082, 0.026259850924723622, 0.02628464776223517, 0.02630944459974671, 0.02633424143725825, 0.0263590382747698, 0.026383835112281335, 0.02640863194979288, 0.02643342878730442, 0.026458225624815965, 0.02648302246232751, 0.02650781929983905, 0.026532616137350595, 0.026557412974862134, 0.026582209812373678, 0.026607006649885218, 0.026631803487396764, 0.026656600324908308, 0.026681397162419847, 0.026706193999931394, 0.02673099083744293, 0.026755787674954477, 0.026780584512466017, 0.02680538134997756, 0.026830178187489107, 0.026854975025000647, 0.02687977186251219, 0.02690456870002373, 0.026929365537535277, 0.02695416237504682, 0.02697895921255836, 0.027003756050069903, 0.027028552887581443, 0.02705334972509299, 0.02707814656260453, 0.027102943400116073, 0.02712774023762762, 0.027152537075139156, 0.027177333912650703, 0.027202130750162243, 0.027226927587673786, 0.027251724425185333, 0.027276521262696873, 0.027301318100208416, 0.027326114937719956, 0.0273509117752315, 0.02737570861274304, 0.027400505450254586, 0.02742530228776613, 0.02745009912527767, 0.027474895962789216, 0.027499692800300752, 0.0275244896378123, 0.02754928647532384, 0.027574083312835382, 0.02759888015034693, 0.02762367698785847, 0.02764847382537001, 0.02767327066288155, 0.027698067500393095, 0.02772286433790464, 0.02774766117541618, 0.027772458012927725, 0.027797254850439265, 0.02782205168795081, 0.027846848525462348, 0.027871645362973894, 0.027896442200485438, 0.027921239037996978, 0.027946035875508524, 0.027970832713020064, 0.027995629550531607, 0.028020426388043147, 0.02804522322555469, 0.028070020063066237, 0.028094816900577777, 0.02811961373808932, 0.02814441057560086, 0.028169207413112407, 0.02819400425062395, 0.02821880108813549, 0.028243597925647033, 0.028268394763158573, 0.02829319160067012, 0.02831798843818166, 0.028342785275693203, 0.02836758211320475, 0.028392378950716286, 0.028417175788227833, 0.028441972625739373, 0.028466769463250916, 0.028491566300762463, 0.028516363138274003, 0.028541159975785546, 0.028565956813297086, 0.028590753650808633, 0.02861555048832017, 0.028640347325831716, 0.02866514416334326, 0.0286899410008548, 0.028714737838366346, 0.028739534675877886, 0.02876433151338943, 0.02878912835090097, 0.028813925188412512, 0.02883872202592406, 0.0288635188634356, 0.028888315700947142, 0.02891311253845868, 0.02893790937597023, 0.02896270621348177, 0.02898750305099331, 0.029012299888504855, 0.029037096726016395, 0.02906189356352794, 0.02908669040103948, 0.029111487238551025, 0.02913628407606257, 0.029161080913574108, 0.029185877751085654, 0.029210674588597194, 0.029235471426108738, 0.029260268263620284, 0.029285065101131824, 0.029309861938643367, 0.029334658776154907, 0.02935945561366645, 0.02938425245117799, 0.029409049288689537, 0.02943384612620108, 0.02945864296371262, 0.029483439801224167, 0.029508236638735703, 0.02953303347624725, 0.02955783031375879, 0.029582627151270333, 0.02960742398878188, 0.02963222082629342, 0.029657017663804963, 0.029681814501316503, 0.029706611338828046, 0.029731408176339593, 0.029756205013851133, 0.029781001851362676, 0.029805798688874216, 0.029830595526385763, 0.0298553923638973, 0.029880189201408846, 0.02990498603892039, 0.02992978287643193, 0.029954579713943476, 0.029979376551455016, 0.03000417338896656, 0.0300289702264781, 0.030053767063989642, 0.03007856390150119, 0.03010336073901273, 0.030128157576524272, 0.030152954414035812, 0.03017775125154736, 0.030202548089058902, 0.03022734492657044, 0.03025214176408199, 0.030276938601593525, 0.03030173543910507, 0.03032653227661661, 0.030351329114128155, 0.0303761259516397, 0.03040092278915124, 0.030425719626662785, 0.030450516464174324, 0.030475313301685868, 0.030500110139197414, 0.030524906976708954, 0.030549703814220498, 0.030574500651732037, 0.030599297489243584, 0.03062409432675512, 0.030648891164266667, 0.03067368800177821, 0.03069848483928975, 0.030723281676801297, 0.030748078514312837, 0.03077287535182438, 0.03079767218933592, 0.030822469026847463, 0.03084726586435901, 0.03087206270187055, 0.030896859539382093, 0.030921656376893633, 0.03094645321440518, 0.030971250051916723, 0.030996046889428263, 0.031020843726939806, 0.031045640564451346, 0.031070437401962893, 0.031095234239474433, 0.031120031076985976, 0.031144827914497523, 0.03116962475200906, 0.031194421589520606, 0.031219218427032146, 0.03124401526454369, 0.03126881210205523, 0.03129360893956677, 0.03131840577707832, 0.03134320261458986, 0.031367999452101405, 0.031392796289612945, 0.031417593127124485, 0.03144238996463603, 0.03146718680214757, 0.03149198363965912, 0.03151678047717066, 0.0315415773146822, 0.03156637415219374, 0.031591170989705285, 0.03161596782721683, 0.03164076466472837, 0.03166556150223992, 0.03169035833975145, 0.031715155177263, 0.031739952014774545, 0.031764748852286084, 0.03178954568979763, 0.03181434252730917, 0.03183913936482071, 0.03186393620233225, 0.0318887330398438, 0.031913529877355344, 0.031938326714866884, 0.031963123552378424, 0.031987920389889964, 0.03201271722740151, 0.03203751406491305, 0.0320623109024246, 0.032087107739936144, 0.03211190457744768, 0.03213670141495922, 0.03216149825247076, 0.03218629508998231, 0.03221109192749386, 0.0322358887650054, 0.032260685602516936, 0.032285482440028476, 0.03231027927754002, 0.03233507611505156, 0.03235987295256311, 0.03238466979007465, 0.03240946662758619, 0.032434263465097736, 0.032459060302609276, 0.03248385714012082, 0.03250865397763236, 0.0325334508151439, 0.03255824765265545, 0.03258304449016699, 0.032607841327678536, 0.032632638165190075, 0.032657435002701615, 0.03268223184021316, 0.0327070286777247, 0.03273182551523625, 0.03275662235274779, 0.032781419190259335, 0.03280621602777087, 0.032831012865282415, 0.03285580970279396, 0.0328806065403055, 0.03290540337781705, 0.03293020021532859, 0.03295499705284013, 0.032979793890351675, 0.033004590727863214, 0.03302938756537476, 0.0330541844028863, 0.03307898124039784, 0.03310377807790938, 0.03312857491542093, 0.033153371752932474, 0.033178168590444014, 0.033202965427955554, 0.033227762265467094, 0.03325255910297864, 0.03327735594049018, 0.03330215277800173, 0.033326949615513274, 0.03335174645302481, 0.033376543290536353, 0.03340134012804789, 0.03342613696555944, 0.03345093380307099, 0.03347573064058253, 0.033500527478094067, 0.033525324315605606, 0.03355012115311715, 0.03357491799062869, 0.03359971482814024, 0.03362451166565178, 0.03364930850316332, 0.033674105340674866, 0.033698902178186406, 0.03372369901569795, 0.03374849585320949, 0.03377329269072103, 0.03379808952823258, 0.03382288636574412, 0.033847683203255666, 0.033872480040767206, 0.03389727687827875, 0.03392207371579029, 0.03394687055330183, 0.03397166739081338, 0.03399646422832492, 0.034021261065836465, 0.034046057903348005, 0.034070854740859545, 0.03409565157837109, 0.03412044841588263, 0.03414524525339418, 0.03417004209090572, 0.03419483892841726, 0.034219635765928805, 0.034244432603440345, 0.03426922944095189, 0.03429402627846343, 0.03431882311597497, 0.03434361995348651, 0.03436841679099806, 0.034393213628509604, 0.034418010466021144, 0.03444280730353269, 0.034467604141044224, 0.03449240097855577, 0.03451719781606731, 0.03454199465357886, 0.034566791491090404, 0.034591588328601944, 0.034616385166113484, 0.03464118200362502, 0.03466597884113657, 0.03469077567864812, 0.03471557251615966, 0.0347403693536712, 0.034765166191182736, 0.03478996302869428, 0.03481475986620582, 0.03483955670371737, 0.03486435354122891, 0.03488915037874045, 0.034913947216251996, 0.034938744053763536, 0.03496354089127508, 0.03498833772878663, 0.03501313456629816, 0.03503793140380971, 0.03506272824132125, 0.035087525078832796, 0.035112321916344336, 0.03513711875385588, 0.03516191559136742, 0.03518671242887896, 0.03521150926639051, 0.03523630610390205, 0.035261102941413595, 0.035285899778925135, 0.035310696616436675, 0.03533549345394822, 0.03536029029145976, 0.03538508712897131, 0.03540988396648285, 0.03543468080399439, 0.035459477641505935, 0.035484274479017475, 0.03550907131652902, 0.03553386815404056, 0.0355586649915521, 0.03558346182906364, 0.03560825866657519, 0.035633055504086734, 0.035657852341598274, 0.03568264917910982, 0.035707446016621354, 0.0357322428541329, 0.03575703969164444, 0.03578183652915599, 0.035806633366667534, 0.035831430204179074, 0.035856227041690614, 0.035881023879202154, 0.0359058207167137, 0.03593061755422525, 0.03595541439173679, 0.03598021122924833, 0.03600500806675987, 0.03602980490427141, 0.03605460174178295, 0.0360793985792945, 0.03610419541680605, 0.03612899225431758, 0.036153789091829126, 0.036178585929340666, 0.03620338276685221, 0.03622817960436376, 0.0362529764418753, 0.03627777327938684, 0.03630257011689838, 0.036327366954409926, 0.036352163791921466, 0.03637696062943301, 0.03640175746694455, 0.03642655430445609, 0.03645135114196764, 0.03647614797947918, 0.036500944816990726, 0.036525741654502265, 0.036550538492013805, 0.03657533532952535, 0.03660013216703689, 0.03662492900454844, 0.03664972584205998, 0.03667452267957152, 0.036699319517083065, 0.036724116354594605, 0.03674891319210615, 0.03677371002961769, 0.03679850686712924, 0.03682330370464077, 0.03684810054215232, 0.036872897379663865, 0.036897694217175404, 0.03692249105468695, 0.03694728789219849, 0.03697208472971003, 0.03699688156722157, 0.03702167840473312, 0.037046475242244664, 0.037071272079756204, 0.037096068917267744, 0.037120865754779284, 0.03714566259229083, 0.03717045942980238, 0.03719525626731392, 0.03722005310482546, 0.037244849942337, 0.03726964677984854, 0.03729444361736008, 0.03731924045487163, 0.03734403729238318, 0.03736883412989471, 0.037393630967406256, 0.037418427804917796, 0.03744322464242934, 0.03746802147994089, 0.03749281831745243, 0.03751761515496397, 0.03754241199247551, 0.037567208829987056, 0.037592005667498596, 0.03761680250501014, 0.03764159934252168, 0.03766639618003322, 0.03769119301754477, 0.03771598985505631, 0.037740786692567856, 0.037765583530079395, 0.037790380367590935, 0.03781517720510248, 0.03783997404261402, 0.03786477088012557, 0.03788956771763711, 0.037914364555148655, 0.037939161392660195, 0.037963958230171735, 0.03798875506768328, 0.03801355190519482, 0.03803834874270637, 0.03806314558021791, 0.03808794241772945, 0.038112739255240995, 0.038137536092752534, 0.03816233293026408, 0.03818712976777562, 0.03821192660528716, 0.0382367234427987, 0.03826152028031025, 0.038286317117821794, 0.038311113955333334, 0.038335910792844874, 0.038360707630356414, 0.03838550446786796, 0.03841030130537951, 0.03843509814289105, 0.038459894980402594, 0.03848469181791413, 0.038509488655425674, 0.03853428549293721, 0.03855908233044876, 0.03858387916796031, 0.03860867600547185, 0.038633472842983387, 0.038658269680494926, 0.03868306651800647, 0.03870786335551802, 0.03873266019302956, 0.0387574570305411, 0.03878225386805264, 0.038807050705564186, 0.038831847543075726, 0.03885664438058727, 0.03888144121809881, 0.03890623805561035, 0.0389310348931219, 0.03895583173063344, 0.038980628568144986, 0.039005425405656526, 0.039030222243168065, 0.03905501908067961, 0.03907981591819115, 0.0391046127557027, 0.03912940959321424, 0.039154206430725785, 0.039179003268237325, 0.039203800105748865, 0.03922859694326041, 0.03925339378077195, 0.0392781906182835, 0.03930298745579504, 0.03932778429330658, 0.039352581130818125, 0.039377377968329665, 0.03940217480584121, 0.03942697164335275, 0.03945176848086429, 0.03947656531837583, 0.03950136215588738, 0.039526158993398924, 0.039550955830910464, 0.03957575266842201, 0.039600549505933544, 0.03962534634344509, 0.03965014318095664, 0.03967494001846818, 0.039699736855979724, 0.039724533693491264, 0.039749330531002804, 0.03977412736851434, 0.03979892420602589, 0.03982372104353744, 0.03984851788104898, 0.03987331471856052, 0.039898111556072056, 0.0399229083935836, 0.03994770523109515, 0.03997250206860669, 0.03999729890611823, 0.04002209574362977, 0.040046892581141316, 0.040071689418652856, 0.0400964862561644, 0.04012128309367595, 0.04014607993118748, 0.04017087676869903, 0.04019567360621057, 0.040220470443722116, 0.040245267281233656, 0.0402700641187452, 0.04029486095625674, 0.04031965779376828, 0.04034445463127983, 0.04036925146879137, 0.040394048306302915, 0.040418845143814455, 0.040443641981325995, 0.04046843881883754, 0.04049323565634908, 0.04051803249386063, 0.04054282933137217, 0.04056762616888371, 0.040592423006395255, 0.040617219843906795, 0.04064201668141834, 0.04066681351892988, 0.04069161035644142, 0.04071640719395297, 0.04074120403146451, 0.040766000868976054, 0.040790797706487594, 0.04081559454399914, 0.040840391381510674, 0.04086518821902222, 0.04088998505653377, 0.04091478189404531, 0.040939578731556854, 0.040964375569068394, 0.040989172406579934, 0.041013969244091474, 0.04103876608160302, 0.04106356291911457, 0.04108835975662611, 0.04111315659413765, 0.04113795343164919, 0.04116275026916073, 0.04118754710667228, 0.04121234394418382, 0.04123714078169537, 0.0412619376192069, 0.041286734456718446, 0.041311531294229986, 0.04133632813174153, 0.04136112496925308, 0.04138592180676462, 0.04141071864427616, 0.0414355154817877, 0.041460312319299246, 0.041485109156810786, 0.04150990599432233, 0.04153470283183387, 0.04155949966934541, 0.04158429650685696, 0.0416090933443685, 0.041633890181880046, 0.041658687019391585, 0.041683483856903125, 0.04170828069441467, 0.04173307753192621, 0.04175787436943776, 0.0417826712069493, 0.04180746804446084, 0.041832264881972385, 0.041857061719483925, 0.04188185855699547, 0.04190665539450701, 0.04193145223201856, 0.0419562490695301, 0.04198104590704164, 0.042005842744553185, 0.042030639582064724, 0.04205543641957627, 0.04208023325708781, 0.04210503009459935, 0.0421298269321109, 0.04215462376962244, 0.042179420607133984, 0.042204217444645524, 0.042229014282157064, 0.042253811119668604, 0.04227860795718015, 0.0423034047946917, 0.04232820163220324, 0.04235299846971478, 0.04237779530722632, 0.04240259214473786, 0.04242738898224941, 0.04245218581976095, 0.0424769826572725, 0.04250177949478403, 0.042526576332295576, 0.042551373169807116, 0.04257617000731866, 0.04260096684483021, 0.04262576368234175, 0.04265056051985329, 0.04267535735736483, 0.042700154194876376, 0.042724951032387916, 0.04274974786989946, 0.042774544707411, 0.04279934154492254, 0.04282413838243409, 0.04284893521994563, 0.042873732057457176, 0.04289852889496872, 0.042923325732480255, 0.0429481225699918, 0.04297291940750334, 0.04299771624501489, 0.04302251308252643, 0.043047309920037975, 0.043072106757549515, 0.043096903595061055, 0.0431217004325726, 0.04314649727008414, 0.04317129410759569, 0.04319609094510723, 0.04322088778261877, 0.043245684620130315, 0.043270481457641854, 0.0432952782951534, 0.04332007513266494, 0.04334487197017648, 0.04336966880768803, 0.04339446564519957, 0.043419262482711114, 0.043444059320222654, 0.043468856157734194, 0.043493652995245734, 0.04351844983275728, 0.04354324667026883, 0.04356804350778037, 0.043592840345291914, 0.04361763718280345, 0.043642434020314994, 0.04366723085782654, 0.04369202769533808, 0.04371682453284963, 0.04374162137036117, 0.04376641820787271, 0.043791215045384246, 0.04381601188289579, 0.04384080872040734, 0.04386560555791888, 0.04389040239543042, 0.04391519923294196, 0.043939996070453506, 0.043964792907965046, 0.04398958974547659, 0.04401438658298813, 0.04403918342049967, 0.04406398025801122, 0.04408877709552276, 0.044113573933034306, 0.04413837077054585, 0.044163167608057385, 0.04418796444556893, 0.04421276128308047, 0.04423755812059202, 0.04426235495810356, 0.044287151795615105, 0.044311948633126645, 0.044336745470638185, 0.04436154230814973, 0.04438633914566127, 0.04441113598317282, 0.04443593282068436, 0.0444607296581959, 0.044485526495707445, 0.044510323333218985, 0.04453512017073053, 0.04455991700824207, 0.04458471384575361, 0.04460951068326516, 0.0446343075207767, 0.044659104358288244, 0.044683901195799784, 0.04470869803331133, 0.044733494870822864, 0.04475829170833441, 0.04478308854584596, 0.0448078853833575, 0.044832682220869044, 0.044857479058380584, 0.044882275895892124, 0.04490707273340367, 0.04493186957091521, 0.04495666640842676, 0.0449814632459383, 0.04500626008344984, 0.045031056920961376, 0.04505585375847292, 0.04508065059598447, 0.04510544743349601, 0.04513024427100755, 0.04515504110851909, 0.045179837946030636, 0.045204634783542176, 0.04522943162105372, 0.04525422845856527, 0.0452790252960768, 0.04530382213358835, 0.04532861897109989, 0.045353415808611436, 0.04537821264612298, 0.04540300948363452, 0.04542780632114606, 0.0454526031586576, 0.04547739999616915, 0.04550219683368069, 0.045526993671192235, 0.045551790508703775, 0.045576587346215315, 0.04560138418372686, 0.0456261810212384, 0.04565097785874995, 0.04567577469626149, 0.04570057153377303, 0.045725368371284575, 0.045750165208796115, 0.04577496204630766, 0.0457997588838192, 0.04582455572133074, 0.04584935255884229, 0.04587414939635383, 0.045898946233865374, 0.045923743071376914, 0.04594853990888846, 0.045973336746399994, 0.04599813358391154, 0.04602293042142309, 0.04604772725893463, 0.046072524096446174, 0.046097320933957714, 0.046122117771469254, 0.0461469146089808, 0.04617171144649234, 0.04619650828400389, 0.04622130512151543, 0.04624610195902697, 0.04627089879653851, 0.04629569563405005, 0.0463204924715616, 0.04634528930907314, 0.04637008614658469, 0.04639488298409622, 0.046419679821607766, 0.046444476659119306, 0.04646927349663085, 0.0464940703341424, 0.04651886717165394, 0.04654366400916548, 0.04656846084667702, 0.046593257684188566, 0.04661805452170011, 0.04664285135921165, 0.04666764819672319, 0.04669244503423473, 0.04671724187174628, 0.04674203870925782, 0.046766835546769366, 0.046791632384280905, 0.046816429221792445, 0.04684122605930399, 0.04686602289681553, 0.04689081973432708, 0.046915616571838625, 0.04694041340935016, 0.046965210246861705, 0.046990007084373245, 0.04701480392188479, 0.04703960075939633, 0.04706439759690788, 0.04708919443441942, 0.04711399127193096, 0.047138788109442505, 0.047163584946954044, 0.04718838178446559, 0.04721317862197713, 0.04723797545948867, 0.04726277229700022, 0.04728756913451176, 0.047312365972023304, 0.047337162809534844, 0.047361959647046384, 0.04738675648455793, 0.04741155332206947, 0.04743635015958102, 0.04746114699709256, 0.0474859438346041, 0.04751074067211564, 0.04753553750962718, 0.04756033434713873, 0.04758513118465027, 0.04760992802216182, 0.04763472485967335, 0.047659521697184896, 0.04768431853469644, 0.04770911537220798, 0.04773391220971953, 0.04775870904723107, 0.04778350588474261, 0.04780830272225415, 0.047833099559765696, 0.04785789639727724, 0.04788269323478878, 0.04790749007230032, 0.04793228690981186, 0.04795708374732341, 0.04798188058483495, 0.048006677422346496, 0.04803147425985804, 0.048056271097369575, 0.04808106793488112, 0.04810586477239266, 0.04813066160990421, 0.048155458447415755, 0.048180255284927295, 0.048205052122438835, 0.048229848959950375, 0.04825464579746192, 0.04827944263497346, 0.04830423947248501, 0.04832903630999655, 0.04835383314750809, 0.048378629985019635, 0.048403426822531175, 0.04842822366004272, 0.04845302049755426, 0.0484778173350658, 0.04850261417257735, 0.04852741101008889, 0.048552207847600434, 0.048577004685111974, 0.048601801522623514, 0.04862659836013506, 0.0486513951976466, 0.04867619203515815, 0.04870098887266969, 0.048725785710181234, 0.04875058254769277, 0.048775379385204314, 0.04880017622271586, 0.0488249730602274, 0.04884976989773895, 0.04887456673525049, 0.04889936357276203, 0.04892416041027357, 0.04894895724778511, 0.04897375408529666, 0.0489985509228082, 0.04902334776031974, 0.04904814459783128, 0.049072941435342826, 0.04909773827285437, 0.04912253511036591, 0.04914733194787745, 0.04917212878538899, 0.04919692562290054, 0.04922172246041208, 0.049246519297923626, 0.04927131613543517, 0.049296112972946705, 0.04932090981045825, 0.04934570664796979, 0.04937050348548134, 0.049395300322992886, 0.049420097160504425, 0.049444893998015965, 0.049469690835527505, 0.049494487673039045, 0.0495192845105506, 0.04954408134806214, 0.04956887818557368, 0.049593675023085225, 0.049618471860596765, 0.049643268698108305, 0.049668065535619844, 0.04969286237313139, 0.04971765921064293, 0.04974245604815447, 0.049767252885666025, 0.049792049723177564, 0.049816846560689104, 0.049841643398200644, 0.04986644023571219, 0.04989123707322373, 0.04991603391073527, 0.049940830748246824, 0.049965627585758364, 0.0499904244232699, 0.05001522126078145, 0.05004001809829299, 0.05006481493580453, 0.05008961177331607, 0.05011440861082762, 0.05013920544833916, 0.050164002285850696, 0.05018879912336225, 0.05021359596087379, 0.05023839279838533, 0.05026318963589687, 0.050287986473408416, 0.050312783310919956, 0.050337580148431496, 0.05036237698594305, 0.05038717382345459, 0.05041197066096612, 0.05043676749847766, 0.050461564335989216, 0.050486361173500756, 0.050511158011012296, 0.05053595484852384, 0.05056075168603538, 0.05058554852354692, 0.05061034536105846, 0.050635142198570016, 0.050659939036081555, 0.050684735873593095, 0.05070953271110464, 0.05073432954861618, 0.05075912638612772, 0.050783923223639275, 0.05080872006115081, 0.05083351689866235, 0.05085831373617389, 0.05088311057368544, 0.05090790741119698, 0.05093270424870852, 0.05095750108622007, 0.05098229792373161, 0.05100709476124315, 0.05103189159875469, 0.05105668843626624, 0.05108148527377778, 0.051106282111289314, 0.05113107894880087, 0.05115587578631241, 0.05118067262382395, 0.05120546946133549, 0.051230266298847034, 0.051255063136358574, 0.051279859973870114, 0.05130465681138167, 0.05132945364889321, 0.05135425048640475, 0.05137904732391629, 0.051403844161427834, 0.05142864099893937, 0.05145343783645091, 0.05147823467396247, 0.051503031511474, 0.05152782834898554, 0.05155262518649708, 0.05157742202400863 ], "yaxis": "y2" } ], "layout": { "font": { "size": 12 }, "hovermode": false, "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.6533333333333333 ], "range": [ 0, 197 ], "tickfont": { "size": 16 }, "ticktext": [ "Γ", "X", "W", "K", "Γ", "L", "U", "W", "L", "K", "U", "X" ], "tickvals": [ 0, 28, 42, 52, 82, 106, 123, 133, 153, 170, 187, 197 ], "title": { "text": "Wave Vector" } }, "xaxis2": { "anchor": "y2", "domain": [ 0.6733333333333333, 1.0 ] }, "yaxis": { "anchor": "x", "domain": [ 0.0, 1.0 ], "range": [ 0.0, 0.05110011356873385 ], "title": { "text": "Energy (eV)" } }, "yaxis2": { "anchor": "x2", "domain": [ 0.0, 1.0 ], "matches": "y", "showticklabels": false } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "phbands.plotly_with_phdos(phdos);" ] }, { "cell_type": "markdown", "id": "ac5e57ba", "metadata": {}, "source": [ "The `PhdosFile` contains the phonon frequencies, the displacement vectors\n", "as well as the decomposition of the total DOS in terms of the contributions due to\n", "the different types of atom in the unit cell.\n", "This means that one can plot the type-projected phonon DOS with:" ] }, { "cell_type": "code", "execution_count": 37, "id": "358f744a", "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://chart-studio.plotly.com", "responsive": true, "showLink": true }, "data": [ { "fill": "tonextx", "line": { "width": 2 }, "mode": "lines", "name": "Al", "type": "scatter", "x": [ -0.0037195256267313916, -0.0036947287892198487, -0.0036699319517083063, -0.0036451351141967635, -0.0036203382766852206, -0.0035955414391736786, -0.0035707446016621357, -0.0035459477641505937, -0.003521150926639051, -0.003496354089127508, -0.0034715572516159656, -0.0034467604141044227, -0.00342196357659288, -0.003397166739081338, -0.003372369901569795, -0.003347573064058252, -0.0033227762265467097, -0.003297979389035167, -0.0032731825515236244, -0.003248385714012082, -0.003223588876500539, -0.0031987920389889967, -0.0031739952014774543, -0.0031491983639659114, -0.0031244015264543686, -0.003099604688942826, -0.0030748078514312837, -0.0030500110139197413, -0.0030252141764081984, -0.003000417338896656, -0.0029756205013851135, -0.0029508236638735707, -0.002926026826362028, -0.0029012299888504854, -0.0028764331513389425, -0.0028516363138274, -0.0028268394763158577, -0.002802042638804315, -0.0027772458012927724, -0.0027524489637812295, -0.002727652126269687, -0.0027028552887581447, -0.002678058451246602, -0.0026532616137350594, -0.002628464776223517, -0.002603667938711974, -0.0025788711012004312, -0.002554074263688889, -0.002529277426177346, -0.0025044805886658035, -0.002479683751154261, -0.002454886913642718, -0.002430090076131176, -0.002405293238619633, -0.0023804964011080905, -0.002355699563596548, -0.002330902726085005, -0.0023061058885734628, -0.0022813090510619203, -0.0022565122135503775, -0.0022317153760388346, -0.002206918538527292, -0.0021821217010157493, -0.0021573248635042073, -0.0021325280259926645, -0.0021077311884811216, -0.0020829343509695796, -0.0020581375134580368, -0.002033340675946494, -0.0020085438384349515, -0.0019837470009234086, -0.001958950163411866, -0.0019341533259003237, -0.0019093564883887809, -0.0018845596508772382, -0.0018597628133656958, -0.0018349659758541532, -0.0018101691383426103, -0.0017853723008310679, -0.0017605754633195254, -0.0017357786258079828, -0.00171098178829644, -0.0016861849507848975, -0.0016613881132733549, -0.001636591275761812, -0.0016117944382502696, -0.0015869976007387271, -0.0015622007632271845, -0.0015374039257156416, -0.0015126070882040992, -0.0014878102506925568, -0.001463013413181014, -0.0014382165756694713, -0.0014134197381579288, -0.0013886229006463862, -0.0013638260631348433, -0.001339029225623301, -0.0013142323881117585, -0.0012894355506002156, -0.001264638713088673, -0.0012398418755771305, -0.001215045038065588, -0.001190248200554045, -0.0011654513630425026, -0.0011406545255309602, -0.0011158576880194173, -0.0010910608505078747, -0.0010662640129963322, -0.0010414671754847898, -0.001016670337973247, -0.0009918735004617043, -0.0009670766629501619, -0.0009422798254386189, -0.0009174829879270765, -0.0008926861504155339, -0.0008678893129039914, -0.0008430924753924485, -0.000818295637880906, -0.0007934988003693636, -0.000768701962857821, -0.0007439051253462782, -0.0007191082878347356, -0.0006943114503231931, -0.0006695146128116502, -0.0006447177753001078, -0.0006199209377885653, -0.0005951241002770227, -0.0005703272627654799, -0.0005455304252539373, -0.0005207335877423949, -0.0004959367502308519, -0.00047113991271930945, -0.00044634307520776697, -0.0004215462376962245, -0.00039674940018468157, -0.00037195256267313946, -0.00034715572516159655, -0.0003223588876500537, -0.0002975620501385116, -0.00027276521262696867, -0.0002479683751154258, -0.00022317153760388367, -0.00019837470009234078, -0.00017357786258079792, -0.0001487810250692558, -0.0001239841875577129, -9.918735004617003e-05, -7.43905125346279e-05, -4.959367502308501e-05, -2.4796837511542876e-05, 0.0, 2.4796837511542876e-05, 4.959367502308501e-05, 7.43905125346279e-05, 9.918735004617077e-05, 0.0001239841875577129, 0.0001487810250692558, 0.00017357786258079865, 0.00019837470009234078, 0.00022317153760388367, 0.0002479683751154258, 0.00027276521262696867, 0.0002975620501385116, 0.0003223588876500537, 0.00034715572516159655, 0.00037195256267313946, 0.00039674940018468157, 0.0004215462376962245, 0.00044634307520776735, 0.00047113991271930945, 0.0004959367502308524, 0.0005207335877423952, 0.0005455304252539373, 0.0005703272627654802, 0.0005951241002770224, 0.0006199209377885653, 0.0006447177753001081, 0.0006695146128116502, 0.0006943114503231931, 0.0007191082878347361, 0.0007439051253462782, 0.000768701962857821, 0.0007934988003693639, 0.000818295637880906, 0.000843092475392449, 0.0008678893129039918, 0.0008926861504155339, 0.0009174829879270768, 0.0009422798254386189, 0.0009670766629501619, 0.0009918735004617047, 0.001016670337973247, 0.0010414671754847898, 0.0010662640129963327, 0.0010910608505078747, 0.0011158576880194175, 0.0011406545255309604, 0.0011654513630425026, 0.0011902482005540455, 0.0012150450380655877, 0.0012398418755771305, 0.0012646387130886734, 0.0012894355506002156, 0.0013142323881117585, 0.0013390292256233013, 0.0013638260631348433, 0.0013886229006463862, 0.001413419738157929, 0.0014382165756694713, 0.0014630134131810141, 0.001487810250692557, 0.0015126070882040992, 0.001537403925715642, 0.0015622007632271843, 0.0015869976007387271, 0.00161179443825027, 0.001636591275761812, 0.0016613881132733549, 0.001686184950784898, 0.00171098178829644, 0.0017357786258079828, 0.0017605754633195257, 0.0017853723008310679, 0.0018101691383426107, 0.0018349659758541536, 0.0018597628133656958, 0.0018845596508772387, 0.0019093564883887809, 0.0019341533259003237, 0.0019589501634118666, 0.0019837470009234086, 0.0020085438384349515, 0.0020333406759464943, 0.0020581375134580368, 0.0020829343509695796, 0.0021077311884811225, 0.0021325280259926645, 0.0021573248635042073, 0.0021821217010157493, 0.002206918538527292, 0.002231715376038835, 0.0022565122135503775, 0.0022813090510619203, 0.002306105888573463, 0.002330902726085005, 0.002355699563596548, 0.002380496401108091, 0.002405293238619633, 0.002430090076131176, 0.002454886913642719, 0.002479683751154261, 0.002504480588665804, 0.002529277426177346, 0.002554074263688889, 0.0025788711012004317, 0.002603667938711974, 0.002628464776223517, 0.00265326161373506, 0.002678058451246602, 0.0027028552887581447, 0.0027276521262696875, 0.0027524489637812295, 0.0027772458012927724, 0.002802042638804315, 0.0028268394763158577, 0.0028516363138274005, 0.0028764331513389425, 0.0029012299888504854, 0.0029260268263620283, 0.0029508236638735707, 0.0029756205013851127, 0.0030004173388966564, 0.0030252141764081984, 0.0030500110139197404, 0.003074807851431284, 0.003099604688942826, 0.0031244015264543686, 0.003149198363965912, 0.0031739952014774543, 0.0031987920389889963, 0.00322358887650054, 0.003248385714012082, 0.003273182551523624, 0.0032979793890351677, 0.0033227762265467097, 0.003347573064058252, 0.003372369901569796, 0.003397166739081338, 0.00342196357659288, 0.0034467604141044236, 0.0034715572516159656, 0.003496354089127508, 0.0035211509266390513, 0.0035459477641505937, 0.0035707446016621357, 0.0035955414391736777, 0.0036203382766852215, 0.0036451351141967635, 0.003669931951708306, 0.003694728789219849, 0.0037195256267313916, 0.0037443224642429336, 0.0037691193017544773, 0.0037939161392660193, 0.0038187129767775618, 0.003843509814289105, 0.0038683066518006475, 0.0038931034893121895, 0.003917900326823733, 0.003942697164335275, 0.003967494001846817, 0.003992290839358361, 0.004017087676869903, 0.004041884514381445, 0.004066681351892989, 0.004091478189404531, 0.0041162750269160735, 0.004141071864427617, 0.004165868701939159, 0.004190665539450701, 0.004215462376962243, 0.0042402592144737865, 0.004265056051985329, 0.004289852889496871, 0.004314649727008415, 0.004339446564519957, 0.004364243402031499, 0.004389040239543043, 0.004413837077054584, 0.004438633914566127, 0.00446343075207767, 0.0044882275895892125, 0.004513024427100755, 0.004537821264612298, 0.004562618102123841, 0.004587414939635382, 0.004612211777146926, 0.004637008614658468, 0.00466180545217001, 0.004686602289681554, 0.004711399127193096, 0.0047361959647046386, 0.004760992802216182, 0.004785789639727724, 0.004810586477239266, 0.00483538331475081, 0.004860180152262352, 0.004884976989773894, 0.004909773827285436, 0.00493457066479698, 0.004959367502308522, 0.004984164339820065, 0.005008961177331608, 0.00503375801484315, 0.005058554852354692, 0.005083351689866236, 0.005108148527377778, 0.00513294536488932, 0.005157742202400863, 0.005182539039912406, 0.005207335877423948, 0.0052321327149354915, 0.005256929552447034, 0.0052817263899585755, 0.00530652322747012, 0.005331320064981661, 0.005356116902493204, 0.005380913740004747, 0.005405710577516289, 0.005430507415027832, 0.005455304252539375, 0.0054801010900509175, 0.005504897927562459, 0.0055296947650740015, 0.005554491602585545, 0.005579288440097087, 0.00560408527760863, 0.005628882115120173, 0.005653678952631715, 0.005678475790143257, 0.005703272627654801, 0.005728069465166343, 0.005752866302677885, 0.005777663140189429, 0.005802459977700971, 0.005827256815212513, 0.0058520536527240565, 0.005876850490235599, 0.005901647327747141, 0.005926444165258685, 0.005951241002770227, 0.005976037840281769, 0.006000834677793313, 0.006025631515304854, 0.006050428352816397, 0.00607522519032794, 0.0061000220278394825, 0.006124818865351025, 0.0061496157028625665, 0.006174412540374111, 0.006199209377885652, 0.006224006215397195, 0.006248803052908738, 0.00627359989042028, 0.006298396727931823, 0.006323193565443366, 0.0063479904029549086, 0.00637278724046645, 0.006397584077977994, 0.006422380915489536, 0.006447177753001078, 0.006471974590512622, 0.006496771428024164, 0.006521568265535706, 0.00654636510304725, 0.006571161940558792, 0.006595958778070334, 0.006620755615581878, 0.0066455524530934194, 0.006670349290604962, 0.006695146128116506, 0.006719942965628048, 0.00674473980313959, 0.0067695366406511324, 0.006794333478162676, 0.006819130315674218, 0.00684392715318576, 0.006868723990697304, 0.0068935208282088455, 0.006918317665720388, 0.006943114503231931, 0.006967911340743474, 0.006992708178255016, 0.007017505015766559, 0.007042301853278102, 0.007067098690789643, 0.0070918955283011875, 0.007116692365812729, 0.0071414892033242715, 0.007166286040835815, 0.007191082878347357, 0.0072158797158589, 0.007240676553370443, 0.007265473390881985, 0.007290270228393527, 0.007315067065905071, 0.007339863903416613, 0.007364660740928155, 0.007389457578439698, 0.007414254415951241, 0.007439051253462783, 0.007463848090974325, 0.007488644928485869, 0.0075134417659974105, 0.007538238603508953, 0.007563035441020497, 0.007587832278532039, 0.007612629116043581, 0.007637425953555124, 0.007662222791066667, 0.007687019628578209, 0.0077118164660897525, 0.007736613303601295, 0.0077614101411128365, 0.007786206978624381, 0.007811003816135922, 0.007835800653647465, 0.007860597491159008, 0.00788539432867055, 0.007910191166182093, 0.007934988003693636, 0.007959784841205178, 0.007984581678716721, 0.008009378516228264, 0.008034175353739806, 0.00805897219125135, 0.00808376902876289, 0.008108565866274434, 0.008133362703785976, 0.008158159541297519, 0.008182956378809062, 0.008207753216320604, 0.008232550053832147, 0.00825734689134369, 0.008282143728855232, 0.008306940566366773, 0.008331737403878318, 0.00835653424138986, 0.008381331078901402, 0.008406127916412945, 0.008430924753924488, 0.00845572159143603, 0.008480518428947573, 0.008505315266459116, 0.008530112103970658, 0.008554908941482201, 0.008579705778993743, 0.008604502616505286, 0.00862929945401683, 0.008654096291528371, 0.008678893129039914, 0.008703689966551456, 0.008728486804062999, 0.00875328364157454, 0.008778080479086084, 0.008802877316597627, 0.008827674154109169, 0.008852470991620712, 0.008877267829132255, 0.008902064666643797, 0.008926861504155338, 0.008951658341666884, 0.008976455179178425, 0.009001252016689967, 0.009026048854201512, 0.009050845691713053, 0.009075642529224595, 0.009100439366736138, 0.009125236204247681, 0.009150033041759223, 0.009174829879270766, 0.00919962671678231, 0.009224423554293851, 0.009249220391805394, 0.009274017229316936, 0.00929881406682848, 0.00932361090434002, 0.009348407741851564, 0.009373204579363107, 0.009398001416874649, 0.009422798254386192, 0.009447595091897734, 0.009472391929409277, 0.00949718876692082, 0.009521985604432362, 0.009546782441943905, 0.009571579279455449, 0.00959637611696699, 0.009621172954478532, 0.009645969791990075, 0.009670766629501617, 0.009695563467013162, 0.009720360304524703, 0.009745157142036246, 0.009769953979547788, 0.00979475081705933, 0.009819547654570873, 0.009844344492082418, 0.00986914132959396, 0.009893938167105503, 0.009918735004617044, 0.009943531842128586, 0.00996832867964013, 0.009993125517151674, 0.010017922354663216, 0.010042719192174757, 0.0100675160296863, 0.010092312867197842, 0.010117109704709384, 0.010141906542220929, 0.010166703379732472, 0.010191500217244014, 0.010216297054755555, 0.010241093892267098, 0.01026589072977864, 0.010290687567290182, 0.010315484404801727, 0.01034028124231327, 0.010365078079824811, 0.010389874917336353, 0.010414671754847896, 0.010439468592359438, 0.010464265429870983, 0.010489062267382524, 0.010513859104894068, 0.01053865594240561, 0.010563452779917151, 0.010588249617428694, 0.01061304645494024, 0.01063784329245178, 0.010662640129963322, 0.010687436967474866, 0.010712233804986407, 0.010737030642497949, 0.010761827480009494, 0.010786624317521037, 0.010811421155032579, 0.01083621799254412, 0.010861014830055664, 0.010885811667567205, 0.010910608505078747, 0.010935405342590292, 0.010960202180101835, 0.010984999017613377, 0.011009795855124918, 0.011034592692636461, 0.011059389530148003, 0.011084186367659548, 0.01110898320517109, 0.011133780042682633, 0.011158576880194174, 0.011183373717705716, 0.01120817055521726, 0.011232967392728804, 0.011257764230240346, 0.011282561067751887, 0.01130735790526343, 0.011332154742774972, 0.011356951580286514, 0.011381748417798059, 0.011406545255309602, 0.011431342092821144, 0.011456138930332685, 0.011480935767844229, 0.01150573260535577, 0.011530529442867312, 0.011555326280378858, 0.0115801231178904, 0.011604919955401942, 0.011629716792913485, 0.011654513630425026, 0.011679310467936568, 0.011704107305448113, 0.011728904142959656, 0.011753700980471198, 0.01177849781798274, 0.011803294655494283, 0.011828091493005824, 0.01185288833051737, 0.011877685168028911, 0.011902482005540454, 0.011927278843051996, 0.011952075680563537, 0.01197687251807508, 0.012001669355586626, 0.012026466193098167, 0.012051263030609709, 0.012076059868121252, 0.012100856705632794, 0.012125653543144335, 0.012150450380655878, 0.012175247218167424, 0.012200044055678965, 0.012224840893190507, 0.01224963773070205, 0.012274434568213591, 0.012299231405725133, 0.012324028243236678, 0.012348825080748221, 0.012373621918259763, 0.012398418755771305, 0.012423215593282848, 0.01244801243079439, 0.012472809268305934, 0.012497606105817476, 0.01252240294332902, 0.01254719978084056, 0.012571996618352102, 0.012596793455863646, 0.01262159029337519, 0.012646387130886732, 0.012671183968398274, 0.012695980805909817, 0.012720777643421359, 0.0127455744809329, 0.012770371318444445, 0.012795168155955989, 0.01281996499346753, 0.012844761830979072, 0.012869558668490615, 0.012894355506002157, 0.012919152343513698, 0.012943949181025243, 0.012968746018536786, 0.012993542856048328, 0.01301833969355987, 0.013043136531071413, 0.013067933368582954, 0.0130927302060945, 0.013117527043606041, 0.013142323881117584, 0.013167120718629126, 0.013191917556140667, 0.01321671439365221, 0.013241511231163756, 0.013266308068675297, 0.013291104906186839, 0.013315901743698382, 0.013340698581209924, 0.013365495418721465, 0.013390292256233012, 0.013415089093744554, 0.013439885931256095, 0.013464682768767638, 0.01348947960627918, 0.013514276443790722, 0.013539073281302265, 0.01356387011881381, 0.013588666956325351, 0.013613463793836893, 0.013638260631348436, 0.013663057468859978, 0.01368785430637152, 0.013712651143883064, 0.013737447981394608, 0.01376224481890615, 0.013787041656417691, 0.013811838493929234, 0.013836635331440776, 0.01386143216895232, 0.013886229006463862, 0.013911025843975406, 0.013935822681486947, 0.013960619518998489, 0.013985416356510032, 0.014010213194021577, 0.014035010031533119, 0.01405980686904466, 0.014084603706556204, 0.014109400544067745, 0.014134197381579287, 0.01415899421909083, 0.014183791056602375, 0.014208587894113917, 0.014233384731625458, 0.014258181569137001, 0.014282978406648543, 0.014307775244160085, 0.01433257208167163, 0.014357368919183173, 0.014382165756694714, 0.014406962594206256, 0.0144317594317178, 0.01445655626922934, 0.014481353106740886, 0.014506149944252427, 0.01453094678176397, 0.014555743619275512, 0.014580540456787054, 0.014605337294298597, 0.014630134131810142, 0.014654930969321684, 0.014679727806833225, 0.014704524644344769, 0.01472932148185631, 0.014754118319367852, 0.014778915156879395, 0.01480371199439094, 0.014828508831902482, 0.014853305669414023, 0.014878102506925566, 0.014902899344437108, 0.01492769618194865, 0.014952493019460195, 0.014977289856971738, 0.01500208669448328, 0.015026883531994821, 0.015051680369506364, 0.015076477207017906, 0.015101274044529451, 0.015126070882040994, 0.015150867719552536, 0.015175664557064077, 0.01520046139457562, 0.015225258232087162, 0.015250055069598707, 0.015274851907110249, 0.015299648744621792, 0.015324445582133334, 0.015349242419644875, 0.015374039257156418, 0.01539883609466796, 0.015423632932179505, 0.015448429769691047, 0.01547322660720259, 0.015498023444714131, 0.015522820282225673, 0.015547617119737216, 0.015572413957248761, 0.015597210794760303, 0.015622007632271845, 0.015646804469783386, 0.01567160130729493, 0.015696398144806473, 0.015721194982318016, 0.01574599181982956, 0.0157707886573411, 0.015795585494852642, 0.015820382332364186, 0.015845179169875726, 0.015869976007387272, 0.015894772844898816, 0.015919569682410355, 0.0159443665199219, 0.015969163357433442, 0.015993960194944982, 0.016018757032456525, 0.016043553869968072, 0.01606835070747961, 0.016093147544991155, 0.0161179443825027, 0.016142741220014238, 0.01616753805752578, 0.016192334895037325, 0.016217131732548868, 0.01624192857006041, 0.01626672540757195, 0.016291522245083494, 0.016316319082595038, 0.01634111592010658, 0.016365912757618124, 0.016390709595129668, 0.016415506432641207, 0.01644030327015275, 0.016465100107664294, 0.016489896945175837, 0.01651469378268738, 0.01653949062019892, 0.016564287457710464, 0.016589084295222007, 0.016613881132733547, 0.01663867797024509, 0.016663474807756637, 0.016688271645268177, 0.01671306848277972, 0.016737865320291263, 0.016762662157802803, 0.016787458995314346, 0.01681225583282589, 0.016837052670337433, 0.016861849507848976, 0.016886646345360516, 0.01691144318287206, 0.016936240020383603, 0.016961036857895146, 0.01698583369540669, 0.017010630532918233, 0.017035427370429772, 0.017060224207941316, 0.01708502104545286, 0.017109817882964402, 0.017134614720475946, 0.017159411557987485, 0.01718420839549903, 0.017209005233010572, 0.017233802070522112, 0.017258598908033655, 0.017283395745545202, 0.017308192583056742, 0.017332989420568285, 0.01735778625807983, 0.017382583095591368, 0.01740737993310291, 0.017432176770614455, 0.017456973608125998, 0.01748177044563754, 0.01750656728314908, 0.017531364120660625, 0.017556160958172168, 0.01758095779568371, 0.017605754633195254, 0.017630551470706798, 0.017655348308218338, 0.01768014514572988, 0.017704941983241424, 0.017729738820752967, 0.01775453565826451, 0.01777933249577605, 0.017804129333287594, 0.017828926170799137, 0.017853723008310677, 0.01787851984582222, 0.017903316683333767, 0.017928113520845307, 0.01795291035835685, 0.017977707195868393, 0.018002504033379933, 0.018027300870891477, 0.018052097708403023, 0.018076894545914563, 0.018101691383426106, 0.01812648822093765, 0.01815128505844919, 0.018176081895960733, 0.018200878733472276, 0.01822567557098382, 0.018250472408495363, 0.018275269246006903, 0.018300066083518446, 0.01832486292102999, 0.018349659758541532, 0.018374456596053076, 0.01839925343356462, 0.01842405027107616, 0.018448847108587702, 0.018473643946099245, 0.01849844078361079, 0.018523237621122332, 0.018548034458633872, 0.018572831296145415, 0.01859762813365696, 0.0186224249711685, 0.01864722180868004, 0.01867201864619159, 0.018696815483703128, 0.01872161232121467, 0.018746409158726215, 0.018771205996237755, 0.018796002833749298, 0.01882079967126084, 0.018845596508772385, 0.018870393346283928, 0.018895190183795468, 0.01891998702130701, 0.018944783858818554, 0.018969580696330098, 0.01899437753384164, 0.019019174371353184, 0.019043971208864724, 0.019068768046376267, 0.01909356488388781, 0.019118361721399354, 0.019143158558910897, 0.019167955396422437, 0.01919275223393398, 0.019217549071445524, 0.019242345908957063, 0.019267142746468607, 0.019291939583980153, 0.019316736421491693, 0.019341533259003237, 0.01936633009651478, 0.01939112693402632, 0.019415923771537863, 0.019440720609049406, 0.01946551744656095, 0.019490314284072493, 0.019515111121584033, 0.019539907959095576, 0.01956470479660712, 0.019589501634118663, 0.019614298471630206, 0.01963909530914175, 0.01966389214665329, 0.019688688984164832, 0.019713485821676376, 0.01973828265918792, 0.019763079496699462, 0.019787876334211005, 0.019812673171722545, 0.01983747000923409, 0.019862266846745632, 0.01988706368425717, 0.01991186052176872, 0.01993665735928026, 0.0199614541967918, 0.019986251034303345, 0.020011047871814885, 0.020035844709326428, 0.020060641546837975, 0.020085438384349515, 0.020110235221861058, 0.0201350320593726, 0.02015982889688414, 0.020184625734395684, 0.020209422571907228, 0.02023421940941877, 0.020259016246930314, 0.020283813084441854, 0.020308609921953397, 0.02033340675946494, 0.020358203596976484, 0.020383000434488027, 0.02040779727199957, 0.02043259410951111, 0.020457390947022654, 0.020482187784534197, 0.020506984622045737, 0.020531781459557284, 0.020556578297068823, 0.020581375134580367, 0.02060617197209191, 0.02063096880960345, 0.020655765647114993, 0.02068056248462654, 0.02070535932213808, 0.020730156159649623, 0.020754952997161166, 0.020779749834672706, 0.02080454667218425, 0.020829343509695793, 0.020854140347207336, 0.02087893718471888, 0.02090373402223042, 0.020928530859741962, 0.020953327697253506, 0.02097812453476505, 0.021002921372276592, 0.021027718209788136, 0.021052515047299675, 0.02107731188481122, 0.021102108722322762, 0.021126905559834302, 0.02115170239734585, 0.02117649923485739, 0.02120129607236893, 0.021226092909880475, 0.021250889747392015, 0.021275686584903558, 0.021300483422415105, 0.021325280259926645, 0.021350077097438188, 0.02137487393494973, 0.02139967077246127, 0.021424467609972814, 0.02144926444748436, 0.0214740612849959, 0.021498858122507444, 0.021523654960018988, 0.021548451797530527, 0.02157324863504207, 0.021598045472553614, 0.021622842310065157, 0.0216476391475767, 0.02167243598508824, 0.021697232822599784, 0.021722029660111327, 0.021746826497622867, 0.021771623335134414, 0.021796420172645957, 0.021821217010157497, 0.02184601384766904, 0.021870810685180583, 0.021895607522692123, 0.02192040436020367, 0.02194520119771521, 0.021969998035226753, 0.021994794872738296, 0.022019591710249836, 0.02204438854776138, 0.022069185385272926, 0.022093982222784466, 0.02211877906029601, 0.022143575897807553, 0.022168372735319092, 0.022193169572830636, 0.02221796641034218, 0.022242763247853722, 0.022267560085365266, 0.022292356922876806, 0.02231715376038835, 0.022341950597899892, 0.022366747435411432, 0.02239154427292298, 0.022416341110434522, 0.022441137947946062, 0.022465934785457605, 0.02249073162296915, 0.022515528460480688, 0.022540325297992235, 0.022565122135503775, 0.022589918973015318, 0.02261471581052686, 0.0226395126480384, 0.022664309485549945, 0.02268910632306149, 0.02271390316057303, 0.022738699998084574, 0.022763496835596118, 0.022788293673107658, 0.0228130905106192, 0.022837887348130744, 0.022862684185642287, 0.022887481023153827, 0.02291227786066537, 0.022937074698176917, 0.022961871535688457, 0.0229866683732, 0.02301146521071154, 0.023036262048223087, 0.023061058885734623, 0.02308585572324617, 0.023110652560757717, 0.023135449398269253, 0.0231602462357808, 0.02318504307329234, 0.023209839910803883, 0.02323463674831543, 0.02325943358582697, 0.023284230423338513, 0.023309027260850053, 0.023333824098361596, 0.023358620935873136, 0.023383417773384683, 0.023408214610896226, 0.023433011448407766, 0.023457808285919313, 0.02348260512343085, 0.023507401960942396, 0.02353219879845394, 0.02355699563596548, 0.023581792473477026, 0.023606589310988565, 0.02363138614850011, 0.02365618298601165, 0.023680979823523192, 0.02370577666103474, 0.02373057349854628, 0.023755370336057822, 0.02378016717356936, 0.02380496401108091, 0.023829760848592445, 0.02385455768610399, 0.023879354523615535, 0.023904151361127075, 0.02392894819863862, 0.02395374503615016, 0.023978541873661705, 0.02400333871117325, 0.024028135548684788, 0.024052932386196334, 0.024077729223707874, 0.024102526061219418, 0.024127322898730957, 0.024152119736242504, 0.024176916573754047, 0.024201713411265587, 0.02422651024877713, 0.02425130708628867, 0.024276103923800217, 0.024300900761311757, 0.0243256975988233, 0.024350494436334847, 0.024375291273846383, 0.02440008811135793, 0.02442488494886947, 0.024449681786381013, 0.02447447862389256, 0.0244992754614041, 0.024524072298915643, 0.024548869136427183, 0.024573665973938726, 0.024598462811450266, 0.024623259648961813, 0.024648056486473356, 0.024672853323984896, 0.024697650161496443, 0.02472244699900798, 0.024747243836519526, 0.02477204067403107, 0.02479683751154261, 0.024821634349054156, 0.024846431186565696, 0.02487122802407724, 0.02489602486158878, 0.024920821699100322, 0.02494561853661187, 0.02497041537412341, 0.024995212211634952, 0.025020009049146492, 0.02504480588665804, 0.025069602724169575, 0.02509439956168112, 0.02511919639919267, 0.025143993236704205, 0.02516879007421575, 0.02519358691172729, 0.025218383749238835, 0.02524318058675038, 0.02526797742426192, 0.025292774261773465, 0.025317571099285004, 0.025342367936796548, 0.025367164774308087, 0.025391961611819634, 0.025416758449331178, 0.025441555286842717, 0.025466352124354264, 0.0254911489618658, 0.025515945799377347, 0.025540742636888887, 0.02556553947440043, 0.025590336311911977, 0.025615133149423517, 0.02563992998693506, 0.0256647268244466, 0.025689523661958143, 0.02571432049946969, 0.02573911733698123, 0.025763914174492773, 0.025788711012004313, 0.02581350784951586, 0.025838304687027396, 0.025863101524538943, 0.025887898362050486, 0.025912695199562026, 0.025937492037073573, 0.025962288874585113, 0.025987085712096656, 0.026011882549608203, 0.02603667938711974, 0.026061476224631286, 0.026086273062142826, 0.02611106989965437, 0.02613586673716591, 0.026160663574677456, 0.026185460412189, 0.02621025724970054, 0.026235054087212082, 0.026259850924723622, 0.02628464776223517, 0.02630944459974671, 0.02633424143725825, 0.0263590382747698, 0.026383835112281335, 0.02640863194979288, 0.02643342878730442, 0.026458225624815965, 0.02648302246232751, 0.02650781929983905, 0.026532616137350595, 0.026557412974862134, 0.026582209812373678, 0.026607006649885218, 0.026631803487396764, 0.026656600324908308, 0.026681397162419847, 0.026706193999931394, 0.02673099083744293, 0.026755787674954477, 0.026780584512466017, 0.02680538134997756, 0.026830178187489107, 0.026854975025000647, 0.02687977186251219, 0.02690456870002373, 0.026929365537535277, 0.02695416237504682, 0.02697895921255836, 0.027003756050069903, 0.027028552887581443, 0.02705334972509299, 0.02707814656260453, 0.027102943400116073, 0.02712774023762762, 0.027152537075139156, 0.027177333912650703, 0.027202130750162243, 0.027226927587673786, 0.027251724425185333, 0.027276521262696873, 0.027301318100208416, 0.027326114937719956, 0.0273509117752315, 0.02737570861274304, 0.027400505450254586, 0.02742530228776613, 0.02745009912527767, 0.027474895962789216, 0.027499692800300752, 0.0275244896378123, 0.02754928647532384, 0.027574083312835382, 0.02759888015034693, 0.02762367698785847, 0.02764847382537001, 0.02767327066288155, 0.027698067500393095, 0.02772286433790464, 0.02774766117541618, 0.027772458012927725, 0.027797254850439265, 0.02782205168795081, 0.027846848525462348, 0.027871645362973894, 0.027896442200485438, 0.027921239037996978, 0.027946035875508524, 0.027970832713020064, 0.027995629550531607, 0.028020426388043147, 0.02804522322555469, 0.028070020063066237, 0.028094816900577777, 0.02811961373808932, 0.02814441057560086, 0.028169207413112407, 0.02819400425062395, 0.02821880108813549, 0.028243597925647033, 0.028268394763158573, 0.02829319160067012, 0.02831798843818166, 0.028342785275693203, 0.02836758211320475, 0.028392378950716286, 0.028417175788227833, 0.028441972625739373, 0.028466769463250916, 0.028491566300762463, 0.028516363138274003, 0.028541159975785546, 0.028565956813297086, 0.028590753650808633, 0.02861555048832017, 0.028640347325831716, 0.02866514416334326, 0.0286899410008548, 0.028714737838366346, 0.028739534675877886, 0.02876433151338943, 0.02878912835090097, 0.028813925188412512, 0.02883872202592406, 0.0288635188634356, 0.028888315700947142, 0.02891311253845868, 0.02893790937597023, 0.02896270621348177, 0.02898750305099331, 0.029012299888504855, 0.029037096726016395, 0.02906189356352794, 0.02908669040103948, 0.029111487238551025, 0.02913628407606257, 0.029161080913574108, 0.029185877751085654, 0.029210674588597194, 0.029235471426108738, 0.029260268263620284, 0.029285065101131824, 0.029309861938643367, 0.029334658776154907, 0.02935945561366645, 0.02938425245117799, 0.029409049288689537, 0.02943384612620108, 0.02945864296371262, 0.029483439801224167, 0.029508236638735703, 0.02953303347624725, 0.02955783031375879, 0.029582627151270333, 0.02960742398878188, 0.02963222082629342, 0.029657017663804963, 0.029681814501316503, 0.029706611338828046, 0.029731408176339593, 0.029756205013851133, 0.029781001851362676, 0.029805798688874216, 0.029830595526385763, 0.0298553923638973, 0.029880189201408846, 0.02990498603892039, 0.02992978287643193, 0.029954579713943476, 0.029979376551455016, 0.03000417338896656, 0.0300289702264781, 0.030053767063989642, 0.03007856390150119, 0.03010336073901273, 0.030128157576524272, 0.030152954414035812, 0.03017775125154736, 0.030202548089058902, 0.03022734492657044, 0.03025214176408199, 0.030276938601593525, 0.03030173543910507, 0.03032653227661661, 0.030351329114128155, 0.0303761259516397, 0.03040092278915124, 0.030425719626662785, 0.030450516464174324, 0.030475313301685868, 0.030500110139197414, 0.030524906976708954, 0.030549703814220498, 0.030574500651732037, 0.030599297489243584, 0.03062409432675512, 0.030648891164266667, 0.03067368800177821, 0.03069848483928975, 0.030723281676801297, 0.030748078514312837, 0.03077287535182438, 0.03079767218933592, 0.030822469026847463, 0.03084726586435901, 0.03087206270187055, 0.030896859539382093, 0.030921656376893633, 0.03094645321440518, 0.030971250051916723, 0.030996046889428263, 0.031020843726939806, 0.031045640564451346, 0.031070437401962893, 0.031095234239474433, 0.031120031076985976, 0.031144827914497523, 0.03116962475200906, 0.031194421589520606, 0.031219218427032146, 0.03124401526454369, 0.03126881210205523, 0.03129360893956677, 0.03131840577707832, 0.03134320261458986, 0.031367999452101405, 0.031392796289612945, 0.031417593127124485, 0.03144238996463603, 0.03146718680214757, 0.03149198363965912, 0.03151678047717066, 0.0315415773146822, 0.03156637415219374, 0.031591170989705285, 0.03161596782721683, 0.03164076466472837, 0.03166556150223992, 0.03169035833975145, 0.031715155177263, 0.031739952014774545, 0.031764748852286084, 0.03178954568979763, 0.03181434252730917, 0.03183913936482071, 0.03186393620233225, 0.0318887330398438, 0.031913529877355344, 0.031938326714866884, 0.031963123552378424, 0.031987920389889964, 0.03201271722740151, 0.03203751406491305, 0.0320623109024246, 0.032087107739936144, 0.03211190457744768, 0.03213670141495922, 0.03216149825247076, 0.03218629508998231, 0.03221109192749386, 0.0322358887650054, 0.032260685602516936, 0.032285482440028476, 0.03231027927754002, 0.03233507611505156, 0.03235987295256311, 0.03238466979007465, 0.03240946662758619, 0.032434263465097736, 0.032459060302609276, 0.03248385714012082, 0.03250865397763236, 0.0325334508151439, 0.03255824765265545, 0.03258304449016699, 0.032607841327678536, 0.032632638165190075, 0.032657435002701615, 0.03268223184021316, 0.0327070286777247, 0.03273182551523625, 0.03275662235274779, 0.032781419190259335, 0.03280621602777087, 0.032831012865282415, 0.03285580970279396, 0.0328806065403055, 0.03290540337781705, 0.03293020021532859, 0.03295499705284013, 0.032979793890351675, 0.033004590727863214, 0.03302938756537476, 0.0330541844028863, 0.03307898124039784, 0.03310377807790938, 0.03312857491542093, 0.033153371752932474, 0.033178168590444014, 0.033202965427955554, 0.033227762265467094, 0.03325255910297864, 0.03327735594049018, 0.03330215277800173, 0.033326949615513274, 0.03335174645302481, 0.033376543290536353, 0.03340134012804789, 0.03342613696555944, 0.03345093380307099, 0.03347573064058253, 0.033500527478094067, 0.033525324315605606, 0.03355012115311715, 0.03357491799062869, 0.03359971482814024, 0.03362451166565178, 0.03364930850316332, 0.033674105340674866, 0.033698902178186406, 0.03372369901569795, 0.03374849585320949, 0.03377329269072103, 0.03379808952823258, 0.03382288636574412, 0.033847683203255666, 0.033872480040767206, 0.03389727687827875, 0.03392207371579029, 0.03394687055330183, 0.03397166739081338, 0.03399646422832492, 0.034021261065836465, 0.034046057903348005, 0.034070854740859545, 0.03409565157837109, 0.03412044841588263, 0.03414524525339418, 0.03417004209090572, 0.03419483892841726, 0.034219635765928805, 0.034244432603440345, 0.03426922944095189, 0.03429402627846343, 0.03431882311597497, 0.03434361995348651, 0.03436841679099806, 0.034393213628509604, 0.034418010466021144, 0.03444280730353269, 0.034467604141044224, 0.03449240097855577, 0.03451719781606731, 0.03454199465357886, 0.034566791491090404, 0.034591588328601944, 0.034616385166113484, 0.03464118200362502, 0.03466597884113657, 0.03469077567864812, 0.03471557251615966, 0.0347403693536712, 0.034765166191182736, 0.03478996302869428, 0.03481475986620582, 0.03483955670371737, 0.03486435354122891, 0.03488915037874045, 0.034913947216251996, 0.034938744053763536, 0.03496354089127508, 0.03498833772878663, 0.03501313456629816, 0.03503793140380971, 0.03506272824132125, 0.035087525078832796, 0.035112321916344336, 0.03513711875385588, 0.03516191559136742, 0.03518671242887896, 0.03521150926639051, 0.03523630610390205, 0.035261102941413595, 0.035285899778925135, 0.035310696616436675, 0.03533549345394822, 0.03536029029145976, 0.03538508712897131, 0.03540988396648285, 0.03543468080399439, 0.035459477641505935, 0.035484274479017475, 0.03550907131652902, 0.03553386815404056, 0.0355586649915521, 0.03558346182906364, 0.03560825866657519, 0.035633055504086734, 0.035657852341598274, 0.03568264917910982, 0.035707446016621354, 0.0357322428541329, 0.03575703969164444, 0.03578183652915599, 0.035806633366667534, 0.035831430204179074, 0.035856227041690614, 0.035881023879202154, 0.0359058207167137, 0.03593061755422525, 0.03595541439173679, 0.03598021122924833, 0.03600500806675987, 0.03602980490427141, 0.03605460174178295, 0.0360793985792945, 0.03610419541680605, 0.03612899225431758, 0.036153789091829126, 0.036178585929340666, 0.03620338276685221, 0.03622817960436376, 0.0362529764418753, 0.03627777327938684, 0.03630257011689838, 0.036327366954409926, 0.036352163791921466, 0.03637696062943301, 0.03640175746694455, 0.03642655430445609, 0.03645135114196764, 0.03647614797947918, 0.036500944816990726, 0.036525741654502265, 0.036550538492013805, 0.03657533532952535, 0.03660013216703689, 0.03662492900454844, 0.03664972584205998, 0.03667452267957152, 0.036699319517083065, 0.036724116354594605, 0.03674891319210615, 0.03677371002961769, 0.03679850686712924, 0.03682330370464077, 0.03684810054215232, 0.036872897379663865, 0.036897694217175404, 0.03692249105468695, 0.03694728789219849, 0.03697208472971003, 0.03699688156722157, 0.03702167840473312, 0.037046475242244664, 0.037071272079756204, 0.037096068917267744, 0.037120865754779284, 0.03714566259229083, 0.03717045942980238, 0.03719525626731392, 0.03722005310482546, 0.037244849942337, 0.03726964677984854, 0.03729444361736008, 0.03731924045487163, 0.03734403729238318, 0.03736883412989471, 0.037393630967406256, 0.037418427804917796, 0.03744322464242934, 0.03746802147994089, 0.03749281831745243, 0.03751761515496397, 0.03754241199247551, 0.037567208829987056, 0.037592005667498596, 0.03761680250501014, 0.03764159934252168, 0.03766639618003322, 0.03769119301754477, 0.03771598985505631, 0.037740786692567856, 0.037765583530079395, 0.037790380367590935, 0.03781517720510248, 0.03783997404261402, 0.03786477088012557, 0.03788956771763711, 0.037914364555148655, 0.037939161392660195, 0.037963958230171735, 0.03798875506768328, 0.03801355190519482, 0.03803834874270637, 0.03806314558021791, 0.03808794241772945, 0.038112739255240995, 0.038137536092752534, 0.03816233293026408, 0.03818712976777562, 0.03821192660528716, 0.0382367234427987, 0.03826152028031025, 0.038286317117821794, 0.038311113955333334, 0.038335910792844874, 0.038360707630356414, 0.03838550446786796, 0.03841030130537951, 0.03843509814289105, 0.038459894980402594, 0.03848469181791413, 0.038509488655425674, 0.03853428549293721, 0.03855908233044876, 0.03858387916796031, 0.03860867600547185, 0.038633472842983387, 0.038658269680494926, 0.03868306651800647, 0.03870786335551802, 0.03873266019302956, 0.0387574570305411, 0.03878225386805264, 0.038807050705564186, 0.038831847543075726, 0.03885664438058727, 0.03888144121809881, 0.03890623805561035, 0.0389310348931219, 0.03895583173063344, 0.038980628568144986, 0.039005425405656526, 0.039030222243168065, 0.03905501908067961, 0.03907981591819115, 0.0391046127557027, 0.03912940959321424, 0.039154206430725785, 0.039179003268237325, 0.039203800105748865, 0.03922859694326041, 0.03925339378077195, 0.0392781906182835, 0.03930298745579504, 0.03932778429330658, 0.039352581130818125, 0.039377377968329665, 0.03940217480584121, 0.03942697164335275, 0.03945176848086429, 0.03947656531837583, 0.03950136215588738, 0.039526158993398924, 0.039550955830910464, 0.03957575266842201, 0.039600549505933544, 0.03962534634344509, 0.03965014318095664, 0.03967494001846818, 0.039699736855979724, 0.039724533693491264, 0.039749330531002804, 0.03977412736851434, 0.03979892420602589, 0.03982372104353744, 0.03984851788104898, 0.03987331471856052, 0.039898111556072056, 0.0399229083935836, 0.03994770523109515, 0.03997250206860669, 0.03999729890611823, 0.04002209574362977, 0.040046892581141316, 0.040071689418652856, 0.0400964862561644, 0.04012128309367595, 0.04014607993118748, 0.04017087676869903, 0.04019567360621057, 0.040220470443722116, 0.040245267281233656, 0.0402700641187452, 0.04029486095625674, 0.04031965779376828, 0.04034445463127983, 0.04036925146879137, 0.040394048306302915, 0.040418845143814455, 0.040443641981325995, 0.04046843881883754, 0.04049323565634908, 0.04051803249386063, 0.04054282933137217, 0.04056762616888371, 0.040592423006395255, 0.040617219843906795, 0.04064201668141834, 0.04066681351892988, 0.04069161035644142, 0.04071640719395297, 0.04074120403146451, 0.040766000868976054, 0.040790797706487594, 0.04081559454399914, 0.040840391381510674, 0.04086518821902222, 0.04088998505653377, 0.04091478189404531, 0.040939578731556854, 0.040964375569068394, 0.040989172406579934, 0.041013969244091474, 0.04103876608160302, 0.04106356291911457, 0.04108835975662611, 0.04111315659413765, 0.04113795343164919, 0.04116275026916073, 0.04118754710667228, 0.04121234394418382, 0.04123714078169537, 0.0412619376192069, 0.041286734456718446, 0.041311531294229986, 0.04133632813174153, 0.04136112496925308, 0.04138592180676462, 0.04141071864427616, 0.0414355154817877, 0.041460312319299246, 0.041485109156810786, 0.04150990599432233, 0.04153470283183387, 0.04155949966934541, 0.04158429650685696, 0.0416090933443685, 0.041633890181880046, 0.041658687019391585, 0.041683483856903125, 0.04170828069441467, 0.04173307753192621, 0.04175787436943776, 0.0417826712069493, 0.04180746804446084, 0.041832264881972385, 0.041857061719483925, 0.04188185855699547, 0.04190665539450701, 0.04193145223201856, 0.0419562490695301, 0.04198104590704164, 0.042005842744553185, 0.042030639582064724, 0.04205543641957627, 0.04208023325708781, 0.04210503009459935, 0.0421298269321109, 0.04215462376962244, 0.042179420607133984, 0.042204217444645524, 0.042229014282157064, 0.042253811119668604, 0.04227860795718015, 0.0423034047946917, 0.04232820163220324, 0.04235299846971478, 0.04237779530722632, 0.04240259214473786, 0.04242738898224941, 0.04245218581976095, 0.0424769826572725, 0.04250177949478403, 0.042526576332295576, 0.042551373169807116, 0.04257617000731866, 0.04260096684483021, 0.04262576368234175, 0.04265056051985329, 0.04267535735736483, 0.042700154194876376, 0.042724951032387916, 0.04274974786989946, 0.042774544707411, 0.04279934154492254, 0.04282413838243409, 0.04284893521994563, 0.042873732057457176, 0.04289852889496872, 0.042923325732480255, 0.0429481225699918, 0.04297291940750334, 0.04299771624501489, 0.04302251308252643, 0.043047309920037975, 0.043072106757549515, 0.043096903595061055, 0.0431217004325726, 0.04314649727008414, 0.04317129410759569, 0.04319609094510723, 0.04322088778261877, 0.043245684620130315, 0.043270481457641854, 0.0432952782951534, 0.04332007513266494, 0.04334487197017648, 0.04336966880768803, 0.04339446564519957, 0.043419262482711114, 0.043444059320222654, 0.043468856157734194, 0.043493652995245734, 0.04351844983275728, 0.04354324667026883, 0.04356804350778037, 0.043592840345291914, 0.04361763718280345, 0.043642434020314994, 0.04366723085782654, 0.04369202769533808, 0.04371682453284963, 0.04374162137036117, 0.04376641820787271, 0.043791215045384246, 0.04381601188289579, 0.04384080872040734, 0.04386560555791888, 0.04389040239543042, 0.04391519923294196, 0.043939996070453506, 0.043964792907965046, 0.04398958974547659, 0.04401438658298813, 0.04403918342049967, 0.04406398025801122, 0.04408877709552276, 0.044113573933034306, 0.04413837077054585, 0.044163167608057385, 0.04418796444556893, 0.04421276128308047, 0.04423755812059202, 0.04426235495810356, 0.044287151795615105, 0.044311948633126645, 0.044336745470638185, 0.04436154230814973, 0.04438633914566127, 0.04441113598317282, 0.04443593282068436, 0.0444607296581959, 0.044485526495707445, 0.044510323333218985, 0.04453512017073053, 0.04455991700824207, 0.04458471384575361, 0.04460951068326516, 0.0446343075207767, 0.044659104358288244, 0.044683901195799784, 0.04470869803331133, 0.044733494870822864, 0.04475829170833441, 0.04478308854584596, 0.0448078853833575, 0.044832682220869044, 0.044857479058380584, 0.044882275895892124, 0.04490707273340367, 0.04493186957091521, 0.04495666640842676, 0.0449814632459383, 0.04500626008344984, 0.045031056920961376, 0.04505585375847292, 0.04508065059598447, 0.04510544743349601, 0.04513024427100755, 0.04515504110851909, 0.045179837946030636, 0.045204634783542176, 0.04522943162105372, 0.04525422845856527, 0.0452790252960768, 0.04530382213358835, 0.04532861897109989, 0.045353415808611436, 0.04537821264612298, 0.04540300948363452, 0.04542780632114606, 0.0454526031586576, 0.04547739999616915, 0.04550219683368069, 0.045526993671192235, 0.045551790508703775, 0.045576587346215315, 0.04560138418372686, 0.0456261810212384, 0.04565097785874995, 0.04567577469626149, 0.04570057153377303, 0.045725368371284575, 0.045750165208796115, 0.04577496204630766, 0.0457997588838192, 0.04582455572133074, 0.04584935255884229, 0.04587414939635383, 0.045898946233865374, 0.045923743071376914, 0.04594853990888846, 0.045973336746399994, 0.04599813358391154, 0.04602293042142309, 0.04604772725893463, 0.046072524096446174, 0.046097320933957714, 0.046122117771469254, 0.0461469146089808, 0.04617171144649234, 0.04619650828400389, 0.04622130512151543, 0.04624610195902697, 0.04627089879653851, 0.04629569563405005, 0.0463204924715616, 0.04634528930907314, 0.04637008614658469, 0.04639488298409622, 0.046419679821607766, 0.046444476659119306, 0.04646927349663085, 0.0464940703341424, 0.04651886717165394, 0.04654366400916548, 0.04656846084667702, 0.046593257684188566, 0.04661805452170011, 0.04664285135921165, 0.04666764819672319, 0.04669244503423473, 0.04671724187174628, 0.04674203870925782, 0.046766835546769366, 0.046791632384280905, 0.046816429221792445, 0.04684122605930399, 0.04686602289681553, 0.04689081973432708, 0.046915616571838625, 0.04694041340935016, 0.046965210246861705, 0.046990007084373245, 0.04701480392188479, 0.04703960075939633, 0.04706439759690788, 0.04708919443441942, 0.04711399127193096, 0.047138788109442505, 0.047163584946954044, 0.04718838178446559, 0.04721317862197713, 0.04723797545948867, 0.04726277229700022, 0.04728756913451176, 0.047312365972023304, 0.047337162809534844, 0.047361959647046384, 0.04738675648455793, 0.04741155332206947, 0.04743635015958102, 0.04746114699709256, 0.0474859438346041, 0.04751074067211564, 0.04753553750962718, 0.04756033434713873, 0.04758513118465027, 0.04760992802216182, 0.04763472485967335, 0.047659521697184896, 0.04768431853469644, 0.04770911537220798, 0.04773391220971953, 0.04775870904723107, 0.04778350588474261, 0.04780830272225415, 0.047833099559765696, 0.04785789639727724, 0.04788269323478878, 0.04790749007230032, 0.04793228690981186, 0.04795708374732341, 0.04798188058483495, 0.048006677422346496, 0.04803147425985804, 0.048056271097369575, 0.04808106793488112, 0.04810586477239266, 0.04813066160990421, 0.048155458447415755, 0.048180255284927295, 0.048205052122438835, 0.048229848959950375, 0.04825464579746192, 0.04827944263497346, 0.04830423947248501, 0.04832903630999655, 0.04835383314750809, 0.048378629985019635, 0.048403426822531175, 0.04842822366004272, 0.04845302049755426, 0.0484778173350658, 0.04850261417257735, 0.04852741101008889, 0.048552207847600434, 0.048577004685111974, 0.048601801522623514, 0.04862659836013506, 0.0486513951976466, 0.04867619203515815, 0.04870098887266969, 0.048725785710181234, 0.04875058254769277, 0.048775379385204314, 0.04880017622271586, 0.0488249730602274, 0.04884976989773895, 0.04887456673525049, 0.04889936357276203, 0.04892416041027357, 0.04894895724778511, 0.04897375408529666, 0.0489985509228082, 0.04902334776031974, 0.04904814459783128, 0.049072941435342826, 0.04909773827285437, 0.04912253511036591, 0.04914733194787745, 0.04917212878538899, 0.04919692562290054, 0.04922172246041208, 0.049246519297923626, 0.04927131613543517, 0.049296112972946705, 0.04932090981045825, 0.04934570664796979, 0.04937050348548134, 0.049395300322992886, 0.049420097160504425, 0.049444893998015965, 0.049469690835527505, 0.049494487673039045, 0.0495192845105506, 0.04954408134806214, 0.04956887818557368, 0.049593675023085225, 0.049618471860596765, 0.049643268698108305, 0.049668065535619844, 0.04969286237313139, 0.04971765921064293, 0.04974245604815447, 0.049767252885666025, 0.049792049723177564, 0.049816846560689104, 0.049841643398200644, 0.04986644023571219, 0.04989123707322373, 0.04991603391073527, 0.049940830748246824, 0.049965627585758364, 0.0499904244232699, 0.05001522126078145, 0.05004001809829299, 0.05006481493580453, 0.05008961177331607, 0.05011440861082762, 0.05013920544833916, 0.050164002285850696, 0.05018879912336225, 0.05021359596087379, 0.05023839279838533, 0.05026318963589687, 0.050287986473408416, 0.050312783310919956, 0.050337580148431496, 0.05036237698594305, 0.05038717382345459, 0.05041197066096612, 0.05043676749847766, 0.050461564335989216, 0.050486361173500756, 0.050511158011012296, 0.05053595484852384, 0.05056075168603538, 0.05058554852354692, 0.05061034536105846, 0.050635142198570016, 0.050659939036081555, 0.050684735873593095, 0.05070953271110464, 0.05073432954861618, 0.05075912638612772, 0.050783923223639275, 0.05080872006115081, 0.05083351689866235, 0.05085831373617389, 0.05088311057368544, 0.05090790741119698, 0.05093270424870852, 0.05095750108622007, 0.05098229792373161, 0.05100709476124315, 0.05103189159875469, 0.05105668843626624, 0.05108148527377778, 0.051106282111289314, 0.05113107894880087, 0.05115587578631241, 0.05118067262382395, 0.05120546946133549, 0.051230266298847034, 0.051255063136358574, 0.051279859973870114, 0.05130465681138167, 0.05132945364889321, 0.05135425048640475, 0.05137904732391629, 0.051403844161427834, 0.05142864099893937, 0.05145343783645091, 0.05147823467396247, 0.051503031511474, 0.05152782834898554, 0.05155262518649708, 0.05157742202400863 ], "y": [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.78641065233872e-32, 0.00011061341403720279, 0.0004424471259515857, 0.0009954913404473088, 0.0017697362622285076, 0.0027651720959993896, 0.003981789046464056, 0.005419577318326742, 0.0070785271162915695, 0.008958628645062647, 0.011059872109344253, 0.013382247713840478, 0.015925745663255424, 0.018690356162293396, 0.02167606941565837, 0.02488287562805472, 0.028310765004186507, 0.03195972774875776, 0.0358297540664729, 0.03992083416203593, 0.04423295824015094, 0.04876611650552229, 0.05352029916285391, 0.05849549641685024, 0.06369169847221526, 0.06910889553365303, 0.07474707780586802, 0.08060623549356416, 0.08668635880144551, 0.09298743793421661, 0.09950946309658115, 0.10625242449324376, 0.11321631232890839, 0.12040111680827896, 0.12780682813606004, 0.13543343651695544, 0.14328093215566964, 0.15134930525690676, 0.1596385460253706, 0.16814864466576576, 0.17687959138279627, 0.18583137638116595, 0.19500398986557949, 0.20439742204074088, 0.21401166311135417, 0.22384670328212355, 0.23390253275775294, 0.2441791417429471, 0.25467652044240946, 0.2653946590608448, 0.27633354780295716, 0.2874931768734502, 0.298873536477029, 0.31047461681839694, 0.32229640810225824, 0.3343389005333176, 0.3466020843162784, 0.3590859496558456, 0.37179048675672305, 0.38471568582361443, 0.3978615370612247, 0.41122803067425767, 0.4248151568674172, 0.4386229058454081, 0.45265126781293363, 0.5306770315474453, 0.669935449671275, 0.7997737286437154, 0.9201882604762052, 1.0311754371801691, 1.1327316507670369, 1.2248532932482434, 1.3075367566352154, 1.380778432939387, 1.4445747141721863, 1.498921992345043, 1.5438166594693898, 1.5792551075566565, 1.6052337286182727, 1.6217489146656705, 1.628797057710279, 1.6263745497635296, 1.6144777828368522, 1.5931031489416783, 1.582782679197004, 1.6219374317096202, 1.661324036073798, 1.7009426002312626, 1.7407932321237372, 1.780876039692947, 1.821191130880617, 1.861738613628472, 1.9025185958782365, 1.9435311855716337, 1.9847764906503893, 2.0262546190562283, 2.0679656787308724, 2.1099097776160494, 2.1518043420080613, 2.193628504660482, 2.236132184240385, 2.279315221180799, 2.32317745591476, 2.3677187288752974, 2.412938880495439, 2.4588377512082222, 2.505415181446675, 2.5526710116438323, 2.600605082232724, 2.6492172336463797, 2.698507306317835, 2.748475140680118, 2.799120577166262, 2.8504434562093004, 2.9024436182422604, 2.9551209036981776, 3.0084751530100826, 3.062506206611005, 3.11721390493398, 3.1725980884120366, 3.2286585974782094, 3.285395272565524, 3.3428079541070184, 3.4008964825357193, 3.459660698284665, 3.5191004417868816, 3.5792155534753993, 3.640057803544132, 3.7089251932702716, 3.7909913120383854, 3.886257027315167, 3.9947232065672895, 4.116390717261448, 4.251260426864339, 4.3813272637449705, 4.513453131455661, 4.652232601999708, 4.797667128052979, 4.9497581622913716, 5.108507157390772, 6.0798989915146855, 8.075981082817616, 5.468004747100936, 5.550274126477132, 5.6335214038186106, 5.717747785242922, 5.802954476867614, 5.889142684810233, 5.976313615188329, 6.064468474119449, 6.143575205505661, 6.199878979337358, 6.256201129374643, 6.312542275230146, 6.3689030365165085, 6.425284032846362, 6.481685883832341, 6.538109209087089, 6.594554628223234, 6.651022760853418, 6.7075142265902725, 6.764029645046434, 6.820569635834536, 6.87713481856722, 6.9337258128571175, 7.0099715370517455, 7.093214573305474, 7.1774292379336, 7.262615307694072, 7.34877255934484, 7.435900769643837, 7.5239997153490075, 7.613069173218308, 7.703108920009662, 7.794118732481027, 7.886098387390346, 7.979047661495553, 8.072966331554602, 8.167854174325425, 8.263710966565979, 8.360536485034194, 8.458330506488018, 8.557092807685404, 8.656823165384283, 8.757521356342606, 8.859187157318313, 9.005695620173585, 9.247282145837147, 9.43801816112, 9.622359810991401, 9.829100780234127, 10.114918530675546, 10.390039940271905, 10.654487103522431, 10.908282114926402, 11.151447068983089, 11.384004060191739, 11.605975183051621, 11.879164804093186, 12.117084422657703, 12.303700409585389, 12.438911295518995, 12.522615611101255, 12.532241172844877, 12.460874180970555, 12.49685677279149, 12.561111410263662, 12.62951443242796, 12.702073458317315, 12.776564414238724, 12.898973797404969, 13.041622737326454, 13.191257550534319, 13.347882948702006, 13.511503643502975, 13.71425115960258, 13.942471851286959, 14.129801221849618, 14.276233422401642, 14.381762604054202, 14.446382917918417, 14.480002114074898, 14.60442435199933, 14.730991174033553, 14.859704853847585, 14.990567665111449, 15.123581881495154, 15.25874977666873, 15.39607362430218, 15.535555698065533, 15.677198271628807, 15.821003618662001, 15.966974012835152, 16.11511172781828, 16.268005782901838, 16.448090310476744, 16.658972179265692, 16.928789452983526, 17.300610305707732, 17.539645996869293, 17.781403438816884, 18.02590380137819, 18.27203128036097, 18.519152561437828, 18.76726355173608, 19.018056710307583, 19.274534641619766, 19.533888615585248, 19.79611016991822, 20.061190842332888, 20.32912217054347, 20.617434111287704, 20.864325003069023, 21.049958038878927, 21.17145352927545, 21.22796651466153, 21.32534146594614, 21.374872238876055, 21.55198560833366, 21.760480095084556, 21.97231497509962, 22.187489932233333, 22.40600465034014, 22.62785881327452, 22.853052104890903, 23.081584209043776, 23.313454809587565, 23.54866359037673, 23.787210235265754, 24.029094428109094, 24.27415422964457, 24.520787423642084, 24.768584309415203, 25.017545675798033, 25.267672311624715, 25.518965005729363, 25.77660330815823, 26.058281560372546, 26.36553259057447, 26.698057873518028, 27.06603872186314, 27.655111499616634, 28.04525345824062, 28.431094239351566, 29.22236667428236, 30.174835538604768, 30.55982090337833, 30.631486146954543, 30.95786432108565, 31.296838355033962, 31.641338445325125, 31.980719996689277, 32.21039429994485, 32.45295955247941, 32.70036084778816, 32.94990603438595, 33.25249273655701, 33.603465764604465, 34.037181801796365, 34.57772958868411, 35.01633240138321, 35.35228954973755, 35.58490034359086, 35.71346409278699, 36.046625424765026, 36.428107871820686, 36.81954680239458, 37.219137226559, 37.62566051359379, 38.03913161800205, 38.459172542205295, 38.883855881954275, 39.36007484402011, 39.99355479622891, 40.875701641562806, 41.55603451261464, 42.24034291818747, 42.928219963123595, 43.61507366751538, 44.301778418030814, 44.98922924872242, 45.679810818324654, 46.26151531841457, 46.86949195738578, 47.50377708374608, 48.16440704600308, 48.84728359952814, 49.5539132520279, 50.328965889000145, 51.12651911247707, 51.94657825997662, 52.789148669016726, 53.65423567711505, 54.55851579553151, 55.803461686616046, 57.501687485394015, 59.46182588577013, 61.74428618804689, 63.91717186208777, 65.96990067618124, 68.80823725126089, 71.18399394678752, 72.36780989017534, 72.3523865643677, 71.13668047127997, 71.43737494766329, 71.87826562161186, 72.2850329477298, 72.51347543177914, 72.69532747438915, 72.8398997453364, 72.97091127363235, 73.16388000551065, 73.46029079227566, 71.70708628585948, 71.7194384896588, 71.96169369450601, 72.39928880138221, 72.80948678606005, 73.15322194496795, 73.34087042330397, 73.46836463303121, 73.48526668398445, 73.49655142544547, 74.5268479961492, 74.48917425741004, 74.00021931309504, 73.9536573101679, 73.78775025012531, 73.7208479834924, 73.73791393050399, 73.83280336178882, 74.0012537244389, 72.40597573123023, 72.16269726816695, 72.27120396405103, 72.44526483843794, 72.59204154506318, 82.50093246192323, 71.92849578568382, 72.00269991401387, 72.06263281231247, 72.10843216283398, 72.14006662282071, 72.16587456407107, 72.21678227886484, 72.28942854626717, 72.38210962844238, 72.48220387943158, 72.58427911103438, 72.68835942228915, 72.86942769190213, 73.11370025868302, 73.31973335436112, 73.61492986496442, 73.92813083990619, 73.00061187361294, 71.40136533574143, 71.15669591001534, 71.10215814317964, 71.08325120851768, 71.10279035260176, 71.1310129571278, 71.1508837416341, 71.16807768469094, 71.18082958559413, 71.22432623756252, 71.28329945011959, 71.54585191038682, 71.8767932809918, 72.2519197853114, 72.67042509923286, 73.06833893355915, 73.13519122963388, 72.82362408885241, 72.3388834600615, 72.80955298405065, 74.37718311936806, 74.26543396857869, 73.99279839209629, 73.59254322990996, 73.115768968758, 72.65549352740939, 72.31940542823551, 72.33821630222552, 72.4489418307367, 72.6183513644774, 72.59165561920835, 72.47659812167495, 72.36340429127404, 72.25211122051856, 72.14213493768948, 72.03853822460178, 72.22715545491795, 72.50698035455754, 72.76084333726884, 72.96371977534199, 73.13351935264681, 73.26877417757927, 73.358388524111, 74.13626259900254, 73.61526178502902, 73.11822974543479, 72.78707792104862, 73.29477428953379, 74.77358325939394, 74.67573343975876, 74.2052617965704, 73.35900281196928, 72.33265021249541, 71.1317760416947, 69.59910017278806, 67.73206624398077, 65.66034692264046, 64.46329641858186, 63.33699034612404, 62.17572856756951, 61.079439334754035, 60.05225410267809, 59.0944059229745, 58.20612784727586, 57.38765292721492, 55.976851847532295, 54.20390693028078, 52.83264018223766, 51.87651282722075, 51.48722065448473, 51.1163657293808, 50.7575677514864, 50.41071644480195, 50.075795145410396, 49.75341692161107, 49.44425348624511, 52.15077594567632, 48.15562331621057, 47.68747567345957, 47.18596738165048, 46.65564431854456, 46.10247507658823, 45.54005118785147, 44.9552883246174, 44.35434127421581, 43.872936849666026, 43.49595463814369, 43.1246809710264, 42.7590779210765, 42.39549901160674, 42.031821189937936, 41.671029064021916, 41.33176535844436, 41.018943771765194, 40.73340532120577, 40.47525625783412, 40.24460283271816, 40.041551296925874, 39.86641008107013, 39.7199838270097, 39.602431206545326, 39.51418080078119, 39.4558825279419, 39.17346759233542, 38.62280279307472, 38.118124082002915, 37.6696858776865, 37.27556811312843, 36.904281614732945, 36.55294084743644, 36.22156314558421, 35.91010584124721, 35.618526266496275, 35.34678175340224, 35.094829634035946, 34.86262724046827, 34.64214275758417, 34.41740949171549, 34.27604684909857, 34.15626899309426, 34.029152734732584, 33.89600820759054, 33.76108968921364, 33.62145693759041, 33.47490526004655, 33.321425829507234, 33.16100981889758, 32.993658760987486, 32.82199788870549, 32.64804576651163, 32.47285652884185, 32.296064965773915, 32.11623447525839, 31.769292693284736, 31.29376448005087, 30.851921959543834, 30.445909240821656, 30.079968718263093, 29.76501623184863, 29.475824682628666, 29.212361363290842, 29.01803684055422, 29.00451160285564, 28.88195518316029, 28.66192637540235, 28.45074960022146, 28.259353120153175, 28.08140631723985, 27.91355804085848, 27.755784365159617, 27.60806136429374, 27.47036511241132, 27.3427742052402, 27.225508814005178, 27.11869984788519, 27.028903250711384, 26.95827776766239, 26.90532733695829, 26.860964647944705, 26.82343659447724, 26.79277302246194, 26.769003777804855, 26.75215870641209, 26.739439318397007, 26.72633094191031, 26.71277499532594, 26.79089642873292, 26.903820494561575, 26.94898168014489, 26.994227494778258, 27.039551269064926, 27.086183123975417, 27.09020524291715, 27.091954066649823, 27.094019541698543, 27.09525988727294, 27.095342112917383, 27.09427160953296, 27.092053768020776, 27.088791765383053, 27.085082332646802, 27.081028167422648, 27.07810941866245, 27.076780009732502, 27.075402280450927, 27.07397790018651, 27.072515613461416, 27.071824401090378, 27.071902264263603, 27.072720619652696, 27.07426751316572, 27.07653099071067, 27.079499098195637, 27.083159881528676, 27.087501386617838, 27.092511659371144, 27.098178745696682, 27.104490691502487, 27.111435542696608, 27.119049829285707, 27.12031240222274, 27.114394371603698, 27.14832345020805, 27.203450252079623, 27.279731387010354, 27.377363959895476, 27.48809237218367, 27.59938127295355, 27.719231077507803, 27.847561177751217, 27.983900306966145, 28.11674634661081, 28.24294863698041, 28.442276436829495, 28.772886385389604, 29.029824041793187, 29.21360329560342, 29.324738036383508, 29.40092750829657, 29.36418805112039, 29.289610401610982, 29.236927060124433, 29.203985951399066, 29.18708201286691, 29.17028768825424, 29.14993635243829, 29.128492463959997, 29.111146524964244, 29.09786867645905, 29.08714877247019, 29.078827841414746, 29.074224321325772, 29.076787371846596, 29.128183201344648, 29.13329516775594, 29.14571092315956, 29.165435995439275, 29.191563187738783, 29.21775251947787, 29.24810729110732, 29.282596428871056, 29.321188859012963, 29.363853507776962, 29.41055930140694, 29.46134560224231, 29.516316188370805, 29.575442405902766, 29.63869223145916, 29.706033641661058, 29.77846174811776, 29.868369117715023, 29.98439710701533, 30.131482585290627, 30.310498730289872, 30.52227090803349, 30.767624484541905, 31.047384825835476, 31.36237729793464, 31.78110780406787, 34.43587336203971, 35.52591644862677, 35.92220522599189, 36.13199715179187, 36.15690028364364, 36.010265236696505, 35.71473013504051, 35.196766227539875, 34.39524627484012, 33.31104839790552, 32.376441379058754, 31.604508570746138, 30.90564776169408, 30.17376979954834, 29.401956306341045, 28.592904770824795, 27.82317461584121, 27.163373023857105, 26.568721062774657, 25.96624893956764, 25.34816500379345, 24.712276715505357, 24.058703494210654, 23.387564759416566, 22.698979930630397, 21.993068427359333, 21.269949669110783, 20.555058173295226, 19.88179160325081, 19.243870802271598, 18.641107398329833, 18.073313019397794, 17.54029929344768, 17.04187784845191, 16.5233360872774, 15.34320409415578, 14.757610095544731, 14.19875506099325, 13.666502800947875, 13.160717125855335, 12.681261846162174, 12.228000772314992, 11.80079771476039, 11.39486713140458, 10.982296424935559, 10.561975179803921, 10.133903723090585, 9.698082381876318, 9.254511483241943, 8.803191354268291, 8.344122322036181, 7.877301568561767, 7.402724992599479, 6.8886737782040655, 6.202615561385328, 5.449513444853591, 4.757861983402332, 4.497250451652388, 4.353530864118453, 4.32353638033042, 4.3391056537558885, 4.354760046783065, 4.370498259305367, 4.386318991216221, 4.402220942409049, 4.4182028127772766, 4.434263302214322, 4.450401110613609, 4.466614937868562, 4.482903483872606, 4.4992654485191625, 4.515699531701657, 4.532204433313507, 4.548778853248142, 4.565421491398978, 4.582131047659443, 4.598906221922962, 4.615745714082954, 4.632648224032842, 4.649612451666051, 4.666637096876004, 4.683720859556123, 4.700862439599833, 4.718060536900556, 4.735313851351713, 4.752621082846729, 4.769980931279028, 4.787390593008471, 4.804839767319058, 4.82232575921894, 4.8398473907520625, 4.857403483962363, 4.874992860893802, 4.892614343590322, 4.910266403145591, 4.9279128369926735, 4.945529220645078, 4.9631143784089256, 4.980545179772345, 4.99768183592049, 5.014534596876879, 5.031103884928593, 5.047390122362722, 5.063393731466348, 5.079115134526555, 5.094554753830433, 5.109713011665067, 5.124590330317538, 5.139187132074937, 5.153503839224345, 5.167561449117893, 5.182189913082419, 5.197806672692274, 5.214391677212147, 5.231924875906722, 5.2497289592276735, 5.267492820646538, 5.2853495962717005, 5.30329684955177, 5.321332143935347, 5.339453042871042, 5.3576571098074535, 5.375941908193196, 5.394305001476869, 5.412743953107077, 5.431256326532427, 5.449839685201522, 5.46849159256297, 5.487209612065374, 5.505991307157341, 5.524802991756061, 5.543592357820515, 5.562357063784133, 5.58109544711178, 5.599805845268315, 5.618486595718598, 5.6371360359274885, 5.65575250335985, 5.674334335480542, 5.692879869754427, 5.711387443646362, 5.729846426135959, 5.748220154419767, 5.7665033993489825, 5.7847770943242365, 5.803064566585533, 5.8213605289261565, 5.839662491504428, 5.857967964478658, 5.876274458007164, 5.894579482248263, 5.912880547360274, 5.931175163501508, 5.949460840830288, 5.967735089504924, 5.98599541968374, 6.004239341525043, 6.022464365187153, 6.040668000828389, 6.058990867591544, 6.078701718155478, 6.099188017690059, 6.1201920052950785, 6.141706493104123, 6.163721776522225, 6.186228150954412, 6.20921591180572, 6.232675354481176, 6.256596774385818, 6.280970466924667, 6.305786727502763, 6.331035851525136, 6.356708134396811, 6.382793871522831, 6.409283358308219, 6.435793904867357, 6.460990126413106, 6.485961166302266, 6.508904678157833, 6.529411565323917, 6.54872453860778, 6.5668475216825675, 6.583784438221428, 6.598944331017525, 6.6206729515444165, 6.6422360503588544, 6.663629914606748, 6.684836761925466, 6.705840822352817, 6.726638766539476, 6.7472272651361065, 6.767602988793381, 6.787762608161967, 6.80770279389253, 6.827420216635742, 6.8469115470422715, 6.866173455762779, 6.885202613447942, 6.903995690748421, 6.922549358314891, 6.940860286798021, 6.958925146848473, 6.976740609116916, 6.994303344254021, 7.011610022910457, 7.028666988414935, 7.052374840015519, 7.077812742386287, 7.103318326146503, 7.1288799974377435, 7.1544861624015645, 7.180125227179539, 7.205785597913231, 7.2314556807442045, 7.25712388181403, 7.282778607264264, 7.308436076334688, 7.334201316272313, 7.360070918114927, 7.386029970913645, 7.412063841309577, 7.438161414501072, 7.464371511173502, 7.490854419355349, 7.517402217646073, 7.543990042417506, 7.570603481036368, 7.597228120869384, 7.623844626342966, 7.65042916745632, 7.676967622459595, 7.7034517456303435, 7.7299922143710385, 7.7565362484188745, 7.782559278430724, 7.807970034108323, 7.8327600670568085, 7.856920928881303, 7.880444171186935, 7.903321345578834, 7.925544003662122, 7.947103697041928, 7.967991977323375, 7.988200396111596, 8.007720505011713, 8.02654385562886, 8.045852187985195, 8.0725020010449, 8.101266533002516, 8.132268183958313, 8.166042777990324, 8.20283237483329, 8.242512314734944, 8.273231428058757, 8.302795928421224, 8.332185124767896, 8.361371173038568, 8.390326229173043, 8.419022449111116, 8.447454728256885, 8.475512599536675, 8.503162103452588, 8.53037608790464, 8.557127400792838, 8.583388890017172, 8.609133403477664, 8.634333789074304, 8.65896289470711, 8.682993568276087, 8.706433873142561, 8.729675454475878, 8.752791369403864, 8.775726994014668, 8.79842770439646, 8.820859702439417, 8.844071983841063, 8.868492891293364, 8.897766013833554, 8.936574128832621, 8.984357445215538, 9.040526243787202, 9.09606820837436, 9.148493907124877, 9.198344918424558, 9.239733584045986, 9.276737796142928, 9.309737760260054, 9.33878951575382, 9.366669163126947, 9.406908916803037, 9.445754954665214, 9.483129657241506, 9.518955405059957, 9.553154641142413, 9.58565489154474, 9.6163816412138, 9.645257031153779, 9.672203202368925, 9.702562293631303, 9.737977342473533, 9.776099304595686, 9.816689900795668, 9.859444143817882, 9.904057046406649, 9.950223621306371, 9.999426735785821, 10.050778071673722, 10.103826832002321, 10.158148888197992, 10.21520066409379, 10.27941545203242, 10.348143038512573, 10.419523645804762, 10.491518812964646, 10.558022511107776, 10.619158846787073, 10.675827492440888, 10.728288046289839, 10.776385560251923, 10.820868862164755, 10.935102058340277, 11.050374173107265, 11.170282863022264, 11.293651031696724, 11.422801221617133, 11.558771980117157, 11.697381791552717, 11.836421246257165, 11.973910211074456, 12.142144007743916, 12.434945980229724, 12.939823123804592, 13.303892130789293, 13.661237396037034, 14.004952445378931, 14.341357604899702, 14.674577189903962, 15.298251497928831, 16.225730960288974, 16.082284907798172, 15.261031425493798, 14.31806512319168, 13.118911316687521, 11.743185068473132, 10.751091193580896, 9.91687796958008, 9.294653995059546, 8.504802351347545, 7.979781151191109, 7.5243174824678345, 7.119620663274583, 6.922818249553639, 6.589378642789721, 6.288562105960343, 5.98302231610358, 5.671572374008765, 5.357114242490902, 5.065526135612954, 4.783491098246365, 4.483320945675875, 4.154633616042232, 3.9053251877731037, 3.672706494080415, 3.4687347749110935, 3.2749952795991746, 3.091495418789154, 2.9177250369387497, 2.7531739785058447, 2.5973320879481565, 2.4521900438921436, 2.328644166185902, 2.2616695121264785, 2.1616824159504016, 1.9981594960156708, 1.8239725907856403, 1.6412262922632006, 1.4593583057301465, 1.2850743624993803, 1.1295640670620533, 0.9746218727558023, 0.8160672799760041, 0.6928424252750968, 0.5828141611314407, 0.4885024657483279, 0.41051142820664716, 0.3480629579069698, 0.30010887155521515, 0.2655914008172821, 0.23869483983377177, 0.21394747614882287, 0.19098944464067427, 0.16953486974463175, 0.14957701809014753, 0.13117512940400775, 0.1143884434129857, 0.09927619984387141, 0.1007760945778648, 0.04147370967977278, 0.022799184399965363, 0.014029041924396551, 0.007857446376393675, 0.003827828972455258, 0.0014836209290848125, 0.00036825346278268134, 2.515779005097054e-05, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.656749130753321, 27.609404816522876, 87.74321942704952, 129.07803707065085, 214.00335030125336, 230.42684973590352, 257.10862670207, 340.2863395243034, 392.50178637256624, 495.9964739468421, 458.0405598488811, 446.48774099191576, 460.7546586378599, 464.6939813290365, 447.851189975442, 436.7925205683284, 426.63065158597817, 417.4616047295181, 412.0698359216256, 411.4781631956858, 412.3084467322971, 415.1567305592104, 419.0335624861257, 422.65291211640744, 426.5039256113442, 430.66467410802716, 435.16856189273716, 440.6981399567265, 442.68434166329325, 431.5181455419559, 430.6011707567141, 430.37184728464496, 431.6660439856479, 434.1418652529889, 436.4495053302503, 439.0456856099724, 443.50108065094827, 448.48487894396465, 454.03004101490245, 459.9578520463764, 466.1227118262086, 472.9524182856948, 480.6517776239143, 489.26794344001706, 498.8431609482318, 510.0553643243339, 541.0831306809024, 547.2905148238897, 573.85587508161, 574.2245860064243, 575.466119377829, 577.2376570989691, 579.0335566710556, 579.8048432109126, 581.0026278735696, 578.9273015374597, 581.4786637057509, 585.9860857973644, 588.4922416523705, 589.0041860692745, 588.8153242316848, 590.9021785930091, 594.0274497286782, 598.369646659598, 604.0616188777751, 613.3991152127625, 629.1045339258035, 639.998370280498, 641.6380582604679, 645.2715990201174, 646.2840246854325, 641.8936118473998, 644.9326138362969, 647.4665753681577, 649.4995315135619, 651.0332508161798, 652.0115336042674, 654.0475369466961, 661.3851671818547, 669.9564836456443, 678.6247862673262, 697.596767825079, 715.3702623511873, 733.229304114396, 733.4822109105786, 731.8255780014492, 735.7816418088406, 738.3444793693241, 758.1808274654335, 767.3924911226261, 748.3979008346711, 738.1025178196393, 663.3740847734412, 617.1977626715094, 586.3449834204702, 562.0847755158384, 540.5843867308972, 521.8237742607811, 502.2359623307601, 480.25663362698884, 457.026128826007, 437.6455451688501, 421.1029399647759, 405.7437504905076, 391.08960506157973, 377.2777052323604, 364.60242867599084, 352.2348965929157, 339.06120109586885, 329.42387470698446, 309.59887207828774, 296.5535750331116, 286.73863583904557, 277.7499705247044, 269.1626560199418, 260.9217573678219, 252.63195097717872, 244.40469121995613, 237.6476797204905, 230.29210072546897, 225.50898806346945, 218.14368380689967, 205.16484180397478, 197.93534960145627, 191.1108931052486, 184.74745820973163, 178.84467673480813, 172.73697519828434, 166.4854396032632, 162.57991538386415, 160.86364875023568, 156.599022613903, 149.73627396739806, 138.28973582663122, 130.28753819374273, 124.03542988954439, 118.23328520899472, 113.03385996443114, 108.15957576478829, 104.73584944834076, 105.17623824782427, 98.99697103391527, 84.50079272685282, 74.17176560437146, 66.08536580151082, 58.67505130810458, 52.73327015389797, 48.08797844907759, 36.77427938235881, 16.489646180874228, 4.081234795792039, 1.9248439980421427e-09, 2.0360360320559574e-05, 8.0657610875268e-05, 0.00018090279456772356, 0.000321105029457488, 0.0005012734336040851, 0.0007214171250671724, 0.0009815452219062162, 0.0012816668421809123, 0.0016217911039507745, 0.0020019271252752794, 0.002422084024214179, 0.002882270918826845, 0.003382496927173068, 0.003922771167312182, 0.004503102757304015, 18.52330301457413, 152.41709187568873, 282.5879205448859, 397.13613302572793, 530.0151402856845, 585.6715612153031, 549.048819458174, 525.0693229920059, 480.91686257583547, 474.1873291415396, 472.3979805350022, 470.02599543966454, 464.566948831735, 463.01499519996366, 464.2264945034456, 468.2771596001289, 476.9744200039704, 479.9671036353022, 480.9216538476217, 478.7015332523971, 470.8687499397401, 452.0762305460712, 426.46008579442037, 405.76683133839407, 388.8477744911795, 375.91577709921336, 364.5668457168092, 354.04928828416905, 344.36886159094024, 335.345702507217, 326.3782099932331, 318.8893208724422, 312.3073662239778, 306.4468731435794, 301.1000866104716, 296.2013859143077, 291.5436925138977, 287.0958538892149, 282.86322781355136, 278.84592407736744, 275.0685849466579, 271.51929425471866, 268.18848546895333, 265.1001979644855, 262.22147679130575, 258.84743422826176, 255.45092045411172, 252.27150023567842, 249.31151028737222, 246.73981120176614, 244.1047004553234, 241.86081029469443, 239.86705548803005, 237.98587778733489, 236.21227736199864, 234.54654995393201, 232.98899130504122, 231.49076825826674, 230.0431981177012, 228.65512278745766, 226.93333069681907, 225.75321465069425, 224.37835165783034, 223.02483448107938, 221.72914096743816, 220.49109578539958, 219.3104479178257, 218.18735366557635, 217.1219693295079, 216.11445121047984, 215.2380919902059, 214.39159969614295, 213.5185736380595, 212.7027033621385, 211.93561296027056, 211.06055072012398, 210.11180171280705, 209.11668568857664, 208.07568995057326, 206.97592360082731, 205.83038091561238, 204.80662733756716, 203.82664562907794, 202.8470707415927, 201.88315188046735, 200.9533540170444, 200.0689584543284, 199.22509806760473, 198.42175098781263, 197.6588953458916, 196.93658317420403, 196.60731010033734, 196.32830067397867, 195.8652072710521, 195.62272535858614, 195.40829368136244, 195.55035273378675, 195.65212117249166, 195.62202739893533, 195.21280392774628, 194.56975642919332, 194.09399408115945, 193.40613937920875, 192.58867325341205, 191.74123426818343, 190.66835477834024, 189.61222132499915, 188.35372353289046, 186.77378778587433, 186.21699927652375, 185.80884124341313, 187.80533539761646, 189.096739593044, 189.37464376316345, 188.5375296942338, 183.6188634304593, 179.89256448292247, 175.19570905454762, 169.39227318843956, 159.28737328637214, 147.9021178886833, 139.1050182100029, 135.47427485675598, 133.89213056486713, 131.0217207476293, 125.25588353332482, 116.26065455230611, 109.67850777485576, 107.96042315322211, 107.63892398643517, 105.19874930012107, 103.08854986292009, 98.20930048438656, 92.53039841197426, 89.56847948495393, 87.52360070536149, 85.7850694004103, 83.56446810669338, 79.46704594411942, 74.78875614648642, 70.21540470552397, 65.75216854089219, 60.48226981936247, 54.33125334512815, 59.53205593309913, 51.94907458671146, 40.69358938997309, 31.056299043615287, 22.67228388022286, 16.641333272691178, 12.226819167117261, 6.993524935887655, 0.7013236828771939, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] }, { "fill": "tonextx", "line": { "width": 2 }, "mode": "lines", "name": "As", "type": "scatter", "x": [ -0.0037195256267313916, -0.0036947287892198487, -0.0036699319517083063, -0.0036451351141967635, -0.0036203382766852206, -0.0035955414391736786, -0.0035707446016621357, -0.0035459477641505937, -0.003521150926639051, -0.003496354089127508, -0.0034715572516159656, -0.0034467604141044227, -0.00342196357659288, -0.003397166739081338, -0.003372369901569795, -0.003347573064058252, -0.0033227762265467097, -0.003297979389035167, -0.0032731825515236244, -0.003248385714012082, -0.003223588876500539, -0.0031987920389889967, -0.0031739952014774543, -0.0031491983639659114, -0.0031244015264543686, -0.003099604688942826, -0.0030748078514312837, -0.0030500110139197413, -0.0030252141764081984, -0.003000417338896656, -0.0029756205013851135, -0.0029508236638735707, -0.002926026826362028, -0.0029012299888504854, -0.0028764331513389425, -0.0028516363138274, -0.0028268394763158577, -0.002802042638804315, -0.0027772458012927724, -0.0027524489637812295, -0.002727652126269687, -0.0027028552887581447, -0.002678058451246602, -0.0026532616137350594, -0.002628464776223517, -0.002603667938711974, -0.0025788711012004312, -0.002554074263688889, -0.002529277426177346, -0.0025044805886658035, -0.002479683751154261, -0.002454886913642718, -0.002430090076131176, -0.002405293238619633, -0.0023804964011080905, -0.002355699563596548, -0.002330902726085005, -0.0023061058885734628, -0.0022813090510619203, -0.0022565122135503775, -0.0022317153760388346, -0.002206918538527292, -0.0021821217010157493, -0.0021573248635042073, -0.0021325280259926645, -0.0021077311884811216, -0.0020829343509695796, -0.0020581375134580368, -0.002033340675946494, -0.0020085438384349515, -0.0019837470009234086, -0.001958950163411866, -0.0019341533259003237, -0.0019093564883887809, -0.0018845596508772382, -0.0018597628133656958, -0.0018349659758541532, -0.0018101691383426103, -0.0017853723008310679, -0.0017605754633195254, -0.0017357786258079828, -0.00171098178829644, -0.0016861849507848975, -0.0016613881132733549, -0.001636591275761812, -0.0016117944382502696, -0.0015869976007387271, -0.0015622007632271845, -0.0015374039257156416, -0.0015126070882040992, -0.0014878102506925568, -0.001463013413181014, -0.0014382165756694713, -0.0014134197381579288, -0.0013886229006463862, -0.0013638260631348433, -0.001339029225623301, -0.0013142323881117585, -0.0012894355506002156, -0.001264638713088673, -0.0012398418755771305, -0.001215045038065588, -0.001190248200554045, -0.0011654513630425026, -0.0011406545255309602, -0.0011158576880194173, -0.0010910608505078747, -0.0010662640129963322, -0.0010414671754847898, -0.001016670337973247, -0.0009918735004617043, -0.0009670766629501619, -0.0009422798254386189, -0.0009174829879270765, -0.0008926861504155339, -0.0008678893129039914, -0.0008430924753924485, -0.000818295637880906, -0.0007934988003693636, -0.000768701962857821, -0.0007439051253462782, -0.0007191082878347356, -0.0006943114503231931, -0.0006695146128116502, -0.0006447177753001078, -0.0006199209377885653, -0.0005951241002770227, -0.0005703272627654799, -0.0005455304252539373, -0.0005207335877423949, -0.0004959367502308519, -0.00047113991271930945, -0.00044634307520776697, -0.0004215462376962245, -0.00039674940018468157, -0.00037195256267313946, -0.00034715572516159655, -0.0003223588876500537, -0.0002975620501385116, -0.00027276521262696867, -0.0002479683751154258, -0.00022317153760388367, -0.00019837470009234078, -0.00017357786258079792, -0.0001487810250692558, -0.0001239841875577129, -9.918735004617003e-05, -7.43905125346279e-05, -4.959367502308501e-05, -2.4796837511542876e-05, 0.0, 2.4796837511542876e-05, 4.959367502308501e-05, 7.43905125346279e-05, 9.918735004617077e-05, 0.0001239841875577129, 0.0001487810250692558, 0.00017357786258079865, 0.00019837470009234078, 0.00022317153760388367, 0.0002479683751154258, 0.00027276521262696867, 0.0002975620501385116, 0.0003223588876500537, 0.00034715572516159655, 0.00037195256267313946, 0.00039674940018468157, 0.0004215462376962245, 0.00044634307520776735, 0.00047113991271930945, 0.0004959367502308524, 0.0005207335877423952, 0.0005455304252539373, 0.0005703272627654802, 0.0005951241002770224, 0.0006199209377885653, 0.0006447177753001081, 0.0006695146128116502, 0.0006943114503231931, 0.0007191082878347361, 0.0007439051253462782, 0.000768701962857821, 0.0007934988003693639, 0.000818295637880906, 0.000843092475392449, 0.0008678893129039918, 0.0008926861504155339, 0.0009174829879270768, 0.0009422798254386189, 0.0009670766629501619, 0.0009918735004617047, 0.001016670337973247, 0.0010414671754847898, 0.0010662640129963327, 0.0010910608505078747, 0.0011158576880194175, 0.0011406545255309604, 0.0011654513630425026, 0.0011902482005540455, 0.0012150450380655877, 0.0012398418755771305, 0.0012646387130886734, 0.0012894355506002156, 0.0013142323881117585, 0.0013390292256233013, 0.0013638260631348433, 0.0013886229006463862, 0.001413419738157929, 0.0014382165756694713, 0.0014630134131810141, 0.001487810250692557, 0.0015126070882040992, 0.001537403925715642, 0.0015622007632271843, 0.0015869976007387271, 0.00161179443825027, 0.001636591275761812, 0.0016613881132733549, 0.001686184950784898, 0.00171098178829644, 0.0017357786258079828, 0.0017605754633195257, 0.0017853723008310679, 0.0018101691383426107, 0.0018349659758541536, 0.0018597628133656958, 0.0018845596508772387, 0.0019093564883887809, 0.0019341533259003237, 0.0019589501634118666, 0.0019837470009234086, 0.0020085438384349515, 0.0020333406759464943, 0.0020581375134580368, 0.0020829343509695796, 0.0021077311884811225, 0.0021325280259926645, 0.0021573248635042073, 0.0021821217010157493, 0.002206918538527292, 0.002231715376038835, 0.0022565122135503775, 0.0022813090510619203, 0.002306105888573463, 0.002330902726085005, 0.002355699563596548, 0.002380496401108091, 0.002405293238619633, 0.002430090076131176, 0.002454886913642719, 0.002479683751154261, 0.002504480588665804, 0.002529277426177346, 0.002554074263688889, 0.0025788711012004317, 0.002603667938711974, 0.002628464776223517, 0.00265326161373506, 0.002678058451246602, 0.0027028552887581447, 0.0027276521262696875, 0.0027524489637812295, 0.0027772458012927724, 0.002802042638804315, 0.0028268394763158577, 0.0028516363138274005, 0.0028764331513389425, 0.0029012299888504854, 0.0029260268263620283, 0.0029508236638735707, 0.0029756205013851127, 0.0030004173388966564, 0.0030252141764081984, 0.0030500110139197404, 0.003074807851431284, 0.003099604688942826, 0.0031244015264543686, 0.003149198363965912, 0.0031739952014774543, 0.0031987920389889963, 0.00322358887650054, 0.003248385714012082, 0.003273182551523624, 0.0032979793890351677, 0.0033227762265467097, 0.003347573064058252, 0.003372369901569796, 0.003397166739081338, 0.00342196357659288, 0.0034467604141044236, 0.0034715572516159656, 0.003496354089127508, 0.0035211509266390513, 0.0035459477641505937, 0.0035707446016621357, 0.0035955414391736777, 0.0036203382766852215, 0.0036451351141967635, 0.003669931951708306, 0.003694728789219849, 0.0037195256267313916, 0.0037443224642429336, 0.0037691193017544773, 0.0037939161392660193, 0.0038187129767775618, 0.003843509814289105, 0.0038683066518006475, 0.0038931034893121895, 0.003917900326823733, 0.003942697164335275, 0.003967494001846817, 0.003992290839358361, 0.004017087676869903, 0.004041884514381445, 0.004066681351892989, 0.004091478189404531, 0.0041162750269160735, 0.004141071864427617, 0.004165868701939159, 0.004190665539450701, 0.004215462376962243, 0.0042402592144737865, 0.004265056051985329, 0.004289852889496871, 0.004314649727008415, 0.004339446564519957, 0.004364243402031499, 0.004389040239543043, 0.004413837077054584, 0.004438633914566127, 0.00446343075207767, 0.0044882275895892125, 0.004513024427100755, 0.004537821264612298, 0.004562618102123841, 0.004587414939635382, 0.004612211777146926, 0.004637008614658468, 0.00466180545217001, 0.004686602289681554, 0.004711399127193096, 0.0047361959647046386, 0.004760992802216182, 0.004785789639727724, 0.004810586477239266, 0.00483538331475081, 0.004860180152262352, 0.004884976989773894, 0.004909773827285436, 0.00493457066479698, 0.004959367502308522, 0.004984164339820065, 0.005008961177331608, 0.00503375801484315, 0.005058554852354692, 0.005083351689866236, 0.005108148527377778, 0.00513294536488932, 0.005157742202400863, 0.005182539039912406, 0.005207335877423948, 0.0052321327149354915, 0.005256929552447034, 0.0052817263899585755, 0.00530652322747012, 0.005331320064981661, 0.005356116902493204, 0.005380913740004747, 0.005405710577516289, 0.005430507415027832, 0.005455304252539375, 0.0054801010900509175, 0.005504897927562459, 0.0055296947650740015, 0.005554491602585545, 0.005579288440097087, 0.00560408527760863, 0.005628882115120173, 0.005653678952631715, 0.005678475790143257, 0.005703272627654801, 0.005728069465166343, 0.005752866302677885, 0.005777663140189429, 0.005802459977700971, 0.005827256815212513, 0.0058520536527240565, 0.005876850490235599, 0.005901647327747141, 0.005926444165258685, 0.005951241002770227, 0.005976037840281769, 0.006000834677793313, 0.006025631515304854, 0.006050428352816397, 0.00607522519032794, 0.0061000220278394825, 0.006124818865351025, 0.0061496157028625665, 0.006174412540374111, 0.006199209377885652, 0.006224006215397195, 0.006248803052908738, 0.00627359989042028, 0.006298396727931823, 0.006323193565443366, 0.0063479904029549086, 0.00637278724046645, 0.006397584077977994, 0.006422380915489536, 0.006447177753001078, 0.006471974590512622, 0.006496771428024164, 0.006521568265535706, 0.00654636510304725, 0.006571161940558792, 0.006595958778070334, 0.006620755615581878, 0.0066455524530934194, 0.006670349290604962, 0.006695146128116506, 0.006719942965628048, 0.00674473980313959, 0.0067695366406511324, 0.006794333478162676, 0.006819130315674218, 0.00684392715318576, 0.006868723990697304, 0.0068935208282088455, 0.006918317665720388, 0.006943114503231931, 0.006967911340743474, 0.006992708178255016, 0.007017505015766559, 0.007042301853278102, 0.007067098690789643, 0.0070918955283011875, 0.007116692365812729, 0.0071414892033242715, 0.007166286040835815, 0.007191082878347357, 0.0072158797158589, 0.007240676553370443, 0.007265473390881985, 0.007290270228393527, 0.007315067065905071, 0.007339863903416613, 0.007364660740928155, 0.007389457578439698, 0.007414254415951241, 0.007439051253462783, 0.007463848090974325, 0.007488644928485869, 0.0075134417659974105, 0.007538238603508953, 0.007563035441020497, 0.007587832278532039, 0.007612629116043581, 0.007637425953555124, 0.007662222791066667, 0.007687019628578209, 0.0077118164660897525, 0.007736613303601295, 0.0077614101411128365, 0.007786206978624381, 0.007811003816135922, 0.007835800653647465, 0.007860597491159008, 0.00788539432867055, 0.007910191166182093, 0.007934988003693636, 0.007959784841205178, 0.007984581678716721, 0.008009378516228264, 0.008034175353739806, 0.00805897219125135, 0.00808376902876289, 0.008108565866274434, 0.008133362703785976, 0.008158159541297519, 0.008182956378809062, 0.008207753216320604, 0.008232550053832147, 0.00825734689134369, 0.008282143728855232, 0.008306940566366773, 0.008331737403878318, 0.00835653424138986, 0.008381331078901402, 0.008406127916412945, 0.008430924753924488, 0.00845572159143603, 0.008480518428947573, 0.008505315266459116, 0.008530112103970658, 0.008554908941482201, 0.008579705778993743, 0.008604502616505286, 0.00862929945401683, 0.008654096291528371, 0.008678893129039914, 0.008703689966551456, 0.008728486804062999, 0.00875328364157454, 0.008778080479086084, 0.008802877316597627, 0.008827674154109169, 0.008852470991620712, 0.008877267829132255, 0.008902064666643797, 0.008926861504155338, 0.008951658341666884, 0.008976455179178425, 0.009001252016689967, 0.009026048854201512, 0.009050845691713053, 0.009075642529224595, 0.009100439366736138, 0.009125236204247681, 0.009150033041759223, 0.009174829879270766, 0.00919962671678231, 0.009224423554293851, 0.009249220391805394, 0.009274017229316936, 0.00929881406682848, 0.00932361090434002, 0.009348407741851564, 0.009373204579363107, 0.009398001416874649, 0.009422798254386192, 0.009447595091897734, 0.009472391929409277, 0.00949718876692082, 0.009521985604432362, 0.009546782441943905, 0.009571579279455449, 0.00959637611696699, 0.009621172954478532, 0.009645969791990075, 0.009670766629501617, 0.009695563467013162, 0.009720360304524703, 0.009745157142036246, 0.009769953979547788, 0.00979475081705933, 0.009819547654570873, 0.009844344492082418, 0.00986914132959396, 0.009893938167105503, 0.009918735004617044, 0.009943531842128586, 0.00996832867964013, 0.009993125517151674, 0.010017922354663216, 0.010042719192174757, 0.0100675160296863, 0.010092312867197842, 0.010117109704709384, 0.010141906542220929, 0.010166703379732472, 0.010191500217244014, 0.010216297054755555, 0.010241093892267098, 0.01026589072977864, 0.010290687567290182, 0.010315484404801727, 0.01034028124231327, 0.010365078079824811, 0.010389874917336353, 0.010414671754847896, 0.010439468592359438, 0.010464265429870983, 0.010489062267382524, 0.010513859104894068, 0.01053865594240561, 0.010563452779917151, 0.010588249617428694, 0.01061304645494024, 0.01063784329245178, 0.010662640129963322, 0.010687436967474866, 0.010712233804986407, 0.010737030642497949, 0.010761827480009494, 0.010786624317521037, 0.010811421155032579, 0.01083621799254412, 0.010861014830055664, 0.010885811667567205, 0.010910608505078747, 0.010935405342590292, 0.010960202180101835, 0.010984999017613377, 0.011009795855124918, 0.011034592692636461, 0.011059389530148003, 0.011084186367659548, 0.01110898320517109, 0.011133780042682633, 0.011158576880194174, 0.011183373717705716, 0.01120817055521726, 0.011232967392728804, 0.011257764230240346, 0.011282561067751887, 0.01130735790526343, 0.011332154742774972, 0.011356951580286514, 0.011381748417798059, 0.011406545255309602, 0.011431342092821144, 0.011456138930332685, 0.011480935767844229, 0.01150573260535577, 0.011530529442867312, 0.011555326280378858, 0.0115801231178904, 0.011604919955401942, 0.011629716792913485, 0.011654513630425026, 0.011679310467936568, 0.011704107305448113, 0.011728904142959656, 0.011753700980471198, 0.01177849781798274, 0.011803294655494283, 0.011828091493005824, 0.01185288833051737, 0.011877685168028911, 0.011902482005540454, 0.011927278843051996, 0.011952075680563537, 0.01197687251807508, 0.012001669355586626, 0.012026466193098167, 0.012051263030609709, 0.012076059868121252, 0.012100856705632794, 0.012125653543144335, 0.012150450380655878, 0.012175247218167424, 0.012200044055678965, 0.012224840893190507, 0.01224963773070205, 0.012274434568213591, 0.012299231405725133, 0.012324028243236678, 0.012348825080748221, 0.012373621918259763, 0.012398418755771305, 0.012423215593282848, 0.01244801243079439, 0.012472809268305934, 0.012497606105817476, 0.01252240294332902, 0.01254719978084056, 0.012571996618352102, 0.012596793455863646, 0.01262159029337519, 0.012646387130886732, 0.012671183968398274, 0.012695980805909817, 0.012720777643421359, 0.0127455744809329, 0.012770371318444445, 0.012795168155955989, 0.01281996499346753, 0.012844761830979072, 0.012869558668490615, 0.012894355506002157, 0.012919152343513698, 0.012943949181025243, 0.012968746018536786, 0.012993542856048328, 0.01301833969355987, 0.013043136531071413, 0.013067933368582954, 0.0130927302060945, 0.013117527043606041, 0.013142323881117584, 0.013167120718629126, 0.013191917556140667, 0.01321671439365221, 0.013241511231163756, 0.013266308068675297, 0.013291104906186839, 0.013315901743698382, 0.013340698581209924, 0.013365495418721465, 0.013390292256233012, 0.013415089093744554, 0.013439885931256095, 0.013464682768767638, 0.01348947960627918, 0.013514276443790722, 0.013539073281302265, 0.01356387011881381, 0.013588666956325351, 0.013613463793836893, 0.013638260631348436, 0.013663057468859978, 0.01368785430637152, 0.013712651143883064, 0.013737447981394608, 0.01376224481890615, 0.013787041656417691, 0.013811838493929234, 0.013836635331440776, 0.01386143216895232, 0.013886229006463862, 0.013911025843975406, 0.013935822681486947, 0.013960619518998489, 0.013985416356510032, 0.014010213194021577, 0.014035010031533119, 0.01405980686904466, 0.014084603706556204, 0.014109400544067745, 0.014134197381579287, 0.01415899421909083, 0.014183791056602375, 0.014208587894113917, 0.014233384731625458, 0.014258181569137001, 0.014282978406648543, 0.014307775244160085, 0.01433257208167163, 0.014357368919183173, 0.014382165756694714, 0.014406962594206256, 0.0144317594317178, 0.01445655626922934, 0.014481353106740886, 0.014506149944252427, 0.01453094678176397, 0.014555743619275512, 0.014580540456787054, 0.014605337294298597, 0.014630134131810142, 0.014654930969321684, 0.014679727806833225, 0.014704524644344769, 0.01472932148185631, 0.014754118319367852, 0.014778915156879395, 0.01480371199439094, 0.014828508831902482, 0.014853305669414023, 0.014878102506925566, 0.014902899344437108, 0.01492769618194865, 0.014952493019460195, 0.014977289856971738, 0.01500208669448328, 0.015026883531994821, 0.015051680369506364, 0.015076477207017906, 0.015101274044529451, 0.015126070882040994, 0.015150867719552536, 0.015175664557064077, 0.01520046139457562, 0.015225258232087162, 0.015250055069598707, 0.015274851907110249, 0.015299648744621792, 0.015324445582133334, 0.015349242419644875, 0.015374039257156418, 0.01539883609466796, 0.015423632932179505, 0.015448429769691047, 0.01547322660720259, 0.015498023444714131, 0.015522820282225673, 0.015547617119737216, 0.015572413957248761, 0.015597210794760303, 0.015622007632271845, 0.015646804469783386, 0.01567160130729493, 0.015696398144806473, 0.015721194982318016, 0.01574599181982956, 0.0157707886573411, 0.015795585494852642, 0.015820382332364186, 0.015845179169875726, 0.015869976007387272, 0.015894772844898816, 0.015919569682410355, 0.0159443665199219, 0.015969163357433442, 0.015993960194944982, 0.016018757032456525, 0.016043553869968072, 0.01606835070747961, 0.016093147544991155, 0.0161179443825027, 0.016142741220014238, 0.01616753805752578, 0.016192334895037325, 0.016217131732548868, 0.01624192857006041, 0.01626672540757195, 0.016291522245083494, 0.016316319082595038, 0.01634111592010658, 0.016365912757618124, 0.016390709595129668, 0.016415506432641207, 0.01644030327015275, 0.016465100107664294, 0.016489896945175837, 0.01651469378268738, 0.01653949062019892, 0.016564287457710464, 0.016589084295222007, 0.016613881132733547, 0.01663867797024509, 0.016663474807756637, 0.016688271645268177, 0.01671306848277972, 0.016737865320291263, 0.016762662157802803, 0.016787458995314346, 0.01681225583282589, 0.016837052670337433, 0.016861849507848976, 0.016886646345360516, 0.01691144318287206, 0.016936240020383603, 0.016961036857895146, 0.01698583369540669, 0.017010630532918233, 0.017035427370429772, 0.017060224207941316, 0.01708502104545286, 0.017109817882964402, 0.017134614720475946, 0.017159411557987485, 0.01718420839549903, 0.017209005233010572, 0.017233802070522112, 0.017258598908033655, 0.017283395745545202, 0.017308192583056742, 0.017332989420568285, 0.01735778625807983, 0.017382583095591368, 0.01740737993310291, 0.017432176770614455, 0.017456973608125998, 0.01748177044563754, 0.01750656728314908, 0.017531364120660625, 0.017556160958172168, 0.01758095779568371, 0.017605754633195254, 0.017630551470706798, 0.017655348308218338, 0.01768014514572988, 0.017704941983241424, 0.017729738820752967, 0.01775453565826451, 0.01777933249577605, 0.017804129333287594, 0.017828926170799137, 0.017853723008310677, 0.01787851984582222, 0.017903316683333767, 0.017928113520845307, 0.01795291035835685, 0.017977707195868393, 0.018002504033379933, 0.018027300870891477, 0.018052097708403023, 0.018076894545914563, 0.018101691383426106, 0.01812648822093765, 0.01815128505844919, 0.018176081895960733, 0.018200878733472276, 0.01822567557098382, 0.018250472408495363, 0.018275269246006903, 0.018300066083518446, 0.01832486292102999, 0.018349659758541532, 0.018374456596053076, 0.01839925343356462, 0.01842405027107616, 0.018448847108587702, 0.018473643946099245, 0.01849844078361079, 0.018523237621122332, 0.018548034458633872, 0.018572831296145415, 0.01859762813365696, 0.0186224249711685, 0.01864722180868004, 0.01867201864619159, 0.018696815483703128, 0.01872161232121467, 0.018746409158726215, 0.018771205996237755, 0.018796002833749298, 0.01882079967126084, 0.018845596508772385, 0.018870393346283928, 0.018895190183795468, 0.01891998702130701, 0.018944783858818554, 0.018969580696330098, 0.01899437753384164, 0.019019174371353184, 0.019043971208864724, 0.019068768046376267, 0.01909356488388781, 0.019118361721399354, 0.019143158558910897, 0.019167955396422437, 0.01919275223393398, 0.019217549071445524, 0.019242345908957063, 0.019267142746468607, 0.019291939583980153, 0.019316736421491693, 0.019341533259003237, 0.01936633009651478, 0.01939112693402632, 0.019415923771537863, 0.019440720609049406, 0.01946551744656095, 0.019490314284072493, 0.019515111121584033, 0.019539907959095576, 0.01956470479660712, 0.019589501634118663, 0.019614298471630206, 0.01963909530914175, 0.01966389214665329, 0.019688688984164832, 0.019713485821676376, 0.01973828265918792, 0.019763079496699462, 0.019787876334211005, 0.019812673171722545, 0.01983747000923409, 0.019862266846745632, 0.01988706368425717, 0.01991186052176872, 0.01993665735928026, 0.0199614541967918, 0.019986251034303345, 0.020011047871814885, 0.020035844709326428, 0.020060641546837975, 0.020085438384349515, 0.020110235221861058, 0.0201350320593726, 0.02015982889688414, 0.020184625734395684, 0.020209422571907228, 0.02023421940941877, 0.020259016246930314, 0.020283813084441854, 0.020308609921953397, 0.02033340675946494, 0.020358203596976484, 0.020383000434488027, 0.02040779727199957, 0.02043259410951111, 0.020457390947022654, 0.020482187784534197, 0.020506984622045737, 0.020531781459557284, 0.020556578297068823, 0.020581375134580367, 0.02060617197209191, 0.02063096880960345, 0.020655765647114993, 0.02068056248462654, 0.02070535932213808, 0.020730156159649623, 0.020754952997161166, 0.020779749834672706, 0.02080454667218425, 0.020829343509695793, 0.020854140347207336, 0.02087893718471888, 0.02090373402223042, 0.020928530859741962, 0.020953327697253506, 0.02097812453476505, 0.021002921372276592, 0.021027718209788136, 0.021052515047299675, 0.02107731188481122, 0.021102108722322762, 0.021126905559834302, 0.02115170239734585, 0.02117649923485739, 0.02120129607236893, 0.021226092909880475, 0.021250889747392015, 0.021275686584903558, 0.021300483422415105, 0.021325280259926645, 0.021350077097438188, 0.02137487393494973, 0.02139967077246127, 0.021424467609972814, 0.02144926444748436, 0.0214740612849959, 0.021498858122507444, 0.021523654960018988, 0.021548451797530527, 0.02157324863504207, 0.021598045472553614, 0.021622842310065157, 0.0216476391475767, 0.02167243598508824, 0.021697232822599784, 0.021722029660111327, 0.021746826497622867, 0.021771623335134414, 0.021796420172645957, 0.021821217010157497, 0.02184601384766904, 0.021870810685180583, 0.021895607522692123, 0.02192040436020367, 0.02194520119771521, 0.021969998035226753, 0.021994794872738296, 0.022019591710249836, 0.02204438854776138, 0.022069185385272926, 0.022093982222784466, 0.02211877906029601, 0.022143575897807553, 0.022168372735319092, 0.022193169572830636, 0.02221796641034218, 0.022242763247853722, 0.022267560085365266, 0.022292356922876806, 0.02231715376038835, 0.022341950597899892, 0.022366747435411432, 0.02239154427292298, 0.022416341110434522, 0.022441137947946062, 0.022465934785457605, 0.02249073162296915, 0.022515528460480688, 0.022540325297992235, 0.022565122135503775, 0.022589918973015318, 0.02261471581052686, 0.0226395126480384, 0.022664309485549945, 0.02268910632306149, 0.02271390316057303, 0.022738699998084574, 0.022763496835596118, 0.022788293673107658, 0.0228130905106192, 0.022837887348130744, 0.022862684185642287, 0.022887481023153827, 0.02291227786066537, 0.022937074698176917, 0.022961871535688457, 0.0229866683732, 0.02301146521071154, 0.023036262048223087, 0.023061058885734623, 0.02308585572324617, 0.023110652560757717, 0.023135449398269253, 0.0231602462357808, 0.02318504307329234, 0.023209839910803883, 0.02323463674831543, 0.02325943358582697, 0.023284230423338513, 0.023309027260850053, 0.023333824098361596, 0.023358620935873136, 0.023383417773384683, 0.023408214610896226, 0.023433011448407766, 0.023457808285919313, 0.02348260512343085, 0.023507401960942396, 0.02353219879845394, 0.02355699563596548, 0.023581792473477026, 0.023606589310988565, 0.02363138614850011, 0.02365618298601165, 0.023680979823523192, 0.02370577666103474, 0.02373057349854628, 0.023755370336057822, 0.02378016717356936, 0.02380496401108091, 0.023829760848592445, 0.02385455768610399, 0.023879354523615535, 0.023904151361127075, 0.02392894819863862, 0.02395374503615016, 0.023978541873661705, 0.02400333871117325, 0.024028135548684788, 0.024052932386196334, 0.024077729223707874, 0.024102526061219418, 0.024127322898730957, 0.024152119736242504, 0.024176916573754047, 0.024201713411265587, 0.02422651024877713, 0.02425130708628867, 0.024276103923800217, 0.024300900761311757, 0.0243256975988233, 0.024350494436334847, 0.024375291273846383, 0.02440008811135793, 0.02442488494886947, 0.024449681786381013, 0.02447447862389256, 0.0244992754614041, 0.024524072298915643, 0.024548869136427183, 0.024573665973938726, 0.024598462811450266, 0.024623259648961813, 0.024648056486473356, 0.024672853323984896, 0.024697650161496443, 0.02472244699900798, 0.024747243836519526, 0.02477204067403107, 0.02479683751154261, 0.024821634349054156, 0.024846431186565696, 0.02487122802407724, 0.02489602486158878, 0.024920821699100322, 0.02494561853661187, 0.02497041537412341, 0.024995212211634952, 0.025020009049146492, 0.02504480588665804, 0.025069602724169575, 0.02509439956168112, 0.02511919639919267, 0.025143993236704205, 0.02516879007421575, 0.02519358691172729, 0.025218383749238835, 0.02524318058675038, 0.02526797742426192, 0.025292774261773465, 0.025317571099285004, 0.025342367936796548, 0.025367164774308087, 0.025391961611819634, 0.025416758449331178, 0.025441555286842717, 0.025466352124354264, 0.0254911489618658, 0.025515945799377347, 0.025540742636888887, 0.02556553947440043, 0.025590336311911977, 0.025615133149423517, 0.02563992998693506, 0.0256647268244466, 0.025689523661958143, 0.02571432049946969, 0.02573911733698123, 0.025763914174492773, 0.025788711012004313, 0.02581350784951586, 0.025838304687027396, 0.025863101524538943, 0.025887898362050486, 0.025912695199562026, 0.025937492037073573, 0.025962288874585113, 0.025987085712096656, 0.026011882549608203, 0.02603667938711974, 0.026061476224631286, 0.026086273062142826, 0.02611106989965437, 0.02613586673716591, 0.026160663574677456, 0.026185460412189, 0.02621025724970054, 0.026235054087212082, 0.026259850924723622, 0.02628464776223517, 0.02630944459974671, 0.02633424143725825, 0.0263590382747698, 0.026383835112281335, 0.02640863194979288, 0.02643342878730442, 0.026458225624815965, 0.02648302246232751, 0.02650781929983905, 0.026532616137350595, 0.026557412974862134, 0.026582209812373678, 0.026607006649885218, 0.026631803487396764, 0.026656600324908308, 0.026681397162419847, 0.026706193999931394, 0.02673099083744293, 0.026755787674954477, 0.026780584512466017, 0.02680538134997756, 0.026830178187489107, 0.026854975025000647, 0.02687977186251219, 0.02690456870002373, 0.026929365537535277, 0.02695416237504682, 0.02697895921255836, 0.027003756050069903, 0.027028552887581443, 0.02705334972509299, 0.02707814656260453, 0.027102943400116073, 0.02712774023762762, 0.027152537075139156, 0.027177333912650703, 0.027202130750162243, 0.027226927587673786, 0.027251724425185333, 0.027276521262696873, 0.027301318100208416, 0.027326114937719956, 0.0273509117752315, 0.02737570861274304, 0.027400505450254586, 0.02742530228776613, 0.02745009912527767, 0.027474895962789216, 0.027499692800300752, 0.0275244896378123, 0.02754928647532384, 0.027574083312835382, 0.02759888015034693, 0.02762367698785847, 0.02764847382537001, 0.02767327066288155, 0.027698067500393095, 0.02772286433790464, 0.02774766117541618, 0.027772458012927725, 0.027797254850439265, 0.02782205168795081, 0.027846848525462348, 0.027871645362973894, 0.027896442200485438, 0.027921239037996978, 0.027946035875508524, 0.027970832713020064, 0.027995629550531607, 0.028020426388043147, 0.02804522322555469, 0.028070020063066237, 0.028094816900577777, 0.02811961373808932, 0.02814441057560086, 0.028169207413112407, 0.02819400425062395, 0.02821880108813549, 0.028243597925647033, 0.028268394763158573, 0.02829319160067012, 0.02831798843818166, 0.028342785275693203, 0.02836758211320475, 0.028392378950716286, 0.028417175788227833, 0.028441972625739373, 0.028466769463250916, 0.028491566300762463, 0.028516363138274003, 0.028541159975785546, 0.028565956813297086, 0.028590753650808633, 0.02861555048832017, 0.028640347325831716, 0.02866514416334326, 0.0286899410008548, 0.028714737838366346, 0.028739534675877886, 0.02876433151338943, 0.02878912835090097, 0.028813925188412512, 0.02883872202592406, 0.0288635188634356, 0.028888315700947142, 0.02891311253845868, 0.02893790937597023, 0.02896270621348177, 0.02898750305099331, 0.029012299888504855, 0.029037096726016395, 0.02906189356352794, 0.02908669040103948, 0.029111487238551025, 0.02913628407606257, 0.029161080913574108, 0.029185877751085654, 0.029210674588597194, 0.029235471426108738, 0.029260268263620284, 0.029285065101131824, 0.029309861938643367, 0.029334658776154907, 0.02935945561366645, 0.02938425245117799, 0.029409049288689537, 0.02943384612620108, 0.02945864296371262, 0.029483439801224167, 0.029508236638735703, 0.02953303347624725, 0.02955783031375879, 0.029582627151270333, 0.02960742398878188, 0.02963222082629342, 0.029657017663804963, 0.029681814501316503, 0.029706611338828046, 0.029731408176339593, 0.029756205013851133, 0.029781001851362676, 0.029805798688874216, 0.029830595526385763, 0.0298553923638973, 0.029880189201408846, 0.02990498603892039, 0.02992978287643193, 0.029954579713943476, 0.029979376551455016, 0.03000417338896656, 0.0300289702264781, 0.030053767063989642, 0.03007856390150119, 0.03010336073901273, 0.030128157576524272, 0.030152954414035812, 0.03017775125154736, 0.030202548089058902, 0.03022734492657044, 0.03025214176408199, 0.030276938601593525, 0.03030173543910507, 0.03032653227661661, 0.030351329114128155, 0.0303761259516397, 0.03040092278915124, 0.030425719626662785, 0.030450516464174324, 0.030475313301685868, 0.030500110139197414, 0.030524906976708954, 0.030549703814220498, 0.030574500651732037, 0.030599297489243584, 0.03062409432675512, 0.030648891164266667, 0.03067368800177821, 0.03069848483928975, 0.030723281676801297, 0.030748078514312837, 0.03077287535182438, 0.03079767218933592, 0.030822469026847463, 0.03084726586435901, 0.03087206270187055, 0.030896859539382093, 0.030921656376893633, 0.03094645321440518, 0.030971250051916723, 0.030996046889428263, 0.031020843726939806, 0.031045640564451346, 0.031070437401962893, 0.031095234239474433, 0.031120031076985976, 0.031144827914497523, 0.03116962475200906, 0.031194421589520606, 0.031219218427032146, 0.03124401526454369, 0.03126881210205523, 0.03129360893956677, 0.03131840577707832, 0.03134320261458986, 0.031367999452101405, 0.031392796289612945, 0.031417593127124485, 0.03144238996463603, 0.03146718680214757, 0.03149198363965912, 0.03151678047717066, 0.0315415773146822, 0.03156637415219374, 0.031591170989705285, 0.03161596782721683, 0.03164076466472837, 0.03166556150223992, 0.03169035833975145, 0.031715155177263, 0.031739952014774545, 0.031764748852286084, 0.03178954568979763, 0.03181434252730917, 0.03183913936482071, 0.03186393620233225, 0.0318887330398438, 0.031913529877355344, 0.031938326714866884, 0.031963123552378424, 0.031987920389889964, 0.03201271722740151, 0.03203751406491305, 0.0320623109024246, 0.032087107739936144, 0.03211190457744768, 0.03213670141495922, 0.03216149825247076, 0.03218629508998231, 0.03221109192749386, 0.0322358887650054, 0.032260685602516936, 0.032285482440028476, 0.03231027927754002, 0.03233507611505156, 0.03235987295256311, 0.03238466979007465, 0.03240946662758619, 0.032434263465097736, 0.032459060302609276, 0.03248385714012082, 0.03250865397763236, 0.0325334508151439, 0.03255824765265545, 0.03258304449016699, 0.032607841327678536, 0.032632638165190075, 0.032657435002701615, 0.03268223184021316, 0.0327070286777247, 0.03273182551523625, 0.03275662235274779, 0.032781419190259335, 0.03280621602777087, 0.032831012865282415, 0.03285580970279396, 0.0328806065403055, 0.03290540337781705, 0.03293020021532859, 0.03295499705284013, 0.032979793890351675, 0.033004590727863214, 0.03302938756537476, 0.0330541844028863, 0.03307898124039784, 0.03310377807790938, 0.03312857491542093, 0.033153371752932474, 0.033178168590444014, 0.033202965427955554, 0.033227762265467094, 0.03325255910297864, 0.03327735594049018, 0.03330215277800173, 0.033326949615513274, 0.03335174645302481, 0.033376543290536353, 0.03340134012804789, 0.03342613696555944, 0.03345093380307099, 0.03347573064058253, 0.033500527478094067, 0.033525324315605606, 0.03355012115311715, 0.03357491799062869, 0.03359971482814024, 0.03362451166565178, 0.03364930850316332, 0.033674105340674866, 0.033698902178186406, 0.03372369901569795, 0.03374849585320949, 0.03377329269072103, 0.03379808952823258, 0.03382288636574412, 0.033847683203255666, 0.033872480040767206, 0.03389727687827875, 0.03392207371579029, 0.03394687055330183, 0.03397166739081338, 0.03399646422832492, 0.034021261065836465, 0.034046057903348005, 0.034070854740859545, 0.03409565157837109, 0.03412044841588263, 0.03414524525339418, 0.03417004209090572, 0.03419483892841726, 0.034219635765928805, 0.034244432603440345, 0.03426922944095189, 0.03429402627846343, 0.03431882311597497, 0.03434361995348651, 0.03436841679099806, 0.034393213628509604, 0.034418010466021144, 0.03444280730353269, 0.034467604141044224, 0.03449240097855577, 0.03451719781606731, 0.03454199465357886, 0.034566791491090404, 0.034591588328601944, 0.034616385166113484, 0.03464118200362502, 0.03466597884113657, 0.03469077567864812, 0.03471557251615966, 0.0347403693536712, 0.034765166191182736, 0.03478996302869428, 0.03481475986620582, 0.03483955670371737, 0.03486435354122891, 0.03488915037874045, 0.034913947216251996, 0.034938744053763536, 0.03496354089127508, 0.03498833772878663, 0.03501313456629816, 0.03503793140380971, 0.03506272824132125, 0.035087525078832796, 0.035112321916344336, 0.03513711875385588, 0.03516191559136742, 0.03518671242887896, 0.03521150926639051, 0.03523630610390205, 0.035261102941413595, 0.035285899778925135, 0.035310696616436675, 0.03533549345394822, 0.03536029029145976, 0.03538508712897131, 0.03540988396648285, 0.03543468080399439, 0.035459477641505935, 0.035484274479017475, 0.03550907131652902, 0.03553386815404056, 0.0355586649915521, 0.03558346182906364, 0.03560825866657519, 0.035633055504086734, 0.035657852341598274, 0.03568264917910982, 0.035707446016621354, 0.0357322428541329, 0.03575703969164444, 0.03578183652915599, 0.035806633366667534, 0.035831430204179074, 0.035856227041690614, 0.035881023879202154, 0.0359058207167137, 0.03593061755422525, 0.03595541439173679, 0.03598021122924833, 0.03600500806675987, 0.03602980490427141, 0.03605460174178295, 0.0360793985792945, 0.03610419541680605, 0.03612899225431758, 0.036153789091829126, 0.036178585929340666, 0.03620338276685221, 0.03622817960436376, 0.0362529764418753, 0.03627777327938684, 0.03630257011689838, 0.036327366954409926, 0.036352163791921466, 0.03637696062943301, 0.03640175746694455, 0.03642655430445609, 0.03645135114196764, 0.03647614797947918, 0.036500944816990726, 0.036525741654502265, 0.036550538492013805, 0.03657533532952535, 0.03660013216703689, 0.03662492900454844, 0.03664972584205998, 0.03667452267957152, 0.036699319517083065, 0.036724116354594605, 0.03674891319210615, 0.03677371002961769, 0.03679850686712924, 0.03682330370464077, 0.03684810054215232, 0.036872897379663865, 0.036897694217175404, 0.03692249105468695, 0.03694728789219849, 0.03697208472971003, 0.03699688156722157, 0.03702167840473312, 0.037046475242244664, 0.037071272079756204, 0.037096068917267744, 0.037120865754779284, 0.03714566259229083, 0.03717045942980238, 0.03719525626731392, 0.03722005310482546, 0.037244849942337, 0.03726964677984854, 0.03729444361736008, 0.03731924045487163, 0.03734403729238318, 0.03736883412989471, 0.037393630967406256, 0.037418427804917796, 0.03744322464242934, 0.03746802147994089, 0.03749281831745243, 0.03751761515496397, 0.03754241199247551, 0.037567208829987056, 0.037592005667498596, 0.03761680250501014, 0.03764159934252168, 0.03766639618003322, 0.03769119301754477, 0.03771598985505631, 0.037740786692567856, 0.037765583530079395, 0.037790380367590935, 0.03781517720510248, 0.03783997404261402, 0.03786477088012557, 0.03788956771763711, 0.037914364555148655, 0.037939161392660195, 0.037963958230171735, 0.03798875506768328, 0.03801355190519482, 0.03803834874270637, 0.03806314558021791, 0.03808794241772945, 0.038112739255240995, 0.038137536092752534, 0.03816233293026408, 0.03818712976777562, 0.03821192660528716, 0.0382367234427987, 0.03826152028031025, 0.038286317117821794, 0.038311113955333334, 0.038335910792844874, 0.038360707630356414, 0.03838550446786796, 0.03841030130537951, 0.03843509814289105, 0.038459894980402594, 0.03848469181791413, 0.038509488655425674, 0.03853428549293721, 0.03855908233044876, 0.03858387916796031, 0.03860867600547185, 0.038633472842983387, 0.038658269680494926, 0.03868306651800647, 0.03870786335551802, 0.03873266019302956, 0.0387574570305411, 0.03878225386805264, 0.038807050705564186, 0.038831847543075726, 0.03885664438058727, 0.03888144121809881, 0.03890623805561035, 0.0389310348931219, 0.03895583173063344, 0.038980628568144986, 0.039005425405656526, 0.039030222243168065, 0.03905501908067961, 0.03907981591819115, 0.0391046127557027, 0.03912940959321424, 0.039154206430725785, 0.039179003268237325, 0.039203800105748865, 0.03922859694326041, 0.03925339378077195, 0.0392781906182835, 0.03930298745579504, 0.03932778429330658, 0.039352581130818125, 0.039377377968329665, 0.03940217480584121, 0.03942697164335275, 0.03945176848086429, 0.03947656531837583, 0.03950136215588738, 0.039526158993398924, 0.039550955830910464, 0.03957575266842201, 0.039600549505933544, 0.03962534634344509, 0.03965014318095664, 0.03967494001846818, 0.039699736855979724, 0.039724533693491264, 0.039749330531002804, 0.03977412736851434, 0.03979892420602589, 0.03982372104353744, 0.03984851788104898, 0.03987331471856052, 0.039898111556072056, 0.0399229083935836, 0.03994770523109515, 0.03997250206860669, 0.03999729890611823, 0.04002209574362977, 0.040046892581141316, 0.040071689418652856, 0.0400964862561644, 0.04012128309367595, 0.04014607993118748, 0.04017087676869903, 0.04019567360621057, 0.040220470443722116, 0.040245267281233656, 0.0402700641187452, 0.04029486095625674, 0.04031965779376828, 0.04034445463127983, 0.04036925146879137, 0.040394048306302915, 0.040418845143814455, 0.040443641981325995, 0.04046843881883754, 0.04049323565634908, 0.04051803249386063, 0.04054282933137217, 0.04056762616888371, 0.040592423006395255, 0.040617219843906795, 0.04064201668141834, 0.04066681351892988, 0.04069161035644142, 0.04071640719395297, 0.04074120403146451, 0.040766000868976054, 0.040790797706487594, 0.04081559454399914, 0.040840391381510674, 0.04086518821902222, 0.04088998505653377, 0.04091478189404531, 0.040939578731556854, 0.040964375569068394, 0.040989172406579934, 0.041013969244091474, 0.04103876608160302, 0.04106356291911457, 0.04108835975662611, 0.04111315659413765, 0.04113795343164919, 0.04116275026916073, 0.04118754710667228, 0.04121234394418382, 0.04123714078169537, 0.0412619376192069, 0.041286734456718446, 0.041311531294229986, 0.04133632813174153, 0.04136112496925308, 0.04138592180676462, 0.04141071864427616, 0.0414355154817877, 0.041460312319299246, 0.041485109156810786, 0.04150990599432233, 0.04153470283183387, 0.04155949966934541, 0.04158429650685696, 0.0416090933443685, 0.041633890181880046, 0.041658687019391585, 0.041683483856903125, 0.04170828069441467, 0.04173307753192621, 0.04175787436943776, 0.0417826712069493, 0.04180746804446084, 0.041832264881972385, 0.041857061719483925, 0.04188185855699547, 0.04190665539450701, 0.04193145223201856, 0.0419562490695301, 0.04198104590704164, 0.042005842744553185, 0.042030639582064724, 0.04205543641957627, 0.04208023325708781, 0.04210503009459935, 0.0421298269321109, 0.04215462376962244, 0.042179420607133984, 0.042204217444645524, 0.042229014282157064, 0.042253811119668604, 0.04227860795718015, 0.0423034047946917, 0.04232820163220324, 0.04235299846971478, 0.04237779530722632, 0.04240259214473786, 0.04242738898224941, 0.04245218581976095, 0.0424769826572725, 0.04250177949478403, 0.042526576332295576, 0.042551373169807116, 0.04257617000731866, 0.04260096684483021, 0.04262576368234175, 0.04265056051985329, 0.04267535735736483, 0.042700154194876376, 0.042724951032387916, 0.04274974786989946, 0.042774544707411, 0.04279934154492254, 0.04282413838243409, 0.04284893521994563, 0.042873732057457176, 0.04289852889496872, 0.042923325732480255, 0.0429481225699918, 0.04297291940750334, 0.04299771624501489, 0.04302251308252643, 0.043047309920037975, 0.043072106757549515, 0.043096903595061055, 0.0431217004325726, 0.04314649727008414, 0.04317129410759569, 0.04319609094510723, 0.04322088778261877, 0.043245684620130315, 0.043270481457641854, 0.0432952782951534, 0.04332007513266494, 0.04334487197017648, 0.04336966880768803, 0.04339446564519957, 0.043419262482711114, 0.043444059320222654, 0.043468856157734194, 0.043493652995245734, 0.04351844983275728, 0.04354324667026883, 0.04356804350778037, 0.043592840345291914, 0.04361763718280345, 0.043642434020314994, 0.04366723085782654, 0.04369202769533808, 0.04371682453284963, 0.04374162137036117, 0.04376641820787271, 0.043791215045384246, 0.04381601188289579, 0.04384080872040734, 0.04386560555791888, 0.04389040239543042, 0.04391519923294196, 0.043939996070453506, 0.043964792907965046, 0.04398958974547659, 0.04401438658298813, 0.04403918342049967, 0.04406398025801122, 0.04408877709552276, 0.044113573933034306, 0.04413837077054585, 0.044163167608057385, 0.04418796444556893, 0.04421276128308047, 0.04423755812059202, 0.04426235495810356, 0.044287151795615105, 0.044311948633126645, 0.044336745470638185, 0.04436154230814973, 0.04438633914566127, 0.04441113598317282, 0.04443593282068436, 0.0444607296581959, 0.044485526495707445, 0.044510323333218985, 0.04453512017073053, 0.04455991700824207, 0.04458471384575361, 0.04460951068326516, 0.0446343075207767, 0.044659104358288244, 0.044683901195799784, 0.04470869803331133, 0.044733494870822864, 0.04475829170833441, 0.04478308854584596, 0.0448078853833575, 0.044832682220869044, 0.044857479058380584, 0.044882275895892124, 0.04490707273340367, 0.04493186957091521, 0.04495666640842676, 0.0449814632459383, 0.04500626008344984, 0.045031056920961376, 0.04505585375847292, 0.04508065059598447, 0.04510544743349601, 0.04513024427100755, 0.04515504110851909, 0.045179837946030636, 0.045204634783542176, 0.04522943162105372, 0.04525422845856527, 0.0452790252960768, 0.04530382213358835, 0.04532861897109989, 0.045353415808611436, 0.04537821264612298, 0.04540300948363452, 0.04542780632114606, 0.0454526031586576, 0.04547739999616915, 0.04550219683368069, 0.045526993671192235, 0.045551790508703775, 0.045576587346215315, 0.04560138418372686, 0.0456261810212384, 0.04565097785874995, 0.04567577469626149, 0.04570057153377303, 0.045725368371284575, 0.045750165208796115, 0.04577496204630766, 0.0457997588838192, 0.04582455572133074, 0.04584935255884229, 0.04587414939635383, 0.045898946233865374, 0.045923743071376914, 0.04594853990888846, 0.045973336746399994, 0.04599813358391154, 0.04602293042142309, 0.04604772725893463, 0.046072524096446174, 0.046097320933957714, 0.046122117771469254, 0.0461469146089808, 0.04617171144649234, 0.04619650828400389, 0.04622130512151543, 0.04624610195902697, 0.04627089879653851, 0.04629569563405005, 0.0463204924715616, 0.04634528930907314, 0.04637008614658469, 0.04639488298409622, 0.046419679821607766, 0.046444476659119306, 0.04646927349663085, 0.0464940703341424, 0.04651886717165394, 0.04654366400916548, 0.04656846084667702, 0.046593257684188566, 0.04661805452170011, 0.04664285135921165, 0.04666764819672319, 0.04669244503423473, 0.04671724187174628, 0.04674203870925782, 0.046766835546769366, 0.046791632384280905, 0.046816429221792445, 0.04684122605930399, 0.04686602289681553, 0.04689081973432708, 0.046915616571838625, 0.04694041340935016, 0.046965210246861705, 0.046990007084373245, 0.04701480392188479, 0.04703960075939633, 0.04706439759690788, 0.04708919443441942, 0.04711399127193096, 0.047138788109442505, 0.047163584946954044, 0.04718838178446559, 0.04721317862197713, 0.04723797545948867, 0.04726277229700022, 0.04728756913451176, 0.047312365972023304, 0.047337162809534844, 0.047361959647046384, 0.04738675648455793, 0.04741155332206947, 0.04743635015958102, 0.04746114699709256, 0.0474859438346041, 0.04751074067211564, 0.04753553750962718, 0.04756033434713873, 0.04758513118465027, 0.04760992802216182, 0.04763472485967335, 0.047659521697184896, 0.04768431853469644, 0.04770911537220798, 0.04773391220971953, 0.04775870904723107, 0.04778350588474261, 0.04780830272225415, 0.047833099559765696, 0.04785789639727724, 0.04788269323478878, 0.04790749007230032, 0.04793228690981186, 0.04795708374732341, 0.04798188058483495, 0.048006677422346496, 0.04803147425985804, 0.048056271097369575, 0.04808106793488112, 0.04810586477239266, 0.04813066160990421, 0.048155458447415755, 0.048180255284927295, 0.048205052122438835, 0.048229848959950375, 0.04825464579746192, 0.04827944263497346, 0.04830423947248501, 0.04832903630999655, 0.04835383314750809, 0.048378629985019635, 0.048403426822531175, 0.04842822366004272, 0.04845302049755426, 0.0484778173350658, 0.04850261417257735, 0.04852741101008889, 0.048552207847600434, 0.048577004685111974, 0.048601801522623514, 0.04862659836013506, 0.0486513951976466, 0.04867619203515815, 0.04870098887266969, 0.048725785710181234, 0.04875058254769277, 0.048775379385204314, 0.04880017622271586, 0.0488249730602274, 0.04884976989773895, 0.04887456673525049, 0.04889936357276203, 0.04892416041027357, 0.04894895724778511, 0.04897375408529666, 0.0489985509228082, 0.04902334776031974, 0.04904814459783128, 0.049072941435342826, 0.04909773827285437, 0.04912253511036591, 0.04914733194787745, 0.04917212878538899, 0.04919692562290054, 0.04922172246041208, 0.049246519297923626, 0.04927131613543517, 0.049296112972946705, 0.04932090981045825, 0.04934570664796979, 0.04937050348548134, 0.049395300322992886, 0.049420097160504425, 0.049444893998015965, 0.049469690835527505, 0.049494487673039045, 0.0495192845105506, 0.04954408134806214, 0.04956887818557368, 0.049593675023085225, 0.049618471860596765, 0.049643268698108305, 0.049668065535619844, 0.04969286237313139, 0.04971765921064293, 0.04974245604815447, 0.049767252885666025, 0.049792049723177564, 0.049816846560689104, 0.049841643398200644, 0.04986644023571219, 0.04989123707322373, 0.04991603391073527, 0.049940830748246824, 0.049965627585758364, 0.0499904244232699, 0.05001522126078145, 0.05004001809829299, 0.05006481493580453, 0.05008961177331607, 0.05011440861082762, 0.05013920544833916, 0.050164002285850696, 0.05018879912336225, 0.05021359596087379, 0.05023839279838533, 0.05026318963589687, 0.050287986473408416, 0.050312783310919956, 0.050337580148431496, 0.05036237698594305, 0.05038717382345459, 0.05041197066096612, 0.05043676749847766, 0.050461564335989216, 0.050486361173500756, 0.050511158011012296, 0.05053595484852384, 0.05056075168603538, 0.05058554852354692, 0.05061034536105846, 0.050635142198570016, 0.050659939036081555, 0.050684735873593095, 0.05070953271110464, 0.05073432954861618, 0.05075912638612772, 0.050783923223639275, 0.05080872006115081, 0.05083351689866235, 0.05085831373617389, 0.05088311057368544, 0.05090790741119698, 0.05093270424870852, 0.05095750108622007, 0.05098229792373161, 0.05100709476124315, 0.05103189159875469, 0.05105668843626624, 0.05108148527377778, 0.051106282111289314, 0.05113107894880087, 0.05115587578631241, 0.05118067262382395, 0.05120546946133549, 0.051230266298847034, 0.051255063136358574, 0.051279859973870114, 0.05130465681138167, 0.05132945364889321, 0.05135425048640475, 0.05137904732391629, 0.051403844161427834, 0.05142864099893937, 0.05145343783645091, 0.05147823467396247, 0.051503031511474, 0.05152782834898554, 0.05155262518649708, 0.05157742202400863 ], "y": [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.696104462952415e-31, 0.0004177678434742387, 0.0016710713738969547, 0.003759910591268148, 0.006684285495587722, 0.010444196086855845, 0.015039642365072296, 0.02047062433023735, 0.02673714198235088, 0.03383919532141266, 0.041776784347423136, 0.050549909060382044, 0.06015856946028919, 0.07060276554714506, 0.08188249732094904, 0.09399776478170185, 0.10694856792940313, 0.12073490676405244, 0.13535678128565065, 0.15081419149419734, 0.167107137389692, 0.18423561897213564, 0.2021996362415272, 0.2209991891978677, 0.2406342778411567, 0.2611049021713936, 0.2824110621885796, 0.30455275789271397, 0.3275299892837962, 0.3513427563618275, 0.3759910591268067, 0.401474897578735, 0.4277942717176117, 0.45494918154343617, 0.4829396270562098, 0.5117656082559312, 0.5414271251426016, 0.571924177716221, 0.6032567659767875, 0.6354248899243036, 0.6684285495587682, 0.7022677448801801, 0.7369424758885412, 0.7724527425838514, 0.8087985449661099, 0.8459798830353166, 0.8839967567914708, 0.9228491662345748, 0.9625371113646259, 1.0030605921816262, 1.0444196086855755, 1.0866141608764721, 1.1296442487543183, 1.1735098723191129, 1.2182110315708545, 1.2637477265095463, 1.310119957135185, 1.3573277234477734, 1.4053710254473106, 1.4542498631337941, 1.503964236507228, 1.5545141455676106, 1.6058995903149402, 1.6581205707492193, 1.7111770868704452, 2.0061448799687196, 2.5325102970693143, 3.0231957620555363, 3.47820127492742, 3.897526835684944, 4.281172444328101, 4.629138100856914, 4.94142380527136, 5.218029557571462, 5.458955357757206, 5.6642012058285856, 5.833767101785615, 5.967653045628288, 6.0658590373566055, 6.128385076970567, 6.1552311644701705, 6.146397299855421, 6.101883483126311, 6.021689714282852, 5.983277050232569, 6.131528214515099, 6.280667023030915, 6.4306934757800125, 6.58160757276239, 6.733409313978057, 6.886098699427003, 7.0396757291092396, 7.194140403024758, 7.349492721173559, 7.505732683555644, 7.662860290171016, 7.820875541019667, 7.979778436101608, 8.138495817673334, 8.296938787575058, 8.457949907241527, 8.621529176672729, 8.787676595868673, 8.95639216482936, 9.127675883554778, 9.301527752044938, 9.477947770299837, 9.656935938319478, 9.83849225610386, 10.022616723652977, 10.209309340966833, 10.398570108045432, 10.590399024888766, 10.784796091496844, 10.981761307869657, 11.181294674007209, 11.383396189909508, 11.588065855576534, 11.795303671008307, 12.005109636204818, 12.217483751166078, 12.432426015892062, 12.64993643038279, 12.870014994638254, 13.092661708658465, 13.31787657244341, 13.545659585993093, 13.776207570906376, 14.037180881393146, 14.348185446974231, 14.709221267649658, 15.120288343419379, 15.581386674283415, 16.092516260241812, 16.58575988884892, 17.086964210907162, 17.613450109643285, 18.165217585057235, 18.74226663714903, 19.34459726591868, 23.025878610583828, 30.57538852883576, 20.70974557512291, 21.022593624173574, 21.339278573078513, 21.65980042183773, 21.984159170451242, 22.31235481891902, 22.644387367241087, 22.980256815417448, 23.28171435616764, 23.49628757812726, 23.71095614575985, 23.92572005906537, 24.14057931804387, 24.355533922695308, 24.570583873019707, 24.785729169017078, 25.00096981068738, 25.21630579803066, 25.431737131046887, 25.647263809736067, 25.862885834098208, 26.078603204133298, 26.29441591984135, 26.584786723525674, 26.901668936613742, 27.222262533331502, 27.546567513678973, 27.874583877656153, 28.206311625263037, 28.541750756499617, 28.88090127136593, 29.223763169861925, 29.570336451987632, 29.92062111774306, 30.27461716712818, 30.632324600143008, 30.993743416787538, 31.35887361706179, 31.727715200965733, 32.10026816849938, 32.476532519662754, 32.85650825445582, 33.24019537287859, 33.627593874931094, 34.18550248104715, 35.104044557824196, 35.831070022852714, 36.534428903882606, 37.324135111268525, 38.418292524115785, 39.471759791690765, 40.48453691399332, 41.45662389102352, 42.38802072278138, 43.27872740926685, 44.12874395047995, 45.1739122068599, 46.082813692823095, 46.79449537897698, 47.30895726532158, 47.62619935185681, 47.6600915650697, 47.38445440568232, 47.52331376573141, 47.76982146723874, 48.03211053953149, 48.31018098260968, 48.595638457972186, 49.063825995586974, 49.60917426126483, 50.181117538080436, 50.7796558260337, 51.404789125124815, 52.17811065965056, 53.0479246114878, 53.763068449984004, 54.323542175139025, 54.729345786952926, 54.980479285425716, 55.11443167139884, 55.59191515812026, 56.07772864003092, 56.571872117130795, 57.07434558941992, 57.58514905689823, 58.10428251956582, 58.631745977422625, 59.16753943046865, 59.71166287870393, 60.264116322128444, 60.82489976074218, 61.394013194545174, 61.98140027994474, 62.673190352917416, 63.48275763035019, 64.5169987956478, 65.9391260473848, 66.85694459856707, 67.7854093650615, 68.7245911760101, 69.6702903184154, 70.62014415831298, 71.57414313268035, 72.53878695522208, 73.5256164702476, 74.52388847674419, 75.53360297471174, 76.55475996415032, 77.58735944505996, 78.6993437499446, 79.6507418007106, 80.36463390717452, 80.83118444618155, 81.04826007077908, 81.42255062661619, 81.6152777335017, 82.29753798383852, 83.09996625034877, 83.91526745971612, 84.74344161194065, 85.58448870702229, 86.43840874496112, 87.30520172575703, 88.18486764941014, 89.07740651592042, 89.98281832528771, 90.9011030775122, 91.83226077259387, 92.77566619418731, 93.72512124892225, 94.67903828464293, 95.6374173013492, 96.60025829904126, 97.567561277719, 98.55935362451969, 99.64394005743758, 100.82698687896502, 102.1071161631436, 103.52325128259011, 105.7860570207743, 107.28872257793812, 108.77538202131939, 111.81497485963449, 115.46415270379805, 116.9391791452774, 117.22133263991918, 118.47935850337838, 119.78749582907804, 121.11833104550846, 122.43046312928814, 123.31868019609632, 124.2573752017265, 125.2151534946703, 126.18150944079058, 127.35262874471374, 128.71124969199724, 130.39277218138534, 132.48850312654764, 134.18412497019716, 135.47963771233395, 136.37504135295796, 136.8703358920692, 138.158495093159, 139.6331260808352, 141.1459132764988, 142.68979848154746, 144.26000268056947, 145.85652587356464, 147.47791578617006, 149.11701086904392, 150.95550544679116, 153.40162414642873, 156.8048158467922, 159.43254774597887, 162.07618388190664, 164.7340683701168, 167.38849600074698, 170.04277152800918, 172.70029112217952, 175.370227100811, 177.61721868666092, 179.96599949274975, 182.41656951907737, 184.96892876564354, 187.60735724541718, 190.33772488191596, 193.33225193672166, 196.41371504811016, 199.58211421608138, 202.83744944063562, 206.17972072177233, 209.67371674558302, 214.49013533400023, 221.06363589757274, 228.6560238522691, 237.51748076066008, 245.9345113684186, 253.87387352727654, 264.86269909417877, 274.05691761335277, 278.61381403870166, 278.51071068883965, 273.74939015147635, 274.87496405413617, 276.5443911599946, 278.08130351273553, 278.9287974676211, 279.5955893614458, 280.1181676218311, 280.5883635366633, 281.2919317752359, 282.38588266298177, 275.5534086149507, 275.5557955758173, 276.44888242184913, 278.0964158508842, 279.6399630887002, 280.9294093973381, 281.61701415039397, 282.0724601065863, 282.1178233709911, 282.1476394753204, 286.2059837349474, 286.02098400802714, 284.05672542118884, 283.84976205953166, 283.17973689286924, 282.8919430081471, 282.9272476975307, 283.2617057952827, 283.87853599924756, 277.7326432048993, 276.77706470080875, 277.1662395983667, 277.8034396805026, 278.335309307033, 317.66812054013496, 275.6027400785707, 275.85439374409896, 276.05178850305276, 276.19551308859917, 276.2855096807439, 276.3536749441384, 276.5186881313412, 276.76661997832844, 277.0910082808589, 277.44409524484297, 277.8051425698493, 278.17415025587786, 278.8334711622537, 279.72653127816704, 280.47045176992765, 281.5510637300917, 282.69920372895933, 279.1683373282384, 273.0855563381157, 272.12854287757256, 271.8929025774689, 271.79209161046504, 271.8366333247463, 271.91439283728084, 271.9608512719254, 271.99749930324685, 272.01764763107195, 272.153460470743, 272.3474119457069, 273.30670691237407, 274.51831802100895, 275.8879338557995, 277.40894516831554, 278.84478487528287, 279.0674954226455, 277.896946270568, 276.0841532425864, 277.8101244367582, 283.59947624501825, 283.1716215567311, 282.13725533203956, 280.62266625702256, 278.81465977821813, 277.05122693209705, 275.75309056428165, 275.78422813017335, 276.1998789877453, 276.85726511132464, 276.7413680004171, 276.27608243906786, 275.8187810084059, 275.36946370843145, 274.92576755399864, 274.506697331276, 275.15518104033697, 276.1328784254752, 277.0153830208843, 277.7121771060699, 278.29748118783147, 278.7655989885742, 279.0688510662601, 281.89836322011405, 279.96020713950605, 278.1085274372988, 276.8576595092576, 278.60846071443814, 283.8377694686791, 283.43997145700445, 281.726211972863, 278.6691350162747, 275.01075375606854, 270.72008627441664, 265.18001174193705, 258.3996434588787, 250.87428352769015, 246.5598279699148, 242.5009125794645, 238.3129337622384, 234.36258842036105, 230.66419386791017, 227.2177501048863, 224.023257131289, 221.08071494711862, 215.98859802468064, 209.60168382449325, 204.68518293903026, 201.27349634515534, 199.8963241783739, 198.5886886796152, 197.32723501917624, 196.11171309345173, 194.9421229024412, 193.82112249455648, 192.7516302829736, 202.83482550713344, 188.13485823855618, 186.48472828036253, 184.71205752545254, 182.8345307247634, 180.871145918945, 178.87174838025135, 176.78564943128578, 174.63567923876093, 172.9328144119838, 171.62321128689177, 170.33525481501067, 169.06870653708742, 167.8102943391429, 166.55238217471268, 165.3062557619265, 164.1417955956303, 163.07699391797706, 162.11458429162596, 161.25456671657705, 160.4969411928302, 159.84170772038544, 159.28965773678289, 158.84353845827223, 158.50358397051951, 158.27120718070876, 158.14880576621422, 157.20677132013037, 155.2931811367861, 153.54690908103748, 152.00485462608316, 150.6582387958404, 149.39356142870514, 148.2011741908238, 147.08133546266583, 146.0340452442317, 145.05930353552117, 144.1571103365343, 143.32746564727097, 142.57036946773127, 141.85842293726006, 141.13111373706255, 140.71415242944065, 140.37709770806916, 140.01255387576253, 139.62625467452074, 139.23541743365251, 138.82840556801995, 138.39647712808838, 137.9396321138581, 137.45787052532887, 136.95123580478582, 136.43079021309035, 135.9051108947787, 135.37900017457014, 134.8509956323315, 134.31490173453298, 133.17139819613422, 131.5660131593166, 130.09224112256197, 128.75883025451878, 127.5839831026902, 126.61536335306934, 125.74145023778739, 124.96125505242865, 124.44475067193403, 124.63136692862702, 124.37412519759656, 123.7192656524189, 123.08365074558718, 122.50521597563386, 121.97438429759521, 121.47946429975525, 121.020455982114, 120.59735934467153, 120.21017438742774, 119.85936645608977, 119.54604722425424, 119.27081734257757, 119.06220850177694, 118.9305107052225, 118.87026831230963, 118.84217608312514, 118.83845038946284, 118.8590912313227, 118.9040986087048, 118.97347252160908, 119.05737560081445, 119.14006052528136, 119.22132063686996, 119.70231588345284, 120.34617347909041, 120.69080081873611, 121.03845005142098, 121.38912117714514, 121.74847930175639, 121.91754071994717, 122.07720386639089, 122.23929189289943, 122.3985411982431, 122.55339132660644, 122.7038422779896, 122.84989405239241, 122.99200396868575, 123.13294181422057, 123.2731735596009, 123.41966165889549, 123.574564311467, 123.7301657651647, 123.88646601998867, 124.04348961189953, 124.20453927201714, 124.36933727216595, 124.53780531246495, 124.70994339291416, 124.88575151351357, 125.06522967426321, 125.24837787516303, 125.43519611621309, 125.6256843974134, 125.81984271876382, 126.01767108026444, 126.21916948191534, 126.4245644799953, 126.60219429288772, 126.74974932067282, 127.08372929910149, 127.51866745957726, 128.05456380210003, 128.69247573331327, 129.3929868834826, 130.09910290571565, 130.84933129330378, 131.64367204624676, 132.4801851544004, 133.30330907555543, 134.0979708678063, 135.23936969557124, 137.0055287172607, 138.4358426261077, 139.5303114221122, 140.28893510527416, 140.8750094091019, 140.94662758478282, 140.83592986557412, 140.81559350607998, 140.88561850630055, 141.03751659812326, 141.19215768269643, 141.3301994717301, 141.46369471012412, 141.61799806671775, 141.79305671615717, 141.98165217015574, 142.18314183607325, 142.40434005767, 142.6629111232473, 143.16718164369289, 143.44240127721645, 143.7557288985794, 144.10716450778168, 144.49233370169023, 144.8808660500348, 145.29255738900102, 145.7274077185887, 146.18541703879794, 146.66658534962878, 147.1709126510812, 147.69875729709403, 148.25080803526552, 148.82708198246291, 149.42757913868599, 150.05229950393493, 150.70739656440162, 151.46895511553487, 152.38162464247938, 153.46609333090177, 154.72260064512943, 156.15114658516262, 157.75173115100114, 159.5243543426451, 161.46901616009453, 163.95424485828556, 178.03823164145325, 183.89417779402086, 186.18266004689917, 187.51601663815, 187.8955727614577, 187.3790543463065, 186.07356974199166, 183.58507316809354, 179.58771041181336, 174.08148147315094, 169.34043890222006, 165.4371458242191, 161.90115743393903, 158.17567221065775, 154.2261051430423, 150.06802385908142, 146.12404496539878, 142.76679084469686, 139.7432632045506, 136.68093868405484, 133.54152972073254, 130.31273743466295, 126.99456182584615, 123.58700289428202, 120.09006063997072, 116.5037350629117, 112.82802616310589, 109.19403423999924, 105.77145098153915, 102.52818228842744, 99.46422816066415, 96.57958859824919, 93.87426360118232, 91.34825316946419, 88.70545374528623, 82.4642628093594, 79.43262155856844, 76.53727511452252, 73.7782234772213, 71.15546664666542, 68.6690046228546, 66.3188374057888, 64.10496499546801, 62.00197831345471, 59.857260519674114, 57.66472419119619, 55.42436932802141, 53.136195930149576, 50.800203997580645, 48.41639353031465, 45.984764528351576, 43.50530002329003, 40.97797615851035, 38.23123587050942, 34.544770590189735, 30.482139552860257, 26.741807427610723, 25.344518226999405, 24.587160453649602, 24.461119051948383, 24.59049105039758, 24.720888022081475, 24.85230996700006, 24.98475688515334, 25.11822877654133, 25.252725641163998, 25.388247479021352, 25.524794290113388, 25.662366074440143, 25.800962832001588, 25.94058456279773, 26.081231266828556, 26.22290294409408, 26.365599594594297, 26.5093212183292, 26.654067815298788, 26.7998393855031, 26.946635928942108, 27.094457445615777, 27.24330393552416, 27.393175398667218, 27.54407183504498, 27.695993244657444, 27.84893962750461, 28.002910983586453, 28.15790731290298, 28.31392861545421, 28.470965440867825, 28.628960928693033, 28.78790557576957, 28.947799382097436, 29.108642347676586, 29.270434472507052, 29.433175756588845, 29.596864143381723, 29.76129438878177, 29.926330258498513, 30.09197175253188, 30.257463792886924, 30.422028937192863, 30.585748121970497, 30.748621347219853, 30.910648612940914, 31.07182991913369, 31.232165265798166, 31.391654652934346, 31.550298080542237, 31.708095548621845, 31.865047057173147, 32.02115260619619, 32.176538102748395, 32.336308772059006, 32.50312771672505, 32.67699493674653, 32.85791043212346, 33.04162664801849, 33.226060194599505, 33.412160602703324, 33.59992787232997, 33.78936200347944, 33.980462996151736, 34.17323085034684, 34.36766556606482, 34.5637671433056, 34.7615355820692, 34.96097088235565, 35.16207304416489, 35.36484206749698, 35.56927795235192, 35.775380698729634, 35.98294558990619, 36.1916429554644, 36.401468360956905, 36.61242180638374, 36.82450329174484, 37.03771281704028, 37.252050382269964, 37.46751598743395, 37.684109632532234, 37.90183131756483, 38.12068104253171, 38.34060108255378, 38.56136628250095, 38.78295395789612, 39.00589913893985, 39.23036902433981, 39.4563455772058, 39.68382879753787, 39.91281868533602, 40.14331524060018, 40.375318463330395, 40.60882835352667, 40.843844911188995, 41.080368136317375, 41.3183980289118, 41.55793458897232, 41.79897781649886, 42.04152771149146, 42.285584273950114, 42.532140547767845, 42.79014638169059, 43.055477615845405, 43.32633643635562, 43.60274164447286, 43.8846932401971, 44.17219122352837, 44.465235594466684, 44.76382635301197, 45.06796349916435, 45.377647032923704, 45.69287695429006, 46.01365326326344, 46.33997595984384, 46.67184504403126, 47.009260515825744, 47.34938903829402, 47.682062023623864, 48.015563068908605, 48.33688742655702, 48.643172544362926, 48.94342948562925, 49.23765825035606, 49.52585883854326, 49.803823123532084, 50.1326701649679, 50.463148697492144, 50.79525860965103, 51.12889806475767, 51.463977944010644, 51.80049824740996, 52.138458974955604, 52.477860126647606, 52.81870170248593, 53.16098370247067, 53.50470612660171, 53.84986897487907, 54.1964722473028, 54.544515943872845, 54.894000064589235, 55.24492460945201, 55.59728957846113, 55.95109497161657, 56.30634078891834, 56.66302703036646, 57.02115369596093, 57.38079949610413, 57.79846229107619, 58.23455670244476, 58.67563909963131, 59.12170948263584, 59.572767851458366, 60.02881420609887, 60.489848546557354, 60.95587087283388, 61.42688118492835, 61.90287948284076, 62.38409436005595, 62.871496721947345, 63.365180571548876, 63.86514590886063, 64.37139532335911, 64.88396455047459, 65.40337748475274, 65.9309905417901, 66.46519180972585, 67.00589602356689, 67.5531031833133, 68.10681328896489, 68.6669798067854, 69.2335108441098, 69.80640393039981, 70.38571202236265, 70.97261754842333, 71.56679761988217, 72.16354345208384, 72.76209487419274, 73.36245188620886, 73.96461448813217, 74.56858267996269, 75.17435646170054, 75.78193583334551, 76.39132079489768, 77.0025113463571, 77.61550748772373, 78.23030921899758, 78.84691654017871, 79.47717067393886, 80.18990872013745, 80.93412730939195, 81.71221658745033, 82.53043211883849, 83.39217393580876, 84.29739739312788, 85.12589403395705, 85.9559414560054, 86.79757187436422, 87.65078528903344, 88.51558170001302, 89.39196110730315, 90.2801450283608, 91.17934675699078, 92.08950134408065, 93.01060878963037, 93.9426690936401, 94.88568225610973, 95.83964827703909, 96.80456715642836, 97.78043889427738, 98.76726349058653, 99.76543177180304, 100.77968368522234, 101.81141452552714, 102.86062429271678, 103.92731298679186, 105.01173748882194, 106.12748984076487, 107.28075451839655, 108.51692715923488, 109.897886501587, 111.42399053578114, 113.09523926181807, 114.800037868709, 116.50374863112872, 118.21190762152816, 119.84627946925187, 121.45692757086493, 123.04823096390847, 124.62018964838289, 126.21293586850673, 128.02974246890534, 129.87151998085307, 131.7382684043493, 133.6299877393946, 135.54667871146842, 137.48840163621185, 139.45519497460307, 141.4470587266411, 143.46399289232684, 145.59776604019902, 147.88213335103086, 150.28194199417206, 152.79805544910792, 155.43047371583938, 158.1791967943654, 161.0442246846872, 164.053654887647, 167.20025033333988, 170.48359972672108, 173.90370306778996, 177.49484679337, 181.35601483788525, 185.46732270572832, 189.82245451794262, 194.40621944326023, 199.07914620062246, 203.8337764466936, 208.68691754366915, 213.6442136563416, 218.70365280765907, 223.81452825954574, 231.10799917331272, 238.73535014531637, 246.81673887020182, 255.3521173592882, 264.40740289464276, 274.0456326219534, 284.2301200547537, 294.9563082168865, 306.2241971083571, 318.8809494713288, 336.04628483060645, 363.15072778444755, 386.7182284701132, 411.9557474643102, 438.8323315796039, 467.72619649533755, 499.1602124715489, 545.4369205010447, 608.7971627351848, 621.6847997017563, 600.8813659556199, 577.0393144372061, 542.998972319824, 499.5733733806529, 469.43384844394643, 444.1110630322489, 451.0728908941313, 383.57632866133713, 357.59369081536755, 335.52557513883403, 316.57054159279437, 304.9585353656825, 292.6228909885801, 281.83085086625204, 269.5849950750051, 256.2155344285628, 242.68706174994892, 231.35582643678657, 221.0041974558427, 210.51264637694902, 199.5733406275035, 191.06188348621038, 181.16935521737952, 174.0826219570949, 167.2275461478461, 160.6169365165006, 154.2507930630554, 148.12911578751346, 142.25190468987174, 136.7140399494025, 131.9257959289043, 132.07007974382574, 126.78802746910372, 120.47157063026295, 113.6994685937974, 106.47500684233773, 99.12928961153058, 91.99869264759533, 86.45298284155862, 80.94580723469531, 74.43091387004694, 68.56858741359528, 62.46605069860502, 56.992779854133886, 52.16337992112636, 47.987830753668774, 44.466748380998894, 41.60013280311498, 39.14741125696476, 36.862017861653925, 34.74394342288607, 32.79375967730191, 31.012007677747384, 29.39868742422286, 27.953798916727575, 26.67734215526224, 30.440513100478476, 16.6367286601749, 8.497563268326802, 6.147523648307385, 4.177044960401672, 2.5861272046087254, 1.3747703809293024, 0.5429744893628273, 0.09073952990963254, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.295502232187966, 38.14938267604674, 120.45511951227479, 176.33028757068678, 291.456573767024, 313.1768454077984, 347.6923092757779, 458.8822488814574, 527.9703329375541, 664.7415485652223, 609.6098716429387, 590.4250315560105, 606.1093691731699, 608.4987903182476, 584.5837650337558, 568.6625132319011, 553.7010216352504, 540.3750109536475, 532.1469591097699, 530.1184229193126, 530.0413556467147, 532.6463644340487, 536.5818909358821, 540.2852851076914, 544.329394705927, 548.8301323361565, 553.8639341860006, 560.4835241292479, 562.5465612965273, 548.6804806924553, 546.9521051185947, 546.0575445655446, 547.0753531650332, 549.5577795548955, 551.7972820900932, 554.4317272135845, 559.4136366392651, 565.0258086873614, 571.2922553125458, 577.9964024954262, 584.9722280603753, 592.6985610984833, 601.3784356429959, 611.049915400734, 621.734753598553, 634.2229410691261, 671.414886253109, 676.4558998479672, 704.682564696162, 705.8799135376587, 707.3692057024451, 709.8135399708765, 712.4270108141121, 714.0778181189863, 716.4916347665666, 715.5084621396958, 719.4126344950929, 725.4795512707062, 729.375679940322, 731.1092428980701, 732.048114921678, 735.4411917026623, 740.0648320631595, 746.271543918396, 754.2834188714617, 766.7947076331282, 787.2687466970394, 802.090552303993, 805.6828282576897, 811.6578180753453, 814.4420267306406, 810.9715132667582, 816.1932644953699, 820.8229402470238, 824.8605405217222, 828.3039574976151, 831.0847227260641, 835.1307630238014, 845.6940744882447, 857.9923382647886, 870.7404729354528, 897.0160930494474, 921.2473921188954, 944.7573526739725, 947.1545380332855, 947.4569925321499, 954.8409676701938, 960.6883647913878, 989.9267925795557, 1004.9242348939733, 982.9604923650186, 972.7142211083362, 876.0673795797109, 816.7034352659645, 777.4989221601971, 746.8156592822857, 719.5746821980686, 695.7997605899741, 670.8123661204254, 642.4366007721925, 612.2410169890517, 587.0427266328215, 565.5191440166949, 545.4626081337336, 526.2520376393774, 508.09650061485286, 491.41214414455465, 475.090255849877, 457.626178528394, 444.86591889416417, 418.30880294986207, 400.8523541542269, 387.73698114857353, 375.71832114482083, 364.2228876185468, 353.1780164280964, 342.05267159661133, 330.99979461625105, 321.9299685478328, 312.03359713103663, 305.59570752922673, 295.6635204288883, 278.13189215503644, 268.37699740856687, 259.1645580295069, 250.57126381732672, 242.5971147720221, 234.3433042580574, 225.8925604797419, 220.62293447622142, 218.32277964125686, 212.5514618053466, 203.24243493355888, 187.74004443542057, 176.90064802615998, 168.43081510360423, 160.56962070512043, 153.5251545677168, 146.91979644628066, 142.28546147531296, 142.90681883518042, 134.51760469852923, 114.83484726773074, 100.80979172490473, 89.82714997905201, 79.76107332283199, 71.6906465149813, 65.37986987915032, 49.99739879577824, 22.42151135758425, 5.550203788991534, 2.6180367987034535e-09, 2.7690615719881738e-05, 0.00010968808471624393, 0.0002459950250259244, 0.00043661143664890995, 0.0006815373195851358, 0.0009807726738347185, 0.0013343174993975158, 0.0017421717962736965, 0.002204335564463182, 0.002720808803965843, 0.0032915915147819254, 0.003916683696911158, 0.004596085350353838, 0.005329796475109642, 0.006117817071178921, 20.431603994653337, 169.64990517899616, 316.7254525802801, 447.1251288300949, 597.7986670285516, 665.397379972549, 627.187366597265, 603.356446488774, 554.2138175141683, 547.3663497623639, 545.8979029431473, 543.568599035742, 537.4005951992641, 535.8277134148433, 537.4840652262684, 542.3911415970001, 552.7520519793538, 556.3139811768505, 557.4048553457749, 554.5845972871607, 545.0227763859131, 522.4930503344826, 492.0028767384139, 467.31440310148093, 447.0291036312916, 431.4519114214094, 417.7780730530392, 405.1273481604949, 393.499736743758, 382.689527731346, 372.0191583719017, 363.0589444498105, 355.17171444451225, 348.1433503411451, 341.7309694924616, 335.8560612648962, 330.2799117819056, 324.9654661269647, 319.9172821080111, 315.13383797957493, 310.6416900587577, 306.42523419785203, 302.47189974747596, 298.80753084381126, 295.3937483735284, 291.44538407778185, 287.48888834168696, 283.7889305131671, 280.3455105922202, 277.3404455052911, 274.2685884417649, 271.6450995109213, 269.3094027168412, 267.10705805922237, 265.0321446967665, 263.08466262947644, 261.26461185734956, 259.51864414794346, 257.837243255815, 256.22984571730507, 254.24341421305186, 252.88850651684157, 251.30863079454429, 249.75715263087628, 248.2761763352198, 246.86516644404688, 245.523639184032, 244.25159455517712, 243.04903255748036, 241.9159531909434, 240.93028383892957, 239.97532200389972, 238.99379373375024, 238.08377249717785, 237.24318275034491, 236.2930846961715, 235.26615591792992, 234.18822909291274, 233.05731234096612, 231.8591988915755, 230.60838574671007, 229.5024741322274, 228.4504970739903, 227.40155078991643, 226.3735402136593, 225.38754318433354, 224.4563677053074, 223.57453014018913, 222.7420304889784, 221.9588687516753, 221.22513169688315, 220.97170282329225, 220.78500261298927, 220.3148032221163, 220.07420582116399, 219.86549384935853, 220.03467450382556, 220.16381594903768, 220.158100509792, 219.76184925829205, 219.11814740806608, 218.6692592901323, 218.00079626505735, 217.2166816846599, 216.43758064320446, 215.4034275280677, 214.38965607516258, 213.14216247475844, 211.52439465226044, 210.97461694859695, 210.58748234764766, 212.67895742461695, 214.08828771279087, 214.47529588552945, 213.72507284773422, 208.8555512629132, 205.4063310961774, 200.93747251630867, 195.3261766588588, 185.19096328830278, 173.5050227140773, 164.45806114521585, 160.88097609912688, 159.37433433637247, 156.38998732595545, 150.2104979540032, 140.53629686331217, 133.49034863070574, 132.05868897653616, 132.08946054180666, 129.40701676241454, 127.21400630935213, 121.81305616109837, 115.55529302034486, 112.52875479135645, 110.4554201814184, 108.63289208789553, 106.17976582453639, 101.46270282544734, 96.00274492279364, 90.5886161506157, 85.22031650890584, 78.71587727543135, 71.02668340506558, 78.43284190516032, 68.68502286715345, 53.98293151690335, 41.32737138204777, 30.258217383898618, 22.292764510989674, 16.43942522612542, 9.420421818586528, 0.945041457567605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] }, { "line": { "color": "black", "width": 2 }, "mode": "lines", "name": "Total PHDOS", "type": "scatter", "x": [ -0.0037195256267313916, -0.0036947287892198487, -0.0036699319517083063, -0.0036451351141967635, -0.0036203382766852206, -0.0035955414391736786, -0.0035707446016621357, -0.0035459477641505937, -0.003521150926639051, -0.003496354089127508, -0.0034715572516159656, -0.0034467604141044227, -0.00342196357659288, -0.003397166739081338, -0.003372369901569795, -0.003347573064058252, -0.0033227762265467097, -0.003297979389035167, -0.0032731825515236244, -0.003248385714012082, -0.003223588876500539, -0.0031987920389889967, -0.0031739952014774543, -0.0031491983639659114, -0.0031244015264543686, -0.003099604688942826, -0.0030748078514312837, -0.0030500110139197413, -0.0030252141764081984, -0.003000417338896656, -0.0029756205013851135, -0.0029508236638735707, -0.002926026826362028, -0.0029012299888504854, -0.0028764331513389425, -0.0028516363138274, -0.0028268394763158577, -0.002802042638804315, -0.0027772458012927724, -0.0027524489637812295, -0.002727652126269687, -0.0027028552887581447, -0.002678058451246602, -0.0026532616137350594, -0.002628464776223517, -0.002603667938711974, -0.0025788711012004312, -0.002554074263688889, -0.002529277426177346, -0.0025044805886658035, -0.002479683751154261, -0.002454886913642718, -0.002430090076131176, -0.002405293238619633, -0.0023804964011080905, -0.002355699563596548, -0.002330902726085005, -0.0023061058885734628, -0.0022813090510619203, -0.0022565122135503775, -0.0022317153760388346, -0.002206918538527292, -0.0021821217010157493, -0.0021573248635042073, -0.0021325280259926645, -0.0021077311884811216, -0.0020829343509695796, -0.0020581375134580368, -0.002033340675946494, -0.0020085438384349515, -0.0019837470009234086, -0.001958950163411866, -0.0019341533259003237, -0.0019093564883887809, -0.0018845596508772382, -0.0018597628133656958, -0.0018349659758541532, -0.0018101691383426103, -0.0017853723008310679, -0.0017605754633195254, -0.0017357786258079828, -0.00171098178829644, -0.0016861849507848975, -0.0016613881132733549, -0.001636591275761812, -0.0016117944382502696, -0.0015869976007387271, -0.0015622007632271845, -0.0015374039257156416, -0.0015126070882040992, -0.0014878102506925568, -0.001463013413181014, -0.0014382165756694713, -0.0014134197381579288, -0.0013886229006463862, -0.0013638260631348433, -0.001339029225623301, -0.0013142323881117585, -0.0012894355506002156, -0.001264638713088673, -0.0012398418755771305, -0.001215045038065588, -0.001190248200554045, -0.0011654513630425026, -0.0011406545255309602, -0.0011158576880194173, -0.0010910608505078747, -0.0010662640129963322, -0.0010414671754847898, -0.001016670337973247, -0.0009918735004617043, -0.0009670766629501619, -0.0009422798254386189, -0.0009174829879270765, -0.0008926861504155339, -0.0008678893129039914, -0.0008430924753924485, -0.000818295637880906, -0.0007934988003693636, -0.000768701962857821, -0.0007439051253462782, -0.0007191082878347356, -0.0006943114503231931, -0.0006695146128116502, -0.0006447177753001078, -0.0006199209377885653, -0.0005951241002770227, -0.0005703272627654799, -0.0005455304252539373, -0.0005207335877423949, -0.0004959367502308519, -0.00047113991271930945, -0.00044634307520776697, -0.0004215462376962245, -0.00039674940018468157, -0.00037195256267313946, -0.00034715572516159655, -0.0003223588876500537, -0.0002975620501385116, -0.00027276521262696867, -0.0002479683751154258, -0.00022317153760388367, -0.00019837470009234078, -0.00017357786258079792, -0.0001487810250692558, -0.0001239841875577129, -9.918735004617003e-05, -7.43905125346279e-05, -4.959367502308501e-05, -2.4796837511542876e-05, 0.0, 2.4796837511542876e-05, 4.959367502308501e-05, 7.43905125346279e-05, 9.918735004617077e-05, 0.0001239841875577129, 0.0001487810250692558, 0.00017357786258079865, 0.00019837470009234078, 0.00022317153760388367, 0.0002479683751154258, 0.00027276521262696867, 0.0002975620501385116, 0.0003223588876500537, 0.00034715572516159655, 0.00037195256267313946, 0.00039674940018468157, 0.0004215462376962245, 0.00044634307520776735, 0.00047113991271930945, 0.0004959367502308524, 0.0005207335877423952, 0.0005455304252539373, 0.0005703272627654802, 0.0005951241002770224, 0.0006199209377885653, 0.0006447177753001081, 0.0006695146128116502, 0.0006943114503231931, 0.0007191082878347361, 0.0007439051253462782, 0.000768701962857821, 0.0007934988003693639, 0.000818295637880906, 0.000843092475392449, 0.0008678893129039918, 0.0008926861504155339, 0.0009174829879270768, 0.0009422798254386189, 0.0009670766629501619, 0.0009918735004617047, 0.001016670337973247, 0.0010414671754847898, 0.0010662640129963327, 0.0010910608505078747, 0.0011158576880194175, 0.0011406545255309604, 0.0011654513630425026, 0.0011902482005540455, 0.0012150450380655877, 0.0012398418755771305, 0.0012646387130886734, 0.0012894355506002156, 0.0013142323881117585, 0.0013390292256233013, 0.0013638260631348433, 0.0013886229006463862, 0.001413419738157929, 0.0014382165756694713, 0.0014630134131810141, 0.001487810250692557, 0.0015126070882040992, 0.001537403925715642, 0.0015622007632271843, 0.0015869976007387271, 0.00161179443825027, 0.001636591275761812, 0.0016613881132733549, 0.001686184950784898, 0.00171098178829644, 0.0017357786258079828, 0.0017605754633195257, 0.0017853723008310679, 0.0018101691383426107, 0.0018349659758541536, 0.0018597628133656958, 0.0018845596508772387, 0.0019093564883887809, 0.0019341533259003237, 0.0019589501634118666, 0.0019837470009234086, 0.0020085438384349515, 0.0020333406759464943, 0.0020581375134580368, 0.0020829343509695796, 0.0021077311884811225, 0.0021325280259926645, 0.0021573248635042073, 0.0021821217010157493, 0.002206918538527292, 0.002231715376038835, 0.0022565122135503775, 0.0022813090510619203, 0.002306105888573463, 0.002330902726085005, 0.002355699563596548, 0.002380496401108091, 0.002405293238619633, 0.002430090076131176, 0.002454886913642719, 0.002479683751154261, 0.002504480588665804, 0.002529277426177346, 0.002554074263688889, 0.0025788711012004317, 0.002603667938711974, 0.002628464776223517, 0.00265326161373506, 0.002678058451246602, 0.0027028552887581447, 0.0027276521262696875, 0.0027524489637812295, 0.0027772458012927724, 0.002802042638804315, 0.0028268394763158577, 0.0028516363138274005, 0.0028764331513389425, 0.0029012299888504854, 0.0029260268263620283, 0.0029508236638735707, 0.0029756205013851127, 0.0030004173388966564, 0.0030252141764081984, 0.0030500110139197404, 0.003074807851431284, 0.003099604688942826, 0.0031244015264543686, 0.003149198363965912, 0.0031739952014774543, 0.0031987920389889963, 0.00322358887650054, 0.003248385714012082, 0.003273182551523624, 0.0032979793890351677, 0.0033227762265467097, 0.003347573064058252, 0.003372369901569796, 0.003397166739081338, 0.00342196357659288, 0.0034467604141044236, 0.0034715572516159656, 0.003496354089127508, 0.0035211509266390513, 0.0035459477641505937, 0.0035707446016621357, 0.0035955414391736777, 0.0036203382766852215, 0.0036451351141967635, 0.003669931951708306, 0.003694728789219849, 0.0037195256267313916, 0.0037443224642429336, 0.0037691193017544773, 0.0037939161392660193, 0.0038187129767775618, 0.003843509814289105, 0.0038683066518006475, 0.0038931034893121895, 0.003917900326823733, 0.003942697164335275, 0.003967494001846817, 0.003992290839358361, 0.004017087676869903, 0.004041884514381445, 0.004066681351892989, 0.004091478189404531, 0.0041162750269160735, 0.004141071864427617, 0.004165868701939159, 0.004190665539450701, 0.004215462376962243, 0.0042402592144737865, 0.004265056051985329, 0.004289852889496871, 0.004314649727008415, 0.004339446564519957, 0.004364243402031499, 0.004389040239543043, 0.004413837077054584, 0.004438633914566127, 0.00446343075207767, 0.0044882275895892125, 0.004513024427100755, 0.004537821264612298, 0.004562618102123841, 0.004587414939635382, 0.004612211777146926, 0.004637008614658468, 0.00466180545217001, 0.004686602289681554, 0.004711399127193096, 0.0047361959647046386, 0.004760992802216182, 0.004785789639727724, 0.004810586477239266, 0.00483538331475081, 0.004860180152262352, 0.004884976989773894, 0.004909773827285436, 0.00493457066479698, 0.004959367502308522, 0.004984164339820065, 0.005008961177331608, 0.00503375801484315, 0.005058554852354692, 0.005083351689866236, 0.005108148527377778, 0.00513294536488932, 0.005157742202400863, 0.005182539039912406, 0.005207335877423948, 0.0052321327149354915, 0.005256929552447034, 0.0052817263899585755, 0.00530652322747012, 0.005331320064981661, 0.005356116902493204, 0.005380913740004747, 0.005405710577516289, 0.005430507415027832, 0.005455304252539375, 0.0054801010900509175, 0.005504897927562459, 0.0055296947650740015, 0.005554491602585545, 0.005579288440097087, 0.00560408527760863, 0.005628882115120173, 0.005653678952631715, 0.005678475790143257, 0.005703272627654801, 0.005728069465166343, 0.005752866302677885, 0.005777663140189429, 0.005802459977700971, 0.005827256815212513, 0.0058520536527240565, 0.005876850490235599, 0.005901647327747141, 0.005926444165258685, 0.005951241002770227, 0.005976037840281769, 0.006000834677793313, 0.006025631515304854, 0.006050428352816397, 0.00607522519032794, 0.0061000220278394825, 0.006124818865351025, 0.0061496157028625665, 0.006174412540374111, 0.006199209377885652, 0.006224006215397195, 0.006248803052908738, 0.00627359989042028, 0.006298396727931823, 0.006323193565443366, 0.0063479904029549086, 0.00637278724046645, 0.006397584077977994, 0.006422380915489536, 0.006447177753001078, 0.006471974590512622, 0.006496771428024164, 0.006521568265535706, 0.00654636510304725, 0.006571161940558792, 0.006595958778070334, 0.006620755615581878, 0.0066455524530934194, 0.006670349290604962, 0.006695146128116506, 0.006719942965628048, 0.00674473980313959, 0.0067695366406511324, 0.006794333478162676, 0.006819130315674218, 0.00684392715318576, 0.006868723990697304, 0.0068935208282088455, 0.006918317665720388, 0.006943114503231931, 0.006967911340743474, 0.006992708178255016, 0.007017505015766559, 0.007042301853278102, 0.007067098690789643, 0.0070918955283011875, 0.007116692365812729, 0.0071414892033242715, 0.007166286040835815, 0.007191082878347357, 0.0072158797158589, 0.007240676553370443, 0.007265473390881985, 0.007290270228393527, 0.007315067065905071, 0.007339863903416613, 0.007364660740928155, 0.007389457578439698, 0.007414254415951241, 0.007439051253462783, 0.007463848090974325, 0.007488644928485869, 0.0075134417659974105, 0.007538238603508953, 0.007563035441020497, 0.007587832278532039, 0.007612629116043581, 0.007637425953555124, 0.007662222791066667, 0.007687019628578209, 0.0077118164660897525, 0.007736613303601295, 0.0077614101411128365, 0.007786206978624381, 0.007811003816135922, 0.007835800653647465, 0.007860597491159008, 0.00788539432867055, 0.007910191166182093, 0.007934988003693636, 0.007959784841205178, 0.007984581678716721, 0.008009378516228264, 0.008034175353739806, 0.00805897219125135, 0.00808376902876289, 0.008108565866274434, 0.008133362703785976, 0.008158159541297519, 0.008182956378809062, 0.008207753216320604, 0.008232550053832147, 0.00825734689134369, 0.008282143728855232, 0.008306940566366773, 0.008331737403878318, 0.00835653424138986, 0.008381331078901402, 0.008406127916412945, 0.008430924753924488, 0.00845572159143603, 0.008480518428947573, 0.008505315266459116, 0.008530112103970658, 0.008554908941482201, 0.008579705778993743, 0.008604502616505286, 0.00862929945401683, 0.008654096291528371, 0.008678893129039914, 0.008703689966551456, 0.008728486804062999, 0.00875328364157454, 0.008778080479086084, 0.008802877316597627, 0.008827674154109169, 0.008852470991620712, 0.008877267829132255, 0.008902064666643797, 0.008926861504155338, 0.008951658341666884, 0.008976455179178425, 0.009001252016689967, 0.009026048854201512, 0.009050845691713053, 0.009075642529224595, 0.009100439366736138, 0.009125236204247681, 0.009150033041759223, 0.009174829879270766, 0.00919962671678231, 0.009224423554293851, 0.009249220391805394, 0.009274017229316936, 0.00929881406682848, 0.00932361090434002, 0.009348407741851564, 0.009373204579363107, 0.009398001416874649, 0.009422798254386192, 0.009447595091897734, 0.009472391929409277, 0.00949718876692082, 0.009521985604432362, 0.009546782441943905, 0.009571579279455449, 0.00959637611696699, 0.009621172954478532, 0.009645969791990075, 0.009670766629501617, 0.009695563467013162, 0.009720360304524703, 0.009745157142036246, 0.009769953979547788, 0.00979475081705933, 0.009819547654570873, 0.009844344492082418, 0.00986914132959396, 0.009893938167105503, 0.009918735004617044, 0.009943531842128586, 0.00996832867964013, 0.009993125517151674, 0.010017922354663216, 0.010042719192174757, 0.0100675160296863, 0.010092312867197842, 0.010117109704709384, 0.010141906542220929, 0.010166703379732472, 0.010191500217244014, 0.010216297054755555, 0.010241093892267098, 0.01026589072977864, 0.010290687567290182, 0.010315484404801727, 0.01034028124231327, 0.010365078079824811, 0.010389874917336353, 0.010414671754847896, 0.010439468592359438, 0.010464265429870983, 0.010489062267382524, 0.010513859104894068, 0.01053865594240561, 0.010563452779917151, 0.010588249617428694, 0.01061304645494024, 0.01063784329245178, 0.010662640129963322, 0.010687436967474866, 0.010712233804986407, 0.010737030642497949, 0.010761827480009494, 0.010786624317521037, 0.010811421155032579, 0.01083621799254412, 0.010861014830055664, 0.010885811667567205, 0.010910608505078747, 0.010935405342590292, 0.010960202180101835, 0.010984999017613377, 0.011009795855124918, 0.011034592692636461, 0.011059389530148003, 0.011084186367659548, 0.01110898320517109, 0.011133780042682633, 0.011158576880194174, 0.011183373717705716, 0.01120817055521726, 0.011232967392728804, 0.011257764230240346, 0.011282561067751887, 0.01130735790526343, 0.011332154742774972, 0.011356951580286514, 0.011381748417798059, 0.011406545255309602, 0.011431342092821144, 0.011456138930332685, 0.011480935767844229, 0.01150573260535577, 0.011530529442867312, 0.011555326280378858, 0.0115801231178904, 0.011604919955401942, 0.011629716792913485, 0.011654513630425026, 0.011679310467936568, 0.011704107305448113, 0.011728904142959656, 0.011753700980471198, 0.01177849781798274, 0.011803294655494283, 0.011828091493005824, 0.01185288833051737, 0.011877685168028911, 0.011902482005540454, 0.011927278843051996, 0.011952075680563537, 0.01197687251807508, 0.012001669355586626, 0.012026466193098167, 0.012051263030609709, 0.012076059868121252, 0.012100856705632794, 0.012125653543144335, 0.012150450380655878, 0.012175247218167424, 0.012200044055678965, 0.012224840893190507, 0.01224963773070205, 0.012274434568213591, 0.012299231405725133, 0.012324028243236678, 0.012348825080748221, 0.012373621918259763, 0.012398418755771305, 0.012423215593282848, 0.01244801243079439, 0.012472809268305934, 0.012497606105817476, 0.01252240294332902, 0.01254719978084056, 0.012571996618352102, 0.012596793455863646, 0.01262159029337519, 0.012646387130886732, 0.012671183968398274, 0.012695980805909817, 0.012720777643421359, 0.0127455744809329, 0.012770371318444445, 0.012795168155955989, 0.01281996499346753, 0.012844761830979072, 0.012869558668490615, 0.012894355506002157, 0.012919152343513698, 0.012943949181025243, 0.012968746018536786, 0.012993542856048328, 0.01301833969355987, 0.013043136531071413, 0.013067933368582954, 0.0130927302060945, 0.013117527043606041, 0.013142323881117584, 0.013167120718629126, 0.013191917556140667, 0.01321671439365221, 0.013241511231163756, 0.013266308068675297, 0.013291104906186839, 0.013315901743698382, 0.013340698581209924, 0.013365495418721465, 0.013390292256233012, 0.013415089093744554, 0.013439885931256095, 0.013464682768767638, 0.01348947960627918, 0.013514276443790722, 0.013539073281302265, 0.01356387011881381, 0.013588666956325351, 0.013613463793836893, 0.013638260631348436, 0.013663057468859978, 0.01368785430637152, 0.013712651143883064, 0.013737447981394608, 0.01376224481890615, 0.013787041656417691, 0.013811838493929234, 0.013836635331440776, 0.01386143216895232, 0.013886229006463862, 0.013911025843975406, 0.013935822681486947, 0.013960619518998489, 0.013985416356510032, 0.014010213194021577, 0.014035010031533119, 0.01405980686904466, 0.014084603706556204, 0.014109400544067745, 0.014134197381579287, 0.01415899421909083, 0.014183791056602375, 0.014208587894113917, 0.014233384731625458, 0.014258181569137001, 0.014282978406648543, 0.014307775244160085, 0.01433257208167163, 0.014357368919183173, 0.014382165756694714, 0.014406962594206256, 0.0144317594317178, 0.01445655626922934, 0.014481353106740886, 0.014506149944252427, 0.01453094678176397, 0.014555743619275512, 0.014580540456787054, 0.014605337294298597, 0.014630134131810142, 0.014654930969321684, 0.014679727806833225, 0.014704524644344769, 0.01472932148185631, 0.014754118319367852, 0.014778915156879395, 0.01480371199439094, 0.014828508831902482, 0.014853305669414023, 0.014878102506925566, 0.014902899344437108, 0.01492769618194865, 0.014952493019460195, 0.014977289856971738, 0.01500208669448328, 0.015026883531994821, 0.015051680369506364, 0.015076477207017906, 0.015101274044529451, 0.015126070882040994, 0.015150867719552536, 0.015175664557064077, 0.01520046139457562, 0.015225258232087162, 0.015250055069598707, 0.015274851907110249, 0.015299648744621792, 0.015324445582133334, 0.015349242419644875, 0.015374039257156418, 0.01539883609466796, 0.015423632932179505, 0.015448429769691047, 0.01547322660720259, 0.015498023444714131, 0.015522820282225673, 0.015547617119737216, 0.015572413957248761, 0.015597210794760303, 0.015622007632271845, 0.015646804469783386, 0.01567160130729493, 0.015696398144806473, 0.015721194982318016, 0.01574599181982956, 0.0157707886573411, 0.015795585494852642, 0.015820382332364186, 0.015845179169875726, 0.015869976007387272, 0.015894772844898816, 0.015919569682410355, 0.0159443665199219, 0.015969163357433442, 0.015993960194944982, 0.016018757032456525, 0.016043553869968072, 0.01606835070747961, 0.016093147544991155, 0.0161179443825027, 0.016142741220014238, 0.01616753805752578, 0.016192334895037325, 0.016217131732548868, 0.01624192857006041, 0.01626672540757195, 0.016291522245083494, 0.016316319082595038, 0.01634111592010658, 0.016365912757618124, 0.016390709595129668, 0.016415506432641207, 0.01644030327015275, 0.016465100107664294, 0.016489896945175837, 0.01651469378268738, 0.01653949062019892, 0.016564287457710464, 0.016589084295222007, 0.016613881132733547, 0.01663867797024509, 0.016663474807756637, 0.016688271645268177, 0.01671306848277972, 0.016737865320291263, 0.016762662157802803, 0.016787458995314346, 0.01681225583282589, 0.016837052670337433, 0.016861849507848976, 0.016886646345360516, 0.01691144318287206, 0.016936240020383603, 0.016961036857895146, 0.01698583369540669, 0.017010630532918233, 0.017035427370429772, 0.017060224207941316, 0.01708502104545286, 0.017109817882964402, 0.017134614720475946, 0.017159411557987485, 0.01718420839549903, 0.017209005233010572, 0.017233802070522112, 0.017258598908033655, 0.017283395745545202, 0.017308192583056742, 0.017332989420568285, 0.01735778625807983, 0.017382583095591368, 0.01740737993310291, 0.017432176770614455, 0.017456973608125998, 0.01748177044563754, 0.01750656728314908, 0.017531364120660625, 0.017556160958172168, 0.01758095779568371, 0.017605754633195254, 0.017630551470706798, 0.017655348308218338, 0.01768014514572988, 0.017704941983241424, 0.017729738820752967, 0.01775453565826451, 0.01777933249577605, 0.017804129333287594, 0.017828926170799137, 0.017853723008310677, 0.01787851984582222, 0.017903316683333767, 0.017928113520845307, 0.01795291035835685, 0.017977707195868393, 0.018002504033379933, 0.018027300870891477, 0.018052097708403023, 0.018076894545914563, 0.018101691383426106, 0.01812648822093765, 0.01815128505844919, 0.018176081895960733, 0.018200878733472276, 0.01822567557098382, 0.018250472408495363, 0.018275269246006903, 0.018300066083518446, 0.01832486292102999, 0.018349659758541532, 0.018374456596053076, 0.01839925343356462, 0.01842405027107616, 0.018448847108587702, 0.018473643946099245, 0.01849844078361079, 0.018523237621122332, 0.018548034458633872, 0.018572831296145415, 0.01859762813365696, 0.0186224249711685, 0.01864722180868004, 0.01867201864619159, 0.018696815483703128, 0.01872161232121467, 0.018746409158726215, 0.018771205996237755, 0.018796002833749298, 0.01882079967126084, 0.018845596508772385, 0.018870393346283928, 0.018895190183795468, 0.01891998702130701, 0.018944783858818554, 0.018969580696330098, 0.01899437753384164, 0.019019174371353184, 0.019043971208864724, 0.019068768046376267, 0.01909356488388781, 0.019118361721399354, 0.019143158558910897, 0.019167955396422437, 0.01919275223393398, 0.019217549071445524, 0.019242345908957063, 0.019267142746468607, 0.019291939583980153, 0.019316736421491693, 0.019341533259003237, 0.01936633009651478, 0.01939112693402632, 0.019415923771537863, 0.019440720609049406, 0.01946551744656095, 0.019490314284072493, 0.019515111121584033, 0.019539907959095576, 0.01956470479660712, 0.019589501634118663, 0.019614298471630206, 0.01963909530914175, 0.01966389214665329, 0.019688688984164832, 0.019713485821676376, 0.01973828265918792, 0.019763079496699462, 0.019787876334211005, 0.019812673171722545, 0.01983747000923409, 0.019862266846745632, 0.01988706368425717, 0.01991186052176872, 0.01993665735928026, 0.0199614541967918, 0.019986251034303345, 0.020011047871814885, 0.020035844709326428, 0.020060641546837975, 0.020085438384349515, 0.020110235221861058, 0.0201350320593726, 0.02015982889688414, 0.020184625734395684, 0.020209422571907228, 0.02023421940941877, 0.020259016246930314, 0.020283813084441854, 0.020308609921953397, 0.02033340675946494, 0.020358203596976484, 0.020383000434488027, 0.02040779727199957, 0.02043259410951111, 0.020457390947022654, 0.020482187784534197, 0.020506984622045737, 0.020531781459557284, 0.020556578297068823, 0.020581375134580367, 0.02060617197209191, 0.02063096880960345, 0.020655765647114993, 0.02068056248462654, 0.02070535932213808, 0.020730156159649623, 0.020754952997161166, 0.020779749834672706, 0.02080454667218425, 0.020829343509695793, 0.020854140347207336, 0.02087893718471888, 0.02090373402223042, 0.020928530859741962, 0.020953327697253506, 0.02097812453476505, 0.021002921372276592, 0.021027718209788136, 0.021052515047299675, 0.02107731188481122, 0.021102108722322762, 0.021126905559834302, 0.02115170239734585, 0.02117649923485739, 0.02120129607236893, 0.021226092909880475, 0.021250889747392015, 0.021275686584903558, 0.021300483422415105, 0.021325280259926645, 0.021350077097438188, 0.02137487393494973, 0.02139967077246127, 0.021424467609972814, 0.02144926444748436, 0.0214740612849959, 0.021498858122507444, 0.021523654960018988, 0.021548451797530527, 0.02157324863504207, 0.021598045472553614, 0.021622842310065157, 0.0216476391475767, 0.02167243598508824, 0.021697232822599784, 0.021722029660111327, 0.021746826497622867, 0.021771623335134414, 0.021796420172645957, 0.021821217010157497, 0.02184601384766904, 0.021870810685180583, 0.021895607522692123, 0.02192040436020367, 0.02194520119771521, 0.021969998035226753, 0.021994794872738296, 0.022019591710249836, 0.02204438854776138, 0.022069185385272926, 0.022093982222784466, 0.02211877906029601, 0.022143575897807553, 0.022168372735319092, 0.022193169572830636, 0.02221796641034218, 0.022242763247853722, 0.022267560085365266, 0.022292356922876806, 0.02231715376038835, 0.022341950597899892, 0.022366747435411432, 0.02239154427292298, 0.022416341110434522, 0.022441137947946062, 0.022465934785457605, 0.02249073162296915, 0.022515528460480688, 0.022540325297992235, 0.022565122135503775, 0.022589918973015318, 0.02261471581052686, 0.0226395126480384, 0.022664309485549945, 0.02268910632306149, 0.02271390316057303, 0.022738699998084574, 0.022763496835596118, 0.022788293673107658, 0.0228130905106192, 0.022837887348130744, 0.022862684185642287, 0.022887481023153827, 0.02291227786066537, 0.022937074698176917, 0.022961871535688457, 0.0229866683732, 0.02301146521071154, 0.023036262048223087, 0.023061058885734623, 0.02308585572324617, 0.023110652560757717, 0.023135449398269253, 0.0231602462357808, 0.02318504307329234, 0.023209839910803883, 0.02323463674831543, 0.02325943358582697, 0.023284230423338513, 0.023309027260850053, 0.023333824098361596, 0.023358620935873136, 0.023383417773384683, 0.023408214610896226, 0.023433011448407766, 0.023457808285919313, 0.02348260512343085, 0.023507401960942396, 0.02353219879845394, 0.02355699563596548, 0.023581792473477026, 0.023606589310988565, 0.02363138614850011, 0.02365618298601165, 0.023680979823523192, 0.02370577666103474, 0.02373057349854628, 0.023755370336057822, 0.02378016717356936, 0.02380496401108091, 0.023829760848592445, 0.02385455768610399, 0.023879354523615535, 0.023904151361127075, 0.02392894819863862, 0.02395374503615016, 0.023978541873661705, 0.02400333871117325, 0.024028135548684788, 0.024052932386196334, 0.024077729223707874, 0.024102526061219418, 0.024127322898730957, 0.024152119736242504, 0.024176916573754047, 0.024201713411265587, 0.02422651024877713, 0.02425130708628867, 0.024276103923800217, 0.024300900761311757, 0.0243256975988233, 0.024350494436334847, 0.024375291273846383, 0.02440008811135793, 0.02442488494886947, 0.024449681786381013, 0.02447447862389256, 0.0244992754614041, 0.024524072298915643, 0.024548869136427183, 0.024573665973938726, 0.024598462811450266, 0.024623259648961813, 0.024648056486473356, 0.024672853323984896, 0.024697650161496443, 0.02472244699900798, 0.024747243836519526, 0.02477204067403107, 0.02479683751154261, 0.024821634349054156, 0.024846431186565696, 0.02487122802407724, 0.02489602486158878, 0.024920821699100322, 0.02494561853661187, 0.02497041537412341, 0.024995212211634952, 0.025020009049146492, 0.02504480588665804, 0.025069602724169575, 0.02509439956168112, 0.02511919639919267, 0.025143993236704205, 0.02516879007421575, 0.02519358691172729, 0.025218383749238835, 0.02524318058675038, 0.02526797742426192, 0.025292774261773465, 0.025317571099285004, 0.025342367936796548, 0.025367164774308087, 0.025391961611819634, 0.025416758449331178, 0.025441555286842717, 0.025466352124354264, 0.0254911489618658, 0.025515945799377347, 0.025540742636888887, 0.02556553947440043, 0.025590336311911977, 0.025615133149423517, 0.02563992998693506, 0.0256647268244466, 0.025689523661958143, 0.02571432049946969, 0.02573911733698123, 0.025763914174492773, 0.025788711012004313, 0.02581350784951586, 0.025838304687027396, 0.025863101524538943, 0.025887898362050486, 0.025912695199562026, 0.025937492037073573, 0.025962288874585113, 0.025987085712096656, 0.026011882549608203, 0.02603667938711974, 0.026061476224631286, 0.026086273062142826, 0.02611106989965437, 0.02613586673716591, 0.026160663574677456, 0.026185460412189, 0.02621025724970054, 0.026235054087212082, 0.026259850924723622, 0.02628464776223517, 0.02630944459974671, 0.02633424143725825, 0.0263590382747698, 0.026383835112281335, 0.02640863194979288, 0.02643342878730442, 0.026458225624815965, 0.02648302246232751, 0.02650781929983905, 0.026532616137350595, 0.026557412974862134, 0.026582209812373678, 0.026607006649885218, 0.026631803487396764, 0.026656600324908308, 0.026681397162419847, 0.026706193999931394, 0.02673099083744293, 0.026755787674954477, 0.026780584512466017, 0.02680538134997756, 0.026830178187489107, 0.026854975025000647, 0.02687977186251219, 0.02690456870002373, 0.026929365537535277, 0.02695416237504682, 0.02697895921255836, 0.027003756050069903, 0.027028552887581443, 0.02705334972509299, 0.02707814656260453, 0.027102943400116073, 0.02712774023762762, 0.027152537075139156, 0.027177333912650703, 0.027202130750162243, 0.027226927587673786, 0.027251724425185333, 0.027276521262696873, 0.027301318100208416, 0.027326114937719956, 0.0273509117752315, 0.02737570861274304, 0.027400505450254586, 0.02742530228776613, 0.02745009912527767, 0.027474895962789216, 0.027499692800300752, 0.0275244896378123, 0.02754928647532384, 0.027574083312835382, 0.02759888015034693, 0.02762367698785847, 0.02764847382537001, 0.02767327066288155, 0.027698067500393095, 0.02772286433790464, 0.02774766117541618, 0.027772458012927725, 0.027797254850439265, 0.02782205168795081, 0.027846848525462348, 0.027871645362973894, 0.027896442200485438, 0.027921239037996978, 0.027946035875508524, 0.027970832713020064, 0.027995629550531607, 0.028020426388043147, 0.02804522322555469, 0.028070020063066237, 0.028094816900577777, 0.02811961373808932, 0.02814441057560086, 0.028169207413112407, 0.02819400425062395, 0.02821880108813549, 0.028243597925647033, 0.028268394763158573, 0.02829319160067012, 0.02831798843818166, 0.028342785275693203, 0.02836758211320475, 0.028392378950716286, 0.028417175788227833, 0.028441972625739373, 0.028466769463250916, 0.028491566300762463, 0.028516363138274003, 0.028541159975785546, 0.028565956813297086, 0.028590753650808633, 0.02861555048832017, 0.028640347325831716, 0.02866514416334326, 0.0286899410008548, 0.028714737838366346, 0.028739534675877886, 0.02876433151338943, 0.02878912835090097, 0.028813925188412512, 0.02883872202592406, 0.0288635188634356, 0.028888315700947142, 0.02891311253845868, 0.02893790937597023, 0.02896270621348177, 0.02898750305099331, 0.029012299888504855, 0.029037096726016395, 0.02906189356352794, 0.02908669040103948, 0.029111487238551025, 0.02913628407606257, 0.029161080913574108, 0.029185877751085654, 0.029210674588597194, 0.029235471426108738, 0.029260268263620284, 0.029285065101131824, 0.029309861938643367, 0.029334658776154907, 0.02935945561366645, 0.02938425245117799, 0.029409049288689537, 0.02943384612620108, 0.02945864296371262, 0.029483439801224167, 0.029508236638735703, 0.02953303347624725, 0.02955783031375879, 0.029582627151270333, 0.02960742398878188, 0.02963222082629342, 0.029657017663804963, 0.029681814501316503, 0.029706611338828046, 0.029731408176339593, 0.029756205013851133, 0.029781001851362676, 0.029805798688874216, 0.029830595526385763, 0.0298553923638973, 0.029880189201408846, 0.02990498603892039, 0.02992978287643193, 0.029954579713943476, 0.029979376551455016, 0.03000417338896656, 0.0300289702264781, 0.030053767063989642, 0.03007856390150119, 0.03010336073901273, 0.030128157576524272, 0.030152954414035812, 0.03017775125154736, 0.030202548089058902, 0.03022734492657044, 0.03025214176408199, 0.030276938601593525, 0.03030173543910507, 0.03032653227661661, 0.030351329114128155, 0.0303761259516397, 0.03040092278915124, 0.030425719626662785, 0.030450516464174324, 0.030475313301685868, 0.030500110139197414, 0.030524906976708954, 0.030549703814220498, 0.030574500651732037, 0.030599297489243584, 0.03062409432675512, 0.030648891164266667, 0.03067368800177821, 0.03069848483928975, 0.030723281676801297, 0.030748078514312837, 0.03077287535182438, 0.03079767218933592, 0.030822469026847463, 0.03084726586435901, 0.03087206270187055, 0.030896859539382093, 0.030921656376893633, 0.03094645321440518, 0.030971250051916723, 0.030996046889428263, 0.031020843726939806, 0.031045640564451346, 0.031070437401962893, 0.031095234239474433, 0.031120031076985976, 0.031144827914497523, 0.03116962475200906, 0.031194421589520606, 0.031219218427032146, 0.03124401526454369, 0.03126881210205523, 0.03129360893956677, 0.03131840577707832, 0.03134320261458986, 0.031367999452101405, 0.031392796289612945, 0.031417593127124485, 0.03144238996463603, 0.03146718680214757, 0.03149198363965912, 0.03151678047717066, 0.0315415773146822, 0.03156637415219374, 0.031591170989705285, 0.03161596782721683, 0.03164076466472837, 0.03166556150223992, 0.03169035833975145, 0.031715155177263, 0.031739952014774545, 0.031764748852286084, 0.03178954568979763, 0.03181434252730917, 0.03183913936482071, 0.03186393620233225, 0.0318887330398438, 0.031913529877355344, 0.031938326714866884, 0.031963123552378424, 0.031987920389889964, 0.03201271722740151, 0.03203751406491305, 0.0320623109024246, 0.032087107739936144, 0.03211190457744768, 0.03213670141495922, 0.03216149825247076, 0.03218629508998231, 0.03221109192749386, 0.0322358887650054, 0.032260685602516936, 0.032285482440028476, 0.03231027927754002, 0.03233507611505156, 0.03235987295256311, 0.03238466979007465, 0.03240946662758619, 0.032434263465097736, 0.032459060302609276, 0.03248385714012082, 0.03250865397763236, 0.0325334508151439, 0.03255824765265545, 0.03258304449016699, 0.032607841327678536, 0.032632638165190075, 0.032657435002701615, 0.03268223184021316, 0.0327070286777247, 0.03273182551523625, 0.03275662235274779, 0.032781419190259335, 0.03280621602777087, 0.032831012865282415, 0.03285580970279396, 0.0328806065403055, 0.03290540337781705, 0.03293020021532859, 0.03295499705284013, 0.032979793890351675, 0.033004590727863214, 0.03302938756537476, 0.0330541844028863, 0.03307898124039784, 0.03310377807790938, 0.03312857491542093, 0.033153371752932474, 0.033178168590444014, 0.033202965427955554, 0.033227762265467094, 0.03325255910297864, 0.03327735594049018, 0.03330215277800173, 0.033326949615513274, 0.03335174645302481, 0.033376543290536353, 0.03340134012804789, 0.03342613696555944, 0.03345093380307099, 0.03347573064058253, 0.033500527478094067, 0.033525324315605606, 0.03355012115311715, 0.03357491799062869, 0.03359971482814024, 0.03362451166565178, 0.03364930850316332, 0.033674105340674866, 0.033698902178186406, 0.03372369901569795, 0.03374849585320949, 0.03377329269072103, 0.03379808952823258, 0.03382288636574412, 0.033847683203255666, 0.033872480040767206, 0.03389727687827875, 0.03392207371579029, 0.03394687055330183, 0.03397166739081338, 0.03399646422832492, 0.034021261065836465, 0.034046057903348005, 0.034070854740859545, 0.03409565157837109, 0.03412044841588263, 0.03414524525339418, 0.03417004209090572, 0.03419483892841726, 0.034219635765928805, 0.034244432603440345, 0.03426922944095189, 0.03429402627846343, 0.03431882311597497, 0.03434361995348651, 0.03436841679099806, 0.034393213628509604, 0.034418010466021144, 0.03444280730353269, 0.034467604141044224, 0.03449240097855577, 0.03451719781606731, 0.03454199465357886, 0.034566791491090404, 0.034591588328601944, 0.034616385166113484, 0.03464118200362502, 0.03466597884113657, 0.03469077567864812, 0.03471557251615966, 0.0347403693536712, 0.034765166191182736, 0.03478996302869428, 0.03481475986620582, 0.03483955670371737, 0.03486435354122891, 0.03488915037874045, 0.034913947216251996, 0.034938744053763536, 0.03496354089127508, 0.03498833772878663, 0.03501313456629816, 0.03503793140380971, 0.03506272824132125, 0.035087525078832796, 0.035112321916344336, 0.03513711875385588, 0.03516191559136742, 0.03518671242887896, 0.03521150926639051, 0.03523630610390205, 0.035261102941413595, 0.035285899778925135, 0.035310696616436675, 0.03533549345394822, 0.03536029029145976, 0.03538508712897131, 0.03540988396648285, 0.03543468080399439, 0.035459477641505935, 0.035484274479017475, 0.03550907131652902, 0.03553386815404056, 0.0355586649915521, 0.03558346182906364, 0.03560825866657519, 0.035633055504086734, 0.035657852341598274, 0.03568264917910982, 0.035707446016621354, 0.0357322428541329, 0.03575703969164444, 0.03578183652915599, 0.035806633366667534, 0.035831430204179074, 0.035856227041690614, 0.035881023879202154, 0.0359058207167137, 0.03593061755422525, 0.03595541439173679, 0.03598021122924833, 0.03600500806675987, 0.03602980490427141, 0.03605460174178295, 0.0360793985792945, 0.03610419541680605, 0.03612899225431758, 0.036153789091829126, 0.036178585929340666, 0.03620338276685221, 0.03622817960436376, 0.0362529764418753, 0.03627777327938684, 0.03630257011689838, 0.036327366954409926, 0.036352163791921466, 0.03637696062943301, 0.03640175746694455, 0.03642655430445609, 0.03645135114196764, 0.03647614797947918, 0.036500944816990726, 0.036525741654502265, 0.036550538492013805, 0.03657533532952535, 0.03660013216703689, 0.03662492900454844, 0.03664972584205998, 0.03667452267957152, 0.036699319517083065, 0.036724116354594605, 0.03674891319210615, 0.03677371002961769, 0.03679850686712924, 0.03682330370464077, 0.03684810054215232, 0.036872897379663865, 0.036897694217175404, 0.03692249105468695, 0.03694728789219849, 0.03697208472971003, 0.03699688156722157, 0.03702167840473312, 0.037046475242244664, 0.037071272079756204, 0.037096068917267744, 0.037120865754779284, 0.03714566259229083, 0.03717045942980238, 0.03719525626731392, 0.03722005310482546, 0.037244849942337, 0.03726964677984854, 0.03729444361736008, 0.03731924045487163, 0.03734403729238318, 0.03736883412989471, 0.037393630967406256, 0.037418427804917796, 0.03744322464242934, 0.03746802147994089, 0.03749281831745243, 0.03751761515496397, 0.03754241199247551, 0.037567208829987056, 0.037592005667498596, 0.03761680250501014, 0.03764159934252168, 0.03766639618003322, 0.03769119301754477, 0.03771598985505631, 0.037740786692567856, 0.037765583530079395, 0.037790380367590935, 0.03781517720510248, 0.03783997404261402, 0.03786477088012557, 0.03788956771763711, 0.037914364555148655, 0.037939161392660195, 0.037963958230171735, 0.03798875506768328, 0.03801355190519482, 0.03803834874270637, 0.03806314558021791, 0.03808794241772945, 0.038112739255240995, 0.038137536092752534, 0.03816233293026408, 0.03818712976777562, 0.03821192660528716, 0.0382367234427987, 0.03826152028031025, 0.038286317117821794, 0.038311113955333334, 0.038335910792844874, 0.038360707630356414, 0.03838550446786796, 0.03841030130537951, 0.03843509814289105, 0.038459894980402594, 0.03848469181791413, 0.038509488655425674, 0.03853428549293721, 0.03855908233044876, 0.03858387916796031, 0.03860867600547185, 0.038633472842983387, 0.038658269680494926, 0.03868306651800647, 0.03870786335551802, 0.03873266019302956, 0.0387574570305411, 0.03878225386805264, 0.038807050705564186, 0.038831847543075726, 0.03885664438058727, 0.03888144121809881, 0.03890623805561035, 0.0389310348931219, 0.03895583173063344, 0.038980628568144986, 0.039005425405656526, 0.039030222243168065, 0.03905501908067961, 0.03907981591819115, 0.0391046127557027, 0.03912940959321424, 0.039154206430725785, 0.039179003268237325, 0.039203800105748865, 0.03922859694326041, 0.03925339378077195, 0.0392781906182835, 0.03930298745579504, 0.03932778429330658, 0.039352581130818125, 0.039377377968329665, 0.03940217480584121, 0.03942697164335275, 0.03945176848086429, 0.03947656531837583, 0.03950136215588738, 0.039526158993398924, 0.039550955830910464, 0.03957575266842201, 0.039600549505933544, 0.03962534634344509, 0.03965014318095664, 0.03967494001846818, 0.039699736855979724, 0.039724533693491264, 0.039749330531002804, 0.03977412736851434, 0.03979892420602589, 0.03982372104353744, 0.03984851788104898, 0.03987331471856052, 0.039898111556072056, 0.0399229083935836, 0.03994770523109515, 0.03997250206860669, 0.03999729890611823, 0.04002209574362977, 0.040046892581141316, 0.040071689418652856, 0.0400964862561644, 0.04012128309367595, 0.04014607993118748, 0.04017087676869903, 0.04019567360621057, 0.040220470443722116, 0.040245267281233656, 0.0402700641187452, 0.04029486095625674, 0.04031965779376828, 0.04034445463127983, 0.04036925146879137, 0.040394048306302915, 0.040418845143814455, 0.040443641981325995, 0.04046843881883754, 0.04049323565634908, 0.04051803249386063, 0.04054282933137217, 0.04056762616888371, 0.040592423006395255, 0.040617219843906795, 0.04064201668141834, 0.04066681351892988, 0.04069161035644142, 0.04071640719395297, 0.04074120403146451, 0.040766000868976054, 0.040790797706487594, 0.04081559454399914, 0.040840391381510674, 0.04086518821902222, 0.04088998505653377, 0.04091478189404531, 0.040939578731556854, 0.040964375569068394, 0.040989172406579934, 0.041013969244091474, 0.04103876608160302, 0.04106356291911457, 0.04108835975662611, 0.04111315659413765, 0.04113795343164919, 0.04116275026916073, 0.04118754710667228, 0.04121234394418382, 0.04123714078169537, 0.0412619376192069, 0.041286734456718446, 0.041311531294229986, 0.04133632813174153, 0.04136112496925308, 0.04138592180676462, 0.04141071864427616, 0.0414355154817877, 0.041460312319299246, 0.041485109156810786, 0.04150990599432233, 0.04153470283183387, 0.04155949966934541, 0.04158429650685696, 0.0416090933443685, 0.041633890181880046, 0.041658687019391585, 0.041683483856903125, 0.04170828069441467, 0.04173307753192621, 0.04175787436943776, 0.0417826712069493, 0.04180746804446084, 0.041832264881972385, 0.041857061719483925, 0.04188185855699547, 0.04190665539450701, 0.04193145223201856, 0.0419562490695301, 0.04198104590704164, 0.042005842744553185, 0.042030639582064724, 0.04205543641957627, 0.04208023325708781, 0.04210503009459935, 0.0421298269321109, 0.04215462376962244, 0.042179420607133984, 0.042204217444645524, 0.042229014282157064, 0.042253811119668604, 0.04227860795718015, 0.0423034047946917, 0.04232820163220324, 0.04235299846971478, 0.04237779530722632, 0.04240259214473786, 0.04242738898224941, 0.04245218581976095, 0.0424769826572725, 0.04250177949478403, 0.042526576332295576, 0.042551373169807116, 0.04257617000731866, 0.04260096684483021, 0.04262576368234175, 0.04265056051985329, 0.04267535735736483, 0.042700154194876376, 0.042724951032387916, 0.04274974786989946, 0.042774544707411, 0.04279934154492254, 0.04282413838243409, 0.04284893521994563, 0.042873732057457176, 0.04289852889496872, 0.042923325732480255, 0.0429481225699918, 0.04297291940750334, 0.04299771624501489, 0.04302251308252643, 0.043047309920037975, 0.043072106757549515, 0.043096903595061055, 0.0431217004325726, 0.04314649727008414, 0.04317129410759569, 0.04319609094510723, 0.04322088778261877, 0.043245684620130315, 0.043270481457641854, 0.0432952782951534, 0.04332007513266494, 0.04334487197017648, 0.04336966880768803, 0.04339446564519957, 0.043419262482711114, 0.043444059320222654, 0.043468856157734194, 0.043493652995245734, 0.04351844983275728, 0.04354324667026883, 0.04356804350778037, 0.043592840345291914, 0.04361763718280345, 0.043642434020314994, 0.04366723085782654, 0.04369202769533808, 0.04371682453284963, 0.04374162137036117, 0.04376641820787271, 0.043791215045384246, 0.04381601188289579, 0.04384080872040734, 0.04386560555791888, 0.04389040239543042, 0.04391519923294196, 0.043939996070453506, 0.043964792907965046, 0.04398958974547659, 0.04401438658298813, 0.04403918342049967, 0.04406398025801122, 0.04408877709552276, 0.044113573933034306, 0.04413837077054585, 0.044163167608057385, 0.04418796444556893, 0.04421276128308047, 0.04423755812059202, 0.04426235495810356, 0.044287151795615105, 0.044311948633126645, 0.044336745470638185, 0.04436154230814973, 0.04438633914566127, 0.04441113598317282, 0.04443593282068436, 0.0444607296581959, 0.044485526495707445, 0.044510323333218985, 0.04453512017073053, 0.04455991700824207, 0.04458471384575361, 0.04460951068326516, 0.0446343075207767, 0.044659104358288244, 0.044683901195799784, 0.04470869803331133, 0.044733494870822864, 0.04475829170833441, 0.04478308854584596, 0.0448078853833575, 0.044832682220869044, 0.044857479058380584, 0.044882275895892124, 0.04490707273340367, 0.04493186957091521, 0.04495666640842676, 0.0449814632459383, 0.04500626008344984, 0.045031056920961376, 0.04505585375847292, 0.04508065059598447, 0.04510544743349601, 0.04513024427100755, 0.04515504110851909, 0.045179837946030636, 0.045204634783542176, 0.04522943162105372, 0.04525422845856527, 0.0452790252960768, 0.04530382213358835, 0.04532861897109989, 0.045353415808611436, 0.04537821264612298, 0.04540300948363452, 0.04542780632114606, 0.0454526031586576, 0.04547739999616915, 0.04550219683368069, 0.045526993671192235, 0.045551790508703775, 0.045576587346215315, 0.04560138418372686, 0.0456261810212384, 0.04565097785874995, 0.04567577469626149, 0.04570057153377303, 0.045725368371284575, 0.045750165208796115, 0.04577496204630766, 0.0457997588838192, 0.04582455572133074, 0.04584935255884229, 0.04587414939635383, 0.045898946233865374, 0.045923743071376914, 0.04594853990888846, 0.045973336746399994, 0.04599813358391154, 0.04602293042142309, 0.04604772725893463, 0.046072524096446174, 0.046097320933957714, 0.046122117771469254, 0.0461469146089808, 0.04617171144649234, 0.04619650828400389, 0.04622130512151543, 0.04624610195902697, 0.04627089879653851, 0.04629569563405005, 0.0463204924715616, 0.04634528930907314, 0.04637008614658469, 0.04639488298409622, 0.046419679821607766, 0.046444476659119306, 0.04646927349663085, 0.0464940703341424, 0.04651886717165394, 0.04654366400916548, 0.04656846084667702, 0.046593257684188566, 0.04661805452170011, 0.04664285135921165, 0.04666764819672319, 0.04669244503423473, 0.04671724187174628, 0.04674203870925782, 0.046766835546769366, 0.046791632384280905, 0.046816429221792445, 0.04684122605930399, 0.04686602289681553, 0.04689081973432708, 0.046915616571838625, 0.04694041340935016, 0.046965210246861705, 0.046990007084373245, 0.04701480392188479, 0.04703960075939633, 0.04706439759690788, 0.04708919443441942, 0.04711399127193096, 0.047138788109442505, 0.047163584946954044, 0.04718838178446559, 0.04721317862197713, 0.04723797545948867, 0.04726277229700022, 0.04728756913451176, 0.047312365972023304, 0.047337162809534844, 0.047361959647046384, 0.04738675648455793, 0.04741155332206947, 0.04743635015958102, 0.04746114699709256, 0.0474859438346041, 0.04751074067211564, 0.04753553750962718, 0.04756033434713873, 0.04758513118465027, 0.04760992802216182, 0.04763472485967335, 0.047659521697184896, 0.04768431853469644, 0.04770911537220798, 0.04773391220971953, 0.04775870904723107, 0.04778350588474261, 0.04780830272225415, 0.047833099559765696, 0.04785789639727724, 0.04788269323478878, 0.04790749007230032, 0.04793228690981186, 0.04795708374732341, 0.04798188058483495, 0.048006677422346496, 0.04803147425985804, 0.048056271097369575, 0.04808106793488112, 0.04810586477239266, 0.04813066160990421, 0.048155458447415755, 0.048180255284927295, 0.048205052122438835, 0.048229848959950375, 0.04825464579746192, 0.04827944263497346, 0.04830423947248501, 0.04832903630999655, 0.04835383314750809, 0.048378629985019635, 0.048403426822531175, 0.04842822366004272, 0.04845302049755426, 0.0484778173350658, 0.04850261417257735, 0.04852741101008889, 0.048552207847600434, 0.048577004685111974, 0.048601801522623514, 0.04862659836013506, 0.0486513951976466, 0.04867619203515815, 0.04870098887266969, 0.048725785710181234, 0.04875058254769277, 0.048775379385204314, 0.04880017622271586, 0.0488249730602274, 0.04884976989773895, 0.04887456673525049, 0.04889936357276203, 0.04892416041027357, 0.04894895724778511, 0.04897375408529666, 0.0489985509228082, 0.04902334776031974, 0.04904814459783128, 0.049072941435342826, 0.04909773827285437, 0.04912253511036591, 0.04914733194787745, 0.04917212878538899, 0.04919692562290054, 0.04922172246041208, 0.049246519297923626, 0.04927131613543517, 0.049296112972946705, 0.04932090981045825, 0.04934570664796979, 0.04937050348548134, 0.049395300322992886, 0.049420097160504425, 0.049444893998015965, 0.049469690835527505, 0.049494487673039045, 0.0495192845105506, 0.04954408134806214, 0.04956887818557368, 0.049593675023085225, 0.049618471860596765, 0.049643268698108305, 0.049668065535619844, 0.04969286237313139, 0.04971765921064293, 0.04974245604815447, 0.049767252885666025, 0.049792049723177564, 0.049816846560689104, 0.049841643398200644, 0.04986644023571219, 0.04989123707322373, 0.04991603391073527, 0.049940830748246824, 0.049965627585758364, 0.0499904244232699, 0.05001522126078145, 0.05004001809829299, 0.05006481493580453, 0.05008961177331607, 0.05011440861082762, 0.05013920544833916, 0.050164002285850696, 0.05018879912336225, 0.05021359596087379, 0.05023839279838533, 0.05026318963589687, 0.050287986473408416, 0.050312783310919956, 0.050337580148431496, 0.05036237698594305, 0.05038717382345459, 0.05041197066096612, 0.05043676749847766, 0.050461564335989216, 0.050486361173500756, 0.050511158011012296, 0.05053595484852384, 0.05056075168603538, 0.05058554852354692, 0.05061034536105846, 0.050635142198570016, 0.050659939036081555, 0.050684735873593095, 0.05070953271110464, 0.05073432954861618, 0.05075912638612772, 0.050783923223639275, 0.05080872006115081, 0.05083351689866235, 0.05085831373617389, 0.05088311057368544, 0.05090790741119698, 0.05093270424870852, 0.05095750108622007, 0.05098229792373161, 0.05100709476124315, 0.05103189159875469, 0.05105668843626624, 0.05108148527377778, 0.051106282111289314, 0.05113107894880087, 0.05115587578631241, 0.05118067262382395, 0.05120546946133549, 0.051230266298847034, 0.051255063136358574, 0.051279859973870114, 0.05130465681138167, 0.05132945364889321, 0.05135425048640475, 0.05137904732391629, 0.051403844161427834, 0.05142864099893937, 0.05145343783645091, 0.05147823467396247, 0.051503031511474, 0.05152782834898554, 0.05155262518649708, 0.05157742202400863 ], "y": [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.696104462952414e-31, 0.00041776784347423863, 0.0016710713738969545, 0.003759910591268147, 0.0066842854955877174, 0.010444196086855841, 0.01503964236507229, 0.020470624330237344, 0.02673714198235087, 0.033839195321412656, 0.041776784347423115, 0.05054990906038204, 0.06015856946028917, 0.07060276554714502, 0.08188249732094903, 0.09399776478170184, 0.10694856792940309, 0.1207349067640524, 0.13535678128565062, 0.15081419149419728, 0.16710713738969196, 0.18423561897213564, 0.20219963624152712, 0.22099918919786765, 0.2406342778411567, 0.2611049021713935, 0.2824110621885796, 0.30455275789271385, 0.3275299892837961, 0.35134275636182755, 0.3759910591268066, 0.40147489757873484, 0.42779427171761153, 0.454949181543436, 0.48293962705620963, 0.511765608255931, 0.5414271251426014, 0.5719241777162205, 0.6032567659767872, 0.6354248899243036, 0.6684285495587676, 0.7022677448801797, 0.7369424758885411, 0.7724527425838509, 0.8087985449661099, 0.8459798830353162, 0.8839967567914703, 0.9228491662345745, 0.9625371113646255, 1.0030605921816258, 1.0444196086855753, 1.086614160876472, 1.1296442487543181, 1.1735098723191122, 1.2182110315708543, 1.2637477265095456, 1.3101199571351845, 1.3573277234477727, 1.4053710254473102, 1.4542498631337937, 1.5039642365072279, 1.5545141455676101, 1.6058995903149396, 1.6581205707492184, 1.711177086870445, 2.0061448799687183, 2.532510297069314, 3.0231957620555368, 3.4782012749274163, 3.897526835684943, 4.281172444328099, 4.629138100856911, 4.9414238052713575, 5.218029557571461, 5.458955357757202, 5.664201205828581, 5.833767101785613, 5.967653045628286, 6.0658590373566055, 6.128385076970564, 6.155231164470169, 6.146397299855419, 6.1018834831263105, 6.021689714282848, 5.9832770502325685, 6.1315282145150976, 6.280667023030912, 6.430693475780009, 6.58160757276239, 6.733409313978053, 6.8860986994269995, 7.039675729109238, 7.1941404030247575, 7.349492721173556, 7.505732683555644, 7.6628602901710146, 7.820875541019667, 7.979778436101607, 8.13849581767333, 8.296938787575058, 8.457949907241526, 8.621529176672727, 8.787676595868673, 8.956392164829357, 9.127675883554772, 9.301527752044937, 9.477947770299837, 9.656935938319478, 9.838492256103862, 10.022616723652977, 10.20930934096683, 10.398570108045426, 10.590399024888766, 10.784796091496846, 10.98176130786965, 11.18129467400721, 11.383396189909506, 11.588065855576534, 11.79530367100831, 12.005109636204816, 12.217483751166077, 12.432426015892059, 12.649936430382787, 12.870014994638252, 13.092661708658465, 13.317876572443412, 13.545659585993091, 13.776207570906374, 14.037180881393144, 14.348185446974227, 14.709221267649657, 15.12028834341938, 15.581386674283415, 16.09251626024181, 16.58575988884892, 17.086964210907155, 17.61345010964329, 18.165217585057235, 18.742266637149022, 19.34459726591868, 23.025878610583824, 30.575388528835763, 20.709745575122902, 21.022593624173577, 21.33927857307851, 21.659800421837726, 21.98415917045125, 22.312354818919026, 22.644387367241094, 22.980256815417444, 23.281714356167633, 23.496287578127248, 23.710956145759837, 23.925720059065377, 24.14057931804385, 24.355533922695304, 24.57058387301971, 24.785729169017063, 25.000969810687383, 25.21630579803065, 25.431737131046887, 25.647263809736053, 25.86288583409819, 26.0786032041333, 26.294415919841352, 26.58478672352566, 26.90166893661372, 27.222262533331488, 27.546567513678966, 27.874583877656157, 28.20631162526303, 28.54175075649961, 28.880901271365918, 29.223763169861922, 29.57033645198763, 29.920621117743043, 30.274617167128177, 30.632324600142994, 30.993743416787517, 31.358873617061796, 31.727715200965722, 32.10026816849938, 32.476532519662754, 32.856508254455825, 33.24019537287858, 33.62759387493109, 34.18550248104715, 35.10404455782418, 35.83107002285271, 36.53442890388261, 37.324135111268525, 38.418292524115806, 39.471759791690786, 40.48453691399332, 41.4566238910235, 42.38802072278139, 43.278727409266864, 44.128743950479944, 45.1739122068599, 46.082813692823095, 46.79449537897696, 47.30895726532157, 47.62619935185681, 47.6600915650697, 47.38445440568232, 47.5233137657314, 47.769821467238735, 48.03211053953145, 48.31018098260966, 48.595638457972164, 49.06382599558698, 49.60917426126481, 50.18111753808039, 50.77965582603372, 51.404789125124786, 52.17811065965052, 53.0479246114878, 53.763068449984, 54.323542175139025, 54.729345786952926, 54.980479285425716, 55.11443167139884, 55.59191515812027, 56.07772864003091, 56.57187211713078, 57.07434558941989, 57.58514905689821, 58.104282519565814, 58.63174597742264, 59.16753943046864, 59.711662878703955, 60.26411632212842, 60.8248997607422, 61.394013194545174, 61.98140027994473, 62.673190352917416, 63.48275763035017, 64.5169987956478, 65.93912604738482, 66.85694459856707, 67.78540936506153, 68.7245911760101, 69.67029031841538, 70.62014415831295, 71.57414313268036, 72.53878695522211, 73.52561647024758, 74.52388847674416, 75.5336029747117, 76.55475996415028, 77.58735944505997, 78.69934374994465, 79.6507418007106, 80.36463390717448, 80.83118444618158, 81.04826007077905, 81.42255062661617, 81.61527773350169, 82.2975379838385, 83.09996625034879, 83.91526745971615, 84.74344161194063, 85.58448870702229, 86.43840874496111, 87.305201725757, 88.18486764941008, 89.07740651592036, 89.98281832528772, 90.90110307751219, 91.8322607725939, 92.77566619418727, 93.72512124892222, 94.67903828464287, 95.63741730134922, 96.60025829904129, 97.567561277719, 98.55935362451963, 99.64394005743759, 100.82698687896499, 102.10711616314364, 103.52325128259008, 105.78605702077425, 107.28872257793809, 108.77538202131937, 111.81497485963446, 115.4641527037981, 116.93917914527735, 117.22133263991915, 118.47935850337836, 119.78749582907807, 121.11833104550843, 122.4304631292881, 123.31868019609637, 124.25737520172648, 125.21515349467029, 126.18150944079052, 127.35262874471371, 128.71124969199718, 130.3927721813853, 132.4885031265476, 134.18412497019716, 135.479637712334, 136.37504135295796, 136.87033589206914, 138.15849509315896, 139.63312608083518, 141.1459132764988, 142.68979848154746, 144.26000268056944, 145.85652587356466, 147.47791578617003, 149.1170108690439, 150.95550544679108, 153.40162414642876, 156.80481584679228, 159.43254774597878, 162.07618388190656, 164.73406837011677, 167.38849600074698, 170.0427715280092, 172.7002911221795, 175.37022710081104, 177.617218686661, 179.9659994927495, 182.41656951907734, 184.96892876564362, 187.6073572454171, 190.33772488191593, 193.3322519367217, 196.41371504811016, 199.58211421608135, 202.83744944063548, 206.17972072177244, 209.67371674558302, 214.4901353340003, 221.0636358975727, 228.65602385226916, 237.51748076066016, 245.93451136841858, 253.8738735272765, 264.8626990941789, 274.05691761335277, 278.6138140387017, 278.51071068883965, 273.7493901514764, 274.8749640541362, 276.5443911599946, 278.0813035127356, 278.92879746762105, 279.5955893614457, 280.1181676218314, 280.5883635366633, 281.291931775236, 282.38588266298166, 275.5534086149507, 275.55579557581734, 276.44888242184913, 278.0964158508842, 279.6399630887002, 280.92940939733813, 281.617014150394, 282.0724601065863, 282.1178233709911, 282.1476394753203, 286.2059837349474, 286.02098400802714, 284.0567254211889, 283.84976205953166, 283.1797368928692, 282.89194300814705, 282.92724769753073, 283.2617057952829, 283.87853599924756, 277.7326432048995, 276.77706470080875, 277.16623959836664, 277.80343968050255, 278.3353093070331, 317.66812054013474, 275.6027400785707, 275.85439374409884, 276.0517885030526, 276.1955130885992, 276.2855096807439, 276.3536749441384, 276.51868813134115, 276.7666199783284, 277.09100828085894, 277.4440952448431, 277.8051425698494, 278.17415025587786, 278.8334711622536, 279.7265312781671, 280.4704517699275, 281.55106373009176, 282.6992037289593, 279.1683373282386, 273.08555633811574, 272.12854287757267, 271.89290257746876, 271.79209161046515, 271.83663332474623, 271.91439283728096, 271.9608512719253, 271.99749930324674, 272.0176476310722, 272.15346047074314, 272.34741194570677, 273.3067069123742, 274.51831802100907, 275.88793385579953, 277.4089451683157, 278.8447848752829, 279.0674954226455, 277.89694627056787, 276.0841532425863, 277.8101244367581, 283.5994762450181, 283.17162155673105, 282.13725533203956, 280.6226662570227, 278.8146597782182, 277.05122693209705, 275.75309056428165, 275.7842281301734, 276.1998789877452, 276.8572651113247, 276.741368000417, 276.2760824390678, 275.8187810084058, 275.3694637084315, 274.9257675539984, 274.5066973312758, 275.1551810403371, 276.13287842547516, 277.0153830208845, 277.71217710607, 278.29748118783135, 278.7655989885742, 279.06885106626015, 281.89836322011405, 279.96020713950617, 278.1085274372988, 276.8576595092576, 278.60846071443837, 283.837769468679, 283.43997145700445, 281.7262119728631, 278.6691350162747, 275.0107537560684, 270.7200862744166, 265.1800117419369, 258.3996434588788, 250.87428352768998, 246.55982796991472, 242.50091257946457, 238.31293376223854, 234.36258842036102, 230.66419386791029, 227.21775010488625, 224.02325713128897, 221.08071494711865, 215.9885980246807, 209.6016838244932, 204.68518293903008, 201.27349634515534, 199.89632417837404, 198.58868867961505, 197.32723501917621, 196.11171309345167, 194.94212290244113, 193.82112249455642, 192.75163028297345, 202.8348255071335, 188.13485823855618, 186.48472828036253, 184.7120575254526, 182.83453072476348, 180.87114591894502, 178.87174838025132, 176.7856494312857, 174.63567923876093, 172.9328144119839, 171.62321128689183, 170.33525481501067, 169.06870653708734, 167.81029433914279, 166.55238217471268, 165.30625576192648, 164.14179559563027, 163.07699391797706, 162.114584291626, 161.25456671657713, 160.49694119283026, 159.8417077203855, 159.28965773678289, 158.84353845827223, 158.50358397051946, 158.27120718070873, 158.14880576621428, 157.2067713201304, 155.29318113678607, 153.54690908103748, 152.00485462608316, 150.6582387958402, 149.39356142870517, 148.20117419082374, 147.08133546266583, 146.03404524423166, 145.05930353552108, 144.15711033653423, 143.3274656472709, 142.5703694677313, 141.8584229372601, 141.13111373706255, 140.71415242944073, 140.37709770806907, 140.01255387576262, 139.6262546745207, 139.23541743365263, 138.82840556801995, 138.3964771280884, 137.9396321138581, 137.45787052532884, 136.9512358047858, 136.43079021309035, 135.90511089477857, 135.3790001745701, 134.85099563233152, 134.314901734533, 133.17139819613422, 131.56601315931667, 130.09224112256194, 128.75883025451884, 127.58398310269023, 126.61536335306936, 125.7414502377874, 124.9612550524286, 124.44475067193405, 124.63136692862707, 124.37412519759664, 123.71926565241895, 123.08365074558718, 122.50521597563394, 121.97438429759524, 121.47946429975524, 121.02045598211402, 120.59735934467155, 120.21017438742776, 119.85936645608973, 119.54604722425422, 119.27081734257756, 119.06220850177696, 118.9305107052225, 118.87026831230963, 118.8421760831252, 118.83845038946282, 118.85909123132261, 118.9040986087048, 118.97347252160905, 119.05737560081435, 119.14006052528126, 119.22132063686995, 119.7023158834529, 120.34617347909044, 120.69080081873608, 121.03845005142098, 121.38912117714507, 121.7484793017564, 121.91754071994716, 122.07720386639085, 122.23929189289942, 122.39854119824307, 122.5533913266064, 122.70384227798957, 122.84989405239237, 122.99200396868574, 123.13294181422064, 123.27317355960096, 123.41966165889554, 123.57456431146693, 123.73016576516471, 123.88646601998866, 124.04348961189942, 124.20453927201709, 124.36933727216596, 124.53780531246494, 124.70994339291414, 124.88575151351357, 125.06522967426322, 125.24837787516302, 125.43519611621305, 125.62568439741335, 125.81984271876377, 126.01767108026442, 126.21916948191533, 126.42456447999538, 126.60219429288767, 126.74974932067275, 127.08372929910144, 127.51866745957726, 128.05456380210006, 128.69247573331327, 129.39298688348265, 130.09910290571568, 130.84933129330378, 131.64367204624673, 132.4801851544004, 133.30330907555538, 134.09797086780625, 135.23936969557116, 137.0055287172607, 138.43584262610764, 139.53031142211222, 140.2889351052742, 140.87500940910192, 140.94662758478287, 140.83592986557406, 140.81559350607995, 140.88561850630052, 141.0375165981233, 141.19215768269646, 141.33019947173008, 141.46369471012412, 141.61799806671772, 141.7930567161572, 141.98165217015574, 142.18314183607322, 142.40434005766997, 142.66291112324728, 143.16718164369289, 143.4424012772165, 143.75572889857943, 144.10716450778156, 144.4923337016902, 144.88086605003477, 145.292557389001, 145.72740771858872, 146.18541703879794, 146.66658534962878, 147.1709126510812, 147.69875729709403, 148.25080803526552, 148.8270819824629, 149.427579138686, 150.05229950393493, 150.7073965644016, 151.46895511553484, 152.38162464247944, 153.4660933309017, 154.72260064512943, 156.1511465851625, 157.75173115100108, 159.5243543426451, 161.46901616009447, 163.95424485828556, 178.03823164145325, 183.89417779402092, 186.18266004689912, 187.51601663815003, 187.8955727614577, 187.37905434630653, 186.07356974199163, 183.58507316809357, 179.58771041181336, 174.081481473151, 169.34043890222006, 165.43714582421913, 161.90115743393903, 158.17567221065775, 154.22610514304236, 150.0680238590814, 146.12404496539872, 142.76679084469689, 139.74326320455057, 136.68093868405484, 133.54152972073254, 130.31273743466298, 126.99456182584616, 123.58700289428205, 120.09006063997072, 116.50373506291166, 112.82802616310585, 109.19403423999923, 105.77145098153912, 102.52818228842743, 99.46422816066413, 96.57958859824922, 93.87426360118232, 91.34825316946414, 88.70545374528619, 82.46426280935937, 79.43262155856847, 76.53727511452249, 73.77822347722126, 71.15546664666543, 68.66900462285457, 66.31883740578877, 64.10496499546798, 62.00197831345469, 59.857260519674114, 57.66472419119618, 55.42436932802139, 53.136195930149555, 50.80020399758066, 48.416393530314664, 45.98476452835157, 43.50530002329002, 40.97797615851033, 38.23123587050942, 34.54477059018975, 30.482139552860264, 26.741807427610713, 25.3445182269994, 24.587160453649588, 24.46111905194839, 24.590491050397585, 24.72088802208147, 24.852309967000053, 24.98475688515334, 25.11822877654133, 25.252725641163995, 25.38824747902134, 25.5247942901134, 25.662366074440136, 25.800962832001584, 25.940584562797735, 26.081231266828556, 26.22290294409409, 26.365599594594286, 26.509321218329195, 26.654067815298795, 26.799839385503102, 26.946635928942097, 27.094457445615785, 27.243303935524157, 27.393175398667225, 27.54407183504498, 27.69599324465744, 27.84893962750461, 28.002910983586457, 28.157907312902985, 28.313928615454216, 28.470965440867822, 28.628960928693047, 28.78790557576957, 28.947799382097433, 29.10864234767659, 29.27043447250706, 29.433175756588845, 29.596864143381712, 29.761294388781778, 29.926330258498506, 30.091971752531883, 30.25746379288692, 30.422028937192856, 30.5857481219705, 30.748621347219853, 30.91064861294091, 31.071829919133695, 31.232165265798173, 31.39165465293435, 31.550298080542248, 31.708095548621845, 31.865047057173147, 32.02115260619619, 32.17653810274839, 32.336308772059, 32.50312771672504, 32.676994936746524, 32.857910432123454, 33.04162664801849, 33.22606019459951, 33.41216060270333, 33.59992787232997, 33.78936200347943, 33.98046299615173, 34.173230850346854, 34.36766556606483, 34.5637671433056, 34.761535582069214, 34.96097088235564, 35.1620730441649, 35.36484206749697, 35.569277952351904, 35.77538069872964, 35.98294558990619, 36.1916429554644, 36.40146836095692, 36.612421806383736, 36.824503291744854, 37.03771281704027, 37.25205038226996, 37.467515987433956, 37.684109632532234, 37.90183131756483, 38.120681042531714, 38.34060108255379, 38.56136628250094, 38.78295395789611, 39.00589913893985, 39.230369024339815, 39.456345577205816, 39.68382879753787, 39.91281868533601, 40.143315240600174, 40.37531846333039, 40.60882835352667, 40.843844911189, 41.080368136317375, 41.31839802891181, 41.55793458897231, 41.79897781649886, 42.041527711491455, 42.28558427395009, 42.53214054776783, 42.79014638169058, 43.055477615845405, 43.3263364363556, 43.60274164447284, 43.8846932401971, 44.172191223528365, 44.46523559446667, 44.763826353011964, 45.06796349916434, 45.37764703292368, 45.692876954290064, 46.01365326326345, 46.339975959843834, 46.67184504403126, 47.009260515825744, 47.34938903829399, 47.682062023623864, 48.01556306890859, 48.336887426557006, 48.64317254436291, 48.94342948562926, 49.23765825035605, 49.525858838543265, 49.8038231235321, 50.132670164967884, 50.463148697492166, 50.79525860965101, 51.12889806475766, 51.46397794401064, 51.800498247409955, 52.1384589749556, 52.47786012664761, 52.818701702485924, 53.160983702470645, 53.5047061266017, 53.84986897487905, 54.196472247302786, 54.54451594387284, 54.89400006458927, 55.244924609452, 55.597289578461144, 55.951094971616556, 56.30634078891835, 56.663027030366464, 57.02115369596091, 57.38079949610414, 57.79846229107617, 58.23455670244474, 58.67563909963129, 59.12170948263583, 59.57276785145837, 60.02881420609887, 60.48984854655734, 60.95587087283386, 61.42688118492833, 61.90287948284076, 62.38409436005595, 62.87149672194734, 63.36518057154888, 63.865145908860654, 64.3713953233591, 64.8839645504746, 65.40337748475277, 65.93099054179008, 66.46519180972587, 67.00589602356689, 67.5531031833133, 68.1068132889649, 68.66697980678539, 69.23351084410982, 69.80640393039981, 70.38571202236265, 70.97261754842332, 71.56679761988221, 72.16354345208386, 72.76209487419273, 73.36245188620886, 73.9646144881322, 74.56858267996269, 75.17435646170055, 75.78193583334547, 76.39132079489768, 77.0025113463571, 77.61550748772375, 78.23030921899756, 78.8469165401787, 79.47717067393886, 80.18990872013745, 80.9341273093919, 81.71221658745029, 82.53043211883849, 83.39217393580874, 84.29739739312791, 85.12589403395711, 85.95594145600542, 86.79757187436422, 87.65078528903341, 88.515581700013, 89.39196110730322, 90.28014502836078, 91.17934675699081, 92.0895013440807, 93.01060878963038, 93.94266909364006, 94.88568225610969, 95.83964827703905, 96.80456715642832, 97.78043889427738, 98.76726349058649, 99.765431771803, 100.77968368522232, 101.8114145255271, 102.86062429271676, 103.92731298679192, 105.01173748882186, 106.12748984076491, 107.28075451839658, 108.51692715923491, 109.89788650158705, 111.42399053578113, 113.09523926181802, 114.80003786870896, 116.50374863112867, 118.21190762152813, 119.8462794692519, 121.45692757086495, 123.04823096390844, 124.62018964838292, 126.21293586850673, 128.0297424689053, 129.871519980853, 131.73826840434927, 133.62998773939466, 135.54667871146842, 137.48840163621182, 139.45519497460305, 141.4470587266411, 143.46399289232684, 145.59776604019905, 147.88213335103083, 150.28194199417212, 152.79805544910792, 155.4304737158394, 158.17919679436537, 161.0442246846871, 164.05365488764707, 167.20025033333982, 170.4835997267211, 173.90370306778993, 177.49484679337002, 181.3560148378853, 185.46732270572832, 189.8224545179426, 194.4062194432602, 199.07914620062232, 203.83377644669366, 208.6869175436691, 213.64421365634144, 218.70365280765898, 223.8145282595458, 231.1079991733128, 238.73535014531632, 246.81673887020185, 255.35211735928814, 264.40740289464276, 274.0456326219533, 284.2301200547537, 294.95630821688667, 306.22419710835703, 318.8809494713288, 336.04628483060634, 363.15072778444755, 386.71822847011316, 411.9557474643101, 438.8323315796038, 467.7261964953374, 499.1602124715491, 545.4369205010446, 608.797162735185, 621.6847997017562, 600.8813659556201, 577.0393144372063, 542.9989723198239, 499.57337338065304, 469.4338484439461, 444.11106303224886, 451.07289089413115, 383.5763286613372, 357.5936908153675, 335.525575138834, 316.5705415927943, 304.9585353656824, 292.6228909885802, 281.8308508662518, 269.58499507500505, 256.21553442856276, 242.68706174994884, 231.3558264367866, 221.00419745584267, 210.51264637694902, 199.5733406275035, 191.0618834862103, 181.1693552173794, 174.0826219570948, 167.22754614784606, 160.6169365165006, 154.25079306305534, 148.1291157875134, 142.25190468987165, 136.71403994940252, 131.92579592890434, 132.07007974382572, 126.78802746910365, 120.47157063026297, 113.6994685937974, 106.4750068423377, 99.12928961153052, 91.99869264759535, 86.4529828415586, 80.9458072346953, 74.43091387004691, 68.56858741359525, 62.46605069860501, 56.99277985413388, 52.16337992112634, 47.98783075366877, 44.466748380998894, 41.60013280311498, 39.14741125696476, 36.862017861653925, 34.74394342288608, 32.7937596773019, 31.012007677747373, 29.398687424222867, 27.953798916727575, 26.677342155262227, 30.440513100478476, 16.636728660174892, 8.497563268326802, 6.147523648307384, 4.177044960401671, 2.5861272046087254, 1.3747703809293028, 0.5429744893628273, 0.09073952990963254, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.295502232187965, 38.14938267604674, 120.45511951227475, 176.33028757068672, 291.4565737670239, 313.1768454077982, 347.6923092757778, 458.8822488814573, 527.970332937554, 664.7415485652222, 609.609871642939, 590.4250315560103, 606.1093691731701, 608.4987903182479, 584.5837650337559, 568.6625132319011, 553.7010216352503, 540.3750109536475, 532.1469591097699, 530.1184229193126, 530.0413556467144, 532.6463644340487, 536.5818909358818, 540.2852851076913, 544.3293947059268, 548.8301323361566, 553.8639341860007, 560.4835241292479, 562.546561296527, 548.6804806924554, 546.9521051185945, 546.0575445655444, 547.0753531650332, 549.5577795548959, 551.7972820900933, 554.4317272135843, 559.4136366392652, 565.0258086873615, 571.2922553125455, 577.9964024954261, 584.9722280603753, 592.6985610984833, 601.378435642996, 611.0499154007337, 621.7347535985529, 634.2229410691264, 671.4148862531091, 676.4558998479669, 704.6825646961619, 705.8799135376587, 707.369205702445, 709.8135399708765, 712.4270108141117, 714.0778181189866, 716.4916347665669, 715.5084621396958, 719.4126344950927, 725.4795512707063, 729.3756799403218, 731.1092428980697, 732.0481149216777, 735.441191702663, 740.0648320631597, 746.2715439183957, 754.2834188714615, 766.7947076331278, 787.2687466970394, 802.0905523039926, 805.6828282576895, 811.6578180753453, 814.4420267306404, 810.9715132667583, 816.1932644953702, 820.8229402470239, 824.8605405217224, 828.3039574976153, 831.084722726065, 835.1307630238013, 845.6940744882448, 857.9923382647888, 870.7404729354527, 897.0160930494472, 921.2473921188953, 944.7573526739716, 947.1545380332859, 947.4569925321499, 954.8409676701935, 960.6883647913877, 989.9267925795556, 1004.9242348939736, 982.960492365018, 972.7142211083358, 876.0673795797102, 816.703435265964, 777.4989221601975, 746.8156592822853, 719.5746821980684, 695.7997605899744, 670.8123661204256, 642.4366007721922, 612.2410169890518, 587.0427266328213, 565.5191440166947, 545.4626081337336, 526.2520376393769, 508.096500614853, 491.4121441445545, 475.0902558498767, 457.62617852839423, 444.86591889416417, 418.30880294986196, 400.85235415422693, 387.73698114857353, 375.7183211448211, 364.2228876185469, 353.1780164280965, 342.05267159661133, 330.99979461625105, 321.92996854783286, 312.0335971310367, 305.5957075292268, 295.66352042888826, 278.13189215503644, 268.37699740856675, 259.16455802950696, 250.57126381732658, 242.5971147720222, 234.34330425805734, 225.89256047974186, 220.6229344762214, 218.3227796412568, 212.55146180534655, 203.2424349335589, 187.74004443542054, 176.9006480261599, 168.4308151036042, 160.56962070512046, 153.52515456771675, 146.91979644628069, 142.28546147531287, 142.90681883518042, 134.51760469852923, 114.83484726773071, 100.8097917249047, 89.82714997905201, 79.76107332283199, 71.69064651498128, 65.37986987915032, 49.99739879577825, 22.421511357584254, 5.550203788991534, 2.6180367987034535e-09, 2.7690615719881728e-05, 0.0001096880847162439, 0.0002459950250259243, 0.00043661143664890984, 0.0006815373195851357, 0.0009807726738347183, 0.0013343174993975158, 0.0017421717962736961, 0.0022043355644631815, 0.002720808803965842, 0.0032915915147819245, 0.003916683696911158, 0.004596085350353837, 0.005329796475109642, 0.00611781707117892, 20.431603994653344, 169.6499051789962, 316.7254525802801, 447.1251288300951, 597.7986670285517, 665.3973799725488, 627.1873665972647, 603.3564464887739, 554.2138175141683, 547.3663497623638, 545.8979029431472, 543.5685990357422, 537.4005951992636, 535.8277134148431, 537.4840652262683, 542.3911415969999, 552.7520519793536, 556.3139811768503, 557.4048553457746, 554.5845972871607, 545.022776385913, 522.4930503344827, 492.0028767384138, 467.3144031014808, 447.0291036312915, 431.45191142140936, 417.7780730530393, 405.1273481604949, 393.49973674375804, 382.68952773134583, 372.01915837190165, 363.0589444498105, 355.1717144445122, 348.14335034114515, 341.73096949246167, 335.85606126489625, 330.2799117819056, 324.9654661269648, 319.91728210801114, 315.133837979575, 310.6416900587576, 306.42523419785215, 302.4718997474761, 298.8075308438114, 295.39374837352864, 291.44538407778157, 287.4888883416871, 283.78893051316714, 280.34551059222014, 277.34044550529114, 274.26858844176485, 271.64509951092134, 269.30940271684125, 267.10705805922225, 265.0321446967665, 263.0846626294763, 261.2646118573494, 259.5186441479434, 257.8372432558148, 256.2298457173051, 254.2434142130519, 252.88850651684155, 251.30863079454429, 249.75715263087616, 248.27617633521962, 246.86516644404662, 245.52363918403194, 244.25159455517704, 243.0490325574803, 241.91595319094336, 240.93028383892943, 239.97532200389966, 238.9937937337505, 238.08377249717785, 237.24318275034474, 236.29308469617152, 235.26615591792984, 234.18822909291262, 233.05731234096606, 231.85919889157543, 230.60838574671016, 229.5024741322274, 228.45049707399022, 227.4015507899164, 226.3735402136593, 225.3875431843335, 224.45636770530731, 223.57453014018913, 222.7420304889784, 221.95886875167537, 221.22513169688315, 220.97170282329222, 220.78500261298916, 220.3148032221164, 220.0742058211639, 219.86549384935853, 220.03467450382556, 220.16381594903766, 220.1581005097921, 219.76184925829193, 219.118147408066, 218.6692592901324, 218.00079626505737, 217.21668168465987, 216.4375806432044, 215.4034275280677, 214.38965607516252, 213.14216247475838, 211.5243946522603, 210.97461694859692, 210.58748234764778, 212.67895742461698, 214.08828771279073, 214.47529588552942, 213.7250728477342, 208.8555512629132, 205.4063310961774, 200.93747251630865, 195.32617665885866, 185.19096328830258, 173.5050227140773, 164.45806114521585, 160.88097609912674, 159.37433433637247, 156.38998732595545, 150.2104979540032, 140.53629686331206, 133.49034863070568, 132.0586889765361, 132.08946054180666, 129.40701676241446, 127.2140063093521, 121.81305616109834, 115.55529302034488, 112.52875479135638, 110.45542018141836, 108.63289208789548, 106.17976582453635, 101.46270282544725, 96.0027449227936, 90.58861615061565, 85.22031650890581, 78.71587727543132, 71.02668340506558, 78.4328419051603, 68.68502286715344, 53.98293151690334, 41.32737138204777, 30.258217383898614, 22.292764510989667, 16.43942522612542, 9.420421818586524, 0.945041457567605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] } ], "layout": { "hovermode": false, "legend": { "font": { "size": 12 } }, "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 } } }, "title": { "font": { "size": 12 }, "text": "AlAs type-projected phonon DOS", "x": 0.5 }, "xaxis": { "title": { "text": "Frequency (eV)" } }, "yaxis": { "title": { "text": "PJDOS (states/eV)" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "phdos_file.plotly_pjdos_type(title=\"AlAs type-projected phonon DOS\");" ] }, { "cell_type": "markdown", "id": "4f0eefdf", "metadata": {}, "source": [ "and it is even possible to plot fatbands and type-projected DOS on the same figure with:" ] }, { "cell_type": "code", "execution_count": 38, "id": "a184e4c0", "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://chart-studio.plotly.com", "responsive": true, "showLink": true }, "data": [ { "legendgroup": "0", "line": { "color": "#3366CC", "width": 2 }, "mode": "lines", "name": "Al", "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 ], "xaxis": "x", "y": [ 0.0, 0.0005958481034701485, 0.0011902521158242215, 0.0017817655359985737, 0.0023689369312623284, 0.002950307318387079, 0.0035244073648737504, 0.004089754419174196, 0.004644849409630538, 0.005188173703502295, 0.0057181860752842555, 0.006233319996764072, 0.006731981528519774, 0.00721254816197941, 0.007673369029675163, 0.008112766963914395, 0.008529042932800244, 0.008920483405773954, 0.009285371183233642, 0.009622000148016206, 0.009928694241940266, 0.010203830723558644, 0.01044586741931681, 0.010653373252214757, 0.010825060855518957, 0.010959819614454335, 0.011056747106115782, 0.01111517671313096, 0.011134699241584221, 0.011168582271487431, 0.011268445338631318, 0.011429083316919138, 0.011642290614602589, 0.011897443693659419, 0.012182128583448226, 0.012482722804952025, 0.012784896537068413, 0.013074057927574071, 0.013335814579914512, 0.013556543160091663, 0.013724135903897058, 0.013828913621406504, 0.013864571235531978, 0.013779662988811586, 0.013524207997304397, 0.013128741151262144, 0.012643661210682723, 0.01212017840583955, 0.011606158979236907, 0.011146465401578556, 0.010782216321466975, 0.0105478991864319, 0.010466996655282234, 0.010322636846724378, 0.010163237117076732, 0.009988607948716094, 0.009798591265598818, 0.009593063624402326, 0.009371938385533247, 0.00913516717873893, 0.008882741000188927, 0.008614691265434187, 0.00833109110118086, 0.008032057095252405, 0.007717751645895297, 0.007388385965978548, 0.0070442237113387965, 0.006685585121391774, 0.0063128514890323055, 0.005926469719636182, 0.005526956698443112, 0.005114903163471805, 0.004690976778095924, 0.004255924113175421, 0.0038105712819198165, 0.003355823019333758, 0.002892660059312807, 0.002422134732794484, 0.001945364786056158, 0.001463525495337799, 0.0009778402286252984, 0.0004895696744950367, 0.0, 0.0005358650745073206, 0.0010697839571917453, 0.0015998079483165756, 0.002123983497755503, 0.002640350317183838, 0.0031469401265581806, 0.0036417762917250996, 0.004122874617860287, 0.0045882455829848925, 0.005035898308865707, 0.005463846567849003, 0.005870117107085557, 0.0062527605292285494, 0.006609864894426995, 0.006939572097304604, 0.007240096922626626, 0.007509748497269094, 0.007746953642881998, 0.007950281409387106, 0.00811846785715102, 0.008250439983331167, 0.00834533758490328, 0.008402531842866816, 0.008421639515277742, 0.008435074116124678, 0.008475006682460162, 0.00854034167252158, 0.008629311267737038, 0.008739554477465168, 0.00886821386002861, 0.009012039801413489, 0.009167493549695599, 0.009330842652025348, 0.009498245289996673, 0.009665822603590876, 0.009829720041733714, 0.009986159945357969, 0.010131488005376254, 0.010262216085629251, 0.010375063330630437, 0.010466996655233927, 0.010547899186384912, 0.010782216321422565, 0.011146465401537816, 0.011606158979200561, 0.012120178405808283, 0.012643661210656994, 0.013128741151242584, 0.013524207997291496, 0.01377966298880551, 0.013864571235531978, 0.013744395906115292, 0.013435553540285267, 0.01302306443380849, 0.012563472122157002, 0.012088633157758615, 0.011617698621025241, 0.011163341309395333, 0.010734488840885296, 0.01033753727367969, 0.009976918814707976, 0.00965539557790815, 0.009374251611597308, 0.009133471441282476, 0.008931951135579153, 0.008767760254106794, 0.008638451537396941, 0.008541398871657337, 0.008474134065488194, 0.008434649869509774, 0.008421639515277742, 0.00843507411617806, 0.008475006682513433, 0.008540341672574637, 0.0086293112677898, 0.008739554477517572, 0.008868213860080625, 0.009012039801465074, 0.00916749354974673, 0.009330842652076045, 0.009498245290046954, 0.009665822603640795, 0.009829720041783235, 0.009986159945407197, 0.01013148800542519, 0.010262216085677954, 0.010375063330678894, 0.010466996655282234, 0.010486209341331383, 0.010616084043721124, 0.01083628945405738, 0.011117663987991275, 0.01142414871045093, 0.011714365535162113, 0.011944005664416255, 0.012071949462263662, 0.012071949462258416, 0.011944005664401116, 0.011714365535138306, 0.011424148710419966, 0.011117663987954468, 0.010836289454015928, 0.010616084043676238, 0.010486209341284173, 0.010466996655233927, 0.010596533035792518, 0.010711483558382296, 0.010812099511839195, 0.010898637212487142, 0.010971348268893009, 0.01103046924619102, 0.011076211299667483, 0.011108750426933146, 0.011128219006633114, 0.011134699241584221 ], "yaxis": "y" }, { "legendgroup": "0", "line": { "color": "#3366CC", "width": 0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "xaxis": "x", "y": [ -0.0012864105935071924, -0.0006906255806245972, -9.641157333278123e-05, 0.0004947827941663798, 0.0010815027542654954, 0.0016622851100262586, 0.002235655873252857, 0.0028001278303564844, 0.003354198056374777, 0.0038963454450457588, 0.004425028376714928, 0.004938682705394402, 0.005435720310231017, 0.005914528523360365, 0.006373470812854155, 0.006810889161614469, 0.007225108633180381, 0.007614444642473798, 0.007977213438707106, 0.008311746241171652, 0.008616407327954306, 0.00888961614792431, 0.009129873202344315, 0.009335789035459995, 0.009506115216974713, 0.009639775751213298, 0.009735896985326314, 0.009793833895842994, 0.009813190679560794, 0.009847017213127184, 0.009946697997656921, 0.01010699101155812, 0.010319634314524548, 0.010573936923178135, 0.01085741913910932, 0.011156412334525283, 0.011456582681391232, 0.011743401134146417, 0.012002625235847322, 0.012220873609433086, 0.012386348787216455, 0.012489690989910382, 0.012524839440758955, 0.012445523624373728, 0.012203513429115636, 0.011821229403070406, 0.011344628611320002, 0.010824918168562143, 0.010311484292632917, 0.009850731701268682, 0.009484954945101848, 0.009249426623911714, 0.00916807274711798, 0.009027296471438141, 0.008871433580300694, 0.008700224731045241, 0.008513447968652159, 0.008310923261570779, 0.008092515719813478, 0.007858137807983261, 0.007607750899538781, 0.007341366514795789, 0.0070590475495380285, 0.006760909740890643, 0.006447123540206271, 0.006117916476941702, 0.005773576010087843, 0.005414452780982426, 0.005040964108504723, 0.004653597508819763, 0.004252913979914247, 0.003839550767905764, 0.0034142233281669234, 0.0029777262092830457, 0.002530932620382006, 0.0020747924902185114, 0.001610328886641648, 0.0011386327342580054, 0.0006608558424436072, 0.00017820233142445117, -0.00030808138285403144, -0.0007967178170331455, -0.0012864105935071924, -0.0007504813070197465, -0.00021637011643093826, 0.00031397326468470053, 0.0008385934983578789, 0.0013555275908014098, 0.0018628034453050096, 0.0023584392645770837, 0.0028404440789533683, 0.0033068197004718384, 0.0037555644204041406, 0.004184678773820063, 0.004592173682122213, 0.0049760812455308685, 0.0053344683846533025, 0.0056654534174289135, 0.005967225501818552, 0.006238066677528403, 0.006476376010563783, 0.006680695099311889, 0.006849733965019118, 0.006982396154038919, 0.0070778017574134044, 0.007135307034941314, 0.007154519435362251, 0.007167786112318682, 0.007207217736126205, 0.007271727209772408, 0.007359560646304515, 0.007468376256844317, 0.007595340764219203, 0.007737233280904974, 0.007890547847721998, 0.00805158828080585, 0.0082165518270245, 0.008381600727316998, 0.00854292274119113, 0.008696782859781796, 0.008839568877219765, 0.008967833341995916, 0.009078333841352957, 0.009168072747069475, 0.009249426623864573, 0.009484954945057338, 0.00985073170122791, 0.010311484292596622, 0.010824918168531029, 0.011344628611294538, 0.011821229403051216, 0.012203513429103125, 0.012445523624367887, 0.012524839440758955, 0.012413594999502127, 0.012120792093731143, 0.011720791160993775, 0.011269073554496458, 0.010799048027010478, 0.010331216006832771, 0.009879094444875315, 0.009452089008142536, 0.009056847025597649, 0.00869791651711944, 0.008378095572058236, 0.008098658037561449, 0.007859552692417901, 0.007659627217038756, 0.007496898433379461, 0.007368867512848095, 0.007272861764188233, 0.0072063741527171685, 0.007167368306643562, 0.007154519435362251, 0.007167786112372196, 0.007207217736179612, 0.007271727209825602, 0.007359560646357417, 0.007468376256896864, 0.007595340764271361, 0.0077372332809567115, 0.007890547847773285, 0.008051588280856706, 0.008216551827074946, 0.008381600727367088, 0.008542922741240827, 0.008696782859831206, 0.008839568877268887, 0.008967833342044809, 0.009078333841401609, 0.00916807274711798, 0.009188699081960544, 0.009320561827830452, 0.009543013685375638, 0.009826483549431872, 0.010134486966417701, 0.010425357694996857, 0.010654863837947148, 0.010782431359654409, 0.010782431359649203, 0.010654863837932103, 0.010425357694973143, 0.010134486966386792, 0.009826483549395061, 0.009543013685334127, 0.009320561827785453, 0.009188699081913176, 0.009168072747069475, 0.009294053045322041, 0.009405551525445522, 0.009502896433670962, 0.00958641919999267, 0.009656442434506703, 0.009713267356380452, 0.009757161320441477, 0.009788346185903402, 0.009806988284079946, 0.009813190679560794 ], "yaxis": "y" }, { "fill": "tonexty", "legendgroup": "0", "line": { "color": "#3366CC", "width": 0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "xaxis": "x", "y": [ 0.0012864105935071924, 0.0018823217875648941, 0.002476915804981224, 0.0030687482778307676, 0.0036563711082591615, 0.0042383295267478995, 0.004813158856494644, 0.005379381007991908, 0.005935500762886299, 0.006480001961958832, 0.007011343773853583, 0.007527957288133741, 0.00802824274680853, 0.008510567800598456, 0.00897326724649617, 0.009414644766214321, 0.009832977232420107, 0.01022652216907411, 0.010593528927760179, 0.010932254054860759, 0.011240981155926227, 0.011518045299192979, 0.011761861636289304, 0.011970957468969519, 0.0121440064940632, 0.012279863477695373, 0.012377597226905249, 0.012436519530418926, 0.012456207803607648, 0.012490147329847679, 0.012590192679605714, 0.012751175622280156, 0.01296494691468063, 0.013220950464140702, 0.013506838027787132, 0.013809033275378767, 0.014113210392745594, 0.014404714721001726, 0.014669003923981702, 0.01489221271075024, 0.01506192302057766, 0.015168136252902626, 0.015204303030305002, 0.015113802353249444, 0.014844902565493158, 0.014436252899453883, 0.013942693810045445, 0.013415438643116957, 0.012900833665840897, 0.012442199101888431, 0.012079477697832103, 0.011846371748952087, 0.011765920563446488, 0.011617977222010615, 0.01145504065385277, 0.011276991166386946, 0.011083734562545477, 0.010875203987233873, 0.010651361051253017, 0.010412196549494598, 0.010157731100839073, 0.009888016016072587, 0.00960313465282369, 0.009303204449614168, 0.008988379751584322, 0.008658855455015393, 0.00831487141258975, 0.007956717461801124, 0.007584738869559888, 0.007199341930452602, 0.006800999416971977, 0.0063902555590378465, 0.0059677302280249245, 0.005534122017067796, 0.005090209943457627, 0.004636853548449005, 0.004174991231983966, 0.003705636731330963, 0.003229873729668709, 0.0027488486592511466, 0.002263761840104628, 0.0017758571660232189, 0.0012864105935071924, 0.0018222114560343878, 0.002355938030814429, 0.002885642631948451, 0.003409373497153127, 0.003925173043566266, 0.004431076807811352, 0.0049251133188731155, 0.005405305156767205, 0.0058696714654979465, 0.006316232197327273, 0.006743014361877942, 0.007148060532048901, 0.00752943981292623, 0.007885261404200688, 0.008213690777180295, 0.0085129683434347, 0.008781430317009786, 0.009017531275200212, 0.009219867719462323, 0.00938720174928292, 0.009518483812623414, 0.009612873412393155, 0.009669756650792317, 0.009688759595193233, 0.009702362119930676, 0.009742795628794118, 0.009808956135270752, 0.009899061889169562, 0.01001073269808602, 0.010141086955838019, 0.010286846321922003, 0.0104444392516692, 0.010610097023244846, 0.010779938752968846, 0.010950044479864755, 0.011116517342276297, 0.011275537030934141, 0.011423407133532744, 0.011556598829262587, 0.011671792819907916, 0.01176592056339838, 0.011846371748905252, 0.012079477697787791, 0.012442199101847722, 0.0129008336658045, 0.013415438643085538, 0.01394269381001945, 0.014436252899433951, 0.014844902565479866, 0.015113802353243132, 0.015204303030305002, 0.015075196812728456, 0.014750314986839392, 0.014325337706623205, 0.013857870689817546, 0.013378218288506752, 0.01290418123521771, 0.01244758817391535, 0.012016888673628056, 0.011618227521761733, 0.011255921112296513, 0.010932695583758065, 0.010649845185633167, 0.010407390190147052, 0.01020427505411955, 0.010038622074834127, 0.009908035561945788, 0.00980993597912644, 0.00974189397825922, 0.009701931432375986, 0.009688759595193233, 0.009702362119983921, 0.009742795628847254, 0.009808956135323671, 0.009899061889222183, 0.010010732698138281, 0.010141086955889887, 0.010286846321973438, 0.010444439251720174, 0.010610097023295384, 0.010779938753018962, 0.010950044479914501, 0.011116517342325643, 0.011275537030983187, 0.011423407133581495, 0.011556598829311098, 0.01167179281995618, 0.011765920563446488, 0.011783719600702222, 0.011911606259611796, 0.01212956522273912, 0.012408844426550679, 0.012713810454484158, 0.01300337337532737, 0.013233147490885363, 0.013361467564872914, 0.013361467564867629, 0.01323314749087013, 0.01300337337530347, 0.01271381045445314, 0.012408844426513875, 0.012129565222697728, 0.011911606259567022, 0.01178371960065517, 0.01176592056339838, 0.011899013026262995, 0.01201741559131907, 0.012121302590007427, 0.012210855224981613, 0.012286254103279316, 0.012347671136001588, 0.012395261278893488, 0.01242915466796289, 0.012449449729186282, 0.012456207803607648 ], "yaxis": "y" }, { "legendgroup": "0", "line": { "color": "#3366CC", "width": 2 }, "mode": "lines", "name": "Al", "showlegend": false, "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 ], "xaxis": "x", "y": [ 0.0, 0.0005958481034703127, 0.001190252115824366, 0.0017817655359986175, 0.0023689369312623653, 0.002950307318387225, 0.0035244073648739065, 0.004089754419174217, 0.004644849409630607, 0.005188173703502313, 0.005718186075284371, 0.006233319996764128, 0.006731981528519776, 0.007212548161979423, 0.007673369029675183, 0.008112766963914405, 0.00852904293280028, 0.008920483405773973, 0.009285371183233693, 0.009622000148016232, 0.009928694241940284, 0.010203830723558667, 0.010445867419316829, 0.010653373252214767, 0.010825060855518966, 0.010959819614454372, 0.011056747106115804, 0.011115176713130963, 0.011134699241584235, 0.011205256528990497, 0.011411339878807079, 0.011737217422390573, 0.012159656484850734, 0.012651143121087777, 0.013182741559147913, 0.013726148188075037, 0.014254951270531726, 0.014745329968947838, 0.015176449430589014, 0.015530737486767799, 0.015794139043504147, 0.015956370853749416, 0.01601115256346213, 0.016034374940024302, 0.016114784993772183, 0.016241587852722977, 0.01638973260928492, 0.016538069748835028, 0.01667248775948562, 0.016784042662399565, 0.016867095049564487, 0.016918180831621363, 0.016935410066685003, 0.017384720871230212, 0.017692960355102746, 0.01785133782975082, 0.0178600946302589, 0.01772712060593466, 0.017465237884643676, 0.01708934001366542, 0.01661436879508854, 0.016054359181503126, 0.015422239395982008, 0.014729964395722425, 0.013988693836073632, 0.013208890606313719, 0.012400324417019812, 0.01157201155395882, 0.010732129137982481, 0.009887932269685052, 0.009045689294177792, 0.008210640308371377, 0.007386978288291225, 0.006577850003131912, 0.0057853738590993254, 0.005010672836497997, 0.004253921970749727, 0.0035144109085782755, 0.0027906226738949403, 0.002080329769076425, 0.0013807080927316494, 0.000688467963792988, 0.0, 0.0005358650745084461, 0.0010697839571920924, 0.0015998079483169252, 0.002123983497755699, 0.0026403503171840304, 0.0031469401265582044, 0.0036417762917251933, 0.004122874617860413, 0.004588245582985012, 0.005035898308865789, 0.005463846567849069, 0.005870117107085635, 0.006252760529228604, 0.006609864894427044, 0.0069395720973046485, 0.007240096922626693, 0.0075097484972691565, 0.007746953642882025, 0.00795028140938717, 0.008118467857151054, 0.008250439983331186, 0.008345337584903318, 0.008402531842866877, 0.008421639515277766, 0.008552368830924282, 0.008929558801678632, 0.009514020108253, 0.010254960798870085, 0.01110096925547409, 0.012005592889278304, 0.012928475193097791, 0.013834263190820737, 0.014690872991508308, 0.015468002779273217, 0.01613654317285202, 0.016669597245288336, 0.017045622712882076, 0.017252979637513835, 0.0172932089238577, 0.01718019192488727, 0.016935410066673547, 0.0169181808316116, 0.016867095049556326, 0.016784042662392914, 0.016672487759480346, 0.01653806974883103, 0.01638973260928198, 0.016241587852720785, 0.016114784993770448, 0.016034374940023015, 0.01601115256346213, 0.016092870858369544, 0.016284098174800334, 0.01649329732345975, 0.016653946052840193, 0.016722550634453277, 0.016669702578868847, 0.016477592812145815, 0.016140213535469565, 0.015662785399461646, 0.015059501813382045, 0.01435063645630155, 0.013560349063303652, 0.012715766367356354, 0.011847230272192711, 0.010989330790387459, 0.010182204976112481, 0.009472237280404291, 0.00891060307489176, 0.008547555277725438, 0.008421639515277766, 0.008552368830871682, 0.00892955880162851, 0.009514020108206352, 0.010254960798827404, 0.011100969255435383, 0.012005592889243574, 0.012928475193066787, 0.013834263190793492, 0.014690872991484874, 0.015468002779253786, 0.01613654317283685, 0.01666959724527776, 0.01704562271287634, 0.017252979637512995, 0.01729320892386144, 0.017180191924895113, 0.016935410066685003, 0.017058887502421793, 0.01712407982810915, 0.01713067088429244, 0.01708400096041491, 0.016996595704822676, 0.016889296830203793, 0.016790482057327354, 0.016730602555633335, 0.016730602555634414, 0.016790482057330126, 0.01688929683020706, 0.016996595704825073, 0.017084000960415423, 0.017130670884290343, 0.017124079828104096, 0.017058887502413553, 0.016935410066673547, 0.01636248105121326, 0.015690561442475985, 0.014949859644173922, 0.014175102174133663, 0.013405045106775941, 0.012682128205914047, 0.012051494673664304, 0.011558395887121865, 0.011243239101146395, 0.011134699241584235 ], "yaxis": "y" }, { "legendgroup": "0", "line": { "color": "#3366CC", "width": 0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "xaxis": "x", "y": [ -0.0012864105935071928, -0.0006906255806244339, -9.641157333263725e-05, 0.0004947827941664236, 0.0010815027542655322, 0.0016622851100264048, 0.002235655873253013, 0.0028001278303565053, 0.003354198056374845, 0.003896345445045776, 0.004425028376715043, 0.004938682705394458, 0.00543572031023102, 0.005914528523360379, 0.006373470812854175, 0.006810889161614478, 0.007225108633180417, 0.007614444642473817, 0.007977213438707158, 0.00831174624117168, 0.008616407327954323, 0.008889616147924332, 0.009129873202344332, 0.009335789035460005, 0.009506115216974722, 0.009639775751213334, 0.009735896985326335, 0.009793833895842997, 0.009813190679560808, 0.009886543642886235, 0.010100978627416756, 0.010440649150949718, 0.010882103296982382, 0.01139746087517236, 0.01195721465696444, 0.012532214473326829, 0.01309485536304607, 0.013619722685975591, 0.014083982097769562, 0.014467740628404495, 0.014754511862852298, 0.014931812602382756, 0.014991805628476879, 0.015005948173664553, 0.015064418817316082, 0.015168112795729431, 0.015298181695198925, 0.015433974437710399, 0.015560128722515661, 0.01566643145759093, 0.01574631593116467, 0.01579572030296227, 0.015812424223382367, 0.01628707002567643, 0.01661572484842787, 0.01678834739676484, 0.016804531067718103, 0.0166721074804956, 0.016404339598951424, 0.016016958549583384, 0.015526031961889102, 0.014946883647670656, 0.014293759576326757, 0.013579839335596366, 0.012817323532763686, 0.012017482459301804, 0.01119064867782193, 0.010346175176835714, 0.009492385268416503, 0.008636531766571037, 0.0077847731285029444, 0.006942167571303334, 0.006112683066619633, 0.005299220516918271, 0.0045036481682110795, 0.0037268465671970443, 0.0029687646017990373, 0.0022284880688665616, 0.0015043226153784513, 0.000793892708688988, 9.425749822993099e-05, -0.0005979568750298083, -0.0012864105935071928, -0.0007504813070186206, -0.00021637011643059153, 0.00031397326468504943, 0.0008385934983580748, 0.001355527590801603, 0.0018628034453050334, 0.0023584392645771782, 0.0028404440789534958, 0.003306819700471958, 0.003755564420404223, 0.004184678773820129, 0.004592173682122291, 0.004976081245530923, 0.005334468384653351, 0.005665453417428959, 0.0059672255018186175, 0.006238066677528464, 0.006476376010563811, 0.006680695099311954, 0.0068497339650191525, 0.006982396154038939, 0.007077801757413443, 0.007135307034941375, 0.007154519435362276, 0.007286996303210387, 0.007669404464989749, 0.00826247659187881, 0.009015274811360045, 0.009876148073334132, 0.010798272056447109, 0.011740733165814915, 0.012667371810732006, 0.013544987024135726, 0.014341828407453726, 0.015027091789584552, 0.015572202520343975, 0.015954381715273837, 0.016161569521014718, 0.01619574846047017, 0.016071804118008074, 0.015812424223370775, 0.015795720302952412, 0.015746315931156434, 0.015666431457584187, 0.015560128722510256, 0.015433974437706194, 0.015298181695195666, 0.015168112795726805, 0.015064418817313881, 0.015005948173662974, 0.014991805628476879, 0.015062574934648819, 0.015235241144606585, 0.015431395392313555, 0.015584636637843974, 0.01564831765865844, 0.015590190660004185, 0.015390434805151693, 0.015041946694627153, 0.014549782555682038, 0.013928745927689168, 0.013200182146984018, 0.012389457355035988, 0.011524813434615446, 0.010637511323728964, 0.009762844612218918, 0.008941462086952212, 0.00822010557627132, 0.007650189844990452, 0.00728211845144195, 0.007154519435362276, 0.007286996303157654, 0.007669404464939498, 0.008262476591832036, 0.00901527481131725, 0.009876148073295319, 0.01079827205641229, 0.011740733165783845, 0.01266737181070472, 0.013544987024112285, 0.014341828407434327, 0.015027091789569449, 0.015572202520333504, 0.015954381715268223, 0.016161569521014003, 0.016195748460474033, 0.016071804118016047, 0.015812424223382367, 0.01594392719365366, 0.016016897624596675, 0.01603075493368979, 0.01599074832573473, 0.015909422656969874, 0.01580758210722741, 0.015713238644938614, 0.015656011754325128, 0.015656011754326155, 0.01571323864494126, 0.015807582107230538, 0.015909422656972153, 0.015990748325735157, 0.016030754933687632, 0.016016897624591554, 0.015943927193645326, 0.015812424223370775, 0.015210949775561646, 0.01450916162982828, 0.013739041076911067, 0.012936781428126562, 0.012142236103674275, 0.01139860133979157, 0.010751506494961935, 0.010246495393036804, 0.009924138486179885, 0.009813190679560808 ], "yaxis": "y" }, { "fill": "tonexty", "legendgroup": "0", "line": { "color": "#3366CC", "width": 0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "xaxis": "x", "y": [ 0.0012864105935071928, 0.0018823217875650593, 0.0024769158049813694, 0.0030687482778308114, 0.0036563711082591983, 0.004238329526748045, 0.0048131588564948, 0.005379381007991929, 0.0059355007628863685, 0.006480001961958849, 0.007011343773853699, 0.007527957288133798, 0.008028242746808533, 0.008510567800598466, 0.00897326724649619, 0.009414644766214331, 0.009832977232420144, 0.01022652216907413, 0.010593528927760228, 0.010932254054860783, 0.011240981155926245, 0.011518045299193001, 0.011761861636289325, 0.011970957468969529, 0.01214400649406321, 0.01227986347769541, 0.012377597226905273, 0.01243651953041893, 0.012456207803607662, 0.01252396941509476, 0.012721701130197402, 0.013033785693831429, 0.013437209672719086, 0.013904825367003194, 0.014408268461331386, 0.014920081902823245, 0.015415047178017382, 0.015870937251920087, 0.016268916763408466, 0.016593734345131103, 0.016833766224155996, 0.016980929105116074, 0.017030499498447378, 0.01706280170638405, 0.017165151170228283, 0.017315062909716523, 0.017481283523370916, 0.017642165059959657, 0.01778484679645558, 0.0179016538672082, 0.017987874167964303, 0.018040641360280458, 0.01805839590998764, 0.018482371716783994, 0.01877019586177762, 0.0189143282627368, 0.018915658192799698, 0.018782133731373718, 0.018526136170335928, 0.01816172147774746, 0.01770270562828798, 0.017161834715335597, 0.01655071921563726, 0.015880089455848484, 0.015160064139383578, 0.014400298753325633, 0.013610000156217694, 0.012797847931081926, 0.01197187300754846, 0.011139332772799068, 0.01030660545985264, 0.00947911304543942, 0.008661273509962816, 0.007856479489345553, 0.007067099549987571, 0.006294499105798949, 0.005539079339700417, 0.004800333748289989, 0.004076922732411429, 0.0033667668294638624, 0.0026671586872333676, 0.0019748928026157844, 0.0012864105935071928, 0.001822211456035513, 0.002355938030814776, 0.002885642631948801, 0.003409373497153323, 0.003925173043566458, 0.004431076807811376, 0.004925113318873208, 0.005405305156767331, 0.005869671465498066, 0.006316232197327356, 0.006743014361878008, 0.007148060532048979, 0.007529439812926285, 0.007885261404200736, 0.008213690777180338, 0.008512968343434768, 0.008781430317009849, 0.00901753127520024, 0.009219867719462387, 0.009387201749282956, 0.009518483812623433, 0.009612873412393193, 0.009669756650792378, 0.009688759595193257, 0.009817741358638176, 0.010189713138367515, 0.01076556362462719, 0.011494646786380125, 0.012325790437614049, 0.0132129137221095, 0.014116217220380667, 0.015001154570909468, 0.01583675895888089, 0.016594177151092706, 0.01724599455611949, 0.017766991970232696, 0.018136863710490315, 0.018344389754012952, 0.01839066938724523, 0.018288579731766463, 0.018058395909976318, 0.01804064136027079, 0.01798787416795622, 0.01790165386720164, 0.017784846796450437, 0.017642165059955868, 0.017481283523368293, 0.017315062909714764, 0.017165151170227017, 0.017062801706383055, 0.017030499498447378, 0.01712316678209027, 0.017332955204994085, 0.017555199254605944, 0.017723255467836412, 0.017796783610248116, 0.01774921449773351, 0.017564750819139937, 0.017238480376311975, 0.016775788243241257, 0.016190257699074923, 0.015501090765619082, 0.014731240771571315, 0.013906719300097261, 0.013056949220656458, 0.012215816968556, 0.01142294786527275, 0.010724368984537262, 0.01017101630479307, 0.009812992104008926, 0.009688759595193257, 0.00981774135858571, 0.010189713138317524, 0.010765563624580667, 0.011494646786337558, 0.012325790437575448, 0.013212913722074858, 0.014116217220349728, 0.015001154570882263, 0.01583675895885746, 0.016594177151073246, 0.017245994556104247, 0.01776699197022202, 0.01813686371048446, 0.018344389754011987, 0.018390669387248846, 0.01828857973177418, 0.01805839590998764, 0.018173847811189928, 0.018231262031621627, 0.018230586834895087, 0.01817725359509509, 0.018083768752675478, 0.017971011553180174, 0.017867725469716093, 0.017805193356941543, 0.017805193356942674, 0.01786772546971899, 0.017971011553183584, 0.018083768752677993, 0.01817725359509569, 0.018230586834893054, 0.018231262031616638, 0.01817384781118178, 0.018058395909976318, 0.017514012326864874, 0.01687196125512369, 0.016160678211436776, 0.015413422920140763, 0.014667854109877608, 0.013965655072036525, 0.013351482852366673, 0.012870296381206925, 0.012562339716112906, 0.012456207803607662 ], "yaxis": "y" }, { "legendgroup": "0", "line": { "color": "#3366CC", "width": 2 }, "mode": "lines", "name": "Al", "showlegend": false, "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 ], "xaxis": "x", "y": [ 0.0, 0.0014538419078690321, 0.0029032335259157015, 0.004343746600072835, 0.005770996187208085, 0.007180660465844731, 0.00856849838493545, 0.009930364537584448, 0.011262220734050475, 0.012560143866626452, 0.013820329806826234, 0.015039093256358861, 0.016212863691639857, 0.017338177801069245, 0.018411669117979392, 0.019430055899967942, 0.02039012869079994, 0.021288739406227705, 0.022122794173540513, 0.02288925246405959, 0.02358513519393277, 0.024207544306459747, 0.024753695748092743, 0.02522096659048016, 0.025606955294481704, 0.025909551877130833, 0.026127012361040227, 0.026258029897720733, 0.026301793998560002, 0.026286090109097274, 0.02623950281190267, 0.02616360938171818, 0.026061052075024845, 0.02593555615484597, 0.025791948052490056, 0.025636160270067602, 0.02547519724351854, 0.02531701971205174, 0.025170288612375784, 0.025043904695601357, 0.024946306357878856, 0.024884563662299252, 0.024863423666417854, 0.024867825915040886, 0.024881979818664246, 0.02490536601032983, 0.02493559163951616, 0.024969282218586502, 0.025002804480876096, 0.02503276311604355, 0.025056307349554035, 0.025071308068373727, 0.025076455494001424, 0.024885788008125666, 0.024691710131590047, 0.02448893259937908, 0.02426826607628745, 0.024018294795948438, 0.02372788335915151, 0.0233882680212108, 0.022993893941213418, 0.022542037452946705, 0.022031793538676566, 0.021463022284812196, 0.020835596988640733, 0.020149042968341836, 0.019402503594685323, 0.018594914854711247, 0.017725274066096888, 0.01679291776087313, 0.015797757151514557, 0.014740447358215954, 0.013622486004059983, 0.012446248413346237, 0.011214972168518692, 0.009932705070915586, 0.008604229282968738, 0.007234971921020413, 0.005830909537943754, 0.004398471334759577, 0.0029444438289767984, 0.001475878143179424, 0.0, 0.0015752049144679699, 0.0031455596120142097, 0.004706214290917459, 0.006252318864430038, 0.007779020044140273, 0.009281455017417981, 0.010754740490705761, 0.012193955812770224, 0.01359411887578574, 0.014950153566890147, 0.01625684779872418, 0.017508801728128114, 0.018700366896014592, 0.019825578998177936, 0.02087809021861594, 0.021851111919331576, 0.02273738515333153, 0.02352920441254738, 0.024218527211991712, 0.024797204179652046, 0.02525735451516167, 0.025591883224774604, 0.025795088687606244, 0.025863254765841344, 0.025850254452758015, 0.02581155106081679, 0.025748060485725692, 0.025661390259190158, 0.025553973019222537, 0.02542927499990637, 0.025292093152013594, 0.02514893738671793, 0.025008439526326597, 0.0248815999096589, 0.024781443752810123, 0.024721395641883952, 0.02471181415860328, 0.024755340877840926, 0.024843670032890126, 0.02495851288846004, 0.025076455494026186, 0.025071308068397465, 0.025056307349576458, 0.02503276311606439, 0.025002804480895, 0.02496928221860315, 0.024935591639530165, 0.024905366010340827, 0.024881979818671882, 0.024867825915044817, 0.024863423666417854, 0.02485059751140697, 0.024814563453843738, 0.02476252652447003, 0.024705877858282477, 0.02465871495575063, 0.02463513367472505, 0.02464575325513651, 0.0246949474435722, 0.02478027970868717, 0.02489423345928747, 0.025026910846114653, 0.025168303825861667, 0.025309583410400426, 0.025443550949176875, 0.025564607489768264, 0.025668528610556973, 0.025752206930466443, 0.025813432396006506, 0.02585073025638264, 0.025863254765841344, 0.02585025445275799, 0.025811551060816684, 0.025748060485725453, 0.025661390259189683, 0.02555397301922175, 0.025429274999905136, 0.02529209315201171, 0.02514893738671515, 0.025008439526322562, 0.024881599909653197, 0.02478144375280224, 0.02472139564187339, 0.024711814158589644, 0.0247553408778241, 0.024843670032870246, 0.024958512888437496, 0.025076455494001424, 0.025015041732317184, 0.024946284282089625, 0.02487612542946286, 0.0248100973232494, 0.02475278576737426, 0.024707535770290542, 0.024676462251258195, 0.024660695443637064, 0.02466069544363875, 0.02467646225126325, 0.02470753577029896, 0.024752785767385956, 0.024810097323264245, 0.024876125429480648, 0.024946284282110084, 0.02501504173233998, 0.025076455494026186, 0.025264916071552214, 0.025449245637172904, 0.025625703036453656, 0.025789826233413936, 0.02593714658984159, 0.02606358758213223, 0.02616566916290306, 0.02624061206135141, 0.02628639574458172, 0.026301793998560002 ], "yaxis": "y" }, { "legendgroup": "0", "line": { "color": "#3366CC", "width": 0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "xaxis": "x", "y": [ -0.0012864105935071924, 0.0001688047876843412, 0.001622322768674095, 0.0030697329536109232, 0.00450668025698037, 0.0059288848416626065, 0.007332159916786518, 0.008712426748152684, 0.010065726304543315, 0.011388227059162653, 0.012676228584377757, 0.013926160722730344, 0.015134578291867668, 0.01629815149101404, 0.017413652428701906, 0.01847793849324626, 0.019487933645341498, 0.02044060912801652, 0.021332965553836108, 0.022162018813249414, 0.022924792689609064, 0.023618321359870992, 0.024239664950622696, 0.024785940815785102, 0.02525437202054171, 0.025642352558155616, 0.02594752618813218, 0.02616787284530376, 0.026301793998560002, 0.026263187512228794, 0.026194559034574922, 0.02609833908515511, 0.02597800655822491, 0.025838096841127773, 0.025684205622092903, 0.02552296972307067, 0.025361991791628135, 0.025209658547722603, 0.025074789585857248, 0.02496606039598602, 0.024891189907994948, 0.024855980785655107, 0.024863423666417854, 0.024822596685891034, 0.024798125065062817, 0.024789247740756745, 0.024793063145586117, 0.024805588111136173, 0.02482260314739757, 0.024840217556821188, 0.024855202016577364, 0.024865167033995345, 0.02486865225837251, 0.02464186944412995, 0.024400719611562677, 0.024139833745728822, 0.02385202389804535, 0.023529306097720235, 0.0231644154519078, 0.022752032814463724, 0.022289116442113004, 0.021774384401496448, 0.02120742222511867, 0.02058788252001495, 0.019915015285504087, 0.019187551756638353, 0.01840384808623929, 0.017562166513928633, 0.016660991187486547, 0.01569931098856006, 0.01467683479793286, 0.013594129070210716, 0.012452682807163202, 0.011254912764580993, 0.010004124216513272, 0.008704441826635328, 0.0073607227064487035, 0.005978460686941294, 0.004563687892037176, 0.003122877238386955, 0.00166284761456357, 0.0001906721841779314, -0.0012864105935071924, 0.0002900659628360441, 0.0018642502488202233, 0.003431336738666143, 0.004986550091200243, 0.0065251436369980174, 0.008042394957586501, 0.009533597228737173, 0.010994044852846262, 0.012419011736241875, 0.013803720387891266, 0.015143299859227539, 0.01643273046876776, 0.01766677335293262, 0.018839883285288506, 0.0199461040415468, 0.020978946851353625, 0.0219312536245504, 0.02279504560210187, 0.023561349295941992, 0.02421996365129055, 0.024759075134281373, 0.025164610002594134, 0.025419755890289063, 0.025507478671487678, 0.025493431030103566, 0.025451644607329287, 0.02538321501712441, 0.02529005984608497, 0.025175071013023274, 0.025042354459460996, 0.024897572050766776, 0.02474837782165272, 0.024604872475929726, 0.02447984267369906, 0.024388272024057526, 0.024345320694958046, 0.024362174013120234, 0.02444058227232143, 0.024568965657799275, 0.024722769290941138, 0.024868652258394523, 0.024865167034016214, 0.02485520201659681, 0.02484021755683896, 0.024822603147413337, 0.024805588111149635, 0.02479306314559691, 0.02478924774076452, 0.024798125065067247, 0.02482259668589181, 0.024863423666417854, 0.02478846860698668, 0.0246915718228249, 0.024581293914213924, 0.02447052562457444, 0.02437498515207137, 0.024310357213751188, 0.024288512690175592, 0.024314376643910073, 0.024385159549470906, 0.024492192829661415, 0.024623963009061084, 0.024768742202711778, 0.024916122496884952, 0.02505757884411028, 0.02518645809529274, 0.025297728144438144, 0.02538768078072136, 0.025453674701037567, 0.025493945064633917, 0.025507478671487678, 0.025493431030103552, 0.025451644607329207, 0.02538321501712423, 0.0252900598460846, 0.025175071013022642, 0.02504235445945998, 0.02489757205076518, 0.0247483778216503, 0.024604872475926135, 0.024479842673693887, 0.024388272024050292, 0.024345320694948294, 0.024362174013107644, 0.02444058227230599, 0.024568965657781223, 0.024722769290920925, 0.02486865225837251, 0.024796691947936645, 0.024715608746291695, 0.024632677124795107, 0.024554538334418157, 0.024486644354339636, 0.024432975749226402, 0.02439607801592974, 0.02437733974162449, 0.024377339741625963, 0.02439607801593416, 0.024432975749233764, 0.02448664435434987, 0.02455453833443116, 0.02463267712481071, 0.024715608746309688, 0.024796691947956778, 0.024868652258394523, 0.02508428682791474, 0.025289869446131142, 0.0254845803733168, 0.025666127964971086, 0.02583135583613287, 0.025976815828444078, 0.026099192631114137, 0.026195580462630694, 0.026263656767526313, 0.026301793998560002 ], "yaxis": "y" }, { "fill": "tonexty", "legendgroup": "0", "line": { "color": "#3366CC", "width": 0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "xaxis": "x", "y": [ 0.0012864105935071924, 0.002738879028053723, 0.004184144283157308, 0.005617760246534747, 0.007035312117435801, 0.008432436090026856, 0.009804836853084383, 0.011148302327016212, 0.012458715163557635, 0.013732060674090251, 0.01496443102927471, 0.016152025789987378, 0.017291149091412047, 0.018378204111124452, 0.01940968580725688, 0.020382173306689625, 0.02129232373625838, 0.02213686968443889, 0.022912622793244918, 0.02361648611486977, 0.024245477698256475, 0.024796767253048503, 0.02526772654556279, 0.025655992365175215, 0.025959538568421696, 0.02617675119610605, 0.026306498533948276, 0.026348186950137707, 0.026301793998560002, 0.026308992705965754, 0.02628444658923042, 0.026228879678281247, 0.02614409759182478, 0.02603301546856417, 0.02589969048288721, 0.025749350817064535, 0.025588402695408945, 0.025424380876380877, 0.02526578763889432, 0.025121748995216693, 0.025001422807762765, 0.024913146538943397, 0.024863423666417854, 0.02491305514419074, 0.024965834572265675, 0.025021484279902913, 0.0250781201334462, 0.02513297632603683, 0.025183005814354623, 0.02522530867526591, 0.025257412682530705, 0.02527744910275211, 0.02528425872963034, 0.025129706572121383, 0.024982700651617416, 0.024838031453029336, 0.024684508254529548, 0.024507283494176642, 0.024291351266395218, 0.024024503227957877, 0.02369867144031383, 0.023309690504396963, 0.022856164852234462, 0.022338162049609443, 0.02175617869177738, 0.02111053418004532, 0.020401159103131356, 0.01962766319549386, 0.018789556944707228, 0.017886524533186197, 0.016918679505096255, 0.015886765646221192, 0.014792289200956764, 0.013637584062111482, 0.012425820120524112, 0.011160968315195844, 0.009847735859488773, 0.008491483155099531, 0.007098131183850332, 0.005674065431132198, 0.004226040043390026, 0.0027610841021809165, 0.0012864105935071924, 0.0028603438660998954, 0.004426868975208196, 0.005981091843168774, 0.007518087637659833, 0.009032896451282529, 0.010520515077249461, 0.01197588375267435, 0.013393866772694185, 0.014769226015329604, 0.016096586745889027, 0.017370395738220818, 0.01858487298748847, 0.019733960439096563, 0.020811274711067366, 0.02181007639568508, 0.022723276987309526, 0.023543516682112662, 0.024263363222992888, 0.024875705128041433, 0.025374444708013543, 0.025755633896041966, 0.026019156446955075, 0.026170421484923424, 0.02621903086019501, 0.026207077875412464, 0.026171457514304296, 0.026112905954326974, 0.026032720672295347, 0.0259328750254218, 0.025816195540351746, 0.025686614253260413, 0.025549496951783143, 0.02541200657672347, 0.025283357145618742, 0.02517461548156272, 0.02509747058880986, 0.025061454304086322, 0.02507009948336042, 0.025118374407980978, 0.025194256485978943, 0.02528425872965785, 0.025277449102778717, 0.025257412682556105, 0.02522530867528982, 0.025183005814376665, 0.025132976326056662, 0.02507812013346342, 0.025021484279917135, 0.024965834572276517, 0.024913055144197824, 0.024863423666417854, 0.02491272641582726, 0.024937555084862575, 0.024943759134726136, 0.024941230091990514, 0.024942444759429888, 0.024959910135698912, 0.025002993820097425, 0.02507551824323433, 0.025175399867903434, 0.025296274088913526, 0.025429858683168223, 0.025567865449011556, 0.0257030443239159, 0.02582952305424347, 0.025942756884243787, 0.0260393290766758, 0.026116733080211528, 0.026173190090975445, 0.026207515448131363, 0.02621903086019501, 0.02620707787541243, 0.02617145751430416, 0.026112905954326675, 0.026032720672294767, 0.025932875025420857, 0.025816195540350292, 0.02568661425325824, 0.02554949695178, 0.02541200657671899, 0.025283357145612508, 0.02517461548155419, 0.02509747058879849, 0.025061454304071643, 0.02507009948334221, 0.02511837440795927, 0.025194256485954067, 0.02528425872963034, 0.025233391516697724, 0.025176959817887555, 0.025119573734130613, 0.02506565631208064, 0.025018927180408886, 0.024982095791354682, 0.02495684648658665, 0.02494405114564964, 0.024944051145651538, 0.02495684648659234, 0.024982095791364154, 0.02501892718042204, 0.02506565631209733, 0.025119573734150587, 0.02517695981791048, 0.02523339151672318, 0.02528425872965785, 0.025445545315189687, 0.025608621828214665, 0.02576682569959051, 0.025913524501856786, 0.02604293734355031, 0.026150359335820383, 0.026232145694691986, 0.026285643660072126, 0.026309134721637126, 0.026301793998560002 ], "yaxis": "y" }, { "legendgroup": "0", "line": { "color": "#3366CC", "width": 2 }, "mode": "lines", "name": "Al", "showlegend": false, "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 ], "xaxis": "x", "y": [ 0.04448528301667473, 0.04447482345293691, 0.04444353277461056, 0.04439167558592679, 0.04431969472623454, 0.044228213840494336, 0.04411804062409022, 0.04399017039401243, 0.04384578954739967, 0.04368627838398631, 0.04351321269293084, 0.04332836343897397, 0.043133693830617596, 0.04293135301768156, 0.0427236656521673, 0.04251311656167339, 0.0423023298377823, 0.042094041744448044, 0.04189106701707379, 0.041696258365898554, 0.041512459329478044, 0.04134245105065657, 0.041188894061036305, 0.04105426673418512, 0.04094080265278314, 0.04085042965690793, 0.04078471370908452, 0.04074481083420514, 0.04073143019666888, 0.04073400667117505, 0.04074159856309975, 0.040753801980564386, 0.04076997191176644, 0.04078926156623936, 0.040810672254488645, 0.04083310970784135, 0.04085544278086241, 0.04087656095774555, 0.04089542780596655, 0.04091112829825151, 0.04092290862216424, 0.04093020764446551, 0.04093267957917706, 0.04093406480019913, 0.0409383197262515, 0.040946077614382126, 0.040958266946778316, 0.04097568761364499, 0.04099857421069857, 0.041026018522289626, 0.04105502393397208, 0.04107917533320556, 0.04108902188160734, 0.041187659659495834, 0.04131146450675919, 0.041464378897647175, 0.04164797547564517, 0.041860086195776865, 0.04209370804516242, 0.04233646719740807, 0.042571212933672706, 0.04277904026652484, 0.04294573293666878, 0.04306841474722046, 0.04315567733240191, 0.0432211473465637, 0.0432774288857823, 0.04333374544177305, 0.04339593887226231, 0.043467142264346864, 0.04354843406649547, 0.04363934107162087, 0.04373822024672338, 0.04384256587042602, 0.0439492729157343, 0.04405487255254749, 0.04415574643282249, 0.04424832182169918, 0.04432924759724571, 0.04439555013205952, 0.04444476726584819, 0.04447505776146406, 0.04448528301667473, 0.0444791942115283, 0.04446101817165053, 0.044431025257760826, 0.044389663496424966, 0.04433755464957638, 0.04427548857605468, 0.04420441575383993, 0.04412543780148134, 0.04403979581464368, 0.04394885632243018, 0.043854094672906165, 0.043757075683558064, 0.04365943144613966, 0.043562836261927716, 0.04346897880671029, 0.04337953178571369, 0.04329611953332548, 0.0432202842309549, 0.04315345164175581, 0.04309689746960368, 0.04305171561324771, 0.04301878967542731, 0.04299876907545634, 0.042992050986604795, 0.042983302566968994, 0.042957220313752084, 0.04291429138628804, 0.0428553214970866, 0.042781425487508226, 0.04269401394448593, 0.04259477567138161, 0.04248162089102041, 0.042303824025621425, 0.04211189863572431, 0.04191542808330787, 0.04172381072164429, 0.04154562825404588, 0.04138822004558614, 0.04125735391255255, 0.04115696882788631, 0.04108902188160038, 0.04107917533320212, 0.041055023933970425, 0.04102601852228859, 0.04099857421069767, 0.04097568761364409, 0.04095826694677739, 0.04094607761438129, 0.040938319726250796, 0.04093406480019871, 0.04093267957917706, 0.040938124975483936, 0.04095605488138708, 0.04099051663560193, 0.041046349948182966, 0.04112756543301018, 0.041236275418025284, 0.041372186745165684, 0.04153249962016188, 0.041712079630749646, 0.04190382488212047, 0.04209919939144172, 0.04228895277114695, 0.04246407941570837, 0.042617020368170305, 0.042742890784710746, 0.042840200525230326, 0.042910523465716104, 0.04295716181187837, 0.04298353902556028, 0.042992050986604795, 0.0429833025669869, 0.04295722031376997, 0.04291429138630588, 0.04285532149710439, 0.04278142548752592, 0.04269401394450353, 0.042594775671399084, 0.0424816208910174, 0.04230382402562044, 0.042111898635724974, 0.04191542808330984, 0.04172381072164729, 0.04154562825404978, 0.04138822004559086, 0.04125735391255799, 0.041156968827892514, 0.04108902188160734, 0.04111030711946763, 0.0411225399606451, 0.04112806253125427, 0.04112976400980184, 0.041129647966816105, 0.041128877532493335, 0.04112809199897491, 0.04112762678172078, 0.04112762678172086, 0.04112809199897508, 0.041128877532493655, 0.04112964796681649, 0.04112976400980217, 0.04112806253125425, 0.04112253996064405, 0.04111030711946431, 0.04108902188160038, 0.041010610966601226, 0.04094760692841038, 0.040896027993590836, 0.0408530418246438, 0.04081696035477525, 0.04078704102952653, 0.04076320295569457, 0.0407457342305217, 0.04073503632657828, 0.04073143019666888 ], "yaxis": "y" }, { "legendgroup": "0", "line": { "color": "#3366CC", "width": 0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "xaxis": "x", "y": [ 0.042341653434654444, 0.042331231733384954, 0.0423000550977954, 0.042248389458918525, 0.04217667973797606, 0.042085552226806974, 0.041975817574815256, 0.04184847404265578, 0.04170471059408219, 0.041545909315191594, 0.041373646576487864, 0.04118969228992019, 0.04099600656304066, 0.040794733019235585, 0.04058818804144281, 0.04037884521344264, 0.04016931428643842, 0.03996231410031585, 0.03976063905174963, 0.03956711893890027, 0.039384572336383435, 0.03921575406961055, 0.03906329785740426, 0.03892965575055571, 0.03881703656336436, 0.038727346003558476, 0.038662131564994345, 0.03862253536688204, 0.038609257932101564, 0.038611993177443696, 0.03862005100918854, 0.03863299748120765, 0.03865014084443978, 0.03867057529624567, 0.03869323596104994, 0.038716960271693954, 0.03874055109888947, 0.038762837683875784, 0.038782731398812956, 0.03879927434580572, 0.03881167964183179, 0.03881936284617944, 0.03882196436435668, 0.03882008748834689, 0.038814593639436394, 0.03880655507695815, 0.038797476304055896, 0.03878853872113154, 0.03878003981611552, 0.038771045801401456, 0.03875975909338977, 0.038746533522206965, 0.03873952508106561, 0.03880488345303726, 0.038900233066300756, 0.03903182516352886, 0.03920319345729811, 0.03941364466343467, 0.039657184262314085, 0.03992201641175984, 0.04019073341290637, 0.04044198489051307, 0.04065559613817564, 0.04082103479537578, 0.04094201119812676, 0.04103163872280968, 0.04110438585687524, 0.041171683767488684, 0.04124113321279213, 0.041317097921616204, 0.04140147969542103, 0.04149435013517022, 0.04159442795552874, 0.04169945045389324, 0.04180647902454241, 0.04191216198123408, 0.04201296636250467, 0.04210538404337508, 0.0421861143101088, 0.04225222334466977, 0.0423012798354962, 0.04233146486328705, 0.042341653434654444, 0.04233552609665319, 0.042317234670710246, 0.04228705017246498, 0.042245421777436974, 0.04219297297433731, 0.04213049603903733, 0.04205894469256903, 0.04197942477428908, 0.04189318273641424, 0.041801591752318505, 0.04170613523317758, 0.04160838757157136, 0.041509991982796444, 0.04141263540087843, 0.04131802051106813, 0.04122783516534872, 0.04114371962872109, 0.04106723233184688, 0.040999815042589274, 0.04094275859038631, 0.04089717045312832, 0.040863945614705154, 0.04084374209507346, 0.040836962426226135, 0.040828312749032626, 0.040802525164188364, 0.04076008217061199, 0.040701781769249726, 0.04062872812572715, 0.04054231831499635, 0.040444224966267, 0.040133140344772, 0.039932475408083715, 0.03972434495095038, 0.03951799347420704, 0.039322285181739455, 0.03914532107593707, 0.03899406727626208, 0.03887397622006208, 0.03878863696473799, 0.03873952508105997, 0.038746533522202045, 0.038759759093386616, 0.03877104580139969, 0.03878003981611444, 0.03878853872113073, 0.03879747630405514, 0.038806555076957454, 0.038814593639435756, 0.038820087488346464, 0.03882196436435668, 0.03882130137649812, 0.03882274797775883, 0.03883464800932105, 0.03886630990498038, 0.03892503821266075, 0.03901492377386797, 0.039136716761137114, 0.039288124195481486, 0.03946424117094388, 0.039658025973161995, 0.0398607955590529, 0.040062758236415794, 0.04025367538316352, 0.04042384473375106, 0.04056556788908466, 0.04067482094055319, 0.04075211765774638, 0.04080157153324196, 0.04082848856306766, 0.040836962426226135, 0.04082831274905046, 0.04080252516420617, 0.04076008217062975, 0.04070178176926743, 0.04062872812574476, 0.040542318315013856, 0.04044422496628438, 0.04013314034476907, 0.03993247540808242, 0.039724344950950397, 0.039517993474208105, 0.03932228518174136, 0.039145321075939744, 0.0389940672762655, 0.038873976220066164, 0.03878863696474285, 0.03873952508106561, 0.0387648059900223, 0.03880189141239341, 0.038838717590075435, 0.03886929322896413, 0.03889250065123662, 0.038908916475558324, 0.038919350957200796, 0.03892441278060409, 0.038924412780604274, 0.038919350957201254, 0.03890891647555902, 0.038892500651237324, 0.038869293228964465, 0.038838717590074734, 0.038801891412390856, 0.03876480599001768, 0.03873952508105997, 0.03869681669075557, 0.03866971338128309, 0.03865237933459715, 0.038640584671901526, 0.03863168850628458, 0.03862436650174009, 0.03861822846210294, 0.03861342899226661, 0.038610331775774206, 0.038609257932101564 ], "yaxis": "y" }, { "fill": "tonexty", "legendgroup": "0", "line": { "color": "#3366CC", "width": 0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "xaxis": "x", "y": [ 0.04662891259869502, 0.04661841517248886, 0.046587010451425714, 0.04653496171293506, 0.04646270971449302, 0.0463708754541817, 0.046260263673365186, 0.04613186674536908, 0.04598686850071715, 0.045826647452781026, 0.045652778809373816, 0.04546703458802775, 0.045271381098194535, 0.04506797301612754, 0.04485914326289179, 0.04464738790990414, 0.044435345389126184, 0.044225769388580236, 0.04402149498239795, 0.04382539779289684, 0.04364034632257265, 0.04346914803170259, 0.04331449026466835, 0.043178877717814534, 0.043064568742201915, 0.04297351331025739, 0.042907295853174696, 0.042867086301528246, 0.0428536024612362, 0.0428560201649064, 0.04286314611701096, 0.04287460647992112, 0.0428898029790931, 0.04290794783623305, 0.04292810854792735, 0.04294925914398874, 0.042970334462835345, 0.042990284231615314, 0.04300812421312014, 0.043022982250697304, 0.043034137602496685, 0.04304105244275158, 0.04304339479399744, 0.04304804211205137, 0.0430620458130666, 0.043085600151806104, 0.043119057589500735, 0.043162836506158445, 0.04321710860528163, 0.043280991243177795, 0.043350288774554394, 0.04341181714420416, 0.04343851868214907, 0.04357043586595441, 0.04372269594721762, 0.04389693263176549, 0.04409275749399223, 0.044306527728119056, 0.04453023182801076, 0.044750917983056304, 0.04495169245443904, 0.04511609564253661, 0.045235869735161915, 0.04531579469906514, 0.04536934346667706, 0.04541065597031772, 0.045450471914689365, 0.04549580711605741, 0.045550744531732495, 0.045617186607077524, 0.045695388437569914, 0.04578433200807151, 0.045882012537918015, 0.045985681286958804, 0.04609206680692619, 0.046197583123860894, 0.04629852650314031, 0.046391259600023285, 0.04647238088438263, 0.046538876919449274, 0.046588254696200176, 0.04661865065964106, 0.04662891259869502, 0.04662286232640341, 0.04660480167259082, 0.04657500034305667, 0.04653390521541296, 0.04648213632481545, 0.046420481113072024, 0.04634988681511083, 0.04627145082867361, 0.046186408892873114, 0.04609612089254186, 0.04600205411263475, 0.045905763795544764, 0.04580887090948287, 0.045713037122977, 0.045619937102352445, 0.04553122840607866, 0.04544851943792987, 0.04537333613006292, 0.04530708824092235, 0.04525103634882104, 0.04520626077336709, 0.04517363373614947, 0.045153796055839225, 0.045147139546983454, 0.04513829238490536, 0.045111915463315805, 0.045068500601964094, 0.04500886122492348, 0.044934122849289306, 0.04484570957397551, 0.044745326376496225, 0.044830101437268816, 0.044675172643159136, 0.044499452320498234, 0.0443128626924087, 0.04412533626154913, 0.04394593543215469, 0.0437823728149102, 0.043640731605043025, 0.04352530069103463, 0.04343851868214079, 0.0434118171442022, 0.043350288774554234, 0.0432809912431775, 0.0432171086052809, 0.04316283650615745, 0.043119057589499646, 0.04308560015180513, 0.04306204581306584, 0.04304804211205096, 0.04304339479399744, 0.04305494857446975, 0.04308936178501533, 0.04314638526188281, 0.043226389991385554, 0.04333009265335961, 0.0434576270621826, 0.043607656729194255, 0.043776875044842276, 0.04395991809055541, 0.04414962379107895, 0.04433760322383055, 0.044515147305878106, 0.04467448344825323, 0.04481019600258955, 0.044920213680336836, 0.04500558010990746, 0.045068929273685825, 0.04511275209051478, 0.045138589488052897, 0.045147139546983454, 0.04513829238492335, 0.04511191546333378, 0.04506850060198202, 0.04500886122494135, 0.04493412284930708, 0.0448457095739932, 0.04474532637651379, 0.044830101437265735, 0.04467517264315846, 0.04449945232049955, 0.04431286269241158, 0.044125336261553225, 0.04394593543215982, 0.043782372814916225, 0.04364073160504982, 0.04352530069104218, 0.04343851868214907, 0.04345580824891296, 0.043443188508896786, 0.043417407472433105, 0.04339023479063955, 0.04336679528239559, 0.04334883858942835, 0.04333683304074902, 0.04333084078283747, 0.04333084078283745, 0.04333683304074891, 0.04334883858942829, 0.04336679528239566, 0.04339023479063988, 0.043417407472433764, 0.043443188508897244, 0.043455808248910946, 0.04343851868214079, 0.04332440524244688, 0.04322550047553767, 0.04313967665258452, 0.04306549897738607, 0.04300223220326592, 0.04294971555731297, 0.042908177449286204, 0.04287803946877679, 0.042859740877382355, 0.0428536024612362 ], "yaxis": "y" }, { "legendgroup": "0", "line": { "color": "#3366CC", "width": 2 }, "mode": "lines", "name": "Al", "showlegend": false, "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 ], "xaxis": "x", "y": [ 0.044485283016712195, 0.04447482345293691, 0.04444353277461056, 0.04439167558592679, 0.044319694726234544, 0.04422821384049435, 0.04411804062409022, 0.04399017039401243, 0.04384578954739967, 0.04368627838398631, 0.04351321269293085, 0.04332836343897397, 0.043133693830617596, 0.04293135301768157, 0.042723665652167314, 0.04251311656167339, 0.04230232983778231, 0.04209404174444805, 0.04189106701707379, 0.04169625836589856, 0.04151245932947805, 0.04134245105065658, 0.041188894061036305, 0.04105426673418513, 0.04094080265278315, 0.04085042965690794, 0.04078471370908453, 0.04074481083420515, 0.04073143019666889, 0.04074074575201602, 0.04076868090641539, 0.040815183338265386, 0.040880102796145915, 0.04096308307760186, 0.041063382969339715, 0.04117959669058249, 0.04130923615131358, 0.04144813821696552, 0.04158969662702054, 0.041724061194718866, 0.04183782706562152, 0.041915370694971796, 0.041943075114274704, 0.041935319402488, 0.04191040899364346, 0.04186799964096019, 0.041810385551629574, 0.04174179196272809, 0.041667626277900514, 0.04159415466143973, 0.04152888708687799, 0.04148160222040608, 0.04146381325633704, 0.04160041319720256, 0.041743738320987565, 0.04189237939319925, 0.042044923994019476, 0.04219997841066058, 0.04235618819419463, 0.04251225687276712, 0.04266696238835759, 0.04281917091537214, 0.042967847820344164, 0.04311206562694312, 0.04325100895398051, 0.04338397649158231, 0.04351038016856226, 0.043629741739600617, 0.04374168708233545, 0.043845938540931856, 0.04394230568385034, 0.044030674859770524, 0.044110997937891895, 0.04418328060858552, 0.0442475705994922, 0.04430394613286445, 0.0443525049146466, 0.044393353906948686, 0.044426600095556185, 0.04445234242500413, 0.04447066503719503, 0.044481631916648647, 0.044485283016712195, 0.04447919421152832, 0.04446101817165055, 0.04443102525776083, 0.04438966349642498, 0.04433755464957638, 0.04427548857605468, 0.04420441575383995, 0.04412543780148135, 0.04403979581464369, 0.04394885632243018, 0.043854094672906165, 0.04375707568355807, 0.04365943144613966, 0.043562836261927716, 0.043468978806710294, 0.04337953178571369, 0.04329611953332548, 0.04322028423095491, 0.04315345164175582, 0.04309689746960368, 0.043051715613247735, 0.04301878967542732, 0.042998769075456356, 0.0429920509866048, 0.04298922585293537, 0.04297928968408118, 0.04295803305166262, 0.04291915350452573, 0.042855672290169275, 0.042762094414067926, 0.04263653284624322, 0.04248565577987093, 0.042368829135822246, 0.04224666888055009, 0.042121709773366704, 0.04199660617896155, 0.04187408467218715, 0.04175689146988682, 0.04164773523431017, 0.04154922622229933, 0.04146381325632113, 0.041481602220386236, 0.041528887086856404, 0.041594154661418074, 0.0416676262778798, 0.041741791962709114, 0.04181038555161313, 0.041867999640947035, 0.041910408993634275, 0.04193531940248332, 0.041943075114274704, 0.041956318991789275, 0.041994411388564315, 0.04205307378818622, 0.04212679099241408, 0.04221007761909147, 0.042298185331231794, 0.04238732608936466, 0.04247462736396435, 0.0425579802859849, 0.04263586507103105, 0.04270719064384164, 0.042771163589630214, 0.04282719489849291, 0.04287485477487645, 0.04291388941073688, 0.04294430441572853, 0.04296647585779569, 0.04298117963577508, 0.04298941803643543, 0.0429920509866048, 0.0429892258529177, 0.042979289684064365, 0.04295803305164726, 0.042919153504512406, 0.042855672290158436, 0.042762094414059815, 0.04263653284623781, 0.04248565577988825, 0.042368829135839406, 0.0422466688805671, 0.042121709773383545, 0.041996606178978234, 0.04187408467220365, 0.041756891469903176, 0.041647735234326355, 0.041549226222315376, 0.04146381325633704, 0.04151918111248269, 0.04160499987694972, 0.04171404068150525, 0.04183621533523533, 0.04195979747884492, 0.042071513548903545, 0.04215720369475911, 0.04220402053386315, 0.042204020533859965, 0.042157203694749956, 0.04207151354888942, 0.04195979747882707, 0.04183621533521496, 0.04171404068148363, 0.04160499987692822, 0.04151918111246308, 0.04146381325632113, 0.041335321881646, 0.041216273756088745, 0.04110793242074208, 0.041011468804923554, 0.04092794124044287, 0.04085827740287351, 0.040803258541830645, 0.04076350627897833, 0.04073947217457198, 0.04073143019666889 ], "yaxis": "y" }, { "legendgroup": "0", "line": { "color": "#3366CC", "width": 0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "xaxis": "x", "y": [ 0.04234165343469191, 0.042331231733384954, 0.0423000550977954, 0.042248389458918525, 0.042176679737976064, 0.04208555222680699, 0.041975817574815256, 0.04184847404265578, 0.04170471059408219, 0.041545909315191594, 0.04137364657648787, 0.04118969228992019, 0.04099600656304066, 0.04079473301923559, 0.040588188041442826, 0.04037884521344264, 0.040169314286438426, 0.03996231410031586, 0.03976063905174963, 0.039567118938900275, 0.03938457233638344, 0.03921575406961056, 0.03906329785740426, 0.038929655750555715, 0.038817036563364375, 0.03872734600355848, 0.03866213156499435, 0.038622535366882045, 0.03860925793210157, 0.0386156552169341, 0.038634857731107725, 0.03866688311293108, 0.03871170928540211, 0.03876918433801394, 0.03883887465278142, 0.038919827158908134, 0.03901022162854217, 0.03910690619558287, 0.039204869587954994, 0.03929685012009568, 0.03937353024555917, 0.039424923648899796, 0.0394430751142747, 0.039442736285429957, 0.03943882066206436, 0.039428186322502834, 0.03941001626884917, 0.03938601814673763, 0.03936008835089375, 0.03933777907923886, 0.039325167454839244, 0.0393247138018456, 0.03932774287341439, 0.039462167815551216, 0.039603354331519104, 0.039749934835124505, 0.03990053440574195, 0.04005379200449773, 0.040208380557919324, 0.040363025385414635, 0.04051652051673117, 0.04066774253417707, 0.040815661675345574, 0.04095935003878497, 0.04109798684145284, 0.041230860777686174, 0.04135736962067689, 0.041477017285991784, 0.04158940864048489, 0.041694242387909475, 0.04179130239436806, 0.04188044783289081, 0.04196160252799301, 0.042034743869666415, 0.042099891643992166, 0.042157097096841026, 0.04220643251055679, 0.04224798153373399, 0.04228183046368908, 0.04230806064214354, 0.04232674208868909, 0.04233792846487689, 0.04234165343469191, 0.04233552609665321, 0.04231723467071027, 0.04228705017246499, 0.04224542177743699, 0.04219297297433731, 0.04213049603903734, 0.04205894469256905, 0.041979424774289086, 0.04189318273641426, 0.041801591752318505, 0.04170613523317758, 0.04160838757157137, 0.041509991982796444, 0.04141263540087843, 0.041318020511068136, 0.04122783516534872, 0.04114371962872109, 0.04106723233184689, 0.04099981504258928, 0.04094275859038631, 0.04089717045312835, 0.04086394561470516, 0.04084374209507347, 0.04083696242622614, 0.04083023978650727, 0.04080853208671037, 0.0407675787766233, 0.04070159122205105, 0.04060534528647184, 0.04047655750121019, 0.040317218026907416, 0.04033637458044374, 0.04022092125751, 0.040100215557746545, 0.03997676824211239, 0.039853208710614554, 0.03973223810177388, 0.03961657724849236, 0.03950891001634956, 0.03941182297732234, 0.03932774287339861, 0.0393247138018289, 0.03932516745482075, 0.03933777907921951, 0.03936008835087482, 0.039386018146720214, 0.0394100162688342, 0.03942818632249104, 0.03943882066205628, 0.039442736285425925, 0.0394430751142747, 0.039461752143191545, 0.03951478501669432, 0.03959469149798432, 0.03969257229345542, 0.039800430278345844, 0.039912058028195, 0.0400230201621748, 0.04013031881195229, 0.040232033584758284, 0.04032702518995441, 0.04041471032005113, 0.040494888839491844, 0.04056759180481693, 0.04063290830422971, 0.04069075580090051, 0.04074062477789983, 0.04078146060111754, 0.0408118782754229, 0.04083063216389439, 0.04083696242622614, 0.040830239786489746, 0.04080853208669386, 0.04076757877660848, 0.04070159122203849, 0.04060534528646186, 0.04047655750120283, 0.04031721802690247, 0.04033637458046097, 0.04022092125752707, 0.04010021555776345, 0.039976768242129125, 0.03985320871063113, 0.039732238101790274, 0.0396165772485086, 0.03950891001636563, 0.039411822977338265, 0.03932774287341439, 0.03936540338964098, 0.03940876086880086, 0.03946764262879164, 0.03954200685173443, 0.039623815020812914, 0.039701427872951785, 0.039762415097464546, 0.03979606505397914, 0.03979606505397621, 0.03976241509745608, 0.03970142787293863, 0.03962381502079627, 0.03954200685171564, 0.0394676426287723, 0.039408760868782526, 0.03936540338962437, 0.03932774287339861, 0.039201417976962374, 0.03908448072548056, 0.038978146680317745, 0.03888353932120351, 0.038801671585225815, 0.03873342936560603, 0.03867955725579631, 0.03864064673575116, 0.03861712692042937, 0.03860925793210157 ], "yaxis": "y" }, { "fill": "tonexty", "legendgroup": "0", "line": { "color": "#3366CC", "width": 0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "xaxis": "x", "y": [ 0.04662891259873248, 0.04661841517248886, 0.046587010451425714, 0.04653496171293506, 0.046462709714493025, 0.04637087545418171, 0.046260263673365186, 0.04613186674536908, 0.04598686850071715, 0.045826647452781026, 0.04565277880937382, 0.04546703458802775, 0.045271381098194535, 0.04506797301612755, 0.0448591432628918, 0.04464738790990414, 0.04443534538912619, 0.04422576938858024, 0.04402149498239795, 0.04382539779289685, 0.04364034632257266, 0.0434691480317026, 0.04331449026466835, 0.04317887771781454, 0.04306456874220193, 0.042973513310257394, 0.0429072958531747, 0.04286708630152825, 0.04285360246123621, 0.04286583628709794, 0.04290250408172305, 0.04296348356359969, 0.04304849630688972, 0.04315698181718978, 0.04328789128589801, 0.04343936622225685, 0.04360825067408499, 0.04378937023834816, 0.04397452366608609, 0.044151272269342054, 0.04430212388568388, 0.044405817741043796, 0.044443075114274706, 0.04442790251954604, 0.044381997325222564, 0.04430781295941755, 0.04421075483440998, 0.04409756577871855, 0.043975164204907276, 0.0438505302436406, 0.04373260671891674, 0.04363849063896656, 0.043599883639259686, 0.04373865857885391, 0.04388412231045603, 0.044034823951274, 0.044189313582297, 0.04434616481682343, 0.04450399583046993, 0.04466148836011961, 0.04481740425998401, 0.044970599296567215, 0.045120033965342754, 0.045264781215101274, 0.045404031066508185, 0.04553709220547844, 0.045663390716447635, 0.04578246619320945, 0.045893965524186016, 0.04599763469395424, 0.046093308973332615, 0.046180901886650236, 0.04626039334779078, 0.04633181734750463, 0.04639524955499223, 0.04645079516888788, 0.04649857731873641, 0.04653872628016338, 0.04657136972742329, 0.046596624207864715, 0.04661458798570097, 0.0466253353684204, 0.04662891259873248, 0.04662286232640343, 0.04660480167259084, 0.04657500034305667, 0.04653390521541297, 0.04648213632481545, 0.04642048111307202, 0.046349886815110854, 0.046271450828673615, 0.04618640889287313, 0.04609612089254186, 0.04600205411263475, 0.04590576379554477, 0.04580887090948287, 0.045713037122977, 0.04561993710235245, 0.04553122840607866, 0.04544851943792987, 0.04537333613006293, 0.045307088240922354, 0.04525103634882104, 0.04520626077336712, 0.04517363373614948, 0.04515379605583924, 0.04514713954698346, 0.04514821191936346, 0.045150047281451985, 0.04514848732670194, 0.0451367157870004, 0.04510599929386671, 0.045047631326925665, 0.04495584766557902, 0.044634936979298115, 0.04451673701413449, 0.04439312220335364, 0.04426665130462102, 0.04414000364730855, 0.04401593124260043, 0.043897205691281284, 0.04378656045227077, 0.043686629467276326, 0.04359988363924366, 0.043638490638943574, 0.04373260671889206, 0.04385053024361664, 0.04397516420488479, 0.044097565778698014, 0.04421075483439206, 0.04430781295940303, 0.04438199732521227, 0.04442790251954072, 0.044443075114274706, 0.044450885840387006, 0.04447403776043431, 0.04451145607838812, 0.044561009691372735, 0.0446197249598371, 0.044684312634268586, 0.044751632016554514, 0.04481893591597642, 0.04488392698721151, 0.04494470495210769, 0.04499967096763215, 0.045047438339768583, 0.045086797992168894, 0.04511680124552319, 0.04513702302057325, 0.04514798405355723, 0.04515149111447384, 0.04515048099612726, 0.045148203908976475, 0.04514713954698346, 0.045148211919345656, 0.04515004728143487, 0.04514848732668605, 0.045136715786986324, 0.04510599929385501, 0.0450476313269168, 0.044955847665573145, 0.044634936979315525, 0.04451673701415174, 0.04439312220337075, 0.044266651304637965, 0.044140003647325336, 0.04401593124261703, 0.04389720569129775, 0.04378656045228708, 0.04368662946729249, 0.043599883639259686, 0.043672958835324405, 0.04380123888509858, 0.04396043873421886, 0.04413042381873623, 0.04429577993687693, 0.044441599224855306, 0.04455199229205367, 0.04461197601374716, 0.04461197601374372, 0.04455199229204383, 0.04444159922484021, 0.04429577993685787, 0.044130423818714286, 0.04396043873419495, 0.043801238885073916, 0.0436729588353018, 0.04359988363924366, 0.04346922578632963, 0.04334806678669693, 0.043237718161166415, 0.0431393982886436, 0.043054210895659924, 0.04298312544014099, 0.04292695982786498, 0.0428863658222055, 0.04286181742871459, 0.04285360246123621 ], "yaxis": "y" }, { "legendgroup": "0", "line": { "color": "#3366CC", "width": 2 }, "mode": "lines", "name": "Al", "showlegend": false, "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 ], "xaxis": "x", "y": [ 0.04448528301678009, 0.04866677482736557, 0.04866339257802208, 0.0486576806225212, 0.04864953031072376, 0.048638796899426164, 0.04862530701937498, 0.04860886839108383, 0.04858928182826573, 0.04856635552409109, 0.048539921541434335, 0.04850985431882024, 0.048476090854188345, 0.04843865203466963, 0.04839766433955389, 0.04835338085597037, 0.04830620021932535, 0.048256681741383596, 0.048205554654159564, 0.04815371913915109, 0.048102236721846645, 0.048052307814133575, 0.04800523482086159, 0.0479623704088768, 0.047925052303196415, 0.04789452820575989, 0.047871876794298884, 0.04785793271211804, 0.047853224367915705, 0.04782900824221787, 0.04775698705522154, 0.047639051105503254, 0.047478381460745914, 0.047279501405920944, 0.04704836120762234, 0.04679247236016061, 0.0465211153145468, 0.0462456470923737, 0.045979906975442554, 0.04574058910000693, 0.04554708817755275, 0.04541970822465694, 0.04537504989911104, 0.045394484430998944, 0.04544961655899271, 0.045533078560253105, 0.045634916633606255, 0.04574405218145114, 0.04584966749902549, 0.04594220002459005, 0.046013920798443374, 0.04605921431948011, 0.04607468963159275, 0.04583055235907391, 0.04560345313264514, 0.04539889934362, 0.045221770148371074, 0.04507697802718957, 0.04497042155937722, 0.04490999406769285, 0.04490592243278325, 0.04496886037919333, 0.045104472408652715, 0.04530754544990301, 0.04556230426947378, 0.045849000965125106, 0.04614992020834955, 0.0464515617681165, 0.04674441679014857, 0.04702207514280017, 0.047280390176268644, 0.0475168493660951, 0.0477301234442462, 0.04791974121656801, 0.04808584798284831, 0.04822901904137696, 0.04835010975536639, 0.04845013031496351, 0.04853013787677655, 0.0485911421680814, 0.04863402342049899, 0.04865946375196498, 0.04448528301678009, 0.04865658739235655, 0.048622721760326545, 0.04856646822041065, 0.04848811771261887, 0.04838809224530162, 0.04826696040707123, 0.0481254584677041, 0.0479645178964076, 0.04778530023179857, 0.04758924023943071, 0.0473780981019629, 0.04715402086221313, 0.04691961226337865, 0.04667800819496509, 0.04643295176601178, 0.046188857194032054, 0.04595084504925665, 0.045724723467577506, 0.045516882769892936, 0.04533406886647071, 0.045183010635941996, 0.04506990492427841, 0.04499981065798409, 0.044976057900884825, 0.044969548025143746, 0.04495174071190692, 0.04492763835097012, 0.0449048909014151, 0.04489241178917213, 0.04489825167662173, 0.04492749877776639, 0.04498136970771857, 0.04505786681537374, 0.04515324184463348, 0.04526332386016874, 0.04538432813063079, 0.045513214912835956, 0.04564778043395249, 0.045786613201441145, 0.04592898298618531, 0.04607468963162265, 0.04605921431950975, 0.046013920798472295, 0.045942200024617796, 0.04584966749905146, 0.04574405218147467, 0.04563491663362659, 0.04553307856026938, 0.04544961655900412, 0.04539448443100482, 0.04537504989911104, 0.04537052697431801, 0.04535701756627438, 0.04533471498449625, 0.04530399054495389, 0.04526546197550072, 0.045220079162924254, 0.04516921805107278, 0.04511477069806547, 0.045059213973040184, 0.04500562744773712, 0.04495760835648053, 0.04491899876230719, 0.04489332003985542, 0.04488287116707535, 0.044887678635480675, 0.04490482323433683, 0.04492873410359341, 0.04495252580523728, 0.04496978119305411, 0.044976057900884825, 0.04496954802514345, 0.04495174071190569, 0.04492763835096732, 0.04490489090141012, 0.04489241178916447, 0.04489825167661106, 0.044927498777752733, 0.044981369707702175, 0.04505786681535493, 0.04515324184461264, 0.04526332386014617, 0.04538432813060672, 0.04551321491281057, 0.04564778043392588, 0.04578661320141339, 0.045928982986156476, 0.04607468963159275, 0.04598980290078556, 0.045885097607356144, 0.04576572629625578, 0.045638849977849366, 0.04551388855086102, 0.045402481023001276, 0.045317634582793836, 0.04527143300406534, 0.04527143300406887, 0.045317634582804, 0.04540248102301716, 0.04551388855088137, 0.04563884997787311, 0.045765726296282006, 0.0458850976073841, 0.04598980290081468, 0.04607468963162265, 0.04632941632716412, 0.04658735687478576, 0.04684047478065828, 0.04708048455958477, 0.04729930554274744, 0.04748948065759559, 0.047644519085929676, 0.047759151858457485, 0.04782950779049783, 0.047853224367915705 ], "yaxis": "y" }, { "legendgroup": "0", "line": { "color": "#3366CC", "width": 0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "xaxis": "x", "y": [ 0.042341653434759804, 0.046522321610401526, 0.04651647207833358, 0.04650666011387215, 0.04649279545716099, 0.04647475951834804, 0.04645241328240229, 0.04642560763224762, 0.046394196162475365, 0.04635805051880222, 0.04631707822873955, 0.04627124287964836, 0.04622058634374326, 0.046165252537354436, 0.04610551192579001, 0.04604178563971438, 0.04597466765469104, 0.04590494301627372, 0.045833599605787895, 0.04576183050940068, 0.04569102379533362, 0.04562273659286566, 0.0455586510108824, 0.04550051083218463, 0.04545004017495588, 0.045408848314072464, 0.0453783281756161, 0.04535955889983544, 0.0453532243679157, 0.04533001113503111, 0.04526103993090687, 0.04514832493441952, 0.04499525290291175, 0.04480663077713524, 0.0445887582799961, 0.044349530701319, 0.044098573321201553, 0.043847389210791246, 0.04360943969651542, 0.04339993020167589, 0.04323485624544031, 0.043128866916257835, 0.043092303345913296, 0.04310789435211426, 0.04315255239780888, 0.043221296745124864, 0.04330684282876748, 0.04340029704263275, 0.04349225871741208, 0.0435739067909534, 0.04363780993630916, 0.04367842206239616, 0.043692340917561114, 0.04347300195551343, 0.04327088992429304, 0.043090033028653406, 0.04293363359273124, 0.04280480699775811, 0.04270760238840132, 0.042648218181166646, 0.04263609229255794, 0.04268360789773398, 0.04280181770631429, 0.042992242858407186, 0.04324279932523742, 0.043533372915641036, 0.0438440026521553, 0.044158911476920054, 0.04446688530582486, 0.044760365538839296, 0.04503445820292104, 0.04528616669470402, 0.04551384575840233, 0.045716815362076835, 0.04589508080436675, 0.04604912204367622, 0.04617972833694429, 0.046287863068027534, 0.04637454951784249, 0.04644077250836738, 0.046487394051690556, 0.046515083593529474, 0.042341653434759804, 0.046512195199916374, 0.04647603912989618, 0.04641595962317936, 0.04633223519895623, 0.04622527141231243, 0.046095617465910066, 0.045943988978174456, 0.04577129796027389, 0.045578691247272075, 0.04536759873682717, 0.04513979271921398, 0.044897459175757694, 0.04464328091937373, 0.04438053045588003, 0.04411316691267903, 0.04384592567685128, 0.043584381029182606, 0.043334951335962185, 0.043104805410715465, 0.04290162290151755, 0.04273317030265708, 0.042606688004555845, 0.04252814618009514, 0.04250150271445506, 0.04249764823427004, 0.04248794489124337, 0.04247765127352975, 0.04247431280145202, 0.04248569728223335, 0.042517287602563084, 0.04257072115862064, 0.04264415862058883, 0.04273390796898369, 0.04283593525940715, 0.04294667953810263, 0.043063343957237155, 0.04318395101526555, 0.04330731392169628, 0.043432971594792855, 0.04356109244568585, 0.043692340917590014, 0.04367842206242479, 0.043637809936337, 0.04357390679097997, 0.04349225871743674, 0.043400297042654856, 0.04330684282878634, 0.04322129674513973, 0.04315255239781915, 0.04310789435211949, 0.043092303345913296, 0.04308802980139282, 0.04307521366619307, 0.04305388392237006, 0.043024138842583604, 0.042986215468509927, 0.042940576998523244, 0.04288801046062695, 0.042829727405743485, 0.04276746105885897, 0.04270355159192025, 0.042640999872937665, 0.04258343559550782, 0.04253487595216072, 0.04249908130521826, 0.04247840760800468, 0.04247250997120288, 0.04247779689818865, 0.04248832616783093, 0.042497783525846204, 0.04250150271445506, 0.04249764823426969, 0.04248794489124194, 0.042477651273526526, 0.0424743128014464, 0.04248569728222491, 0.04251728760255169, 0.042570721158606516, 0.04264415862057232, 0.04273390796896513, 0.042835935259386865, 0.04294667953808086, 0.043063343957214034, 0.043183951015241216, 0.04330731392167076, 0.043432971594766195, 0.04356109244565808, 0.043692340917561114, 0.0436158778849686, 0.04352211578598596, 0.04341605586409549, 0.043304493398771224, 0.04319605466068904, 0.043100865148172865, 0.04302951412116102, 0.04299114668627458, 0.04299114668627778, 0.04302951412117028, 0.04310086514818752, 0.043196054660708055, 0.043304493398793664, 0.04341605586412049, 0.04352211578601279, 0.04361587788499668, 0.043692340917590014, 0.04392365140793302, 0.044160405144659916, 0.04439506203714922, 0.04461953071693103, 0.044825703172456426, 0.0450059613132845, 0.04515359635975033, 0.045263122287389476, 0.04533049056800617, 0.0453532243679157 ], "yaxis": "y" }, { "fill": "tonexty", "legendgroup": "0", "line": { "color": "#3366CC", "width": 0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "xaxis": "x", "y": [ 0.04662891259880038, 0.05081122804432961, 0.050810313077710584, 0.05080870113117025, 0.05080626516428653, 0.050802834280504285, 0.050798200756347674, 0.05079212914992004, 0.0507843674940561, 0.050774660529379956, 0.05076276485412912, 0.05074846575799212, 0.05073159536463343, 0.05071205153198482, 0.050689816753317775, 0.050664976072226364, 0.05063773278395966, 0.05060842046649347, 0.050577509702531234, 0.050545607768901504, 0.050513449648359666, 0.05048187903540149, 0.05045181863084078, 0.05042422998556897, 0.05040006443143695, 0.05038020809744731, 0.05036542541298167, 0.05035630652440064, 0.05035322436791571, 0.05032800534940463, 0.05025293417953622, 0.05012977727658699, 0.049961510018580076, 0.04975237203470665, 0.04950796413524858, 0.04923541401900222, 0.04894365730789205, 0.048643904973956154, 0.04835037425436969, 0.048081247998337975, 0.04785932010966519, 0.04771054953305605, 0.04765779645230879, 0.047681074509883625, 0.04774668072017654, 0.04784486037538135, 0.04796299043844503, 0.04808780732026953, 0.0482070762806389, 0.04831049325822669, 0.048390031660577586, 0.04844000657656406, 0.04845703834562439, 0.0481881027626344, 0.04793601634099724, 0.047707765658586594, 0.04750990670401091, 0.04734914905662102, 0.04723324073035312, 0.04717176995421906, 0.04717575257300856, 0.047254112860652675, 0.04740712711099114, 0.04762284804139883, 0.047881809213710144, 0.048164629014609175, 0.0484558377645438, 0.04874421205931295, 0.049021948274472274, 0.049283784746761046, 0.04952632214961625, 0.04974753203748618, 0.04994640113009007, 0.05012266707105918, 0.05027661516132987, 0.050408916039077704, 0.05052049117378849, 0.05061239756189948, 0.050685726235710604, 0.05074151182779542, 0.05078065278930742, 0.05080384391040049, 0.04662891259880038, 0.05080097958479673, 0.05076940439075691, 0.05071697681764194, 0.05064400022628151, 0.05055091307829081, 0.05043830334823239, 0.050306927957233745, 0.05015773783254131, 0.04999190921632506, 0.04981088174203425, 0.049616403484711816, 0.04941058254866857, 0.04919594360738357, 0.048975485934050156, 0.04875273661934453, 0.04853178871121283, 0.0483173090693307, 0.04811449559919283, 0.04792896012907041, 0.04776651483142388, 0.04763285096922691, 0.04753312184400098, 0.04747147513587304, 0.04745061308731459, 0.04744144781601745, 0.04741553653257047, 0.04737762542841049, 0.04733546900137817, 0.04729912629611091, 0.04727921575068038, 0.047284276396912135, 0.04731858079484831, 0.04738182566176379, 0.04747054842985981, 0.04757996818223485, 0.04770531230402443, 0.04784247881040636, 0.0479882469462087, 0.048140254808089436, 0.04829687352668476, 0.04845703834565529, 0.04844000657659472, 0.04839003166060759, 0.04831049325825562, 0.04820707628066617, 0.04808780732029448, 0.04796299043846684, 0.04784486037539903, 0.04774668072018909, 0.047681074509890155, 0.04765779645230879, 0.0476530241472432, 0.047638821466355695, 0.04761554604662243, 0.047583842247324176, 0.04754470848249152, 0.04749958132732526, 0.047450425641518613, 0.04739981399038746, 0.047350966887221395, 0.04730770330355399, 0.04727421684002339, 0.04725456192910656, 0.04725176412755012, 0.04726666102893244, 0.047296949662956674, 0.04733713649747078, 0.04737967130899817, 0.04741672544264363, 0.04744177886026201, 0.04745061308731459, 0.0474414478160172, 0.04741553653256944, 0.04737762542840811, 0.047335469001373844, 0.04729912629610403, 0.04727921575067043, 0.04728427639689895, 0.04731858079483203, 0.04738182566174473, 0.047470548429838416, 0.04757996818221148, 0.04770531230399941, 0.04784247881037993, 0.047988246946181, 0.048140254808060584, 0.04829687352665487, 0.04845703834562439, 0.04836372791660252, 0.04824807942872633, 0.048115396728416075, 0.04797320655692751, 0.047831722441032995, 0.04770409689782969, 0.047605755044426656, 0.0475517193218561, 0.04755171932185996, 0.047605755044437724, 0.0477040968978468, 0.047831722441054686, 0.04797320655695256, 0.04811539672844352, 0.04824807942875541, 0.04836372791663269, 0.04845703834565529, 0.04873518124639522, 0.049014308604911606, 0.04928588752416734, 0.049541438402238513, 0.04977290791303845, 0.04997300000190668, 0.05013544181210902, 0.050255181429525494, 0.05032852501298948, 0.05035322436791571 ], "yaxis": "y" }, { "legendgroup": "1", "line": { "color": "#DC3912", "width": 2 }, "mode": "lines", "name": "As", "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 ], "xaxis": "x3", "y": [ 0.0, 0.0005958481034701485, 0.0011902521158242215, 0.0017817655359985737, 0.0023689369312623284, 0.002950307318387079, 0.0035244073648737504, 0.004089754419174196, 0.004644849409630538, 0.005188173703502295, 0.0057181860752842555, 0.006233319996764072, 0.006731981528519774, 0.00721254816197941, 0.007673369029675163, 0.008112766963914395, 0.008529042932800244, 0.008920483405773954, 0.009285371183233642, 0.009622000148016206, 0.009928694241940266, 0.010203830723558644, 0.01044586741931681, 0.010653373252214757, 0.010825060855518957, 0.010959819614454335, 0.011056747106115782, 0.01111517671313096, 0.011134699241584221, 0.011168582271487431, 0.011268445338631318, 0.011429083316919138, 0.011642290614602589, 0.011897443693659419, 0.012182128583448226, 0.012482722804952025, 0.012784896537068413, 0.013074057927574071, 0.013335814579914512, 0.013556543160091663, 0.013724135903897058, 0.013828913621406504, 0.013864571235531978, 0.013779662988811586, 0.013524207997304397, 0.013128741151262144, 0.012643661210682723, 0.01212017840583955, 0.011606158979236907, 0.011146465401578556, 0.010782216321466975, 0.0105478991864319, 0.010466996655282234, 0.010322636846724378, 0.010163237117076732, 0.009988607948716094, 0.009798591265598818, 0.009593063624402326, 0.009371938385533247, 0.00913516717873893, 0.008882741000188927, 0.008614691265434187, 0.00833109110118086, 0.008032057095252405, 0.007717751645895297, 0.007388385965978548, 0.0070442237113387965, 0.006685585121391774, 0.0063128514890323055, 0.005926469719636182, 0.005526956698443112, 0.005114903163471805, 0.004690976778095924, 0.004255924113175421, 0.0038105712819198165, 0.003355823019333758, 0.002892660059312807, 0.002422134732794484, 0.001945364786056158, 0.001463525495337799, 0.0009778402286252984, 0.0004895696744950367, 0.0, 0.0005358650745073206, 0.0010697839571917453, 0.0015998079483165756, 0.002123983497755503, 0.002640350317183838, 0.0031469401265581806, 0.0036417762917250996, 0.004122874617860287, 0.0045882455829848925, 0.005035898308865707, 0.005463846567849003, 0.005870117107085557, 0.0062527605292285494, 0.006609864894426995, 0.006939572097304604, 0.007240096922626626, 0.007509748497269094, 0.007746953642881998, 0.007950281409387106, 0.00811846785715102, 0.008250439983331167, 0.00834533758490328, 0.008402531842866816, 0.008421639515277742, 0.008435074116124678, 0.008475006682460162, 0.00854034167252158, 0.008629311267737038, 0.008739554477465168, 0.00886821386002861, 0.009012039801413489, 0.009167493549695599, 0.009330842652025348, 0.009498245289996673, 0.009665822603590876, 0.009829720041733714, 0.009986159945357969, 0.010131488005376254, 0.010262216085629251, 0.010375063330630437, 0.010466996655233927, 0.010547899186384912, 0.010782216321422565, 0.011146465401537816, 0.011606158979200561, 0.012120178405808283, 0.012643661210656994, 0.013128741151242584, 0.013524207997291496, 0.01377966298880551, 0.013864571235531978, 0.013744395906115292, 0.013435553540285267, 0.01302306443380849, 0.012563472122157002, 0.012088633157758615, 0.011617698621025241, 0.011163341309395333, 0.010734488840885296, 0.01033753727367969, 0.009976918814707976, 0.00965539557790815, 0.009374251611597308, 0.009133471441282476, 0.008931951135579153, 0.008767760254106794, 0.008638451537396941, 0.008541398871657337, 0.008474134065488194, 0.008434649869509774, 0.008421639515277742, 0.00843507411617806, 0.008475006682513433, 0.008540341672574637, 0.0086293112677898, 0.008739554477517572, 0.008868213860080625, 0.009012039801465074, 0.00916749354974673, 0.009330842652076045, 0.009498245290046954, 0.009665822603640795, 0.009829720041783235, 0.009986159945407197, 0.01013148800542519, 0.010262216085677954, 0.010375063330678894, 0.010466996655282234, 0.010486209341331383, 0.010616084043721124, 0.01083628945405738, 0.011117663987991275, 0.01142414871045093, 0.011714365535162113, 0.011944005664416255, 0.012071949462263662, 0.012071949462258416, 0.011944005664401116, 0.011714365535138306, 0.011424148710419966, 0.011117663987954468, 0.010836289454015928, 0.010616084043676238, 0.010486209341284173, 0.010466996655233927, 0.010596533035792518, 0.010711483558382296, 0.010812099511839195, 0.010898637212487142, 0.010971348268893009, 0.01103046924619102, 0.011076211299667483, 0.011108750426933146, 0.011128219006633114, 0.011134699241584221 ], "yaxis": "y3" }, { "legendgroup": "1", "line": { "color": "#DC3912", "width": 0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "xaxis": "x3", "y": [ -0.0021436295820202876, -0.001547743616081803, -0.0009532255609909332, -0.00036152059100969165, 0.00022592194300384994, 0.0008076457046997205, 0.0013821843155987865, 0.0019480580678175453, 0.0025037704563130587, 0.0030478046347075815, 0.0035786199588412793, 0.004094648847710294, 0.004594294260942837, 0.005075928163533434, 0.005537891418950675, 0.005978495615683643, 0.006396027381456359, 0.00678875576164176, 0.007154943217909481, 0.00749286072101792, 0.007800807248845661, 0.008077133742512621, 0.008320271215684768, 0.008528762268585344, 0.008701294766100182, 0.008836735961104878, 0.008934164962025606, 0.008992901245807854, 0.009012526977016905, 0.009046445189081756, 0.009146421783948875, 0.009307274669537102, 0.009520833494634366, 0.009776517049833611, 0.010061952909576056, 0.010363548310948193, 0.010666977204134315, 0.010957609842194977, 0.011220960879805283, 0.011443254999086752, 0.011612187601868005, 0.011717875312116832, 0.011753856020711596, 0.011665408473324545, 0.011401529063137315, 0.010997916656297676, 0.010507656925623133, 0.009981884478960442, 0.00946751046770752, 0.009008458344087566, 0.008645135854710691, 0.008411554409860885, 0.008330926272359589, 0.008184391465073031, 0.008022853127608273, 0.007846163390641345, 0.007654201677321289, 0.007446877218239481, 0.007224130749257941, 0.006985935691386443, 0.0067322991285625085, 0.006463262884239113, 0.0061789049561822695, 0.005879341507094255, 0.005564729533367625, 0.005235270252082414, 0.004891213163453425, 0.0045328606677829415, 0.004160573047181743, 0.0037747735666138, 0.0033759534089608345, 0.0029646761365920943, 0.002541581368197039, 0.002107387374256317, 0.0016628923264197814, 0.0012089739833103324, 0.0007465876552229982, 0.0002767623595797859, -0.00019940484581094952, -0.000680756287522789, -0.001166082719880642, -0.0016541337772767182, -0.0021436295820202876, -0.0016078030403677928, -0.0010739995437485377, -0.0005441671369792666, -2.0258221232488487e-05, 0.0004957686419447657, 0.0010019475895408389, 0.0014963052304541964, 0.0019768615906680213, 0.0024416325047554597, 0.0028886337387540296, 0.003315887128120417, 0.0037214289950988594, 0.004103321065885332, 0.0044596640333777115, 0.004788613801662444, 0.0050884003022616565, 0.0053573485926647, 0.00559390174377398, 0.005796644810220571, 0.0059643289779336564, 0.0060958948232117845, 0.006190493524181122, 0.006247504862483931, 0.0062665509548990835, 0.006280084298188313, 0.006320311532896437, 0.006386132456845528, 0.006475771539900163, 0.006586857115684092, 0.006716518230539027, 0.006861489096298872, 0.007018212350268416, 0.007182934773713104, 0.007351791967193124, 0.007520881072336562, 0.0076863225733867155, 0.007844313374944695, 0.007991173783981793, 0.008123390867668643, 0.008237660085653447, 0.008330926272311402, 0.00841155440981399, 0.008645135854666341, 0.009008458344046845, 0.009467510467671143, 0.009981884478929084, 0.010507656925597242, 0.010997916656277886, 0.01140152906312417, 0.011665408473318319, 0.011753856020711596, 0.011628038434666393, 0.011309194601005518, 0.010889034367733402, 0.010424656480724031, 0.009946911842892156, 0.009474112260884715, 0.009018414739330403, 0.008588457464371584, 0.008190485227625019, 0.007828860826020696, 0.00750632491944766, 0.00722416765186959, 0.006982394729193547, 0.006779930725287927, 0.006614876088012945, 0.006484813590895637, 0.006387144103303807, 0.006319421833293185, 0.0062796562638535135, 0.0062665509548990835, 0.006280084298241614, 0.00632031153294963, 0.0063861324568985035, 0.006475771539952841, 0.0065868571157364116, 0.0067165182305909555, 0.006861489096350368, 0.007018212350319453, 0.007182934773763705, 0.007351791967243306, 0.007520881072386378, 0.007686322573436131, 0.007844313374993814, 0.007991173784030619, 0.00812339086771723, 0.008237660085701787, 0.008330926272359589, 0.00834927997262791, 0.0084779488309402, 0.008696794703855676, 0.008976904058648065, 0.009282473528268258, 0.009572296724877883, 0.00980201748722015, 0.009930187789471138, 0.009930187789465868, 0.009802017487204953, 0.009572296724854018, 0.009282473528237262, 0.008976904058611259, 0.008696794703814261, 0.008477948830895383, 0.008349279972580797, 0.008330926272311402, 0.008462629131108892, 0.008579690527774114, 0.008682313771414861, 0.008770707728767094, 0.008845078613675955, 0.008905621208923537, 0.00895251001363315, 0.008985890883705976, 0.00900587375249051, 0.009012526977016905 ], "yaxis": "y3" }, { "fill": "tonexty", "legendgroup": "1", "line": { "color": "#DC3912", "width": 0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "xaxis": "x3", "y": [ 0.0021436295820202876, 0.0027394398230221003, 0.003333729792639376, 0.003925051663006839, 0.004511951919520807, 0.005092968932074437, 0.005666630414148714, 0.006231450770530847, 0.006785928362948017, 0.00732854277229701, 0.007857752191727232, 0.00837199114581785, 0.00886966879609671, 0.009349168160425386, 0.00980884664039965, 0.010247038312145147, 0.01066205848414413, 0.011052211049906148, 0.011415799148557804, 0.011751139575014492, 0.012056581235034872, 0.012330527704604667, 0.012571463622948852, 0.01277798423584417, 0.012948826944937732, 0.013082903267803793, 0.013179329250205957, 0.013237452180454065, 0.013256871506151537, 0.013290719353893107, 0.01339046889331376, 0.013550891964301174, 0.013763747734570812, 0.014018370337485226, 0.014302304257320396, 0.014601897298955857, 0.01490281587000251, 0.015190506012953166, 0.015450668280023741, 0.015669831321096575, 0.01583608420592611, 0.015939951930696177, 0.01597528645035236, 0.015893917504298628, 0.01564688693147148, 0.015259565646226613, 0.014779665495742314, 0.014258472332718658, 0.013744807490766293, 0.013284472459069547, 0.01291929678822326, 0.012684243963002917, 0.01260306703820488, 0.012460882228375724, 0.012303621106545192, 0.012131052506790842, 0.011942980853876347, 0.01173925003056517, 0.011519746021808554, 0.011284398666091416, 0.011033182871815345, 0.010766119646629262, 0.01048327724617945, 0.010184772683410555, 0.009870773758422968, 0.009541501679874682, 0.009197234259224168, 0.008838309575000607, 0.008465129930882869, 0.008078165872658565, 0.007677959987925389, 0.007265130190351516, 0.006840372187994809, 0.006404460852094524, 0.005958250237419851, 0.005502672055357184, 0.0050387324634026155, 0.0045675071060091825, 0.004090134417923266, 0.0036078072781983873, 0.003121763177131239, 0.0026332731262667915, 0.0021436295820202876, 0.0026795331893824338, 0.0032135674581320285, 0.003743783033612418, 0.004268225216743494, 0.00478493199242291, 0.005291932663575522, 0.005787247352996003, 0.006268887645052552, 0.006734858661214325, 0.007183162878977384, 0.007611806007577588, 0.008018805219072254, 0.008402199992571767, 0.00876006575547628, 0.009090530392946765, 0.009391793542991595, 0.009662148401873488, 0.009900005541990015, 0.01010391800855364, 0.010272606736368383, 0.010404985143450549, 0.010500181645625438, 0.010557558823249701, 0.010576728075656402, 0.010590063934061044, 0.010629701832023886, 0.010694550888197632, 0.010782850995573913, 0.010892251839246244, 0.011019909489518195, 0.011162590506528106, 0.011316774749122781, 0.011478750530337591, 0.011644698612800222, 0.01181076413484519, 0.011973117510080712, 0.012128006515771242, 0.012271802226770715, 0.01240104130358986, 0.012512466575607426, 0.012603067038156453, 0.012684243962955834, 0.012919296788178788, 0.013284472459028787, 0.013744807490729979, 0.014258472332687483, 0.014779665495716746, 0.015259565646207281, 0.015646886931458822, 0.0158939175042927, 0.01597528645035236, 0.01586075337756419, 0.015561912479565017, 0.015157094499883578, 0.014702287763589974, 0.014230354472625073, 0.013761284981165767, 0.013308267879460262, 0.012880520217399008, 0.012484589319734363, 0.012124976803395256, 0.011804466236368641, 0.011524335571325026, 0.011284548153371406, 0.011083971545870378, 0.010920644420200644, 0.010792089483898246, 0.010695653640010867, 0.010628846297683204, 0.010589643475166034, 0.010576728075656402, 0.010590063934114505, 0.010629701832077235, 0.010694550888250769, 0.010782850995626758, 0.010892251839298733, 0.011019909489570294, 0.011162590506579782, 0.011316774749174006, 0.011478750530388385, 0.011644698612850602, 0.011810764134895211, 0.01197311751013034, 0.01212800651582058, 0.012271802226819763, 0.012401041303638677, 0.012512466575656002, 0.01260306703820488, 0.012623138710034856, 0.012754219256502048, 0.012975784204259082, 0.013258423917334486, 0.0135658238926336, 0.013856434345446344, 0.014085993841612361, 0.014213711135056185, 0.014213711135050964, 0.01408599384159728, 0.013856434345422594, 0.01356582389260267, 0.013258423917297677, 0.012975784204217595, 0.012754219256457092, 0.012623138709987549, 0.012603067038156453, 0.012730436940476144, 0.012843276588990479, 0.012941885252263528, 0.013026566696207189, 0.013097617924110063, 0.013155317283458503, 0.013199912585701815, 0.013231609970160315, 0.013250564260775718, 0.013256871506151537 ], "yaxis": "y3" }, { "legendgroup": "1", "line": { "color": "#DC3912", "width": 2 }, "mode": "lines", "name": "As", "showlegend": false, "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 ], "xaxis": "x3", "y": [ 0.0, 0.0005958481034703127, 0.001190252115824366, 0.0017817655359986175, 0.0023689369312623653, 0.002950307318387225, 0.0035244073648739065, 0.004089754419174217, 0.004644849409630607, 0.005188173703502313, 0.005718186075284371, 0.006233319996764128, 0.006731981528519776, 0.007212548161979423, 0.007673369029675183, 0.008112766963914405, 0.00852904293280028, 0.008920483405773973, 0.009285371183233693, 0.009622000148016232, 0.009928694241940284, 0.010203830723558667, 0.010445867419316829, 0.010653373252214767, 0.010825060855518966, 0.010959819614454372, 0.011056747106115804, 0.011115176713130963, 0.011134699241584235, 0.011205256528990497, 0.011411339878807079, 0.011737217422390573, 0.012159656484850734, 0.012651143121087777, 0.013182741559147913, 0.013726148188075037, 0.014254951270531726, 0.014745329968947838, 0.015176449430589014, 0.015530737486767799, 0.015794139043504147, 0.015956370853749416, 0.01601115256346213, 0.016034374940024302, 0.016114784993772183, 0.016241587852722977, 0.01638973260928492, 0.016538069748835028, 0.01667248775948562, 0.016784042662399565, 0.016867095049564487, 0.016918180831621363, 0.016935410066685003, 0.017384720871230212, 0.017692960355102746, 0.01785133782975082, 0.0178600946302589, 0.01772712060593466, 0.017465237884643676, 0.01708934001366542, 0.01661436879508854, 0.016054359181503126, 0.015422239395982008, 0.014729964395722425, 0.013988693836073632, 0.013208890606313719, 0.012400324417019812, 0.01157201155395882, 0.010732129137982481, 0.009887932269685052, 0.009045689294177792, 0.008210640308371377, 0.007386978288291225, 0.006577850003131912, 0.0057853738590993254, 0.005010672836497997, 0.004253921970749727, 0.0035144109085782755, 0.0027906226738949403, 0.002080329769076425, 0.0013807080927316494, 0.000688467963792988, 0.0, 0.0005358650745084461, 0.0010697839571920924, 0.0015998079483169252, 0.002123983497755699, 0.0026403503171840304, 0.0031469401265582044, 0.0036417762917251933, 0.004122874617860413, 0.004588245582985012, 0.005035898308865789, 0.005463846567849069, 0.005870117107085635, 0.006252760529228604, 0.006609864894427044, 0.0069395720973046485, 0.007240096922626693, 0.0075097484972691565, 0.007746953642882025, 0.00795028140938717, 0.008118467857151054, 0.008250439983331186, 0.008345337584903318, 0.008402531842866877, 0.008421639515277766, 0.008552368830924282, 0.008929558801678632, 0.009514020108253, 0.010254960798870085, 0.01110096925547409, 0.012005592889278304, 0.012928475193097791, 0.013834263190820737, 0.014690872991508308, 0.015468002779273217, 0.01613654317285202, 0.016669597245288336, 0.017045622712882076, 0.017252979637513835, 0.0172932089238577, 0.01718019192488727, 0.016935410066673547, 0.0169181808316116, 0.016867095049556326, 0.016784042662392914, 0.016672487759480346, 0.01653806974883103, 0.01638973260928198, 0.016241587852720785, 0.016114784993770448, 0.016034374940023015, 0.01601115256346213, 0.016092870858369544, 0.016284098174800334, 0.01649329732345975, 0.016653946052840193, 0.016722550634453277, 0.016669702578868847, 0.016477592812145815, 0.016140213535469565, 0.015662785399461646, 0.015059501813382045, 0.01435063645630155, 0.013560349063303652, 0.012715766367356354, 0.011847230272192711, 0.010989330790387459, 0.010182204976112481, 0.009472237280404291, 0.00891060307489176, 0.008547555277725438, 0.008421639515277766, 0.008552368830871682, 0.00892955880162851, 0.009514020108206352, 0.010254960798827404, 0.011100969255435383, 0.012005592889243574, 0.012928475193066787, 0.013834263190793492, 0.014690872991484874, 0.015468002779253786, 0.01613654317283685, 0.01666959724527776, 0.01704562271287634, 0.017252979637512995, 0.01729320892386144, 0.017180191924895113, 0.016935410066685003, 0.017058887502421793, 0.01712407982810915, 0.01713067088429244, 0.01708400096041491, 0.016996595704822676, 0.016889296830203793, 0.016790482057327354, 0.016730602555633335, 0.016730602555634414, 0.016790482057330126, 0.01688929683020706, 0.016996595704825073, 0.017084000960415423, 0.017130670884290343, 0.017124079828104096, 0.017058887502413553, 0.016935410066673547, 0.01636248105121326, 0.015690561442475985, 0.014949859644173922, 0.014175102174133663, 0.013405045106775941, 0.012682128205914047, 0.012051494673664304, 0.011558395887121865, 0.011243239101146395, 0.011134699241584235 ], "yaxis": "y3" }, { "legendgroup": "1", "line": { "color": "#DC3912", "width": 0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "xaxis": "x3", "y": [ -0.0021436295820202876, -0.0015477436160816383, -0.0009532255609907881, -0.0003615205910096474, 0.0002259219430038868, 0.0008076457046998662, 0.0013821843155989427, 0.0019480580678175661, 0.0025037704563131273, 0.0030478046347075984, 0.003578619958841394, 0.004094648847710351, 0.004594294260942839, 0.005075928163533446, 0.005537891418950695, 0.005978495615683653, 0.006396027381456395, 0.006788755761641778, 0.007154943217909532, 0.0074928607210179455, 0.0078008072488456775, 0.008077133742512644, 0.008320271215684787, 0.008528762268585354, 0.00870129476610019, 0.008836735961104914, 0.008934164962025629, 0.008992901245807858, 0.009012526977016919, 0.009081345908455215, 0.009282266514440602, 0.009599716377363256, 0.010010736325289794, 0.010488209736474076, 0.011003731735392045, 0.011529668667390278, 0.01204041351166758, 0.012513064696960695, 0.01292777979573325, 0.013267987461000537, 0.013520556996326195, 0.013675958524902615, 0.013728406010264385, 0.013755704629023865, 0.013846144234340007, 0.013983789964954299, 0.014140617983046848, 0.014295086569238575, 0.014433591296298618, 0.014547763342885522, 0.014632401744486823, 0.014684331606270121, 0.014701824877859229, 0.015138576926320388, 0.01543695422409181, 0.015588584785474823, 0.015593867464806113, 0.015460637139162552, 0.015201503176817857, 0.014831022499343472, 0.014363697131450902, 0.013813043063245265, 0.0131914249042255, 0.012510231901463257, 0.01178009889527449, 0.011011040150246783, 0.010212475106396236, 0.009393175815193344, 0.008561176550321117, 0.0077236779452568936, 0.00688696503593177, 0.00605634763667723, 0.005236124576848964, 0.004429570077939424, 0.003638939780606102, 0.002865494496533508, 0.0021095408159566382, 0.0013704886967646655, 0.0006469267627497808, -6.328392971860974e-05, -0.0007628974838393241, -0.0014551530694262103, -0.0021436295820202876, -0.0016078030403666676, -0.001073999543748191, -0.0005441671369789171, -2.0258221232292897e-05, 0.0004957686419449583, 0.0010019475895408627, 0.0014963052304542905, 0.0019768615906681475, 0.0024416325047555794, 0.002888633738754112, 0.0033158871281204834, 0.0037214289950989374, 0.004103321065885387, 0.00445966403337776, 0.004788613801662487, 0.0050884003022617225, 0.005357348592664762, 0.005593901743774008, 0.0057966448102206355, 0.005964328977933691, 0.0060958948232118036, 0.00619049352418116, 0.006247504862483991, 0.006266550954899107, 0.006396253721263633, 0.006770389737495792, 0.007349848482290372, 0.008083975158113505, 0.008921562668400152, 0.009816443189826074, 0.010728641363776593, 0.01162329858072979, 0.012468949196735274, 0.013236023549025549, 0.013896204442176256, 0.01442332815685207, 0.014796357702897932, 0.015003796684172026, 0.015046971952542957, 0.01493932680856243, 0.014701824877847842, 0.014684331606260405, 0.014632401744478702, 0.014547763342878916, 0.014433591296293409, 0.01429508656923468, 0.01414061798304406, 0.013983789964952312, 0.01384614423433849, 0.01375570462902271, 0.013728406010264385, 0.01381504507276511, 0.014014759299662213, 0.014230033245048221, 0.014394172308634715, 0.014465113256868915, 0.014414784838234138, 0.0142263514950435, 0.01389437072122231, 0.013424208916573803, 0.012829840151386909, 0.012131074589136608, 0.011351500356961357, 0.010517669210268926, 0.009659404852803, 0.008810860764254089, 0.008011823193338255, 0.00730840591093368, 0.006751585129183632, 0.006391477904650535, 0.006266550954899107, 0.006396253721211111, 0.006770389737445747, 0.007349848482243795, 0.00808397515807089, 0.008921562668361504, 0.009816443189791392, 0.010728641363745624, 0.011623298580702565, 0.012468949196711843, 0.013236023549006102, 0.01389620444216105, 0.014423328156841445, 0.014796357702892138, 0.015003796684171124, 0.015046971952546636, 0.014939326808570212, 0.014701824877859229, 0.014821285323777952, 0.014882618793822527, 0.014885635271744194, 0.014835713016942177, 0.014745361651237299, 0.01463543497594206, 0.014534479701285795, 0.014473335489080558, 0.014473335489081661, 0.014534479701288627, 0.014635434975945397, 0.014745361651239752, 0.014835713016942732, 0.01488563527174213, 0.014882618793817505, 0.014821285323769758, 0.014701824877847842, 0.01414347773413684, 0.013487315091593732, 0.012762642600263665, 0.012003337516071372, 0.011247427573086206, 0.01053677071031062, 0.009916071826724125, 0.009430270633848605, 0.009119569266262693, 0.009012526977016919 ], "yaxis": "y3" }, { "fill": "tonexty", "legendgroup": "1", "line": { "color": "#DC3912", "width": 0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "xaxis": "x3", "y": [ 0.0021436295820202876, 0.0027394398230222634, 0.0033337297926395205, 0.003925051663006883, 0.004511951919520843, 0.005092968932074584, 0.00566663041414887, 0.006231450770530868, 0.006785928362948087, 0.007328542772297027, 0.007857752191727348, 0.008371991145817905, 0.008869668796096714, 0.0093491681604254, 0.00980884664039967, 0.010247038312145157, 0.010662058484144164, 0.011052211049906169, 0.011415799148557854, 0.011751139575014518, 0.012056581235034891, 0.01233052770460469, 0.012571463622948871, 0.01277798423584418, 0.012948826944937741, 0.01308290326780383, 0.01317932925020598, 0.013237452180454069, 0.013256871506151551, 0.01332916714952578, 0.013540413243173555, 0.01387471846741789, 0.014308576644411673, 0.014814076505701478, 0.015361751382903781, 0.015922627708759796, 0.01646948902939587, 0.016977595240934982, 0.017425119065444777, 0.01779348751253506, 0.0180677210906821, 0.01823678318259622, 0.01829389911665987, 0.01831304525102474, 0.01838342575320436, 0.018499385740491654, 0.018638847235522994, 0.01878105292843148, 0.018911384222672623, 0.019020321981913606, 0.01910178835464215, 0.019152030056972608, 0.019168995255510777, 0.019630864816140035, 0.019948966486113683, 0.020114090874026814, 0.020126321795711687, 0.019993604072706766, 0.019728972592469494, 0.01934765752798737, 0.01886504045872618, 0.018295675299760988, 0.017653053887738517, 0.016949696889981596, 0.016197288776872775, 0.015406741062380654, 0.014588173727643388, 0.013750847292724296, 0.012903081725643846, 0.012052186594113211, 0.011204413552423815, 0.010364932980065524, 0.009537831999733485, 0.008726129928324399, 0.007931807937592548, 0.007155851176462485, 0.006398303125542816, 0.0056583331203918855, 0.0049343185850401, 0.004223943467871459, 0.003524313669302623, 0.0028320889970121863, 0.0021436295820202876, 0.00267953318938356, 0.003213567458132376, 0.0037437830336127676, 0.004268225216743691, 0.004784931992423103, 0.005291932663575546, 0.0057872473529960965, 0.006268887645052679, 0.006734858661214445, 0.007183162878977467, 0.007611806007577654, 0.008018805219072332, 0.008402199992571822, 0.008760065755476328, 0.00909053039294681, 0.009391793542991663, 0.00966214840187355, 0.009900005541990043, 0.010103918008553705, 0.010272606736368418, 0.010404985143450568, 0.010500181645625476, 0.010557558823249762, 0.010576728075656426, 0.01070848394058493, 0.011088727865861472, 0.011678191734215628, 0.012425946439626665, 0.013280375842548028, 0.014194742588730535, 0.01512830902241899, 0.016045227800911686, 0.016912796786281343, 0.017699982009520887, 0.018376881903527785, 0.0189158663337246, 0.01929488772286622, 0.019502162590855646, 0.019539445895172442, 0.01942105704121211, 0.01916899525549925, 0.019152030056962796, 0.01910178835463395, 0.01902032198190691, 0.018911384222667284, 0.01878105292842738, 0.0186388472355199, 0.018499385740489257, 0.018383425753202405, 0.01831304525102332, 0.01829389911665987, 0.018370696643973977, 0.018553437049938455, 0.018756561401871277, 0.01891371979704567, 0.01897998801203764, 0.018924620319503555, 0.018728834129248133, 0.01838605634971682, 0.01790136188234949, 0.017289163475377182, 0.01657019832346649, 0.015769197769645946, 0.014913863524443781, 0.014035055691582423, 0.013167800816520829, 0.012352586758886707, 0.011636068649874903, 0.01106962102059989, 0.010703632650800342, 0.010576728075656426, 0.010708483940532252, 0.011088727865811275, 0.011678191734168907, 0.012425946439583918, 0.013280375842509263, 0.014194742588695755, 0.015128309022387949, 0.016045227800884417, 0.016912796786257907, 0.017699982009501472, 0.018376881903512648, 0.018915866333714077, 0.019294887722860546, 0.019502162590854865, 0.01953944589517624, 0.019421057041220012, 0.019168995255510777, 0.019296489681065634, 0.019365540862395773, 0.019375706496840683, 0.01933228890388764, 0.019247829758408053, 0.019143158684465526, 0.01904648441336891, 0.018987869622186113, 0.018987869622187167, 0.019046484413371624, 0.019143158684468725, 0.019247829758410395, 0.019332288903888113, 0.019375706496838556, 0.019365540862390687, 0.01929648968105735, 0.01916899525549925, 0.018581484368289682, 0.017893807793358238, 0.01713707668808418, 0.016346866832195953, 0.015562662640465677, 0.014827485701517474, 0.014186917520604483, 0.013686521140395124, 0.013366908936030097, 0.013256871506151551 ], "yaxis": "y3" }, { "legendgroup": "1", "line": { "color": "#DC3912", "width": 2 }, "mode": "lines", "name": "As", "showlegend": false, "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 ], "xaxis": "x3", "y": [ 0.0, 0.0014538419078690321, 0.0029032335259157015, 0.004343746600072835, 0.005770996187208085, 0.007180660465844731, 0.00856849838493545, 0.009930364537584448, 0.011262220734050475, 0.012560143866626452, 0.013820329806826234, 0.015039093256358861, 0.016212863691639857, 0.017338177801069245, 0.018411669117979392, 0.019430055899967942, 0.02039012869079994, 0.021288739406227705, 0.022122794173540513, 0.02288925246405959, 0.02358513519393277, 0.024207544306459747, 0.024753695748092743, 0.02522096659048016, 0.025606955294481704, 0.025909551877130833, 0.026127012361040227, 0.026258029897720733, 0.026301793998560002, 0.026286090109097274, 0.02623950281190267, 0.02616360938171818, 0.026061052075024845, 0.02593555615484597, 0.025791948052490056, 0.025636160270067602, 0.02547519724351854, 0.02531701971205174, 0.025170288612375784, 0.025043904695601357, 0.024946306357878856, 0.024884563662299252, 0.024863423666417854, 0.024867825915040886, 0.024881979818664246, 0.02490536601032983, 0.02493559163951616, 0.024969282218586502, 0.025002804480876096, 0.02503276311604355, 0.025056307349554035, 0.025071308068373727, 0.025076455494001424, 0.024885788008125666, 0.024691710131590047, 0.02448893259937908, 0.02426826607628745, 0.024018294795948438, 0.02372788335915151, 0.0233882680212108, 0.022993893941213418, 0.022542037452946705, 0.022031793538676566, 0.021463022284812196, 0.020835596988640733, 0.020149042968341836, 0.019402503594685323, 0.018594914854711247, 0.017725274066096888, 0.01679291776087313, 0.015797757151514557, 0.014740447358215954, 0.013622486004059983, 0.012446248413346237, 0.011214972168518692, 0.009932705070915586, 0.008604229282968738, 0.007234971921020413, 0.005830909537943754, 0.004398471334759577, 0.0029444438289767984, 0.001475878143179424, 0.0, 0.0015752049144679699, 0.0031455596120142097, 0.004706214290917459, 0.006252318864430038, 0.007779020044140273, 0.009281455017417981, 0.010754740490705761, 0.012193955812770224, 0.01359411887578574, 0.014950153566890147, 0.01625684779872418, 0.017508801728128114, 0.018700366896014592, 0.019825578998177936, 0.02087809021861594, 0.021851111919331576, 0.02273738515333153, 0.02352920441254738, 0.024218527211991712, 0.024797204179652046, 0.02525735451516167, 0.025591883224774604, 0.025795088687606244, 0.025863254765841344, 0.025850254452758015, 0.02581155106081679, 0.025748060485725692, 0.025661390259190158, 0.025553973019222537, 0.02542927499990637, 0.025292093152013594, 0.02514893738671793, 0.025008439526326597, 0.0248815999096589, 0.024781443752810123, 0.024721395641883952, 0.02471181415860328, 0.024755340877840926, 0.024843670032890126, 0.02495851288846004, 0.025076455494026186, 0.025071308068397465, 0.025056307349576458, 0.02503276311606439, 0.025002804480895, 0.02496928221860315, 0.024935591639530165, 0.024905366010340827, 0.024881979818671882, 0.024867825915044817, 0.024863423666417854, 0.02485059751140697, 0.024814563453843738, 0.02476252652447003, 0.024705877858282477, 0.02465871495575063, 0.02463513367472505, 0.02464575325513651, 0.0246949474435722, 0.02478027970868717, 0.02489423345928747, 0.025026910846114653, 0.025168303825861667, 0.025309583410400426, 0.025443550949176875, 0.025564607489768264, 0.025668528610556973, 0.025752206930466443, 0.025813432396006506, 0.02585073025638264, 0.025863254765841344, 0.02585025445275799, 0.025811551060816684, 0.025748060485725453, 0.025661390259189683, 0.02555397301922175, 0.025429274999905136, 0.02529209315201171, 0.02514893738671515, 0.025008439526322562, 0.024881599909653197, 0.02478144375280224, 0.02472139564187339, 0.024711814158589644, 0.0247553408778241, 0.024843670032870246, 0.024958512888437496, 0.025076455494001424, 0.025015041732317184, 0.024946284282089625, 0.02487612542946286, 0.0248100973232494, 0.02475278576737426, 0.024707535770290542, 0.024676462251258195, 0.024660695443637064, 0.02466069544363875, 0.02467646225126325, 0.02470753577029896, 0.024752785767385956, 0.024810097323264245, 0.024876125429480648, 0.024946284282110084, 0.02501504173233998, 0.025076455494026186, 0.025264916071552214, 0.025449245637172904, 0.025625703036453656, 0.025789826233413936, 0.02593714658984159, 0.02606358758213223, 0.02616566916290306, 0.02624061206135141, 0.02628639574458172, 0.026301793998560002 ], "yaxis": "y3" }, { "legendgroup": "1", "line": { "color": "#DC3912", "width": 0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "xaxis": "x3", "y": [ -0.002143629582020287, -0.000690611309095012, 0.0007563130262271977, 0.002192726091423784, 0.0036142613336453138, 0.00501662308476661, 0.006395604647962759, 0.007747103778748236, 0.009067135068260108, 0.010351838861337587, 0.011597486494131453, 0.012800481817186979, 0.01395735918119477, 0.015064778303754058, 0.016119516704215506, 0.017118460683711954, 0.01805859612616563, 0.01893700068111783, 0.019750839125168847, 0.020497363834309182, 0.021173922267419747, 0.021777973085191832, 0.02230711193811355, 0.022759107013787985, 0.023131943166241165, 0.023423871985443413, 0.023633463742357443, 0.023759656085438136, 0.023801793998560004, 0.023786195017087074, 0.023739906833173407, 0.023664461569285596, 0.02356243176730712, 0.023437456540705337, 0.02329427081779937, 0.023138724004600444, 0.022977761653625924, 0.02281932605982097, 0.022672113291079456, 0.02254511693650348, 0.022446913996333313, 0.022384727063806713, 0.022363423666417855, 0.02236823508515882, 0.022383386538376626, 0.02240806415683447, 0.02243965782059827, 0.022474647127198176, 0.02250930744269607, 0.022540188902981127, 0.02256440914837319, 0.022579821388909956, 0.022585106900315236, 0.02239771571533788, 0.02220870297951533, 0.0220134265924423, 0.021803161119282113, 0.021566583138145856, 0.02129221016319389, 0.020970582193462393, 0.02059529254107171, 0.02016281304306034, 0.019671621524313454, 0.019121200260816644, 0.01851126281992703, 0.01784133097378598, 0.017110629432465593, 0.016318199926440527, 0.015463128634366892, 0.014544802054875995, 0.013563135689780854, 0.012518746572199813, 0.011413060630681177, 0.010248358659063485, 0.009027771391926776, 0.007755236494161806, 0.006435429754623294, 0.005073680751688301, 0.0036758806981957047, 0.002248387684921898, 0.0007979324399546755, -0.000668473890174021, -0.002143629582020287, -0.0005691872779722091, 0.0009988769815838469, 0.002555705693686168, 0.004096436350767399, 0.005616199211151089, 0.007110112076256819, 0.008573271001176119, 0.010000735876636514, 0.011387509891259247, 0.012728512064286605, 0.014018542415975258, 0.015252240041672674, 0.016424035552009667, 0.017528101259092876, 0.01855830536528319, 0.0195081804021508, 0.02037092113325749, 0.02113943228093206, 0.021806449852814245, 0.02236475821469888, 0.022807514181876754, 0.02312866630505204, 0.02332342420971729, 0.023388699579411577, 0.023375850070882415, 0.02333759323079259, 0.02327482620971359, 0.02318912131663898, 0.023082853177997072, 0.02295939797961134, 0.022823418791011116, 0.022681235614859192, 0.022541227813515155, 0.022414092843133275, 0.022312554125526293, 0.022249843976574347, 0.022236384545653923, 0.022275234626034077, 0.022358808365451486, 0.022469652716367434, 0.022585106900340227, 0.02257982138893393, 0.02256440914839585, 0.022540188903002207, 0.0225093074427152, 0.02247464712721503, 0.02243965782061246, 0.022408064156845618, 0.02238338653838437, 0.02236823508516281, 0.022363423666417855, 0.022351369630793535, 0.02231759067491736, 0.022269104229514808, 0.02221698064745021, 0.022174867658007847, 0.022156319391565198, 0.02217140906348766, 0.022224084058752126, 0.022311701158229252, 0.02242677255136413, 0.022559597927043817, 0.02270044027426368, 0.02284073985327989, 0.022973525537544344, 0.023093372366301095, 0.023196180128986048, 0.0232789255703798, 0.023339452929456585, 0.023376320361690812, 0.023388699579411577, 0.02337585007088239, 0.02333759323079248, 0.023274826209713342, 0.023189121316638486, 0.02308285317799626, 0.022959397979610073, 0.022823418791009187, 0.02268123561485635, 0.022541227813511047, 0.02241409284312748, 0.022312554125518306, 0.022249843976563665, 0.022236384545640142, 0.022275234626017073, 0.0223588083654314, 0.022469652716344667, 0.022585106900315236, 0.02252459531216256, 0.022456949271050665, 0.022388007079593947, 0.022323193705650286, 0.02226699238330793, 0.02222265814858897, 0.022192235071514105, 0.022176805440811465, 0.022176805440813175, 0.02219223507151923, 0.0222226581485975, 0.022266992383319785, 0.022323193705665323, 0.02238800707961195, 0.022456949271071353, 0.02252459531218559, 0.022585106900340227, 0.022771449994713998, 0.022954330963335535, 0.023129689335780287, 0.023292888361062233, 0.02343938592948405, 0.023565093903380595, 0.023666553145043682, 0.023741017663230654, 0.02378649915893613, 0.023801793998560004 ], "yaxis": "y3" }, { "fill": "tonexty", "legendgroup": "1", "line": { "color": "#DC3912", "width": 0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "xaxis": "x3", "y": [ 0.002143629582020287, 0.0035982951248330762, 0.005050154025604206, 0.006494767108721886, 0.007927731040770858, 0.009344697846922852, 0.010741392121908142, 0.01211362529642066, 0.013457306399840841, 0.014768448871915318, 0.016043173119521012, 0.017277704695530745, 0.018468368202084945, 0.019611577298384433, 0.02070382153174328, 0.02174165111622393, 0.022721661255434247, 0.02364047813133758, 0.02449474922191218, 0.02528114109381, 0.02599634812044579, 0.026637115527727663, 0.027200279558071937, 0.027682826167172332, 0.028081967422722242, 0.028395231768818252, 0.02862056097972301, 0.02875640371000333, 0.02880179399856, 0.028785985201107474, 0.028739098790631936, 0.028662757194150762, 0.02855967238274257, 0.028433655768986606, 0.028289625287180743, 0.02813359653553476, 0.027972632833411157, 0.02781471336428251, 0.027668463933672113, 0.027542692454699234, 0.0274456987194244, 0.02738440026079179, 0.027363423666417853, 0.027367416744922952, 0.027380573098951866, 0.027402667863825187, 0.027431525458434046, 0.027463917309974828, 0.027496301519056122, 0.027525337329105972, 0.02754820555073488, 0.0275627947478375, 0.027567804087687612, 0.02737386030091345, 0.027174717283664763, 0.02696443860631586, 0.026733371033292784, 0.02647000645375102, 0.026163556555109126, 0.025805953848959208, 0.025392495341355126, 0.02492126186283307, 0.024391965553039678, 0.02380484430880775, 0.023159931157354437, 0.02245675496289769, 0.021694377756905053, 0.020871629782981967, 0.019987419497826883, 0.019041033466870264, 0.01803237861324826, 0.016962148144232095, 0.01583191137743879, 0.01464413816762899, 0.013402172945110608, 0.012110173647669366, 0.010773028811314183, 0.009396263090352526, 0.007985938377691803, 0.006548554984597256, 0.005090955217998921, 0.003620230176532869, 0.002143629582020287, 0.003719597106908149, 0.005292242242444572, 0.00685672288814875, 0.008408201378092676, 0.009941840877129456, 0.011452797958579144, 0.012936209980235404, 0.014387175748903934, 0.01580072786031223, 0.01717179506949369, 0.018495153181473097, 0.019765363414583556, 0.020976698240019517, 0.022123056737262996, 0.02319787507194869, 0.024194043436512352, 0.025103849173405572, 0.0259189765441627, 0.02663060457116918, 0.027229650144605214, 0.027707194848446585, 0.02805510014449717, 0.028266753165495196, 0.02833780995227111, 0.028324658834633615, 0.028285508890840992, 0.028221294761737795, 0.028133659201741337, 0.028025092860448002, 0.027899152020201403, 0.027760767513016073, 0.02761663915857667, 0.02747565123913804, 0.027349106976184527, 0.027250333380093954, 0.027192947307193557, 0.027187243771552634, 0.027235447129647775, 0.027328531700328767, 0.027447373060552647, 0.027567804087712144, 0.027562794747861, 0.027548205550757064, 0.027525337329126574, 0.0274963015190748, 0.027463917309991266, 0.027431525458447868, 0.027402667863836036, 0.027380573098959395, 0.027367416744926824, 0.027363423666417853, 0.027349825392020407, 0.027311536232770117, 0.027255948819425252, 0.027194775069114746, 0.027142562253493412, 0.027113947957884903, 0.027120097446785358, 0.027165810828392277, 0.027248858259145088, 0.027361694367210813, 0.02749422376518549, 0.027636167377459653, 0.02777842696752096, 0.027913576360809406, 0.028035842613235433, 0.028140877092127897, 0.028225488290553085, 0.028287411862556427, 0.028325140151074468, 0.02833780995227111, 0.02832465883463359, 0.028285508890840888, 0.028221294761737563, 0.02813365920174088, 0.02802509286044724, 0.0278991520202002, 0.027760767513014234, 0.027616639158573947, 0.027475651239134077, 0.027349106976178914, 0.027250333380086176, 0.027192947307183118, 0.027187243771539145, 0.027235447129631125, 0.02732853170030909, 0.027447373060530324, 0.027567804087687612, 0.027505488152471808, 0.027435619293128585, 0.027364243779331773, 0.027297000940848512, 0.02723857915144059, 0.027192413391992114, 0.027160689431002284, 0.027144585446462664, 0.027144585446464326, 0.02716068943100727, 0.027192413392000417, 0.027238579151452127, 0.027297000940863167, 0.027364243779349345, 0.027435619293148816, 0.027505488152494366, 0.027567804087712144, 0.02775838214839043, 0.027944160311010272, 0.028121716737127024, 0.02828676410576564, 0.02843490725019913, 0.028562081260883866, 0.02866478518076244, 0.028740206459472166, 0.02878629233022731, 0.02880179399856 ], "yaxis": "y3" }, { "legendgroup": "1", "line": { "color": "#DC3912", "width": 2 }, "mode": "lines", "name": "As", "showlegend": false, "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 ], "xaxis": "x3", "y": [ 0.04448528301667473, 0.04447482345293691, 0.04444353277461056, 0.04439167558592679, 0.04431969472623454, 0.044228213840494336, 0.04411804062409022, 0.04399017039401243, 0.04384578954739967, 0.04368627838398631, 0.04351321269293084, 0.04332836343897397, 0.043133693830617596, 0.04293135301768156, 0.0427236656521673, 0.04251311656167339, 0.0423023298377823, 0.042094041744448044, 0.04189106701707379, 0.041696258365898554, 0.041512459329478044, 0.04134245105065657, 0.041188894061036305, 0.04105426673418512, 0.04094080265278314, 0.04085042965690793, 0.04078471370908452, 0.04074481083420514, 0.04073143019666888, 0.04073400667117505, 0.04074159856309975, 0.040753801980564386, 0.04076997191176644, 0.04078926156623936, 0.040810672254488645, 0.04083310970784135, 0.04085544278086241, 0.04087656095774555, 0.04089542780596655, 0.04091112829825151, 0.04092290862216424, 0.04093020764446551, 0.04093267957917706, 0.04093406480019913, 0.0409383197262515, 0.040946077614382126, 0.040958266946778316, 0.04097568761364499, 0.04099857421069857, 0.041026018522289626, 0.04105502393397208, 0.04107917533320556, 0.04108902188160734, 0.041187659659495834, 0.04131146450675919, 0.041464378897647175, 0.04164797547564517, 0.041860086195776865, 0.04209370804516242, 0.04233646719740807, 0.042571212933672706, 0.04277904026652484, 0.04294573293666878, 0.04306841474722046, 0.04315567733240191, 0.0432211473465637, 0.0432774288857823, 0.04333374544177305, 0.04339593887226231, 0.043467142264346864, 0.04354843406649547, 0.04363934107162087, 0.04373822024672338, 0.04384256587042602, 0.0439492729157343, 0.04405487255254749, 0.04415574643282249, 0.04424832182169918, 0.04432924759724571, 0.04439555013205952, 0.04444476726584819, 0.04447505776146406, 0.04448528301667473, 0.0444791942115283, 0.04446101817165053, 0.044431025257760826, 0.044389663496424966, 0.04433755464957638, 0.04427548857605468, 0.04420441575383993, 0.04412543780148134, 0.04403979581464368, 0.04394885632243018, 0.043854094672906165, 0.043757075683558064, 0.04365943144613966, 0.043562836261927716, 0.04346897880671029, 0.04337953178571369, 0.04329611953332548, 0.0432202842309549, 0.04315345164175581, 0.04309689746960368, 0.04305171561324771, 0.04301878967542731, 0.04299876907545634, 0.042992050986604795, 0.042983302566968994, 0.042957220313752084, 0.04291429138628804, 0.0428553214970866, 0.042781425487508226, 0.04269401394448593, 0.04259477567138161, 0.04248162089102041, 0.042303824025621425, 0.04211189863572431, 0.04191542808330787, 0.04172381072164429, 0.04154562825404588, 0.04138822004558614, 0.04125735391255255, 0.04115696882788631, 0.04108902188160038, 0.04107917533320212, 0.041055023933970425, 0.04102601852228859, 0.04099857421069767, 0.04097568761364409, 0.04095826694677739, 0.04094607761438129, 0.040938319726250796, 0.04093406480019871, 0.04093267957917706, 0.040938124975483936, 0.04095605488138708, 0.04099051663560193, 0.041046349948182966, 0.04112756543301018, 0.041236275418025284, 0.041372186745165684, 0.04153249962016188, 0.041712079630749646, 0.04190382488212047, 0.04209919939144172, 0.04228895277114695, 0.04246407941570837, 0.042617020368170305, 0.042742890784710746, 0.042840200525230326, 0.042910523465716104, 0.04295716181187837, 0.04298353902556028, 0.042992050986604795, 0.0429833025669869, 0.04295722031376997, 0.04291429138630588, 0.04285532149710439, 0.04278142548752592, 0.04269401394450353, 0.042594775671399084, 0.0424816208910174, 0.04230382402562044, 0.042111898635724974, 0.04191542808330984, 0.04172381072164729, 0.04154562825404978, 0.04138822004559086, 0.04125735391255799, 0.041156968827892514, 0.04108902188160734, 0.04111030711946763, 0.0411225399606451, 0.04112806253125427, 0.04112976400980184, 0.041129647966816105, 0.041128877532493335, 0.04112809199897491, 0.04112762678172078, 0.04112762678172086, 0.04112809199897508, 0.041128877532493655, 0.04112964796681649, 0.04112976400980217, 0.04112806253125425, 0.04112253996064405, 0.04111030711946431, 0.04108902188160038, 0.041010610966601226, 0.04094760692841038, 0.040896027993590836, 0.0408530418246438, 0.04081696035477525, 0.04078704102952653, 0.04076320295569457, 0.0407457342305217, 0.04073503632657828, 0.04073143019666888 ], "yaxis": "y3" }, { "legendgroup": "1", "line": { "color": "#DC3912", "width": 0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "xaxis": "x3", "y": [ 0.04319887242316754, 0.043188349768842164, 0.043156869085453554, 0.0431046928440946, 0.04303226054923771, 0.042940191632133515, 0.04282928913246933, 0.04270054380519472, 0.04255513819414391, 0.042394450125529774, 0.04222005499436151, 0.0420337261476043, 0.04183743261232884, 0.04163333337906252, 0.041423767435346294, 0.041211238759373464, 0.04099839553816244, 0.04078800298114789, 0.040582909272547256, 0.040386004459054, 0.040200172415492084, 0.04002823647502224, 0.03987289984406381, 0.03973668251743036, 0.03962185701423889, 0.03953038579366689, 0.03946386358829505, 0.03942346801691718, 0.039409921634645455, 0.03941224317779885, 0.039419087324397646, 0.03943009949302867, 0.03944471108989148, 0.03946217133217831, 0.03948158853130618, 0.03950197802243488, 0.03952231368976819, 0.03954158008840649, 0.0395588224449118, 0.0395731922446454, 0.03958398659582947, 0.03959068002715087, 0.03959294778440404, 0.03959948624313553, 0.03961930967769955, 0.039652847815833205, 0.03970089516471733, 0.03976474594619062, 0.039846139770024394, 0.039946621455381345, 0.040064186252216555, 0.040179852153485844, 0.040234700639776036, 0.04043110328358266, 0.04065118960905011, 0.04088759268887736, 0.041125442335292445, 0.04134537867802413, 0.04153392964649523, 0.041688063462315, 0.04180746084613901, 0.041891249655257465, 0.041943099681591135, 0.04197329678460337, 0.041993919076152644, 0.042014477554737126, 0.04204135283855931, 0.04207856046871502, 0.0421283377639024, 0.0421914819160206, 0.042267580082419084, 0.04235520171682148, 0.04245208082495976, 0.042555298877366886, 0.042661470780361505, 0.042766931790096906, 0.042867921300963056, 0.04296075913265008, 0.04304201035665418, 0.04310863510671498, 0.04315811982543452, 0.04318858604125988, 0.04319887242316754, 0.043192847830001234, 0.04317486409802785, 0.04314519057412895, 0.04310427349702734, 0.043052731923193956, 0.04299135189480151, 0.042921078726691916, 0.04284300726257442, 0.04275836993213063, 0.04266852243396862, 0.04257492687887723, 0.04247913225859472, 0.04238275216244198, 0.04228743975215402, 0.0421948601268346, 0.04210666036490561, 0.04202443771358479, 0.041949706598636685, 0.04188386533168059, 0.04182816357747177, 0.04178367178395546, 0.04175125384793744, 0.04173154426753084, 0.04172493090668931, 0.041716014563163, 0.04168943136741813, 0.04164567692353887, 0.04158557087565408, 0.04151024726688737, 0.04142114084867652, 0.0413199691508731, 0.041624509974106626, 0.041512176544666685, 0.04137055701250163, 0.041206691675970464, 0.0410290625074078, 0.04084668229710836, 0.04066847528726, 0.04050269453578793, 0.040356341457634434, 0.040234700639765454, 0.04017985215348624, 0.04006418625221837, 0.039946621455381845, 0.039846139770023825, 0.039764745946189554, 0.039700895164716116, 0.03965284781583215, 0.03961930967769875, 0.03959948624313511, 0.03959294778440404, 0.039608065634410494, 0.039652597304427994, 0.03972472420940489, 0.03982265660014464, 0.03994482546005763, 0.04008928070443694, 0.04025295756822859, 0.04043123718409557, 0.040617903109973374, 0.040805468264021906, 0.04098584936420545, 0.04115138611660176, 0.041296126500172205, 0.04141702843628503, 0.041514369312296684, 0.041590748143479225, 0.041649062262142024, 0.041690895429694834, 0.04171635415186964, 0.04172493090668931, 0.04171601456318104, 0.04168943136743615, 0.04164567692355685, 0.041585570875672, 0.04151024726690521, 0.04142114084869426, 0.04131996915089072, 0.041624509974103406, 0.04151217654466664, 0.041370557012504375, 0.0412066916759755, 0.04102906250741459, 0.04084668229711647, 0.04066847528726908, 0.04050269453579762, 0.04035634145764464, 0.040234700639776036, 0.04024507625329912, 0.040192706472596124, 0.040123622517963836, 0.040061928887238925, 0.04001377526422164, 0.039979193703916116, 0.0399569972076012, 0.03994616664050425, 0.03994616664050414, 0.039956997207600854, 0.0399791937039157, 0.040013775264221375, 0.04006192888723925, 0.04012362251796538, 0.04019270647259883, 0.04024507625329935, 0.040234700639765454, 0.04006385014724721, 0.03991746082811399, 0.039793285641544884, 0.03968898282816657, 0.039602634637270186, 0.03953291229336596, 0.03947903613559629, 0.03944063868960911, 0.03941760299931179, 0.039409921634645455 ], "yaxis": "y3" }, { "fill": "tonexty", "legendgroup": "1", "line": { "color": "#DC3912", "width": 0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "xaxis": "x3", "y": [ 0.04577169361018192, 0.04576129713703165, 0.04573019646376756, 0.045678658327758984, 0.04560712890323137, 0.04551623604885516, 0.045406792115711116, 0.04527979698283014, 0.04513644090065543, 0.044978106642442846, 0.04480637039150017, 0.04462300073034364, 0.04442995504890635, 0.04422937265630061, 0.04402356386898831, 0.04381499436397332, 0.043606264137402165, 0.0434000805077482, 0.043199224761600326, 0.04300651227274311, 0.042824746243464, 0.042656665626290904, 0.0425048882780088, 0.042371850950939885, 0.042259748291327386, 0.04217047352014897, 0.04210556382987399, 0.042066153651493104, 0.04205293875869231, 0.04205577016455125, 0.042064109801801856, 0.0420775044681001, 0.04209523273364141, 0.04211635180030041, 0.04213975597767111, 0.042164241393247814, 0.042188571871956626, 0.04221154182708461, 0.042232033167021295, 0.04224906435185762, 0.042261830648499005, 0.042269735261780156, 0.04227241137395008, 0.04226864335726273, 0.04225732977480345, 0.04223930741293105, 0.0422156387288393, 0.04218662928109936, 0.04215100865137275, 0.042105415589197906, 0.04204586161572761, 0.04197849851292528, 0.04194334312343864, 0.04194421603540901, 0.041971739404468265, 0.04204116510641699, 0.0421705086159979, 0.0423747937135296, 0.042653486443829616, 0.04298487093250114, 0.0433349650212064, 0.04366683087779222, 0.04394836619174642, 0.04416353270983755, 0.04431743558865117, 0.04442781713839028, 0.04451350493300529, 0.04458893041483108, 0.044663539980622224, 0.044742802612673126, 0.04482928805057186, 0.044923480426420255, 0.045024359668486995, 0.04512983286348516, 0.04523707505110709, 0.04534281331499807, 0.04544357156468192, 0.04553588451074828, 0.04561648483783725, 0.04568246515740406, 0.04573141470626185, 0.045761529481668235, 0.04577169361018192, 0.04576554059305537, 0.045747172245273214, 0.0457168599413927, 0.04567505349582259, 0.045622377375958804, 0.04555962525730785, 0.04548775278098795, 0.04540786834038826, 0.04532122169715673, 0.045229190210891744, 0.0451332624669351, 0.04503501910852141, 0.04493611072983734, 0.04483823277170141, 0.044743097486585975, 0.044652403206521765, 0.04456780135306617, 0.04449086186327311, 0.04442303795183103, 0.04436563136173558, 0.044319759442539956, 0.04428632550291719, 0.04426599388338184, 0.04425917106652028, 0.04425059057077499, 0.04422500926008604, 0.04418290584903722, 0.044125072118519126, 0.04405260370812908, 0.04396688704029534, 0.043869582191890126, 0.04333873180793419, 0.043095471506576166, 0.04285324025894699, 0.04262416449064528, 0.042418558935880785, 0.042244574210983404, 0.04210796480391228, 0.042012013289317175, 0.041957596198138186, 0.041943343123435305, 0.041978498512918, 0.04204586161572248, 0.04210541558919534, 0.042151008651371516, 0.04218662928109863, 0.04221563872883867, 0.04223930741293044, 0.04225732977480284, 0.04226864335726231, 0.04227241137395008, 0.04226818431655738, 0.042259512458346166, 0.04225630906179897, 0.04227004329622129, 0.042310305405962735, 0.04238327013161363, 0.04249141592210278, 0.042633762056228194, 0.04280625615152592, 0.04300218150021904, 0.043212549418678, 0.04342651942569214, 0.04363203233124454, 0.04381701230005558, 0.04397141225712481, 0.04408965290698143, 0.04417198466929018, 0.04422342819406191, 0.044250723899250916, 0.04425917106652028, 0.04425059057079277, 0.044225009260103795, 0.04418290584905492, 0.04412507211853677, 0.04405260370814663, 0.04396688704031279, 0.043869582191907446, 0.0433387318079314, 0.04309547150657424, 0.042853240258945574, 0.042624164490644184, 0.042418558935879994, 0.04224457421098309, 0.04210796480391264, 0.04201201328931836, 0.041957596198140386, 0.04194334312343864, 0.041975537985636135, 0.04205237344869407, 0.0421325025445447, 0.04219759913236475, 0.04224552066941057, 0.042278561361070555, 0.042299186790348615, 0.042309086922937306, 0.04230908692293758, 0.04229918679034931, 0.04227856136107161, 0.04224552066941161, 0.04219759913236509, 0.04213250254454312, 0.04205237344868927, 0.04197553798562927, 0.041943343123435305, 0.04195737178595524, 0.04197775302870677, 0.04199877034563679, 0.04201710082112103, 0.042031286072280315, 0.0420411697656871, 0.04204736977579285, 0.04205082977143428, 0.04205246965384477, 0.04205293875869231 ], "yaxis": "y3" }, { "legendgroup": "1", "line": { "color": "#DC3912", "width": 2 }, "mode": "lines", "name": "As", "showlegend": false, "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 ], "xaxis": "x3", "y": [ 0.044485283016712195, 0.04447482345293691, 0.04444353277461056, 0.04439167558592679, 0.044319694726234544, 0.04422821384049435, 0.04411804062409022, 0.04399017039401243, 0.04384578954739967, 0.04368627838398631, 0.04351321269293085, 0.04332836343897397, 0.043133693830617596, 0.04293135301768157, 0.042723665652167314, 0.04251311656167339, 0.04230232983778231, 0.04209404174444805, 0.04189106701707379, 0.04169625836589856, 0.04151245932947805, 0.04134245105065658, 0.041188894061036305, 0.04105426673418513, 0.04094080265278315, 0.04085042965690794, 0.04078471370908453, 0.04074481083420515, 0.04073143019666889, 0.04074074575201602, 0.04076868090641539, 0.040815183338265386, 0.040880102796145915, 0.04096308307760186, 0.041063382969339715, 0.04117959669058249, 0.04130923615131358, 0.04144813821696552, 0.04158969662702054, 0.041724061194718866, 0.04183782706562152, 0.041915370694971796, 0.041943075114274704, 0.041935319402488, 0.04191040899364346, 0.04186799964096019, 0.041810385551629574, 0.04174179196272809, 0.041667626277900514, 0.04159415466143973, 0.04152888708687799, 0.04148160222040608, 0.04146381325633704, 0.04160041319720256, 0.041743738320987565, 0.04189237939319925, 0.042044923994019476, 0.04219997841066058, 0.04235618819419463, 0.04251225687276712, 0.04266696238835759, 0.04281917091537214, 0.042967847820344164, 0.04311206562694312, 0.04325100895398051, 0.04338397649158231, 0.04351038016856226, 0.043629741739600617, 0.04374168708233545, 0.043845938540931856, 0.04394230568385034, 0.044030674859770524, 0.044110997937891895, 0.04418328060858552, 0.0442475705994922, 0.04430394613286445, 0.0443525049146466, 0.044393353906948686, 0.044426600095556185, 0.04445234242500413, 0.04447066503719503, 0.044481631916648647, 0.044485283016712195, 0.04447919421152832, 0.04446101817165055, 0.04443102525776083, 0.04438966349642498, 0.04433755464957638, 0.04427548857605468, 0.04420441575383995, 0.04412543780148135, 0.04403979581464369, 0.04394885632243018, 0.043854094672906165, 0.04375707568355807, 0.04365943144613966, 0.043562836261927716, 0.043468978806710294, 0.04337953178571369, 0.04329611953332548, 0.04322028423095491, 0.04315345164175582, 0.04309689746960368, 0.043051715613247735, 0.04301878967542732, 0.042998769075456356, 0.0429920509866048, 0.04298922585293537, 0.04297928968408118, 0.04295803305166262, 0.04291915350452573, 0.042855672290169275, 0.042762094414067926, 0.04263653284624322, 0.04248565577987093, 0.042368829135822246, 0.04224666888055009, 0.042121709773366704, 0.04199660617896155, 0.04187408467218715, 0.04175689146988682, 0.04164773523431017, 0.04154922622229933, 0.04146381325632113, 0.041481602220386236, 0.041528887086856404, 0.041594154661418074, 0.0416676262778798, 0.041741791962709114, 0.04181038555161313, 0.041867999640947035, 0.041910408993634275, 0.04193531940248332, 0.041943075114274704, 0.041956318991789275, 0.041994411388564315, 0.04205307378818622, 0.04212679099241408, 0.04221007761909147, 0.042298185331231794, 0.04238732608936466, 0.04247462736396435, 0.0425579802859849, 0.04263586507103105, 0.04270719064384164, 0.042771163589630214, 0.04282719489849291, 0.04287485477487645, 0.04291388941073688, 0.04294430441572853, 0.04296647585779569, 0.04298117963577508, 0.04298941803643543, 0.0429920509866048, 0.0429892258529177, 0.042979289684064365, 0.04295803305164726, 0.042919153504512406, 0.042855672290158436, 0.042762094414059815, 0.04263653284623781, 0.04248565577988825, 0.042368829135839406, 0.0422466688805671, 0.042121709773383545, 0.041996606178978234, 0.04187408467220365, 0.041756891469903176, 0.041647735234326355, 0.041549226222315376, 0.04146381325633704, 0.04151918111248269, 0.04160499987694972, 0.04171404068150525, 0.04183621533523533, 0.04195979747884492, 0.042071513548903545, 0.04215720369475911, 0.04220402053386315, 0.042204020533859965, 0.042157203694749956, 0.04207151354888942, 0.04195979747882707, 0.04183621533521496, 0.04171404068148363, 0.04160499987692822, 0.04151918111246308, 0.04146381325632113, 0.041335321881646, 0.041216273756088745, 0.04110793242074208, 0.041011468804923554, 0.04092794124044287, 0.04085827740287351, 0.040803258541830645, 0.04076350627897833, 0.04073947217457198, 0.04073143019666889 ], "yaxis": "y3" }, { "legendgroup": "1", "line": { "color": "#DC3912", "width": 0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "xaxis": "x3", "y": [ 0.043198872423205005, 0.043188349768842164, 0.043156869085453554, 0.0431046928440946, 0.043032260549237714, 0.04294019163213353, 0.04282928913246933, 0.04270054380519472, 0.04255513819414391, 0.042394450125529774, 0.04222005499436152, 0.0420337261476043, 0.04183743261232884, 0.041633333379062526, 0.04142376743534631, 0.041211238759373464, 0.040998395538162445, 0.040788002981147896, 0.040582909272547256, 0.040386004459054006, 0.04020017241549209, 0.040028236475022246, 0.03987289984406381, 0.039736682517430365, 0.039621857014238905, 0.0395303857936669, 0.03946386358829506, 0.039423468016917186, 0.03940992163464546, 0.03942393512868963, 0.03946606866306746, 0.03953658795980175, 0.03963588835218372, 0.039764413681798935, 0.03992252243905435, 0.040110278373281114, 0.040327130136625686, 0.04057142126032983, 0.04083962996748829, 0.041125190257682714, 0.04141682684872068, 0.04169702804977569, 0.041943075114274704, 0.041742889143544126, 0.04153457509522286, 0.04132273734529131, 0.04111165290870792, 0.040904934909287226, 0.04070571738646363, 0.04051769322132787, 0.0403483703426651, 0.04021754828568665, 0.040164889348172785, 0.040305072821916324, 0.040451934784211524, 0.0406039961755284, 0.04075978069707282, 0.04091783804782903, 0.04107676552847486, 0.04123522750201145, 0.04139197228770745, 0.041545846164733745, 0.041695804268701335, 0.04184091827258136, 0.04198038084829149, 0.042113507002545465, 0.04223973246731131, 0.04235860939919127, 0.04246979970180787, 0.042573066330115435, 0.042668262965321474, 0.042755322464204486, 0.04283424448796289, 0.04290508270469315, 0.04296793193795439, 0.043022915603749205, 0.04307017374197544, 0.04310985190841221, 0.04314209115194363, 0.04316701926109078, 0.0431847434257157, 0.04319534442512046, 0.043198872423205005, 0.043192847830001255, 0.04317486409802787, 0.04314519057412896, 0.043104273497027355, 0.043052731923193956, 0.04299135189480151, 0.04292107872669194, 0.04284300726257443, 0.04275836993213064, 0.04266852243396861, 0.04257492687887723, 0.042479132258594725, 0.04238275216244198, 0.04228743975215402, 0.042194860126834606, 0.04210666036490561, 0.04202443771358479, 0.0419497065986367, 0.0418838653316806, 0.04182816357747177, 0.041783671783955485, 0.041751253847937445, 0.041731544267530854, 0.041724930906689314, 0.041728758017181775, 0.04173920442352167, 0.04175308074183374, 0.041764849591621626, 0.0417666229908122, 0.041749019382313256, 0.04170337757041324, 0.04120871007789733, 0.041089574764602746, 0.04096497541757792, 0.04083748789709283, 0.04070980887841897, 0.04058470758661098, 0.04046497234173033, 0.04035335249067683, 0.04025249673302186, 0.04016488934815668, 0.040217548285661445, 0.04034837034263773, 0.040517693221301394, 0.040705717386438654, 0.04090493490926385, 0.04111165290868642, 0.041322737345272066, 0.041534575095206396, 0.04174288914353106, 0.041943075114274704, 0.04179158818751399, 0.041675894425237614, 0.04159880898080878, 0.04155707235515529, 0.041544044817168384, 0.041552265433587046, 0.04157488687154285, 0.041606170449107256, 0.041641480453440974, 0.0416770854281777, 0.04170992740625922, 0.04173744541629548, 0.04175752492179453, 0.04176865586746665, 0.041770352374687805, 0.04176371301570091, 0.041751688498590914, 0.041738548713910424, 0.041728607362100385, 0.041724930906689314, 0.04172875801716387, 0.04173920442350433, 0.04175308074181741, 0.041764849591606854, 0.041766622990799585, 0.04174901938230344, 0.041703377570406666, 0.0412087100779148, 0.041089574764620065, 0.04096497541759509, 0.040837487897109837, 0.040709808878435824, 0.04058470758662766, 0.040464972341746876, 0.04035335249069321, 0.040252496733038094, 0.040164889348172785, 0.04024983422506744, 0.040410623797531964, 0.040616909974267264, 0.04084293418962121, 0.041069187600297236, 0.041276092975465646, 0.04143957734750873, 0.04153189673061216, 0.041531896730608066, 0.04143957734749728, 0.04127609297544861, 0.04106918760027621, 0.0408429341895972, 0.04061690997424098, 0.04041062379750466, 0.04024983422504276, 0.04016488934815668, 0.04003284189117552, 0.03991034172315197, 0.03979872934257385, 0.039699250792429086, 0.03961303540605656, 0.03954107551306295, 0.039484208562604636, 0.03944310203794859, 0.03941824145201881, 0.03940992163464546 ], "yaxis": "y3" }, { "fill": "tonexty", "legendgroup": "1", "line": { "color": "#DC3912", "width": 0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "xaxis": "x3", "y": [ 0.045771693610219384, 0.04576129713703165, 0.04573019646376756, 0.045678658327758984, 0.045607128903231375, 0.04551623604885517, 0.045406792115711116, 0.04527979698283014, 0.04513644090065543, 0.044978106642442846, 0.04480637039150018, 0.04462300073034364, 0.04442995504890635, 0.044229372656300614, 0.04402356386898832, 0.04381499436397332, 0.04360626413740217, 0.043400080507748205, 0.043199224761600326, 0.043006512272743116, 0.04282474624346401, 0.04265666562629091, 0.0425048882780088, 0.04237185095093989, 0.0422597482913274, 0.04217047352014898, 0.042105563829873995, 0.04206615365149311, 0.042052938758692315, 0.04205755637534241, 0.042071293149763316, 0.04209377871672902, 0.04212431724010811, 0.042161752473404784, 0.04220424349962508, 0.04224891500788387, 0.04229134216600147, 0.042324855173601204, 0.04233976328655279, 0.04232293213175502, 0.042258827282522365, 0.042133713340167904, 0.041943075114274704, 0.042127749661431874, 0.04228624289206406, 0.042413261936629074, 0.04250911819455123, 0.04257864901616896, 0.0426295351693374, 0.04267061610155159, 0.042709403831090884, 0.042745656155125517, 0.04276273716450129, 0.0428957535724888, 0.04303554185776361, 0.0431807626108701, 0.04333006729096613, 0.04348211877349213, 0.043635610859914395, 0.04378928624352279, 0.043941952489007736, 0.04409249566601054, 0.04423989137198699, 0.04438321298130488, 0.044521637059669536, 0.04465444598061915, 0.044781027869813216, 0.044900874080009964, 0.04501357446286303, 0.04511881075174828, 0.0452163484023792, 0.04530602725533656, 0.0453877513878209, 0.04546147851247789, 0.04552720926103001, 0.0455849766619797, 0.04563483608731776, 0.04567685590548516, 0.04571110903916874, 0.045737665588917474, 0.04575658664867436, 0.04576791940817683, 0.045771693610219384, 0.04576554059305539, 0.045747172245273235, 0.045716859941392705, 0.045675053495822605, 0.045622377375958804, 0.04555962525730785, 0.04548775278098797, 0.04540786834038827, 0.045321221697156744, 0.04522919021089175, 0.0451332624669351, 0.04503501910852142, 0.04493611072983734, 0.04483823277170141, 0.04474309748658598, 0.044652403206521765, 0.04456780135306617, 0.044490861863273126, 0.044423037951831036, 0.04436563136173558, 0.044319759442539984, 0.044286325502917195, 0.04426599388338186, 0.04425917106652029, 0.04424969368868896, 0.044219374944640684, 0.0441629853614915, 0.04407345741742983, 0.04394472158952635, 0.0437751694458226, 0.0435696881220732, 0.04376260148184453, 0.043648083507041746, 0.04352836234352227, 0.04340593164964058, 0.043283403479504136, 0.043163461757763325, 0.04304881059804331, 0.042942117977943506, 0.04284595571157681, 0.04276273716448559, 0.04274565615511103, 0.04270940383107508, 0.042670616101534754, 0.04262953516932095, 0.04257864901615438, 0.042509118194539834, 0.042413261936622, 0.042286242892062155, 0.042127749661435586, 0.041943075114274704, 0.04212104979606456, 0.042312928351891016, 0.04250733859556366, 0.04269650962967287, 0.04287611042101456, 0.04304410522887654, 0.043199765307186465, 0.04334308427882145, 0.04347448011852882, 0.043594644713884405, 0.043704453881424056, 0.043804881762964945, 0.043896864875191295, 0.043981053682286254, 0.04405742644678595, 0.044124895815756154, 0.04418126321700047, 0.044223810557639735, 0.04425022871077048, 0.04425917106652029, 0.04424969368867153, 0.0442193749446244, 0.044162985361477114, 0.04407345741741796, 0.04394472158951729, 0.04377516944581619, 0.04356968812206895, 0.043762601481861695, 0.043648083507058746, 0.04352836234353911, 0.04340593164965725, 0.043283403479520643, 0.043163461757779645, 0.04304881059805948, 0.0429421179779595, 0.04284595571159266, 0.04276273716450129, 0.04278852799989794, 0.04279937595636747, 0.042811171388743234, 0.042829496480849445, 0.04285040735739261, 0.042866934122341445, 0.04287483004200949, 0.04287614433711414, 0.042876144337111864, 0.04287483004200263, 0.042866934122330225, 0.042850407357377926, 0.04282949648083272, 0.042811171388726275, 0.04279937595635178, 0.042788527999883405, 0.04276273716448559, 0.04263780187211648, 0.04252220578902552, 0.04241713549891031, 0.04232368681741802, 0.04224284707482918, 0.04217547929268407, 0.04212230852105665, 0.042083910520008073, 0.04206070289712515, 0.042052938758692315 ], "yaxis": "y3" }, { "legendgroup": "1", "line": { "color": "#DC3912", "width": 2 }, "mode": "lines", "name": "As", "showlegend": false, "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 ], "xaxis": "x3", "y": [ 0.04448528301678009, 0.04866677482736557, 0.04866339257802208, 0.0486576806225212, 0.04864953031072376, 0.048638796899426164, 0.04862530701937498, 0.04860886839108383, 0.04858928182826573, 0.04856635552409109, 0.048539921541434335, 0.04850985431882024, 0.048476090854188345, 0.04843865203466963, 0.04839766433955389, 0.04835338085597037, 0.04830620021932535, 0.048256681741383596, 0.048205554654159564, 0.04815371913915109, 0.048102236721846645, 0.048052307814133575, 0.04800523482086159, 0.0479623704088768, 0.047925052303196415, 0.04789452820575989, 0.047871876794298884, 0.04785793271211804, 0.047853224367915705, 0.04782900824221787, 0.04775698705522154, 0.047639051105503254, 0.047478381460745914, 0.047279501405920944, 0.04704836120762234, 0.04679247236016061, 0.0465211153145468, 0.0462456470923737, 0.045979906975442554, 0.04574058910000693, 0.04554708817755275, 0.04541970822465694, 0.04537504989911104, 0.045394484430998944, 0.04544961655899271, 0.045533078560253105, 0.045634916633606255, 0.04574405218145114, 0.04584966749902549, 0.04594220002459005, 0.046013920798443374, 0.04605921431948011, 0.04607468963159275, 0.04583055235907391, 0.04560345313264514, 0.04539889934362, 0.045221770148371074, 0.04507697802718957, 0.04497042155937722, 0.04490999406769285, 0.04490592243278325, 0.04496886037919333, 0.045104472408652715, 0.04530754544990301, 0.04556230426947378, 0.045849000965125106, 0.04614992020834955, 0.0464515617681165, 0.04674441679014857, 0.04702207514280017, 0.047280390176268644, 0.0475168493660951, 0.0477301234442462, 0.04791974121656801, 0.04808584798284831, 0.04822901904137696, 0.04835010975536639, 0.04845013031496351, 0.04853013787677655, 0.0485911421680814, 0.04863402342049899, 0.04865946375196498, 0.04448528301678009, 0.04865658739235655, 0.048622721760326545, 0.04856646822041065, 0.04848811771261887, 0.04838809224530162, 0.04826696040707123, 0.0481254584677041, 0.0479645178964076, 0.04778530023179857, 0.04758924023943071, 0.0473780981019629, 0.04715402086221313, 0.04691961226337865, 0.04667800819496509, 0.04643295176601178, 0.046188857194032054, 0.04595084504925665, 0.045724723467577506, 0.045516882769892936, 0.04533406886647071, 0.045183010635941996, 0.04506990492427841, 0.04499981065798409, 0.044976057900884825, 0.044969548025143746, 0.04495174071190692, 0.04492763835097012, 0.0449048909014151, 0.04489241178917213, 0.04489825167662173, 0.04492749877776639, 0.04498136970771857, 0.04505786681537374, 0.04515324184463348, 0.04526332386016874, 0.04538432813063079, 0.045513214912835956, 0.04564778043395249, 0.045786613201441145, 0.04592898298618531, 0.04607468963162265, 0.04605921431950975, 0.046013920798472295, 0.045942200024617796, 0.04584966749905146, 0.04574405218147467, 0.04563491663362659, 0.04553307856026938, 0.04544961655900412, 0.04539448443100482, 0.04537504989911104, 0.04537052697431801, 0.04535701756627438, 0.04533471498449625, 0.04530399054495389, 0.04526546197550072, 0.045220079162924254, 0.04516921805107278, 0.04511477069806547, 0.045059213973040184, 0.04500562744773712, 0.04495760835648053, 0.04491899876230719, 0.04489332003985542, 0.04488287116707535, 0.044887678635480675, 0.04490482323433683, 0.04492873410359341, 0.04495252580523728, 0.04496978119305411, 0.044976057900884825, 0.04496954802514345, 0.04495174071190569, 0.04492763835096732, 0.04490489090141012, 0.04489241178916447, 0.04489825167661106, 0.044927498777752733, 0.044981369707702175, 0.04505786681535493, 0.04515324184461264, 0.04526332386014617, 0.04538432813060672, 0.04551321491281057, 0.04564778043392588, 0.04578661320141339, 0.045928982986156476, 0.04607468963159275, 0.04598980290078556, 0.045885097607356144, 0.04576572629625578, 0.045638849977849366, 0.04551388855086102, 0.045402481023001276, 0.045317634582793836, 0.04527143300406534, 0.04527143300406887, 0.045317634582804, 0.04540248102301716, 0.04551388855088137, 0.04563884997787311, 0.045765726296282006, 0.0458850976073841, 0.04598980290081468, 0.04607468963162265, 0.04632941632716412, 0.04658735687478576, 0.04684047478065828, 0.04708048455958477, 0.04729930554274744, 0.04748948065759559, 0.047644519085929676, 0.047759151858457485, 0.04782950779049783, 0.047853224367915705 ], "yaxis": "y3" }, { "legendgroup": "1", "line": { "color": "#DC3912", "width": 0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "xaxis": "x3", "y": [ 0.0431988724232729, 0.047381737707180877, 0.047382481820780475, 0.047383666976059294, 0.047385214380496046, 0.04738702127524404, 0.04738896855122605, 0.047390930601652066, 0.047392787398758573, 0.04739443871662729, 0.04739582031898586, 0.04739692178519172, 0.04739780545441615, 0.04739862572461442, 0.047399647650276405, 0.047401263449248686, 0.04740400517386691, 0.04740855146317241, 0.04741572603445516, 0.047426485488340914, 0.04744189421752294, 0.047463084867544816, 0.04749120402339154, 0.04752734463418174, 0.04757246902925642, 0.04762732888678467, 0.047692390621390836, 0.04776777565970106, 0.047853224367915705, 0.047758202463695276, 0.047614691754437215, 0.0474239159371124, 0.04718842876586545, 0.046912199277845186, 0.04660075263038948, 0.0462614016949039, 0.04590362823737123, 0.04553970153255508, 0.04518562435600802, 0.04486234316539425, 0.044596518089595236, 0.044418685697571625, 0.04435570296412579, 0.04438378872449469, 0.044462957428692475, 0.044581414313135254, 0.0447238335642742, 0.04487410284426973, 0.04501742724743226, 0.04514145839365603, 0.04523668391637472, 0.045296437662385045, 0.04531678818367765, 0.04499871337545281, 0.04470392610189946, 0.04444018335876704, 0.0442145804429309, 0.04403427058355429, 0.04390757189951749, 0.04384492607027269, 0.04385812897292356, 0.04395514390207366, 0.04413093179737924, 0.04436447922221126, 0.04462962167948774, 0.044906734157664184, 0.04518413336642472, 0.04545468933782421, 0.0457134704589003, 0.04595686639924277, 0.0461823056753786, 0.046388108997562294, 0.04657335500621267, 0.04673774389016903, 0.04688146466774969, 0.04700507088911916, 0.04710936622885978, 0.04719529950850874, 0.047263868226651434, 0.04731603028021374, 0.047352624827956796, 0.04737430472051864, 0.0431988724232729, 0.04737144844072463, 0.04734141239713256, 0.047291590668159335, 0.04722234893938908, 0.04713421583815936, 0.04702790034723975, 0.046904315205735514, 0.04676460693648364, 0.046610193092254705, 0.04644280706043183, 0.04626455016246626, 0.046077949602852775, 0.045886018720296684, 0.04569231248207566, 0.04550096558894264, 0.0453166921260541, 0.04514471352047552, 0.044990564657132, 0.04485970485384321, 0.04475682833810922, 0.0446847312550617, 0.04464263170209794, 0.04462447786066691, 0.04462028180653116, 0.04459576811145316, 0.044527818367507827, 0.0444300809971151, 0.04431983526305248, 0.04421585781343153, 0.044136011505781836, 0.044093472846578566, 0.04409398910493427, 0.04413633804192962, 0.04421511062243337, 0.04432355841866812, 0.044455332723292176, 0.04460517873763415, 0.044769021931855786, 0.04494377799367271, 0.04512705132562239, 0.04531678818371069, 0.04529643766241787, 0.04523668391640694, 0.045141458393687266, 0.04501742724746192, 0.04487410284429708, 0.04472383356429832, 0.044581414313154946, 0.04446295742870654, 0.04438378872450203, 0.04435570296412579, 0.044350621755393956, 0.04433556225076924, 0.044311089239391935, 0.04427818539035614, 0.044238312833277324, 0.04419349751371602, 0.0441464316954284, 0.04410058277060119, 0.04406028025134393, 0.044030718860194155, 0.04401775457318376, 0.04402728990068806, 0.044064018233986216, 0.044129514747770805, 0.0442202858604488, 0.044327023796830456, 0.04443587832837848, 0.04453095713110883, 0.04459664913423488, 0.04462028180653116, 0.04459576811145321, 0.04452781836750778, 0.04443008099711438, 0.04431983526305019, 0.04421585781342662, 0.044136011505773405, 0.044093472846566256, 0.04409398910491819, 0.04413633804191018, 0.044215110622411145, 0.044323558418643584, 0.044455332723265725, 0.044605178737606076, 0.04476902193182626, 0.0449437779936419, 0.04512705132559043, 0.04531678818367765, 0.04520591514142299, 0.045068815234721504, 0.04491188271559732, 0.044743987216463804, 0.044577060894581466, 0.04442648698370705, 0.044310408315733046, 0.044246594329494425, 0.044246594329498706, 0.044310408315745266, 0.04442648698372584, 0.04457706089460513, 0.044743987216490956, 0.0449118827156269, 0.04506881523475272, 0.04520591514145529, 0.04531678818371069, 0.04564949342462517, 0.04598743579694372, 0.04632090138460775, 0.046640363912116636, 0.04693696411026877, 0.04720289442897913, 0.04743167178807682, 0.04761831017302998, 0.04775941555348046, 0.047853224367915705 ], "yaxis": "y3" }, { "fill": "tonexty", "legendgroup": "1", "line": { "color": "#DC3912", "width": 0 }, "mode": "lines", "name": "", "showlegend": false, "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 ], "xaxis": "x3", "y": [ 0.04577169361028728, 0.04995181194755026, 0.04994430333526369, 0.04993169426898311, 0.04991384624095148, 0.04989057252360829, 0.04986164548752391, 0.0498268061805156, 0.04978577625777289, 0.04973827233155489, 0.04968402276388281, 0.04962278685244876, 0.04955437625396054, 0.04947867834472484, 0.04939568102883138, 0.04930549826269206, 0.04920839526478379, 0.04910481201959478, 0.04899538327386397, 0.04888095278996127, 0.04876257922617035, 0.048641530760722335, 0.048519265618331635, 0.048397396183571854, 0.04827763557713641, 0.048161727524735104, 0.04805136296720693, 0.04794808976453501, 0.047853224367915705, 0.047899814020740464, 0.04789928235600587, 0.04785418627389411, 0.047768334155626375, 0.0476468035339967, 0.0474959697848552, 0.047323543025417324, 0.04713860239172237, 0.04695159265219232, 0.046774189594877086, 0.04661883503461961, 0.046497658265510264, 0.04642073075174226, 0.046394396834096296, 0.0464051801375032, 0.04643627568929295, 0.04648474280737096, 0.04654599970293831, 0.04661400151863255, 0.04668190775061872, 0.04674294165552407, 0.04679115768051203, 0.046821990976575176, 0.04683259107950785, 0.046662391342695016, 0.04650298016339082, 0.04635761532847296, 0.04622895985381125, 0.046119685470824845, 0.046033271219236956, 0.045975062065113016, 0.04595371589264294, 0.045982576856313, 0.046078013019926194, 0.046250611677594755, 0.046494986859459825, 0.04679126777258603, 0.04711570705027438, 0.047448434198408794, 0.04777536312139684, 0.04808728388635757, 0.04837847467715869, 0.0486455897346279, 0.04888689188227973, 0.04910173854296699, 0.049290231297946935, 0.04945296719363476, 0.049590853281873, 0.04970496112141828, 0.04979640752690166, 0.04986625405594906, 0.04991542201304118, 0.04994462278341133, 0.04577169361028728, 0.049941726343988475, 0.04990403112352053, 0.049841345772661964, 0.049753886485848664, 0.04964196865244388, 0.04950602046690271, 0.04934660172967269, 0.04916442885633156, 0.04896040737134243, 0.04873567341842959, 0.04849164604145954, 0.04823009212157349, 0.04795320580646062, 0.04766370390785452, 0.04736493794308092, 0.047061022262010005, 0.04675697657803778, 0.046458882278023014, 0.04617406068594266, 0.045911309394832206, 0.04568129001682229, 0.045497178146458886, 0.045375143455301276, 0.04533183399523849, 0.04534332793883433, 0.04537566305630601, 0.04542519570482514, 0.04548994653977772, 0.04556896576491273, 0.045660491847461626, 0.04576152470895421, 0.04586875031050287, 0.04597939558881787, 0.046091373066833585, 0.046203089301669366, 0.04631332353796941, 0.04642125108803776, 0.046526538936049196, 0.04662944840920958, 0.04673091464674822, 0.046832591079534615, 0.046821990976601634, 0.04679115768053765, 0.04674294165554833, 0.046681907750640995, 0.046614001518652255, 0.046545999702954866, 0.04648474280738381, 0.0464362756893017, 0.046405180137507614, 0.046394396834096296, 0.046390432193242064, 0.04637847288177952, 0.04635834072960056, 0.04632979569955164, 0.04629261111772412, 0.04624666081213249, 0.04619200440671716, 0.04612895862552975, 0.046058147694736436, 0.04598053603528008, 0.0458974621397773, 0.04581070762392632, 0.04572262184572462, 0.0456362275863799, 0.04555507141051255, 0.045482622671843206, 0.04542158987880834, 0.04537409447936573, 0.04534291325187333, 0.04533183399523849, 0.04534332793883369, 0.045375663056303604, 0.04542519570482025, 0.04548994653977006, 0.04556896576490232, 0.04566049184744871, 0.04576152470893921, 0.04586875031048616, 0.04597939558879968, 0.046091373066814136, 0.04620308930164876, 0.04631332353794772, 0.04642125108801507, 0.0465265389360255, 0.04662944840918488, 0.04673091464672252, 0.04683259107950785, 0.04677369066014813, 0.046701379979990784, 0.04661956987691425, 0.04653371273923493, 0.04645071620714057, 0.046378475062295504, 0.04632486084985463, 0.04629627167863625, 0.046296271678639034, 0.04632486084986274, 0.04637847506230848, 0.046450716207157614, 0.046533712739255266, 0.04661956987693711, 0.04670137998001548, 0.046773690660174075, 0.046832591079534615, 0.04700933922970307, 0.0471872779526278, 0.04736004817670881, 0.04752060520705291, 0.0476616469752261, 0.04777606688621205, 0.04785736638378253, 0.04789999354388499, 0.04789960002751519, 0.047853224367915705 ], "yaxis": "y3" }, { "legendgroup": "0", "line": { "color": "#3366CC", "width": 2 }, "mode": "lines", "name": "", "showlegend": false, "type": "scatter", "x": [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.78641065233872e-32, 0.00011061341403720279, 0.0004424471259515857, 0.0009954913404473088, 0.0017697362622285076, 0.0027651720959993896, 0.003981789046464056, 0.005419577318326742, 0.0070785271162915695, 0.008958628645062647, 0.011059872109344253, 0.013382247713840478, 0.015925745663255424, 0.018690356162293396, 0.02167606941565837, 0.02488287562805472, 0.028310765004186507, 0.03195972774875776, 0.0358297540664729, 0.03992083416203593, 0.04423295824015094, 0.04876611650552229, 0.05352029916285391, 0.05849549641685024, 0.06369169847221526, 0.06910889553365303, 0.07474707780586802, 0.08060623549356416, 0.08668635880144551, 0.09298743793421661, 0.09950946309658115, 0.10625242449324376, 0.11321631232890839, 0.12040111680827896, 0.12780682813606004, 0.13543343651695544, 0.14328093215566964, 0.15134930525690676, 0.1596385460253706, 0.16814864466576576, 0.17687959138279627, 0.18583137638116595, 0.19500398986557949, 0.20439742204074088, 0.21401166311135417, 0.22384670328212355, 0.23390253275775294, 0.2441791417429471, 0.25467652044240946, 0.2653946590608448, 0.27633354780295716, 0.2874931768734502, 0.298873536477029, 0.31047461681839694, 0.32229640810225824, 0.3343389005333176, 0.3466020843162784, 0.3590859496558456, 0.37179048675672305, 0.38471568582361443, 0.3978615370612247, 0.41122803067425767, 0.4248151568674172, 0.4386229058454081, 0.45265126781293363, 0.5306770315474453, 0.669935449671275, 0.7997737286437154, 0.9201882604762052, 1.0311754371801691, 1.1327316507670369, 1.2248532932482434, 1.3075367566352154, 1.380778432939387, 1.4445747141721863, 1.498921992345043, 1.5438166594693898, 1.5792551075566565, 1.6052337286182727, 1.6217489146656705, 1.628797057710279, 1.6263745497635296, 1.6144777828368522, 1.5931031489416783, 1.582782679197004, 1.6219374317096202, 1.661324036073798, 1.7009426002312626, 1.7407932321237372, 1.780876039692947, 1.821191130880617, 1.861738613628472, 1.9025185958782365, 1.9435311855716337, 1.9847764906503893, 2.0262546190562283, 2.0679656787308724, 2.1099097776160494, 2.1518043420080613, 2.193628504660482, 2.236132184240385, 2.279315221180799, 2.32317745591476, 2.3677187288752974, 2.412938880495439, 2.4588377512082222, 2.505415181446675, 2.5526710116438323, 2.600605082232724, 2.6492172336463797, 2.698507306317835, 2.748475140680118, 2.799120577166262, 2.8504434562093004, 2.9024436182422604, 2.9551209036981776, 3.0084751530100826, 3.062506206611005, 3.11721390493398, 3.1725980884120366, 3.2286585974782094, 3.285395272565524, 3.3428079541070184, 3.4008964825357193, 3.459660698284665, 3.5191004417868816, 3.5792155534753993, 3.640057803544132, 3.7089251932702716, 3.7909913120383854, 3.886257027315167, 3.9947232065672895, 4.116390717261448, 4.251260426864339, 4.3813272637449705, 4.513453131455661, 4.652232601999708, 4.797667128052979, 4.9497581622913716, 5.108507157390772, 6.0798989915146855, 8.075981082817616, 5.468004747100936, 5.550274126477132, 5.6335214038186106, 5.717747785242922, 5.802954476867614, 5.889142684810233, 5.976313615188329, 6.064468474119449, 6.143575205505661, 6.199878979337358, 6.256201129374643, 6.312542275230146, 6.3689030365165085, 6.425284032846362, 6.481685883832341, 6.538109209087089, 6.594554628223234, 6.651022760853418, 6.7075142265902725, 6.764029645046434, 6.820569635834536, 6.87713481856722, 6.9337258128571175, 7.0099715370517455, 7.093214573305474, 7.1774292379336, 7.262615307694072, 7.34877255934484, 7.435900769643837, 7.5239997153490075, 7.613069173218308, 7.703108920009662, 7.794118732481027, 7.886098387390346, 7.979047661495553, 8.072966331554602, 8.167854174325425, 8.263710966565979, 8.360536485034194, 8.458330506488018, 8.557092807685404, 8.656823165384283, 8.757521356342606, 8.859187157318313, 9.005695620173585, 9.247282145837147, 9.43801816112, 9.622359810991401, 9.829100780234127, 10.114918530675546, 10.390039940271905, 10.654487103522431, 10.908282114926402, 11.151447068983089, 11.384004060191739, 11.605975183051621, 11.879164804093186, 12.117084422657703, 12.303700409585389, 12.438911295518995, 12.522615611101255, 12.532241172844877, 12.460874180970555, 12.49685677279149, 12.561111410263662, 12.62951443242796, 12.702073458317315, 12.776564414238724, 12.898973797404969, 13.041622737326454, 13.191257550534319, 13.347882948702006, 13.511503643502975, 13.71425115960258, 13.942471851286959, 14.129801221849618, 14.276233422401642, 14.381762604054202, 14.446382917918417, 14.480002114074898, 14.60442435199933, 14.730991174033553, 14.859704853847585, 14.990567665111449, 15.123581881495154, 15.25874977666873, 15.39607362430218, 15.535555698065533, 15.677198271628807, 15.821003618662001, 15.966974012835152, 16.11511172781828, 16.268005782901838, 16.448090310476744, 16.658972179265692, 16.928789452983526, 17.300610305707732, 17.539645996869293, 17.781403438816884, 18.02590380137819, 18.27203128036097, 18.519152561437828, 18.76726355173608, 19.018056710307583, 19.274534641619766, 19.533888615585248, 19.79611016991822, 20.061190842332888, 20.32912217054347, 20.617434111287704, 20.864325003069023, 21.049958038878927, 21.17145352927545, 21.22796651466153, 21.32534146594614, 21.374872238876055, 21.55198560833366, 21.760480095084556, 21.97231497509962, 22.187489932233333, 22.40600465034014, 22.62785881327452, 22.853052104890903, 23.081584209043776, 23.313454809587565, 23.54866359037673, 23.787210235265754, 24.029094428109094, 24.27415422964457, 24.520787423642084, 24.768584309415203, 25.017545675798033, 25.267672311624715, 25.518965005729363, 25.77660330815823, 26.058281560372546, 26.36553259057447, 26.698057873518028, 27.06603872186314, 27.655111499616634, 28.04525345824062, 28.431094239351566, 29.22236667428236, 30.174835538604768, 30.55982090337833, 30.631486146954543, 30.95786432108565, 31.296838355033962, 31.641338445325125, 31.980719996689277, 32.21039429994485, 32.45295955247941, 32.70036084778816, 32.94990603438595, 33.25249273655701, 33.603465764604465, 34.037181801796365, 34.57772958868411, 35.01633240138321, 35.35228954973755, 35.58490034359086, 35.71346409278699, 36.046625424765026, 36.428107871820686, 36.81954680239458, 37.219137226559, 37.62566051359379, 38.03913161800205, 38.459172542205295, 38.883855881954275, 39.36007484402011, 39.99355479622891, 40.875701641562806, 41.55603451261464, 42.24034291818747, 42.928219963123595, 43.61507366751538, 44.301778418030814, 44.98922924872242, 45.679810818324654, 46.26151531841457, 46.86949195738578, 47.50377708374608, 48.16440704600308, 48.84728359952814, 49.5539132520279, 50.328965889000145, 51.12651911247707, 51.94657825997662, 52.789148669016726, 53.65423567711505, 54.55851579553151, 55.803461686616046, 57.501687485394015, 59.46182588577013, 61.74428618804689, 63.91717186208777, 65.96990067618124, 68.80823725126089, 71.18399394678752, 72.36780989017534, 72.3523865643677, 71.13668047127997, 71.43737494766329, 71.87826562161186, 72.2850329477298, 72.51347543177914, 72.69532747438915, 72.8398997453364, 72.97091127363235, 73.16388000551065, 73.46029079227566, 71.70708628585948, 71.7194384896588, 71.96169369450601, 72.39928880138221, 72.80948678606005, 73.15322194496795, 73.34087042330397, 73.46836463303121, 73.48526668398445, 73.49655142544547, 74.5268479961492, 74.48917425741004, 74.00021931309504, 73.9536573101679, 73.78775025012531, 73.7208479834924, 73.73791393050399, 73.83280336178882, 74.0012537244389, 72.40597573123023, 72.16269726816695, 72.27120396405103, 72.44526483843794, 72.59204154506318, 82.50093246192323, 71.92849578568382, 72.00269991401387, 72.06263281231247, 72.10843216283398, 72.14006662282071, 72.16587456407107, 72.21678227886484, 72.28942854626717, 72.38210962844238, 72.48220387943158, 72.58427911103438, 72.68835942228915, 72.86942769190213, 73.11370025868302, 73.31973335436112, 73.61492986496442, 73.92813083990619, 73.00061187361294, 71.40136533574143, 71.15669591001534, 71.10215814317964, 71.08325120851768, 71.10279035260176, 71.1310129571278, 71.1508837416341, 71.16807768469094, 71.18082958559413, 71.22432623756252, 71.28329945011959, 71.54585191038682, 71.8767932809918, 72.2519197853114, 72.67042509923286, 73.06833893355915, 73.13519122963388, 72.82362408885241, 72.3388834600615, 72.80955298405065, 74.37718311936806, 74.26543396857869, 73.99279839209629, 73.59254322990996, 73.115768968758, 72.65549352740939, 72.31940542823551, 72.33821630222552, 72.4489418307367, 72.6183513644774, 72.59165561920835, 72.47659812167495, 72.36340429127404, 72.25211122051856, 72.14213493768948, 72.03853822460178, 72.22715545491795, 72.50698035455754, 72.76084333726884, 72.96371977534199, 73.13351935264681, 73.26877417757927, 73.358388524111, 74.13626259900254, 73.61526178502902, 73.11822974543479, 72.78707792104862, 73.29477428953379, 74.77358325939394, 74.67573343975876, 74.2052617965704, 73.35900281196928, 72.33265021249541, 71.1317760416947, 69.59910017278806, 67.73206624398077, 65.66034692264046, 64.46329641858186, 63.33699034612404, 62.17572856756951, 61.079439334754035, 60.05225410267809, 59.0944059229745, 58.20612784727586, 57.38765292721492, 55.976851847532295, 54.20390693028078, 52.83264018223766, 51.87651282722075, 51.48722065448473, 51.1163657293808, 50.7575677514864, 50.41071644480195, 50.075795145410396, 49.75341692161107, 49.44425348624511, 52.15077594567632, 48.15562331621057, 47.68747567345957, 47.18596738165048, 46.65564431854456, 46.10247507658823, 45.54005118785147, 44.9552883246174, 44.35434127421581, 43.872936849666026, 43.49595463814369, 43.1246809710264, 42.7590779210765, 42.39549901160674, 42.031821189937936, 41.671029064021916, 41.33176535844436, 41.018943771765194, 40.73340532120577, 40.47525625783412, 40.24460283271816, 40.041551296925874, 39.86641008107013, 39.7199838270097, 39.602431206545326, 39.51418080078119, 39.4558825279419, 39.17346759233542, 38.62280279307472, 38.118124082002915, 37.6696858776865, 37.27556811312843, 36.904281614732945, 36.55294084743644, 36.22156314558421, 35.91010584124721, 35.618526266496275, 35.34678175340224, 35.094829634035946, 34.86262724046827, 34.64214275758417, 34.41740949171549, 34.27604684909857, 34.15626899309426, 34.029152734732584, 33.89600820759054, 33.76108968921364, 33.62145693759041, 33.47490526004655, 33.321425829507234, 33.16100981889758, 32.993658760987486, 32.82199788870549, 32.64804576651163, 32.47285652884185, 32.296064965773915, 32.11623447525839, 31.769292693284736, 31.29376448005087, 30.851921959543834, 30.445909240821656, 30.079968718263093, 29.76501623184863, 29.475824682628666, 29.212361363290842, 29.01803684055422, 29.00451160285564, 28.88195518316029, 28.66192637540235, 28.45074960022146, 28.259353120153175, 28.08140631723985, 27.91355804085848, 27.755784365159617, 27.60806136429374, 27.47036511241132, 27.3427742052402, 27.225508814005178, 27.11869984788519, 27.028903250711384, 26.95827776766239, 26.90532733695829, 26.860964647944705, 26.82343659447724, 26.79277302246194, 26.769003777804855, 26.75215870641209, 26.739439318397007, 26.72633094191031, 26.71277499532594, 26.79089642873292, 26.903820494561575, 26.94898168014489, 26.994227494778258, 27.039551269064926, 27.086183123975417, 27.09020524291715, 27.091954066649823, 27.094019541698543, 27.09525988727294, 27.095342112917383, 27.09427160953296, 27.092053768020776, 27.088791765383053, 27.085082332646802, 27.081028167422648, 27.07810941866245, 27.076780009732502, 27.075402280450927, 27.07397790018651, 27.072515613461416, 27.071824401090378, 27.071902264263603, 27.072720619652696, 27.07426751316572, 27.07653099071067, 27.079499098195637, 27.083159881528676, 27.087501386617838, 27.092511659371144, 27.098178745696682, 27.104490691502487, 27.111435542696608, 27.119049829285707, 27.12031240222274, 27.114394371603698, 27.14832345020805, 27.203450252079623, 27.279731387010354, 27.377363959895476, 27.48809237218367, 27.59938127295355, 27.719231077507803, 27.847561177751217, 27.983900306966145, 28.11674634661081, 28.24294863698041, 28.442276436829495, 28.772886385389604, 29.029824041793187, 29.21360329560342, 29.324738036383508, 29.40092750829657, 29.36418805112039, 29.289610401610982, 29.236927060124433, 29.203985951399066, 29.18708201286691, 29.17028768825424, 29.14993635243829, 29.128492463959997, 29.111146524964244, 29.09786867645905, 29.08714877247019, 29.078827841414746, 29.074224321325772, 29.076787371846596, 29.128183201344648, 29.13329516775594, 29.14571092315956, 29.165435995439275, 29.191563187738783, 29.21775251947787, 29.24810729110732, 29.282596428871056, 29.321188859012963, 29.363853507776962, 29.41055930140694, 29.46134560224231, 29.516316188370805, 29.575442405902766, 29.63869223145916, 29.706033641661058, 29.77846174811776, 29.868369117715023, 29.98439710701533, 30.131482585290627, 30.310498730289872, 30.52227090803349, 30.767624484541905, 31.047384825835476, 31.36237729793464, 31.78110780406787, 34.43587336203971, 35.52591644862677, 35.92220522599189, 36.13199715179187, 36.15690028364364, 36.010265236696505, 35.71473013504051, 35.196766227539875, 34.39524627484012, 33.31104839790552, 32.376441379058754, 31.604508570746138, 30.90564776169408, 30.17376979954834, 29.401956306341045, 28.592904770824795, 27.82317461584121, 27.163373023857105, 26.568721062774657, 25.96624893956764, 25.34816500379345, 24.712276715505357, 24.058703494210654, 23.387564759416566, 22.698979930630397, 21.993068427359333, 21.269949669110783, 20.555058173295226, 19.88179160325081, 19.243870802271598, 18.641107398329833, 18.073313019397794, 17.54029929344768, 17.04187784845191, 16.5233360872774, 15.34320409415578, 14.757610095544731, 14.19875506099325, 13.666502800947875, 13.160717125855335, 12.681261846162174, 12.228000772314992, 11.80079771476039, 11.39486713140458, 10.982296424935559, 10.561975179803921, 10.133903723090585, 9.698082381876318, 9.254511483241943, 8.803191354268291, 8.344122322036181, 7.877301568561767, 7.402724992599479, 6.8886737782040655, 6.202615561385328, 5.449513444853591, 4.757861983402332, 4.497250451652388, 4.353530864118453, 4.32353638033042, 4.3391056537558885, 4.354760046783065, 4.370498259305367, 4.386318991216221, 4.402220942409049, 4.4182028127772766, 4.434263302214322, 4.450401110613609, 4.466614937868562, 4.482903483872606, 4.4992654485191625, 4.515699531701657, 4.532204433313507, 4.548778853248142, 4.565421491398978, 4.582131047659443, 4.598906221922962, 4.615745714082954, 4.632648224032842, 4.649612451666051, 4.666637096876004, 4.683720859556123, 4.700862439599833, 4.718060536900556, 4.735313851351713, 4.752621082846729, 4.769980931279028, 4.787390593008471, 4.804839767319058, 4.82232575921894, 4.8398473907520625, 4.857403483962363, 4.874992860893802, 4.892614343590322, 4.910266403145591, 4.9279128369926735, 4.945529220645078, 4.9631143784089256, 4.980545179772345, 4.99768183592049, 5.014534596876879, 5.031103884928593, 5.047390122362722, 5.063393731466348, 5.079115134526555, 5.094554753830433, 5.109713011665067, 5.124590330317538, 5.139187132074937, 5.153503839224345, 5.167561449117893, 5.182189913082419, 5.197806672692274, 5.214391677212147, 5.231924875906722, 5.2497289592276735, 5.267492820646538, 5.2853495962717005, 5.30329684955177, 5.321332143935347, 5.339453042871042, 5.3576571098074535, 5.375941908193196, 5.394305001476869, 5.412743953107077, 5.431256326532427, 5.449839685201522, 5.46849159256297, 5.487209612065374, 5.505991307157341, 5.524802991756061, 5.543592357820515, 5.562357063784133, 5.58109544711178, 5.599805845268315, 5.618486595718598, 5.6371360359274885, 5.65575250335985, 5.674334335480542, 5.692879869754427, 5.711387443646362, 5.729846426135959, 5.748220154419767, 5.7665033993489825, 5.7847770943242365, 5.803064566585533, 5.8213605289261565, 5.839662491504428, 5.857967964478658, 5.876274458007164, 5.894579482248263, 5.912880547360274, 5.931175163501508, 5.949460840830288, 5.967735089504924, 5.98599541968374, 6.004239341525043, 6.022464365187153, 6.040668000828389, 6.058990867591544, 6.078701718155478, 6.099188017690059, 6.1201920052950785, 6.141706493104123, 6.163721776522225, 6.186228150954412, 6.20921591180572, 6.232675354481176, 6.256596774385818, 6.280970466924667, 6.305786727502763, 6.331035851525136, 6.356708134396811, 6.382793871522831, 6.409283358308219, 6.435793904867357, 6.460990126413106, 6.485961166302266, 6.508904678157833, 6.529411565323917, 6.54872453860778, 6.5668475216825675, 6.583784438221428, 6.598944331017525, 6.6206729515444165, 6.6422360503588544, 6.663629914606748, 6.684836761925466, 6.705840822352817, 6.726638766539476, 6.7472272651361065, 6.767602988793381, 6.787762608161967, 6.80770279389253, 6.827420216635742, 6.8469115470422715, 6.866173455762779, 6.885202613447942, 6.903995690748421, 6.922549358314891, 6.940860286798021, 6.958925146848473, 6.976740609116916, 6.994303344254021, 7.011610022910457, 7.028666988414935, 7.052374840015519, 7.077812742386287, 7.103318326146503, 7.1288799974377435, 7.1544861624015645, 7.180125227179539, 7.205785597913231, 7.2314556807442045, 7.25712388181403, 7.282778607264264, 7.308436076334688, 7.334201316272313, 7.360070918114927, 7.386029970913645, 7.412063841309577, 7.438161414501072, 7.464371511173502, 7.490854419355349, 7.517402217646073, 7.543990042417506, 7.570603481036368, 7.597228120869384, 7.623844626342966, 7.65042916745632, 7.676967622459595, 7.7034517456303435, 7.7299922143710385, 7.7565362484188745, 7.782559278430724, 7.807970034108323, 7.8327600670568085, 7.856920928881303, 7.880444171186935, 7.903321345578834, 7.925544003662122, 7.947103697041928, 7.967991977323375, 7.988200396111596, 8.007720505011713, 8.02654385562886, 8.045852187985195, 8.0725020010449, 8.101266533002516, 8.132268183958313, 8.166042777990324, 8.20283237483329, 8.242512314734944, 8.273231428058757, 8.302795928421224, 8.332185124767896, 8.361371173038568, 8.390326229173043, 8.419022449111116, 8.447454728256885, 8.475512599536675, 8.503162103452588, 8.53037608790464, 8.557127400792838, 8.583388890017172, 8.609133403477664, 8.634333789074304, 8.65896289470711, 8.682993568276087, 8.706433873142561, 8.729675454475878, 8.752791369403864, 8.775726994014668, 8.79842770439646, 8.820859702439417, 8.844071983841063, 8.868492891293364, 8.897766013833554, 8.936574128832621, 8.984357445215538, 9.040526243787202, 9.09606820837436, 9.148493907124877, 9.198344918424558, 9.239733584045986, 9.276737796142928, 9.309737760260054, 9.33878951575382, 9.366669163126947, 9.406908916803037, 9.445754954665214, 9.483129657241506, 9.518955405059957, 9.553154641142413, 9.58565489154474, 9.6163816412138, 9.645257031153779, 9.672203202368925, 9.702562293631303, 9.737977342473533, 9.776099304595686, 9.816689900795668, 9.859444143817882, 9.904057046406649, 9.950223621306371, 9.999426735785821, 10.050778071673722, 10.103826832002321, 10.158148888197992, 10.21520066409379, 10.27941545203242, 10.348143038512573, 10.419523645804762, 10.491518812964646, 10.558022511107776, 10.619158846787073, 10.675827492440888, 10.728288046289839, 10.776385560251923, 10.820868862164755, 10.935102058340277, 11.050374173107265, 11.170282863022264, 11.293651031696724, 11.422801221617133, 11.558771980117157, 11.697381791552717, 11.836421246257165, 11.973910211074456, 12.142144007743916, 12.434945980229724, 12.939823123804592, 13.303892130789293, 13.661237396037034, 14.004952445378931, 14.341357604899702, 14.674577189903962, 15.298251497928831, 16.225730960288974, 16.082284907798172, 15.261031425493798, 14.31806512319168, 13.118911316687521, 11.743185068473132, 10.751091193580896, 9.91687796958008, 9.294653995059546, 8.504802351347545, 7.979781151191109, 7.5243174824678345, 7.119620663274583, 6.922818249553639, 6.589378642789721, 6.288562105960343, 5.98302231610358, 5.671572374008765, 5.357114242490902, 5.065526135612954, 4.783491098246365, 4.483320945675875, 4.154633616042232, 3.9053251877731037, 3.672706494080415, 3.4687347749110935, 3.2749952795991746, 3.091495418789154, 2.9177250369387497, 2.7531739785058447, 2.5973320879481565, 2.4521900438921436, 2.328644166185902, 2.2616695121264785, 2.1616824159504016, 1.9981594960156708, 1.8239725907856403, 1.6412262922632006, 1.4593583057301465, 1.2850743624993803, 1.1295640670620533, 0.9746218727558023, 0.8160672799760041, 0.6928424252750968, 0.5828141611314407, 0.4885024657483279, 0.41051142820664716, 0.3480629579069698, 0.30010887155521515, 0.2655914008172821, 0.23869483983377177, 0.21394747614882287, 0.19098944464067427, 0.16953486974463175, 0.14957701809014753, 0.13117512940400775, 0.1143884434129857, 0.09927619984387141, 0.1007760945778648, 0.04147370967977278, 0.022799184399965363, 0.014029041924396551, 0.007857446376393675, 0.003827828972455258, 0.0014836209290848125, 0.00036825346278268134, 2.515779005097054e-05, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.656749130753321, 27.609404816522876, 87.74321942704952, 129.07803707065085, 214.00335030125336, 230.42684973590352, 257.10862670207, 340.2863395243034, 392.50178637256624, 495.9964739468421, 458.0405598488811, 446.48774099191576, 460.7546586378599, 464.6939813290365, 447.851189975442, 436.7925205683284, 426.63065158597817, 417.4616047295181, 412.0698359216256, 411.4781631956858, 412.3084467322971, 415.1567305592104, 419.0335624861257, 422.65291211640744, 426.5039256113442, 430.66467410802716, 435.16856189273716, 440.6981399567265, 442.68434166329325, 431.5181455419559, 430.6011707567141, 430.37184728464496, 431.6660439856479, 434.1418652529889, 436.4495053302503, 439.0456856099724, 443.50108065094827, 448.48487894396465, 454.03004101490245, 459.9578520463764, 466.1227118262086, 472.9524182856948, 480.6517776239143, 489.26794344001706, 498.8431609482318, 510.0553643243339, 541.0831306809024, 547.2905148238897, 573.85587508161, 574.2245860064243, 575.466119377829, 577.2376570989691, 579.0335566710556, 579.8048432109126, 581.0026278735696, 578.9273015374597, 581.4786637057509, 585.9860857973644, 588.4922416523705, 589.0041860692745, 588.8153242316848, 590.9021785930091, 594.0274497286782, 598.369646659598, 604.0616188777751, 613.3991152127625, 629.1045339258035, 639.998370280498, 641.6380582604679, 645.2715990201174, 646.2840246854325, 641.8936118473998, 644.9326138362969, 647.4665753681577, 649.4995315135619, 651.0332508161798, 652.0115336042674, 654.0475369466961, 661.3851671818547, 669.9564836456443, 678.6247862673262, 697.596767825079, 715.3702623511873, 733.229304114396, 733.4822109105786, 731.8255780014492, 735.7816418088406, 738.3444793693241, 758.1808274654335, 767.3924911226261, 748.3979008346711, 738.1025178196393, 663.3740847734412, 617.1977626715094, 586.3449834204702, 562.0847755158384, 540.5843867308972, 521.8237742607811, 502.2359623307601, 480.25663362698884, 457.026128826007, 437.6455451688501, 421.1029399647759, 405.7437504905076, 391.08960506157973, 377.2777052323604, 364.60242867599084, 352.2348965929157, 339.06120109586885, 329.42387470698446, 309.59887207828774, 296.5535750331116, 286.73863583904557, 277.7499705247044, 269.1626560199418, 260.9217573678219, 252.63195097717872, 244.40469121995613, 237.6476797204905, 230.29210072546897, 225.50898806346945, 218.14368380689967, 205.16484180397478, 197.93534960145627, 191.1108931052486, 184.74745820973163, 178.84467673480813, 172.73697519828434, 166.4854396032632, 162.57991538386415, 160.86364875023568, 156.599022613903, 149.73627396739806, 138.28973582663122, 130.28753819374273, 124.03542988954439, 118.23328520899472, 113.03385996443114, 108.15957576478829, 104.73584944834076, 105.17623824782427, 98.99697103391527, 84.50079272685282, 74.17176560437146, 66.08536580151082, 58.67505130810458, 52.73327015389797, 48.08797844907759, 36.77427938235881, 16.489646180874228, 4.081234795792039, 1.9248439980421427e-09, 2.0360360320559574e-05, 8.0657610875268e-05, 0.00018090279456772356, 0.000321105029457488, 0.0005012734336040851, 0.0007214171250671724, 0.0009815452219062162, 0.0012816668421809123, 0.0016217911039507745, 0.0020019271252752794, 0.002422084024214179, 0.002882270918826845, 0.003382496927173068, 0.003922771167312182, 0.004503102757304015, 18.52330301457413, 152.41709187568873, 282.5879205448859, 397.13613302572793, 530.0151402856845, 585.6715612153031, 549.048819458174, 525.0693229920059, 480.91686257583547, 474.1873291415396, 472.3979805350022, 470.02599543966454, 464.566948831735, 463.01499519996366, 464.2264945034456, 468.2771596001289, 476.9744200039704, 479.9671036353022, 480.9216538476217, 478.7015332523971, 470.8687499397401, 452.0762305460712, 426.46008579442037, 405.76683133839407, 388.8477744911795, 375.91577709921336, 364.5668457168092, 354.04928828416905, 344.36886159094024, 335.345702507217, 326.3782099932331, 318.8893208724422, 312.3073662239778, 306.4468731435794, 301.1000866104716, 296.2013859143077, 291.5436925138977, 287.0958538892149, 282.86322781355136, 278.84592407736744, 275.0685849466579, 271.51929425471866, 268.18848546895333, 265.1001979644855, 262.22147679130575, 258.84743422826176, 255.45092045411172, 252.27150023567842, 249.31151028737222, 246.73981120176614, 244.1047004553234, 241.86081029469443, 239.86705548803005, 237.98587778733489, 236.21227736199864, 234.54654995393201, 232.98899130504122, 231.49076825826674, 230.0431981177012, 228.65512278745766, 226.93333069681907, 225.75321465069425, 224.37835165783034, 223.02483448107938, 221.72914096743816, 220.49109578539958, 219.3104479178257, 218.18735366557635, 217.1219693295079, 216.11445121047984, 215.2380919902059, 214.39159969614295, 213.5185736380595, 212.7027033621385, 211.93561296027056, 211.06055072012398, 210.11180171280705, 209.11668568857664, 208.07568995057326, 206.97592360082731, 205.83038091561238, 204.80662733756716, 203.82664562907794, 202.8470707415927, 201.88315188046735, 200.9533540170444, 200.0689584543284, 199.22509806760473, 198.42175098781263, 197.6588953458916, 196.93658317420403, 196.60731010033734, 196.32830067397867, 195.8652072710521, 195.62272535858614, 195.40829368136244, 195.55035273378675, 195.65212117249166, 195.62202739893533, 195.21280392774628, 194.56975642919332, 194.09399408115945, 193.40613937920875, 192.58867325341205, 191.74123426818343, 190.66835477834024, 189.61222132499915, 188.35372353289046, 186.77378778587433, 186.21699927652375, 185.80884124341313, 187.80533539761646, 189.096739593044, 189.37464376316345, 188.5375296942338, 183.6188634304593, 179.89256448292247, 175.19570905454762, 169.39227318843956, 159.28737328637214, 147.9021178886833, 139.1050182100029, 135.47427485675598, 133.89213056486713, 131.0217207476293, 125.25588353332482, 116.26065455230611, 109.67850777485576, 107.96042315322211, 107.63892398643517, 105.19874930012107, 103.08854986292009, 98.20930048438656, 92.53039841197426, 89.56847948495393, 87.52360070536149, 85.7850694004103, 83.56446810669338, 79.46704594411942, 74.78875614648642, 70.21540470552397, 65.75216854089219, 60.48226981936247, 54.33125334512815, 59.53205593309913, 51.94907458671146, 40.69358938997309, 31.056299043615287, 22.67228388022286, 16.641333272691178, 12.226819167117261, 6.993524935887655, 0.7013236828771939, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "xaxis": "x2", "y": [ -0.0037195256267313916, -0.0036947287892198487, -0.0036699319517083063, -0.0036451351141967635, -0.0036203382766852206, -0.0035955414391736786, -0.0035707446016621357, -0.0035459477641505937, -0.003521150926639051, -0.003496354089127508, -0.0034715572516159656, -0.0034467604141044227, -0.00342196357659288, -0.003397166739081338, -0.003372369901569795, -0.003347573064058252, -0.0033227762265467097, -0.003297979389035167, -0.0032731825515236244, -0.003248385714012082, -0.003223588876500539, -0.0031987920389889967, -0.0031739952014774543, -0.0031491983639659114, -0.0031244015264543686, -0.003099604688942826, -0.0030748078514312837, -0.0030500110139197413, -0.0030252141764081984, -0.003000417338896656, -0.0029756205013851135, -0.0029508236638735707, -0.002926026826362028, -0.0029012299888504854, -0.0028764331513389425, -0.0028516363138274, -0.0028268394763158577, -0.002802042638804315, -0.0027772458012927724, -0.0027524489637812295, -0.002727652126269687, -0.0027028552887581447, -0.002678058451246602, -0.0026532616137350594, -0.002628464776223517, -0.002603667938711974, -0.0025788711012004312, -0.002554074263688889, -0.002529277426177346, -0.0025044805886658035, -0.002479683751154261, -0.002454886913642718, -0.002430090076131176, -0.002405293238619633, -0.0023804964011080905, -0.002355699563596548, -0.002330902726085005, -0.0023061058885734628, -0.0022813090510619203, -0.0022565122135503775, -0.0022317153760388346, -0.002206918538527292, -0.0021821217010157493, -0.0021573248635042073, -0.0021325280259926645, -0.0021077311884811216, -0.0020829343509695796, -0.0020581375134580368, -0.002033340675946494, -0.0020085438384349515, -0.0019837470009234086, -0.001958950163411866, -0.0019341533259003237, -0.0019093564883887809, -0.0018845596508772382, -0.0018597628133656958, -0.0018349659758541532, -0.0018101691383426103, -0.0017853723008310679, -0.0017605754633195254, -0.0017357786258079828, -0.00171098178829644, -0.0016861849507848975, -0.0016613881132733549, -0.001636591275761812, -0.0016117944382502696, -0.0015869976007387271, -0.0015622007632271845, -0.0015374039257156416, -0.0015126070882040992, -0.0014878102506925568, -0.001463013413181014, -0.0014382165756694713, -0.0014134197381579288, -0.0013886229006463862, -0.0013638260631348433, -0.001339029225623301, -0.0013142323881117585, -0.0012894355506002156, -0.001264638713088673, -0.0012398418755771305, -0.001215045038065588, -0.001190248200554045, -0.0011654513630425026, -0.0011406545255309602, -0.0011158576880194173, -0.0010910608505078747, -0.0010662640129963322, -0.0010414671754847898, -0.001016670337973247, -0.0009918735004617043, -0.0009670766629501619, -0.0009422798254386189, -0.0009174829879270765, -0.0008926861504155339, -0.0008678893129039914, -0.0008430924753924485, -0.000818295637880906, -0.0007934988003693636, -0.000768701962857821, -0.0007439051253462782, -0.0007191082878347356, -0.0006943114503231931, -0.0006695146128116502, -0.0006447177753001078, -0.0006199209377885653, -0.0005951241002770227, -0.0005703272627654799, -0.0005455304252539373, -0.0005207335877423949, -0.0004959367502308519, -0.00047113991271930945, -0.00044634307520776697, -0.0004215462376962245, -0.00039674940018468157, -0.00037195256267313946, -0.00034715572516159655, -0.0003223588876500537, -0.0002975620501385116, -0.00027276521262696867, -0.0002479683751154258, -0.00022317153760388367, -0.00019837470009234078, -0.00017357786258079792, -0.0001487810250692558, -0.0001239841875577129, -9.918735004617003e-05, -7.43905125346279e-05, -4.959367502308501e-05, -2.4796837511542876e-05, 0.0, 2.4796837511542876e-05, 4.959367502308501e-05, 7.43905125346279e-05, 9.918735004617077e-05, 0.0001239841875577129, 0.0001487810250692558, 0.00017357786258079865, 0.00019837470009234078, 0.00022317153760388367, 0.0002479683751154258, 0.00027276521262696867, 0.0002975620501385116, 0.0003223588876500537, 0.00034715572516159655, 0.00037195256267313946, 0.00039674940018468157, 0.0004215462376962245, 0.00044634307520776735, 0.00047113991271930945, 0.0004959367502308524, 0.0005207335877423952, 0.0005455304252539373, 0.0005703272627654802, 0.0005951241002770224, 0.0006199209377885653, 0.0006447177753001081, 0.0006695146128116502, 0.0006943114503231931, 0.0007191082878347361, 0.0007439051253462782, 0.000768701962857821, 0.0007934988003693639, 0.000818295637880906, 0.000843092475392449, 0.0008678893129039918, 0.0008926861504155339, 0.0009174829879270768, 0.0009422798254386189, 0.0009670766629501619, 0.0009918735004617047, 0.001016670337973247, 0.0010414671754847898, 0.0010662640129963327, 0.0010910608505078747, 0.0011158576880194175, 0.0011406545255309604, 0.0011654513630425026, 0.0011902482005540455, 0.0012150450380655877, 0.0012398418755771305, 0.0012646387130886734, 0.0012894355506002156, 0.0013142323881117585, 0.0013390292256233013, 0.0013638260631348433, 0.0013886229006463862, 0.001413419738157929, 0.0014382165756694713, 0.0014630134131810141, 0.001487810250692557, 0.0015126070882040992, 0.001537403925715642, 0.0015622007632271843, 0.0015869976007387271, 0.00161179443825027, 0.001636591275761812, 0.0016613881132733549, 0.001686184950784898, 0.00171098178829644, 0.0017357786258079828, 0.0017605754633195257, 0.0017853723008310679, 0.0018101691383426107, 0.0018349659758541536, 0.0018597628133656958, 0.0018845596508772387, 0.0019093564883887809, 0.0019341533259003237, 0.0019589501634118666, 0.0019837470009234086, 0.0020085438384349515, 0.0020333406759464943, 0.0020581375134580368, 0.0020829343509695796, 0.0021077311884811225, 0.0021325280259926645, 0.0021573248635042073, 0.0021821217010157493, 0.002206918538527292, 0.002231715376038835, 0.0022565122135503775, 0.0022813090510619203, 0.002306105888573463, 0.002330902726085005, 0.002355699563596548, 0.002380496401108091, 0.002405293238619633, 0.002430090076131176, 0.002454886913642719, 0.002479683751154261, 0.002504480588665804, 0.002529277426177346, 0.002554074263688889, 0.0025788711012004317, 0.002603667938711974, 0.002628464776223517, 0.00265326161373506, 0.002678058451246602, 0.0027028552887581447, 0.0027276521262696875, 0.0027524489637812295, 0.0027772458012927724, 0.002802042638804315, 0.0028268394763158577, 0.0028516363138274005, 0.0028764331513389425, 0.0029012299888504854, 0.0029260268263620283, 0.0029508236638735707, 0.0029756205013851127, 0.0030004173388966564, 0.0030252141764081984, 0.0030500110139197404, 0.003074807851431284, 0.003099604688942826, 0.0031244015264543686, 0.003149198363965912, 0.0031739952014774543, 0.0031987920389889963, 0.00322358887650054, 0.003248385714012082, 0.003273182551523624, 0.0032979793890351677, 0.0033227762265467097, 0.003347573064058252, 0.003372369901569796, 0.003397166739081338, 0.00342196357659288, 0.0034467604141044236, 0.0034715572516159656, 0.003496354089127508, 0.0035211509266390513, 0.0035459477641505937, 0.0035707446016621357, 0.0035955414391736777, 0.0036203382766852215, 0.0036451351141967635, 0.003669931951708306, 0.003694728789219849, 0.0037195256267313916, 0.0037443224642429336, 0.0037691193017544773, 0.0037939161392660193, 0.0038187129767775618, 0.003843509814289105, 0.0038683066518006475, 0.0038931034893121895, 0.003917900326823733, 0.003942697164335275, 0.003967494001846817, 0.003992290839358361, 0.004017087676869903, 0.004041884514381445, 0.004066681351892989, 0.004091478189404531, 0.0041162750269160735, 0.004141071864427617, 0.004165868701939159, 0.004190665539450701, 0.004215462376962243, 0.0042402592144737865, 0.004265056051985329, 0.004289852889496871, 0.004314649727008415, 0.004339446564519957, 0.004364243402031499, 0.004389040239543043, 0.004413837077054584, 0.004438633914566127, 0.00446343075207767, 0.0044882275895892125, 0.004513024427100755, 0.004537821264612298, 0.004562618102123841, 0.004587414939635382, 0.004612211777146926, 0.004637008614658468, 0.00466180545217001, 0.004686602289681554, 0.004711399127193096, 0.0047361959647046386, 0.004760992802216182, 0.004785789639727724, 0.004810586477239266, 0.00483538331475081, 0.004860180152262352, 0.004884976989773894, 0.004909773827285436, 0.00493457066479698, 0.004959367502308522, 0.004984164339820065, 0.005008961177331608, 0.00503375801484315, 0.005058554852354692, 0.005083351689866236, 0.005108148527377778, 0.00513294536488932, 0.005157742202400863, 0.005182539039912406, 0.005207335877423948, 0.0052321327149354915, 0.005256929552447034, 0.0052817263899585755, 0.00530652322747012, 0.005331320064981661, 0.005356116902493204, 0.005380913740004747, 0.005405710577516289, 0.005430507415027832, 0.005455304252539375, 0.0054801010900509175, 0.005504897927562459, 0.0055296947650740015, 0.005554491602585545, 0.005579288440097087, 0.00560408527760863, 0.005628882115120173, 0.005653678952631715, 0.005678475790143257, 0.005703272627654801, 0.005728069465166343, 0.005752866302677885, 0.005777663140189429, 0.005802459977700971, 0.005827256815212513, 0.0058520536527240565, 0.005876850490235599, 0.005901647327747141, 0.005926444165258685, 0.005951241002770227, 0.005976037840281769, 0.006000834677793313, 0.006025631515304854, 0.006050428352816397, 0.00607522519032794, 0.0061000220278394825, 0.006124818865351025, 0.0061496157028625665, 0.006174412540374111, 0.006199209377885652, 0.006224006215397195, 0.006248803052908738, 0.00627359989042028, 0.006298396727931823, 0.006323193565443366, 0.0063479904029549086, 0.00637278724046645, 0.006397584077977994, 0.006422380915489536, 0.006447177753001078, 0.006471974590512622, 0.006496771428024164, 0.006521568265535706, 0.00654636510304725, 0.006571161940558792, 0.006595958778070334, 0.006620755615581878, 0.0066455524530934194, 0.006670349290604962, 0.006695146128116506, 0.006719942965628048, 0.00674473980313959, 0.0067695366406511324, 0.006794333478162676, 0.006819130315674218, 0.00684392715318576, 0.006868723990697304, 0.0068935208282088455, 0.006918317665720388, 0.006943114503231931, 0.006967911340743474, 0.006992708178255016, 0.007017505015766559, 0.007042301853278102, 0.007067098690789643, 0.0070918955283011875, 0.007116692365812729, 0.0071414892033242715, 0.007166286040835815, 0.007191082878347357, 0.0072158797158589, 0.007240676553370443, 0.007265473390881985, 0.007290270228393527, 0.007315067065905071, 0.007339863903416613, 0.007364660740928155, 0.007389457578439698, 0.007414254415951241, 0.007439051253462783, 0.007463848090974325, 0.007488644928485869, 0.0075134417659974105, 0.007538238603508953, 0.007563035441020497, 0.007587832278532039, 0.007612629116043581, 0.007637425953555124, 0.007662222791066667, 0.007687019628578209, 0.0077118164660897525, 0.007736613303601295, 0.0077614101411128365, 0.007786206978624381, 0.007811003816135922, 0.007835800653647465, 0.007860597491159008, 0.00788539432867055, 0.007910191166182093, 0.007934988003693636, 0.007959784841205178, 0.007984581678716721, 0.008009378516228264, 0.008034175353739806, 0.00805897219125135, 0.00808376902876289, 0.008108565866274434, 0.008133362703785976, 0.008158159541297519, 0.008182956378809062, 0.008207753216320604, 0.008232550053832147, 0.00825734689134369, 0.008282143728855232, 0.008306940566366773, 0.008331737403878318, 0.00835653424138986, 0.008381331078901402, 0.008406127916412945, 0.008430924753924488, 0.00845572159143603, 0.008480518428947573, 0.008505315266459116, 0.008530112103970658, 0.008554908941482201, 0.008579705778993743, 0.008604502616505286, 0.00862929945401683, 0.008654096291528371, 0.008678893129039914, 0.008703689966551456, 0.008728486804062999, 0.00875328364157454, 0.008778080479086084, 0.008802877316597627, 0.008827674154109169, 0.008852470991620712, 0.008877267829132255, 0.008902064666643797, 0.008926861504155338, 0.008951658341666884, 0.008976455179178425, 0.009001252016689967, 0.009026048854201512, 0.009050845691713053, 0.009075642529224595, 0.009100439366736138, 0.009125236204247681, 0.009150033041759223, 0.009174829879270766, 0.00919962671678231, 0.009224423554293851, 0.009249220391805394, 0.009274017229316936, 0.00929881406682848, 0.00932361090434002, 0.009348407741851564, 0.009373204579363107, 0.009398001416874649, 0.009422798254386192, 0.009447595091897734, 0.009472391929409277, 0.00949718876692082, 0.009521985604432362, 0.009546782441943905, 0.009571579279455449, 0.00959637611696699, 0.009621172954478532, 0.009645969791990075, 0.009670766629501617, 0.009695563467013162, 0.009720360304524703, 0.009745157142036246, 0.009769953979547788, 0.00979475081705933, 0.009819547654570873, 0.009844344492082418, 0.00986914132959396, 0.009893938167105503, 0.009918735004617044, 0.009943531842128586, 0.00996832867964013, 0.009993125517151674, 0.010017922354663216, 0.010042719192174757, 0.0100675160296863, 0.010092312867197842, 0.010117109704709384, 0.010141906542220929, 0.010166703379732472, 0.010191500217244014, 0.010216297054755555, 0.010241093892267098, 0.01026589072977864, 0.010290687567290182, 0.010315484404801727, 0.01034028124231327, 0.010365078079824811, 0.010389874917336353, 0.010414671754847896, 0.010439468592359438, 0.010464265429870983, 0.010489062267382524, 0.010513859104894068, 0.01053865594240561, 0.010563452779917151, 0.010588249617428694, 0.01061304645494024, 0.01063784329245178, 0.010662640129963322, 0.010687436967474866, 0.010712233804986407, 0.010737030642497949, 0.010761827480009494, 0.010786624317521037, 0.010811421155032579, 0.01083621799254412, 0.010861014830055664, 0.010885811667567205, 0.010910608505078747, 0.010935405342590292, 0.010960202180101835, 0.010984999017613377, 0.011009795855124918, 0.011034592692636461, 0.011059389530148003, 0.011084186367659548, 0.01110898320517109, 0.011133780042682633, 0.011158576880194174, 0.011183373717705716, 0.01120817055521726, 0.011232967392728804, 0.011257764230240346, 0.011282561067751887, 0.01130735790526343, 0.011332154742774972, 0.011356951580286514, 0.011381748417798059, 0.011406545255309602, 0.011431342092821144, 0.011456138930332685, 0.011480935767844229, 0.01150573260535577, 0.011530529442867312, 0.011555326280378858, 0.0115801231178904, 0.011604919955401942, 0.011629716792913485, 0.011654513630425026, 0.011679310467936568, 0.011704107305448113, 0.011728904142959656, 0.011753700980471198, 0.01177849781798274, 0.011803294655494283, 0.011828091493005824, 0.01185288833051737, 0.011877685168028911, 0.011902482005540454, 0.011927278843051996, 0.011952075680563537, 0.01197687251807508, 0.012001669355586626, 0.012026466193098167, 0.012051263030609709, 0.012076059868121252, 0.012100856705632794, 0.012125653543144335, 0.012150450380655878, 0.012175247218167424, 0.012200044055678965, 0.012224840893190507, 0.01224963773070205, 0.012274434568213591, 0.012299231405725133, 0.012324028243236678, 0.012348825080748221, 0.012373621918259763, 0.012398418755771305, 0.012423215593282848, 0.01244801243079439, 0.012472809268305934, 0.012497606105817476, 0.01252240294332902, 0.01254719978084056, 0.012571996618352102, 0.012596793455863646, 0.01262159029337519, 0.012646387130886732, 0.012671183968398274, 0.012695980805909817, 0.012720777643421359, 0.0127455744809329, 0.012770371318444445, 0.012795168155955989, 0.01281996499346753, 0.012844761830979072, 0.012869558668490615, 0.012894355506002157, 0.012919152343513698, 0.012943949181025243, 0.012968746018536786, 0.012993542856048328, 0.01301833969355987, 0.013043136531071413, 0.013067933368582954, 0.0130927302060945, 0.013117527043606041, 0.013142323881117584, 0.013167120718629126, 0.013191917556140667, 0.01321671439365221, 0.013241511231163756, 0.013266308068675297, 0.013291104906186839, 0.013315901743698382, 0.013340698581209924, 0.013365495418721465, 0.013390292256233012, 0.013415089093744554, 0.013439885931256095, 0.013464682768767638, 0.01348947960627918, 0.013514276443790722, 0.013539073281302265, 0.01356387011881381, 0.013588666956325351, 0.013613463793836893, 0.013638260631348436, 0.013663057468859978, 0.01368785430637152, 0.013712651143883064, 0.013737447981394608, 0.01376224481890615, 0.013787041656417691, 0.013811838493929234, 0.013836635331440776, 0.01386143216895232, 0.013886229006463862, 0.013911025843975406, 0.013935822681486947, 0.013960619518998489, 0.013985416356510032, 0.014010213194021577, 0.014035010031533119, 0.01405980686904466, 0.014084603706556204, 0.014109400544067745, 0.014134197381579287, 0.01415899421909083, 0.014183791056602375, 0.014208587894113917, 0.014233384731625458, 0.014258181569137001, 0.014282978406648543, 0.014307775244160085, 0.01433257208167163, 0.014357368919183173, 0.014382165756694714, 0.014406962594206256, 0.0144317594317178, 0.01445655626922934, 0.014481353106740886, 0.014506149944252427, 0.01453094678176397, 0.014555743619275512, 0.014580540456787054, 0.014605337294298597, 0.014630134131810142, 0.014654930969321684, 0.014679727806833225, 0.014704524644344769, 0.01472932148185631, 0.014754118319367852, 0.014778915156879395, 0.01480371199439094, 0.014828508831902482, 0.014853305669414023, 0.014878102506925566, 0.014902899344437108, 0.01492769618194865, 0.014952493019460195, 0.014977289856971738, 0.01500208669448328, 0.015026883531994821, 0.015051680369506364, 0.015076477207017906, 0.015101274044529451, 0.015126070882040994, 0.015150867719552536, 0.015175664557064077, 0.01520046139457562, 0.015225258232087162, 0.015250055069598707, 0.015274851907110249, 0.015299648744621792, 0.015324445582133334, 0.015349242419644875, 0.015374039257156418, 0.01539883609466796, 0.015423632932179505, 0.015448429769691047, 0.01547322660720259, 0.015498023444714131, 0.015522820282225673, 0.015547617119737216, 0.015572413957248761, 0.015597210794760303, 0.015622007632271845, 0.015646804469783386, 0.01567160130729493, 0.015696398144806473, 0.015721194982318016, 0.01574599181982956, 0.0157707886573411, 0.015795585494852642, 0.015820382332364186, 0.015845179169875726, 0.015869976007387272, 0.015894772844898816, 0.015919569682410355, 0.0159443665199219, 0.015969163357433442, 0.015993960194944982, 0.016018757032456525, 0.016043553869968072, 0.01606835070747961, 0.016093147544991155, 0.0161179443825027, 0.016142741220014238, 0.01616753805752578, 0.016192334895037325, 0.016217131732548868, 0.01624192857006041, 0.01626672540757195, 0.016291522245083494, 0.016316319082595038, 0.01634111592010658, 0.016365912757618124, 0.016390709595129668, 0.016415506432641207, 0.01644030327015275, 0.016465100107664294, 0.016489896945175837, 0.01651469378268738, 0.01653949062019892, 0.016564287457710464, 0.016589084295222007, 0.016613881132733547, 0.01663867797024509, 0.016663474807756637, 0.016688271645268177, 0.01671306848277972, 0.016737865320291263, 0.016762662157802803, 0.016787458995314346, 0.01681225583282589, 0.016837052670337433, 0.016861849507848976, 0.016886646345360516, 0.01691144318287206, 0.016936240020383603, 0.016961036857895146, 0.01698583369540669, 0.017010630532918233, 0.017035427370429772, 0.017060224207941316, 0.01708502104545286, 0.017109817882964402, 0.017134614720475946, 0.017159411557987485, 0.01718420839549903, 0.017209005233010572, 0.017233802070522112, 0.017258598908033655, 0.017283395745545202, 0.017308192583056742, 0.017332989420568285, 0.01735778625807983, 0.017382583095591368, 0.01740737993310291, 0.017432176770614455, 0.017456973608125998, 0.01748177044563754, 0.01750656728314908, 0.017531364120660625, 0.017556160958172168, 0.01758095779568371, 0.017605754633195254, 0.017630551470706798, 0.017655348308218338, 0.01768014514572988, 0.017704941983241424, 0.017729738820752967, 0.01775453565826451, 0.01777933249577605, 0.017804129333287594, 0.017828926170799137, 0.017853723008310677, 0.01787851984582222, 0.017903316683333767, 0.017928113520845307, 0.01795291035835685, 0.017977707195868393, 0.018002504033379933, 0.018027300870891477, 0.018052097708403023, 0.018076894545914563, 0.018101691383426106, 0.01812648822093765, 0.01815128505844919, 0.018176081895960733, 0.018200878733472276, 0.01822567557098382, 0.018250472408495363, 0.018275269246006903, 0.018300066083518446, 0.01832486292102999, 0.018349659758541532, 0.018374456596053076, 0.01839925343356462, 0.01842405027107616, 0.018448847108587702, 0.018473643946099245, 0.01849844078361079, 0.018523237621122332, 0.018548034458633872, 0.018572831296145415, 0.01859762813365696, 0.0186224249711685, 0.01864722180868004, 0.01867201864619159, 0.018696815483703128, 0.01872161232121467, 0.018746409158726215, 0.018771205996237755, 0.018796002833749298, 0.01882079967126084, 0.018845596508772385, 0.018870393346283928, 0.018895190183795468, 0.01891998702130701, 0.018944783858818554, 0.018969580696330098, 0.01899437753384164, 0.019019174371353184, 0.019043971208864724, 0.019068768046376267, 0.01909356488388781, 0.019118361721399354, 0.019143158558910897, 0.019167955396422437, 0.01919275223393398, 0.019217549071445524, 0.019242345908957063, 0.019267142746468607, 0.019291939583980153, 0.019316736421491693, 0.019341533259003237, 0.01936633009651478, 0.01939112693402632, 0.019415923771537863, 0.019440720609049406, 0.01946551744656095, 0.019490314284072493, 0.019515111121584033, 0.019539907959095576, 0.01956470479660712, 0.019589501634118663, 0.019614298471630206, 0.01963909530914175, 0.01966389214665329, 0.019688688984164832, 0.019713485821676376, 0.01973828265918792, 0.019763079496699462, 0.019787876334211005, 0.019812673171722545, 0.01983747000923409, 0.019862266846745632, 0.01988706368425717, 0.01991186052176872, 0.01993665735928026, 0.0199614541967918, 0.019986251034303345, 0.020011047871814885, 0.020035844709326428, 0.020060641546837975, 0.020085438384349515, 0.020110235221861058, 0.0201350320593726, 0.02015982889688414, 0.020184625734395684, 0.020209422571907228, 0.02023421940941877, 0.020259016246930314, 0.020283813084441854, 0.020308609921953397, 0.02033340675946494, 0.020358203596976484, 0.020383000434488027, 0.02040779727199957, 0.02043259410951111, 0.020457390947022654, 0.020482187784534197, 0.020506984622045737, 0.020531781459557284, 0.020556578297068823, 0.020581375134580367, 0.02060617197209191, 0.02063096880960345, 0.020655765647114993, 0.02068056248462654, 0.02070535932213808, 0.020730156159649623, 0.020754952997161166, 0.020779749834672706, 0.02080454667218425, 0.020829343509695793, 0.020854140347207336, 0.02087893718471888, 0.02090373402223042, 0.020928530859741962, 0.020953327697253506, 0.02097812453476505, 0.021002921372276592, 0.021027718209788136, 0.021052515047299675, 0.02107731188481122, 0.021102108722322762, 0.021126905559834302, 0.02115170239734585, 0.02117649923485739, 0.02120129607236893, 0.021226092909880475, 0.021250889747392015, 0.021275686584903558, 0.021300483422415105, 0.021325280259926645, 0.021350077097438188, 0.02137487393494973, 0.02139967077246127, 0.021424467609972814, 0.02144926444748436, 0.0214740612849959, 0.021498858122507444, 0.021523654960018988, 0.021548451797530527, 0.02157324863504207, 0.021598045472553614, 0.021622842310065157, 0.0216476391475767, 0.02167243598508824, 0.021697232822599784, 0.021722029660111327, 0.021746826497622867, 0.021771623335134414, 0.021796420172645957, 0.021821217010157497, 0.02184601384766904, 0.021870810685180583, 0.021895607522692123, 0.02192040436020367, 0.02194520119771521, 0.021969998035226753, 0.021994794872738296, 0.022019591710249836, 0.02204438854776138, 0.022069185385272926, 0.022093982222784466, 0.02211877906029601, 0.022143575897807553, 0.022168372735319092, 0.022193169572830636, 0.02221796641034218, 0.022242763247853722, 0.022267560085365266, 0.022292356922876806, 0.02231715376038835, 0.022341950597899892, 0.022366747435411432, 0.02239154427292298, 0.022416341110434522, 0.022441137947946062, 0.022465934785457605, 0.02249073162296915, 0.022515528460480688, 0.022540325297992235, 0.022565122135503775, 0.022589918973015318, 0.02261471581052686, 0.0226395126480384, 0.022664309485549945, 0.02268910632306149, 0.02271390316057303, 0.022738699998084574, 0.022763496835596118, 0.022788293673107658, 0.0228130905106192, 0.022837887348130744, 0.022862684185642287, 0.022887481023153827, 0.02291227786066537, 0.022937074698176917, 0.022961871535688457, 0.0229866683732, 0.02301146521071154, 0.023036262048223087, 0.023061058885734623, 0.02308585572324617, 0.023110652560757717, 0.023135449398269253, 0.0231602462357808, 0.02318504307329234, 0.023209839910803883, 0.02323463674831543, 0.02325943358582697, 0.023284230423338513, 0.023309027260850053, 0.023333824098361596, 0.023358620935873136, 0.023383417773384683, 0.023408214610896226, 0.023433011448407766, 0.023457808285919313, 0.02348260512343085, 0.023507401960942396, 0.02353219879845394, 0.02355699563596548, 0.023581792473477026, 0.023606589310988565, 0.02363138614850011, 0.02365618298601165, 0.023680979823523192, 0.02370577666103474, 0.02373057349854628, 0.023755370336057822, 0.02378016717356936, 0.02380496401108091, 0.023829760848592445, 0.02385455768610399, 0.023879354523615535, 0.023904151361127075, 0.02392894819863862, 0.02395374503615016, 0.023978541873661705, 0.02400333871117325, 0.024028135548684788, 0.024052932386196334, 0.024077729223707874, 0.024102526061219418, 0.024127322898730957, 0.024152119736242504, 0.024176916573754047, 0.024201713411265587, 0.02422651024877713, 0.02425130708628867, 0.024276103923800217, 0.024300900761311757, 0.0243256975988233, 0.024350494436334847, 0.024375291273846383, 0.02440008811135793, 0.02442488494886947, 0.024449681786381013, 0.02447447862389256, 0.0244992754614041, 0.024524072298915643, 0.024548869136427183, 0.024573665973938726, 0.024598462811450266, 0.024623259648961813, 0.024648056486473356, 0.024672853323984896, 0.024697650161496443, 0.02472244699900798, 0.024747243836519526, 0.02477204067403107, 0.02479683751154261, 0.024821634349054156, 0.024846431186565696, 0.02487122802407724, 0.02489602486158878, 0.024920821699100322, 0.02494561853661187, 0.02497041537412341, 0.024995212211634952, 0.025020009049146492, 0.02504480588665804, 0.025069602724169575, 0.02509439956168112, 0.02511919639919267, 0.025143993236704205, 0.02516879007421575, 0.02519358691172729, 0.025218383749238835, 0.02524318058675038, 0.02526797742426192, 0.025292774261773465, 0.025317571099285004, 0.025342367936796548, 0.025367164774308087, 0.025391961611819634, 0.025416758449331178, 0.025441555286842717, 0.025466352124354264, 0.0254911489618658, 0.025515945799377347, 0.025540742636888887, 0.02556553947440043, 0.025590336311911977, 0.025615133149423517, 0.02563992998693506, 0.0256647268244466, 0.025689523661958143, 0.02571432049946969, 0.02573911733698123, 0.025763914174492773, 0.025788711012004313, 0.02581350784951586, 0.025838304687027396, 0.025863101524538943, 0.025887898362050486, 0.025912695199562026, 0.025937492037073573, 0.025962288874585113, 0.025987085712096656, 0.026011882549608203, 0.02603667938711974, 0.026061476224631286, 0.026086273062142826, 0.02611106989965437, 0.02613586673716591, 0.026160663574677456, 0.026185460412189, 0.02621025724970054, 0.026235054087212082, 0.026259850924723622, 0.02628464776223517, 0.02630944459974671, 0.02633424143725825, 0.0263590382747698, 0.026383835112281335, 0.02640863194979288, 0.02643342878730442, 0.026458225624815965, 0.02648302246232751, 0.02650781929983905, 0.026532616137350595, 0.026557412974862134, 0.026582209812373678, 0.026607006649885218, 0.026631803487396764, 0.026656600324908308, 0.026681397162419847, 0.026706193999931394, 0.02673099083744293, 0.026755787674954477, 0.026780584512466017, 0.02680538134997756, 0.026830178187489107, 0.026854975025000647, 0.02687977186251219, 0.02690456870002373, 0.026929365537535277, 0.02695416237504682, 0.02697895921255836, 0.027003756050069903, 0.027028552887581443, 0.02705334972509299, 0.02707814656260453, 0.027102943400116073, 0.02712774023762762, 0.027152537075139156, 0.027177333912650703, 0.027202130750162243, 0.027226927587673786, 0.027251724425185333, 0.027276521262696873, 0.027301318100208416, 0.027326114937719956, 0.0273509117752315, 0.02737570861274304, 0.027400505450254586, 0.02742530228776613, 0.02745009912527767, 0.027474895962789216, 0.027499692800300752, 0.0275244896378123, 0.02754928647532384, 0.027574083312835382, 0.02759888015034693, 0.02762367698785847, 0.02764847382537001, 0.02767327066288155, 0.027698067500393095, 0.02772286433790464, 0.02774766117541618, 0.027772458012927725, 0.027797254850439265, 0.02782205168795081, 0.027846848525462348, 0.027871645362973894, 0.027896442200485438, 0.027921239037996978, 0.027946035875508524, 0.027970832713020064, 0.027995629550531607, 0.028020426388043147, 0.02804522322555469, 0.028070020063066237, 0.028094816900577777, 0.02811961373808932, 0.02814441057560086, 0.028169207413112407, 0.02819400425062395, 0.02821880108813549, 0.028243597925647033, 0.028268394763158573, 0.02829319160067012, 0.02831798843818166, 0.028342785275693203, 0.02836758211320475, 0.028392378950716286, 0.028417175788227833, 0.028441972625739373, 0.028466769463250916, 0.028491566300762463, 0.028516363138274003, 0.028541159975785546, 0.028565956813297086, 0.028590753650808633, 0.02861555048832017, 0.028640347325831716, 0.02866514416334326, 0.0286899410008548, 0.028714737838366346, 0.028739534675877886, 0.02876433151338943, 0.02878912835090097, 0.028813925188412512, 0.02883872202592406, 0.0288635188634356, 0.028888315700947142, 0.02891311253845868, 0.02893790937597023, 0.02896270621348177, 0.02898750305099331, 0.029012299888504855, 0.029037096726016395, 0.02906189356352794, 0.02908669040103948, 0.029111487238551025, 0.02913628407606257, 0.029161080913574108, 0.029185877751085654, 0.029210674588597194, 0.029235471426108738, 0.029260268263620284, 0.029285065101131824, 0.029309861938643367, 0.029334658776154907, 0.02935945561366645, 0.02938425245117799, 0.029409049288689537, 0.02943384612620108, 0.02945864296371262, 0.029483439801224167, 0.029508236638735703, 0.02953303347624725, 0.02955783031375879, 0.029582627151270333, 0.02960742398878188, 0.02963222082629342, 0.029657017663804963, 0.029681814501316503, 0.029706611338828046, 0.029731408176339593, 0.029756205013851133, 0.029781001851362676, 0.029805798688874216, 0.029830595526385763, 0.0298553923638973, 0.029880189201408846, 0.02990498603892039, 0.02992978287643193, 0.029954579713943476, 0.029979376551455016, 0.03000417338896656, 0.0300289702264781, 0.030053767063989642, 0.03007856390150119, 0.03010336073901273, 0.030128157576524272, 0.030152954414035812, 0.03017775125154736, 0.030202548089058902, 0.03022734492657044, 0.03025214176408199, 0.030276938601593525, 0.03030173543910507, 0.03032653227661661, 0.030351329114128155, 0.0303761259516397, 0.03040092278915124, 0.030425719626662785, 0.030450516464174324, 0.030475313301685868, 0.030500110139197414, 0.030524906976708954, 0.030549703814220498, 0.030574500651732037, 0.030599297489243584, 0.03062409432675512, 0.030648891164266667, 0.03067368800177821, 0.03069848483928975, 0.030723281676801297, 0.030748078514312837, 0.03077287535182438, 0.03079767218933592, 0.030822469026847463, 0.03084726586435901, 0.03087206270187055, 0.030896859539382093, 0.030921656376893633, 0.03094645321440518, 0.030971250051916723, 0.030996046889428263, 0.031020843726939806, 0.031045640564451346, 0.031070437401962893, 0.031095234239474433, 0.031120031076985976, 0.031144827914497523, 0.03116962475200906, 0.031194421589520606, 0.031219218427032146, 0.03124401526454369, 0.03126881210205523, 0.03129360893956677, 0.03131840577707832, 0.03134320261458986, 0.031367999452101405, 0.031392796289612945, 0.031417593127124485, 0.03144238996463603, 0.03146718680214757, 0.03149198363965912, 0.03151678047717066, 0.0315415773146822, 0.03156637415219374, 0.031591170989705285, 0.03161596782721683, 0.03164076466472837, 0.03166556150223992, 0.03169035833975145, 0.031715155177263, 0.031739952014774545, 0.031764748852286084, 0.03178954568979763, 0.03181434252730917, 0.03183913936482071, 0.03186393620233225, 0.0318887330398438, 0.031913529877355344, 0.031938326714866884, 0.031963123552378424, 0.031987920389889964, 0.03201271722740151, 0.03203751406491305, 0.0320623109024246, 0.032087107739936144, 0.03211190457744768, 0.03213670141495922, 0.03216149825247076, 0.03218629508998231, 0.03221109192749386, 0.0322358887650054, 0.032260685602516936, 0.032285482440028476, 0.03231027927754002, 0.03233507611505156, 0.03235987295256311, 0.03238466979007465, 0.03240946662758619, 0.032434263465097736, 0.032459060302609276, 0.03248385714012082, 0.03250865397763236, 0.0325334508151439, 0.03255824765265545, 0.03258304449016699, 0.032607841327678536, 0.032632638165190075, 0.032657435002701615, 0.03268223184021316, 0.0327070286777247, 0.03273182551523625, 0.03275662235274779, 0.032781419190259335, 0.03280621602777087, 0.032831012865282415, 0.03285580970279396, 0.0328806065403055, 0.03290540337781705, 0.03293020021532859, 0.03295499705284013, 0.032979793890351675, 0.033004590727863214, 0.03302938756537476, 0.0330541844028863, 0.03307898124039784, 0.03310377807790938, 0.03312857491542093, 0.033153371752932474, 0.033178168590444014, 0.033202965427955554, 0.033227762265467094, 0.03325255910297864, 0.03327735594049018, 0.03330215277800173, 0.033326949615513274, 0.03335174645302481, 0.033376543290536353, 0.03340134012804789, 0.03342613696555944, 0.03345093380307099, 0.03347573064058253, 0.033500527478094067, 0.033525324315605606, 0.03355012115311715, 0.03357491799062869, 0.03359971482814024, 0.03362451166565178, 0.03364930850316332, 0.033674105340674866, 0.033698902178186406, 0.03372369901569795, 0.03374849585320949, 0.03377329269072103, 0.03379808952823258, 0.03382288636574412, 0.033847683203255666, 0.033872480040767206, 0.03389727687827875, 0.03392207371579029, 0.03394687055330183, 0.03397166739081338, 0.03399646422832492, 0.034021261065836465, 0.034046057903348005, 0.034070854740859545, 0.03409565157837109, 0.03412044841588263, 0.03414524525339418, 0.03417004209090572, 0.03419483892841726, 0.034219635765928805, 0.034244432603440345, 0.03426922944095189, 0.03429402627846343, 0.03431882311597497, 0.03434361995348651, 0.03436841679099806, 0.034393213628509604, 0.034418010466021144, 0.03444280730353269, 0.034467604141044224, 0.03449240097855577, 0.03451719781606731, 0.03454199465357886, 0.034566791491090404, 0.034591588328601944, 0.034616385166113484, 0.03464118200362502, 0.03466597884113657, 0.03469077567864812, 0.03471557251615966, 0.0347403693536712, 0.034765166191182736, 0.03478996302869428, 0.03481475986620582, 0.03483955670371737, 0.03486435354122891, 0.03488915037874045, 0.034913947216251996, 0.034938744053763536, 0.03496354089127508, 0.03498833772878663, 0.03501313456629816, 0.03503793140380971, 0.03506272824132125, 0.035087525078832796, 0.035112321916344336, 0.03513711875385588, 0.03516191559136742, 0.03518671242887896, 0.03521150926639051, 0.03523630610390205, 0.035261102941413595, 0.035285899778925135, 0.035310696616436675, 0.03533549345394822, 0.03536029029145976, 0.03538508712897131, 0.03540988396648285, 0.03543468080399439, 0.035459477641505935, 0.035484274479017475, 0.03550907131652902, 0.03553386815404056, 0.0355586649915521, 0.03558346182906364, 0.03560825866657519, 0.035633055504086734, 0.035657852341598274, 0.03568264917910982, 0.035707446016621354, 0.0357322428541329, 0.03575703969164444, 0.03578183652915599, 0.035806633366667534, 0.035831430204179074, 0.035856227041690614, 0.035881023879202154, 0.0359058207167137, 0.03593061755422525, 0.03595541439173679, 0.03598021122924833, 0.03600500806675987, 0.03602980490427141, 0.03605460174178295, 0.0360793985792945, 0.03610419541680605, 0.03612899225431758, 0.036153789091829126, 0.036178585929340666, 0.03620338276685221, 0.03622817960436376, 0.0362529764418753, 0.03627777327938684, 0.03630257011689838, 0.036327366954409926, 0.036352163791921466, 0.03637696062943301, 0.03640175746694455, 0.03642655430445609, 0.03645135114196764, 0.03647614797947918, 0.036500944816990726, 0.036525741654502265, 0.036550538492013805, 0.03657533532952535, 0.03660013216703689, 0.03662492900454844, 0.03664972584205998, 0.03667452267957152, 0.036699319517083065, 0.036724116354594605, 0.03674891319210615, 0.03677371002961769, 0.03679850686712924, 0.03682330370464077, 0.03684810054215232, 0.036872897379663865, 0.036897694217175404, 0.03692249105468695, 0.03694728789219849, 0.03697208472971003, 0.03699688156722157, 0.03702167840473312, 0.037046475242244664, 0.037071272079756204, 0.037096068917267744, 0.037120865754779284, 0.03714566259229083, 0.03717045942980238, 0.03719525626731392, 0.03722005310482546, 0.037244849942337, 0.03726964677984854, 0.03729444361736008, 0.03731924045487163, 0.03734403729238318, 0.03736883412989471, 0.037393630967406256, 0.037418427804917796, 0.03744322464242934, 0.03746802147994089, 0.03749281831745243, 0.03751761515496397, 0.03754241199247551, 0.037567208829987056, 0.037592005667498596, 0.03761680250501014, 0.03764159934252168, 0.03766639618003322, 0.03769119301754477, 0.03771598985505631, 0.037740786692567856, 0.037765583530079395, 0.037790380367590935, 0.03781517720510248, 0.03783997404261402, 0.03786477088012557, 0.03788956771763711, 0.037914364555148655, 0.037939161392660195, 0.037963958230171735, 0.03798875506768328, 0.03801355190519482, 0.03803834874270637, 0.03806314558021791, 0.03808794241772945, 0.038112739255240995, 0.038137536092752534, 0.03816233293026408, 0.03818712976777562, 0.03821192660528716, 0.0382367234427987, 0.03826152028031025, 0.038286317117821794, 0.038311113955333334, 0.038335910792844874, 0.038360707630356414, 0.03838550446786796, 0.03841030130537951, 0.03843509814289105, 0.038459894980402594, 0.03848469181791413, 0.038509488655425674, 0.03853428549293721, 0.03855908233044876, 0.03858387916796031, 0.03860867600547185, 0.038633472842983387, 0.038658269680494926, 0.03868306651800647, 0.03870786335551802, 0.03873266019302956, 0.0387574570305411, 0.03878225386805264, 0.038807050705564186, 0.038831847543075726, 0.03885664438058727, 0.03888144121809881, 0.03890623805561035, 0.0389310348931219, 0.03895583173063344, 0.038980628568144986, 0.039005425405656526, 0.039030222243168065, 0.03905501908067961, 0.03907981591819115, 0.0391046127557027, 0.03912940959321424, 0.039154206430725785, 0.039179003268237325, 0.039203800105748865, 0.03922859694326041, 0.03925339378077195, 0.0392781906182835, 0.03930298745579504, 0.03932778429330658, 0.039352581130818125, 0.039377377968329665, 0.03940217480584121, 0.03942697164335275, 0.03945176848086429, 0.03947656531837583, 0.03950136215588738, 0.039526158993398924, 0.039550955830910464, 0.03957575266842201, 0.039600549505933544, 0.03962534634344509, 0.03965014318095664, 0.03967494001846818, 0.039699736855979724, 0.039724533693491264, 0.039749330531002804, 0.03977412736851434, 0.03979892420602589, 0.03982372104353744, 0.03984851788104898, 0.03987331471856052, 0.039898111556072056, 0.0399229083935836, 0.03994770523109515, 0.03997250206860669, 0.03999729890611823, 0.04002209574362977, 0.040046892581141316, 0.040071689418652856, 0.0400964862561644, 0.04012128309367595, 0.04014607993118748, 0.04017087676869903, 0.04019567360621057, 0.040220470443722116, 0.040245267281233656, 0.0402700641187452, 0.04029486095625674, 0.04031965779376828, 0.04034445463127983, 0.04036925146879137, 0.040394048306302915, 0.040418845143814455, 0.040443641981325995, 0.04046843881883754, 0.04049323565634908, 0.04051803249386063, 0.04054282933137217, 0.04056762616888371, 0.040592423006395255, 0.040617219843906795, 0.04064201668141834, 0.04066681351892988, 0.04069161035644142, 0.04071640719395297, 0.04074120403146451, 0.040766000868976054, 0.040790797706487594, 0.04081559454399914, 0.040840391381510674, 0.04086518821902222, 0.04088998505653377, 0.04091478189404531, 0.040939578731556854, 0.040964375569068394, 0.040989172406579934, 0.041013969244091474, 0.04103876608160302, 0.04106356291911457, 0.04108835975662611, 0.04111315659413765, 0.04113795343164919, 0.04116275026916073, 0.04118754710667228, 0.04121234394418382, 0.04123714078169537, 0.0412619376192069, 0.041286734456718446, 0.041311531294229986, 0.04133632813174153, 0.04136112496925308, 0.04138592180676462, 0.04141071864427616, 0.0414355154817877, 0.041460312319299246, 0.041485109156810786, 0.04150990599432233, 0.04153470283183387, 0.04155949966934541, 0.04158429650685696, 0.0416090933443685, 0.041633890181880046, 0.041658687019391585, 0.041683483856903125, 0.04170828069441467, 0.04173307753192621, 0.04175787436943776, 0.0417826712069493, 0.04180746804446084, 0.041832264881972385, 0.041857061719483925, 0.04188185855699547, 0.04190665539450701, 0.04193145223201856, 0.0419562490695301, 0.04198104590704164, 0.042005842744553185, 0.042030639582064724, 0.04205543641957627, 0.04208023325708781, 0.04210503009459935, 0.0421298269321109, 0.04215462376962244, 0.042179420607133984, 0.042204217444645524, 0.042229014282157064, 0.042253811119668604, 0.04227860795718015, 0.0423034047946917, 0.04232820163220324, 0.04235299846971478, 0.04237779530722632, 0.04240259214473786, 0.04242738898224941, 0.04245218581976095, 0.0424769826572725, 0.04250177949478403, 0.042526576332295576, 0.042551373169807116, 0.04257617000731866, 0.04260096684483021, 0.04262576368234175, 0.04265056051985329, 0.04267535735736483, 0.042700154194876376, 0.042724951032387916, 0.04274974786989946, 0.042774544707411, 0.04279934154492254, 0.04282413838243409, 0.04284893521994563, 0.042873732057457176, 0.04289852889496872, 0.042923325732480255, 0.0429481225699918, 0.04297291940750334, 0.04299771624501489, 0.04302251308252643, 0.043047309920037975, 0.043072106757549515, 0.043096903595061055, 0.0431217004325726, 0.04314649727008414, 0.04317129410759569, 0.04319609094510723, 0.04322088778261877, 0.043245684620130315, 0.043270481457641854, 0.0432952782951534, 0.04332007513266494, 0.04334487197017648, 0.04336966880768803, 0.04339446564519957, 0.043419262482711114, 0.043444059320222654, 0.043468856157734194, 0.043493652995245734, 0.04351844983275728, 0.04354324667026883, 0.04356804350778037, 0.043592840345291914, 0.04361763718280345, 0.043642434020314994, 0.04366723085782654, 0.04369202769533808, 0.04371682453284963, 0.04374162137036117, 0.04376641820787271, 0.043791215045384246, 0.04381601188289579, 0.04384080872040734, 0.04386560555791888, 0.04389040239543042, 0.04391519923294196, 0.043939996070453506, 0.043964792907965046, 0.04398958974547659, 0.04401438658298813, 0.04403918342049967, 0.04406398025801122, 0.04408877709552276, 0.044113573933034306, 0.04413837077054585, 0.044163167608057385, 0.04418796444556893, 0.04421276128308047, 0.04423755812059202, 0.04426235495810356, 0.044287151795615105, 0.044311948633126645, 0.044336745470638185, 0.04436154230814973, 0.04438633914566127, 0.04441113598317282, 0.04443593282068436, 0.0444607296581959, 0.044485526495707445, 0.044510323333218985, 0.04453512017073053, 0.04455991700824207, 0.04458471384575361, 0.04460951068326516, 0.0446343075207767, 0.044659104358288244, 0.044683901195799784, 0.04470869803331133, 0.044733494870822864, 0.04475829170833441, 0.04478308854584596, 0.0448078853833575, 0.044832682220869044, 0.044857479058380584, 0.044882275895892124, 0.04490707273340367, 0.04493186957091521, 0.04495666640842676, 0.0449814632459383, 0.04500626008344984, 0.045031056920961376, 0.04505585375847292, 0.04508065059598447, 0.04510544743349601, 0.04513024427100755, 0.04515504110851909, 0.045179837946030636, 0.045204634783542176, 0.04522943162105372, 0.04525422845856527, 0.0452790252960768, 0.04530382213358835, 0.04532861897109989, 0.045353415808611436, 0.04537821264612298, 0.04540300948363452, 0.04542780632114606, 0.0454526031586576, 0.04547739999616915, 0.04550219683368069, 0.045526993671192235, 0.045551790508703775, 0.045576587346215315, 0.04560138418372686, 0.0456261810212384, 0.04565097785874995, 0.04567577469626149, 0.04570057153377303, 0.045725368371284575, 0.045750165208796115, 0.04577496204630766, 0.0457997588838192, 0.04582455572133074, 0.04584935255884229, 0.04587414939635383, 0.045898946233865374, 0.045923743071376914, 0.04594853990888846, 0.045973336746399994, 0.04599813358391154, 0.04602293042142309, 0.04604772725893463, 0.046072524096446174, 0.046097320933957714, 0.046122117771469254, 0.0461469146089808, 0.04617171144649234, 0.04619650828400389, 0.04622130512151543, 0.04624610195902697, 0.04627089879653851, 0.04629569563405005, 0.0463204924715616, 0.04634528930907314, 0.04637008614658469, 0.04639488298409622, 0.046419679821607766, 0.046444476659119306, 0.04646927349663085, 0.0464940703341424, 0.04651886717165394, 0.04654366400916548, 0.04656846084667702, 0.046593257684188566, 0.04661805452170011, 0.04664285135921165, 0.04666764819672319, 0.04669244503423473, 0.04671724187174628, 0.04674203870925782, 0.046766835546769366, 0.046791632384280905, 0.046816429221792445, 0.04684122605930399, 0.04686602289681553, 0.04689081973432708, 0.046915616571838625, 0.04694041340935016, 0.046965210246861705, 0.046990007084373245, 0.04701480392188479, 0.04703960075939633, 0.04706439759690788, 0.04708919443441942, 0.04711399127193096, 0.047138788109442505, 0.047163584946954044, 0.04718838178446559, 0.04721317862197713, 0.04723797545948867, 0.04726277229700022, 0.04728756913451176, 0.047312365972023304, 0.047337162809534844, 0.047361959647046384, 0.04738675648455793, 0.04741155332206947, 0.04743635015958102, 0.04746114699709256, 0.0474859438346041, 0.04751074067211564, 0.04753553750962718, 0.04756033434713873, 0.04758513118465027, 0.04760992802216182, 0.04763472485967335, 0.047659521697184896, 0.04768431853469644, 0.04770911537220798, 0.04773391220971953, 0.04775870904723107, 0.04778350588474261, 0.04780830272225415, 0.047833099559765696, 0.04785789639727724, 0.04788269323478878, 0.04790749007230032, 0.04793228690981186, 0.04795708374732341, 0.04798188058483495, 0.048006677422346496, 0.04803147425985804, 0.048056271097369575, 0.04808106793488112, 0.04810586477239266, 0.04813066160990421, 0.048155458447415755, 0.048180255284927295, 0.048205052122438835, 0.048229848959950375, 0.04825464579746192, 0.04827944263497346, 0.04830423947248501, 0.04832903630999655, 0.04835383314750809, 0.048378629985019635, 0.048403426822531175, 0.04842822366004272, 0.04845302049755426, 0.0484778173350658, 0.04850261417257735, 0.04852741101008889, 0.048552207847600434, 0.048577004685111974, 0.048601801522623514, 0.04862659836013506, 0.0486513951976466, 0.04867619203515815, 0.04870098887266969, 0.048725785710181234, 0.04875058254769277, 0.048775379385204314, 0.04880017622271586, 0.0488249730602274, 0.04884976989773895, 0.04887456673525049, 0.04889936357276203, 0.04892416041027357, 0.04894895724778511, 0.04897375408529666, 0.0489985509228082, 0.04902334776031974, 0.04904814459783128, 0.049072941435342826, 0.04909773827285437, 0.04912253511036591, 0.04914733194787745, 0.04917212878538899, 0.04919692562290054, 0.04922172246041208, 0.049246519297923626, 0.04927131613543517, 0.049296112972946705, 0.04932090981045825, 0.04934570664796979, 0.04937050348548134, 0.049395300322992886, 0.049420097160504425, 0.049444893998015965, 0.049469690835527505, 0.049494487673039045, 0.0495192845105506, 0.04954408134806214, 0.04956887818557368, 0.049593675023085225, 0.049618471860596765, 0.049643268698108305, 0.049668065535619844, 0.04969286237313139, 0.04971765921064293, 0.04974245604815447, 0.049767252885666025, 0.049792049723177564, 0.049816846560689104, 0.049841643398200644, 0.04986644023571219, 0.04989123707322373, 0.04991603391073527, 0.049940830748246824, 0.049965627585758364, 0.0499904244232699, 0.05001522126078145, 0.05004001809829299, 0.05006481493580453, 0.05008961177331607, 0.05011440861082762, 0.05013920544833916, 0.050164002285850696, 0.05018879912336225, 0.05021359596087379, 0.05023839279838533, 0.05026318963589687, 0.050287986473408416, 0.050312783310919956, 0.050337580148431496, 0.05036237698594305, 0.05038717382345459, 0.05041197066096612, 0.05043676749847766, 0.050461564335989216, 0.050486361173500756, 0.050511158011012296, 0.05053595484852384, 0.05056075168603538, 0.05058554852354692, 0.05061034536105846, 0.050635142198570016, 0.050659939036081555, 0.050684735873593095, 0.05070953271110464, 0.05073432954861618, 0.05075912638612772, 0.050783923223639275, 0.05080872006115081, 0.05083351689866235, 0.05085831373617389, 0.05088311057368544, 0.05090790741119698, 0.05093270424870852, 0.05095750108622007, 0.05098229792373161, 0.05100709476124315, 0.05103189159875469, 0.05105668843626624, 0.05108148527377778, 0.051106282111289314, 0.05113107894880087, 0.05115587578631241, 0.05118067262382395, 0.05120546946133549, 0.051230266298847034, 0.051255063136358574, 0.051279859973870114, 0.05130465681138167, 0.05132945364889321, 0.05135425048640475, 0.05137904732391629, 0.051403844161427834, 0.05142864099893937, 0.05145343783645091, 0.05147823467396247, 0.051503031511474, 0.05152782834898554, 0.05155262518649708, 0.05157742202400863 ], "yaxis": "y2" }, { "legendgroup": "1", "line": { "color": "#DC3912", "width": 2 }, "mode": "lines", "name": "", "showlegend": false, "type": "scatter", "x": [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.717463397718543e-31, 0.00030715442943703587, 0.001228624247945369, 0.0027644192508208395, 0.004914549233359214, 0.007679023990856455, 0.01105785331860824, 0.01505104701191061, 0.01965861486605931, 0.024880566676350014, 0.030716912238078885, 0.037167661346541564, 0.04423282379703377, 0.051912409384851664, 0.060206427905290676, 0.06911488915364714, 0.07863780292521663, 0.08877517901529468, 0.09952702721917776, 0.1108933573321614, 0.12287417914954106, 0.13546950246661335, 0.14867933707867328, 0.16250369278101745, 0.17694257936894145, 0.19199600663774055, 0.20766398438271158, 0.22394652239914978, 0.24084363048235063, 0.2583553184276109, 0.27648159603022554, 0.29522247308549127, 0.3145779593887033, 0.3345480647351572, 0.35513279892014976, 0.3763321717389757, 0.39814619298693193, 0.42057487245931413, 0.44361821995141687, 0.46727624525853784, 0.4915489581759719, 0.5164363684990141, 0.5419384860229618, 0.5680553205431106, 0.5947868818547557, 0.622133179753193, 0.6500942240337179, 0.6786700244916277, 0.7078605909222164, 0.7376659331207814, 0.7680860608826183, 0.7991209840030219, 0.8307707122772894, 0.8630352555007159, 0.8959146234685964, 0.9294088259762288, 0.9635178728189064, 0.9982417737919277, 1.0335805386905876, 1.0695341773101796, 1.1061026994460035, 1.1432861148933529, 1.181084433447523, 1.2194976649038112, 1.2585258190575117, 1.4754678484212742, 1.8625748473980392, 2.223422033411821, 2.5580130144512148, 2.866351398504775, 3.1484407935610643, 3.4042848076086707, 3.6338870486361445, 3.8372511246320755, 4.014380643585019, 4.165279213483543, 4.289950442316226, 4.388397938071631, 4.460625308738333, 4.506636162304896, 4.526434106759892, 4.520022750091891, 4.487405700289459, 4.428586565341173, 4.400494371035565, 4.509590782805479, 4.619342986957117, 4.72975087554875, 4.840814340638653, 4.95253327428511, 5.064907568546386, 5.177937115480768, 5.291621807146522, 5.405961535601925, 5.520956192905255, 5.636605671114788, 5.752909862288795, 5.869868658485558, 5.986691475665274, 6.103310282914577, 6.221817723001142, 6.342213955491929, 6.4644991399539125, 6.588673435954062, 6.714737003059339, 6.842690000836717, 6.972532588853162, 7.104264926675646, 7.237887173871136, 7.373399490006597, 7.510802034648997, 7.650094967365314, 7.7912784477225046, 7.934352635287544, 8.079317689627397, 8.226173770309032, 8.374921036899424, 8.52555964896553, 8.678089766074327, 8.832511547792782, 8.98882515368787, 9.147030743326537, 9.307128476275771, 9.469118512102535, 9.6330010103738, 9.79877613065653, 9.966444032517693, 10.136149767362243, 10.328255688122875, 10.557194134935845, 10.82296424033449, 11.125565136852089, 11.464995957021967, 11.841255833377472, 12.20443262510395, 12.5735110794515, 12.961217507643578, 13.367550457004258, 13.792508474857659, 14.23609010852791, 16.945979619069142, 22.499407446018143, 15.241740828021971, 15.472319497696443, 15.705757169259902, 15.942052636594806, 16.18120469358363, 16.423212134108788, 16.66807375205276, 16.915788341297997, 17.138139150661978, 17.296408598789903, 17.454755016385207, 17.613177783835223, 17.77167628152736, 17.930249889848945, 18.088897989187366, 18.247619959929988, 18.406415182464144, 18.56528303717724, 18.724222904456614, 18.883234164689632, 19.04231619826367, 19.201468385566077, 19.36069010698423, 19.574815186473927, 19.808454363308268, 20.0448332953979, 20.2839522059849, 20.525811318311312, 20.7704108556192, 21.01775104115061, 21.267832098147622, 21.520654249852264, 21.776217719506604, 22.034522730352716, 22.295569505632628, 22.559358268588404, 22.825889242462114, 23.095162650495812, 23.367178715931537, 23.64193766201137, 23.919439711977347, 24.199685089071536, 24.48267401653598, 24.76840671761278, 25.17980686087357, 25.856762411987052, 26.393051861732715, 26.912069092891205, 27.495034331034397, 28.303373993440236, 29.08171985141886, 29.830049810470886, 30.548341776097118, 31.236573653798285, 31.894723349075107, 32.52276876742833, 33.29474740276672, 33.96572927016539, 34.490794969391594, 34.87004596980258, 35.10358374075555, 35.12785039222482, 34.92358022471176, 35.02645699293992, 35.20871005697508, 35.40259610710353, 35.608107524292365, 35.819074043733465, 36.164852198182004, 36.56755152393838, 36.98985998754612, 37.43177287733169, 37.89328548162184, 38.463859500047974, 39.10545276020084, 39.633267228134386, 40.04730875273738, 40.347583182898724, 40.534096367507296, 40.63442955732394, 40.98749080612093, 41.346737465997364, 41.712167263283206, 42.08377792430847, 42.461567175403076, 42.84553274289709, 43.23567235312045, 43.63198373240312, 44.03446460707513, 44.44311270346644, 44.857925747907025, 45.27890146672689, 45.7133944970429, 46.22510004244067, 46.8237854510845, 47.588209342664264, 48.63851574167707, 49.31729860169778, 50.004005926244616, 50.69868737463191, 51.39825903805443, 52.100991596875154, 52.806879580944276, 53.520730244914496, 54.251081828627825, 54.98999986115894, 55.737492804793526, 56.49356912181744, 57.25823727451649, 58.0819096386569, 58.786416797641586, 59.31467586829559, 59.6597309169061, 59.82029355611755, 60.09720916067005, 60.24040549462564, 60.745552375504865, 61.33948615526421, 61.9429524846165, 62.55595167970733, 63.17848405668215, 63.8105499316866, 64.45214962086612, 65.10328344036635, 65.76395170633285, 66.43415473491098, 67.11389284224644, 67.80316634448478, 68.50151196454274, 69.20433382528016, 69.91045397522772, 70.61987162555117, 71.33258598741655, 72.04859627198962, 72.78275031636146, 73.58565849706503, 74.46145428839054, 75.40905828962558, 76.45721256072697, 78.13094552115766, 79.2434691196975, 80.34428778196782, 82.59260818535213, 85.28931716519328, 86.37935824189907, 86.58984649296464, 87.52149418229273, 88.49065747404407, 89.47699260018332, 90.44974313259887, 91.10828589615147, 91.80441564924709, 92.51479264688214, 93.23160340640463, 94.10013600815674, 95.10778392739276, 96.35559037958899, 97.91077353786353, 99.16779256881397, 100.12734816259642, 100.79014100936712, 101.15687179928219, 102.11186966839398, 103.20501820901453, 104.32636647410419, 105.47066125498846, 106.63434216697569, 107.81739425556259, 109.01874324396478, 110.23315498708965, 111.59543060277106, 113.40806935019982, 115.9291142052294, 117.87651323336422, 119.83584096371916, 121.80584840699319, 123.77342233323161, 125.74099310997838, 127.71106187345711, 129.69041628248635, 131.35570336824637, 133.09650753536397, 134.91279243533128, 136.80452171964046, 138.76007364588904, 140.78381162988808, 143.00328604772153, 145.2871959356331, 147.63553595610475, 150.0483007716189, 152.52548504465727, 155.1152009500515, 158.6866736473842, 163.56194841217874, 169.19419796649896, 175.7731945726132, 182.01733950633084, 187.90397285109532, 196.0544618429179, 202.8729236665652, 206.24600414852634, 206.15832412447193, 202.6127096801964, 203.4375891064729, 204.66612553838272, 205.7962705650057, 206.41532203584197, 206.90026188705662, 207.2782678764947, 207.61745226303094, 208.12805176972526, 208.9255918707061, 203.8463223290912, 203.8363570861585, 204.48718872734312, 205.697127049502, 206.83047630264014, 207.77618745237012, 208.27614372709002, 208.60409547355508, 208.63255668700668, 208.65108804987491, 211.6791357387982, 211.5318097506171, 210.0565061080938, 209.89610474936376, 209.39198664274392, 209.17109502465468, 209.18933376702668, 209.42890243349387, 209.8772822748087, 205.3266674736691, 204.61436743264179, 204.89503563431566, 205.35817484206464, 205.74326776196983, 235.16718807821172, 203.6742442928869, 203.85169383008505, 203.98915569074026, 204.0870809257652, 204.14544305792322, 204.18780038006733, 204.30190585247635, 204.4771914320613, 204.70889865241654, 204.9618913654114, 205.2208634588149, 205.48579083358868, 205.96404347035158, 206.612831019484, 207.1507184155665, 207.9361338651273, 208.77107288905316, 206.16772545462547, 201.68419100237426, 200.9718469675572, 200.79074443428925, 200.70884040194736, 200.73384297214452, 200.78337988015306, 200.8099675302913, 200.82942161855593, 200.83681804547783, 200.92913423318052, 201.06411249558732, 201.76085500198727, 202.64152474001713, 203.6360140704881, 204.7385200690827, 205.77644594172372, 205.93230419301165, 205.07332218171555, 203.7452697825249, 205.00057145270756, 209.2222931256502, 208.90618758815245, 208.14445693994324, 207.03012302711258, 205.69889080946012, 204.3957334046877, 203.43368513604614, 203.4460118279478, 203.75093715700862, 204.2389137468472, 204.1497123812087, 203.79948431739288, 203.45537671713186, 203.11735248791288, 202.78363261630915, 202.4681591066742, 202.92802558541902, 203.62589807091766, 204.2545396836155, 204.7484573307279, 205.16396183518467, 205.49682481099495, 205.71046254214912, 207.76210062111153, 206.34494535447703, 204.99029769186401, 204.070581588209, 205.31368642490435, 209.06418620928517, 208.76423801724567, 207.52095017629256, 205.31013220430546, 202.67810354357312, 199.58831023272194, 195.580911569149, 190.66757721489793, 185.2139366050497, 182.09653155133293, 179.1639222333405, 176.1372051946689, 173.28314908560702, 170.61193976523208, 168.1233441819118, 165.81712928401313, 163.6930620199037, 160.01174617714835, 155.39777689421246, 151.8525427567926, 149.3969835179346, 148.40910352388917, 147.47232295023437, 146.56966726768985, 145.70099664864978, 144.86632775703083, 144.0677055729454, 143.30737679672848, 150.68404956145713, 139.9792349223456, 138.79725260690296, 137.52609014380207, 136.17888640621885, 134.76867084235676, 133.33169719239987, 131.83036110666836, 130.28133796454512, 129.05987756231778, 128.12725664874807, 127.21057384398426, 126.30962861601093, 125.41479532753617, 124.52056098477473, 123.6352266979046, 122.81003023718594, 122.05805014621185, 121.38117897042018, 120.77931045874293, 120.25233836011205, 119.80015642345958, 119.42324765571277, 119.12355463126255, 118.90115276397418, 118.75702637992758, 118.69292323827233, 118.03330372779496, 116.67037834371138, 115.42878499903458, 114.33516874839667, 113.38267068271196, 112.48927981397219, 111.64823334338736, 110.85977231708164, 110.12393940298449, 109.44077726902488, 108.81032858313203, 108.23263601323501, 107.707742227263, 107.2162801796759, 106.71370424534706, 106.43810558034208, 106.2208287149749, 105.98340114102994, 105.7302464669302, 105.47432774443888, 105.20694863042952, 104.92157186804182, 104.61820628435086, 104.29686070643129, 103.95757704379832, 103.60879232438486, 103.25706512826706, 102.90614364572829, 102.55493066655757, 102.1986672592746, 101.40210550284948, 100.27224867926574, 99.24031916301814, 98.31292101369714, 97.50401438442711, 96.85034712122071, 96.26562555515872, 95.74889368913782, 95.42671383137981, 95.62685532577137, 95.49217001443627, 95.05733927701655, 94.63290114536572, 94.24586285548068, 93.89297798035535, 93.56590625889677, 93.26467161695439, 92.98929798037778, 92.73980927501643, 92.51659225084957, 92.32053841024906, 92.15211749469238, 92.03330525106556, 91.97223293756011, 91.96494097535134, 91.98121143518044, 92.01501379498559, 92.06631820886075, 92.13509483089994, 92.22131381519699, 92.31793628241745, 92.41372958337105, 92.50854564154402, 92.91141945471992, 93.44235298452884, 93.74181913859123, 94.04422255664272, 94.34956990808021, 94.66229617778097, 94.82733547703002, 94.98524979974107, 95.14527235120089, 95.30328131097015, 95.45804921368907, 95.60957066845664, 95.75784028437164, 95.9032122033027, 96.04785948157377, 96.19214539217826, 96.34155224023304, 96.4977843017345, 96.65476348471377, 96.81248811980217, 96.97097399843811, 97.13271487092676, 97.29743500790235, 97.46508469281225, 97.63567587974843, 97.8092205228029, 97.98573057606757, 98.16521799363436, 98.34769472959525, 98.53317273804225, 98.72166397306714, 98.91318038876194, 99.10773393921873, 99.30551465070958, 99.48188189066498, 99.63535494906913, 99.93540584889344, 100.31521720749764, 100.77483241508968, 101.3151117734178, 101.90489451129893, 102.49972163276212, 103.13010021579598, 103.79611086849556, 104.49628484743427, 105.18656272894461, 105.8550222308259, 106.79709325874174, 108.23264233187108, 109.40601858431451, 110.31670812650877, 110.96419706889067, 111.47408190080533, 111.58243953366242, 111.54631946396313, 111.57866644595555, 111.68163255490147, 111.85043458525637, 112.0218699944422, 112.18026311929182, 112.33520224616412, 112.50685154175349, 112.69518803969812, 112.89450339768555, 113.10431399465851, 113.33011573634423, 113.58612375140072, 114.03899844234824, 114.3091061094605, 114.61001797541985, 114.9417285123424, 115.30077051395143, 115.66311353055691, 116.04445009789369, 116.44481128971763, 116.86422817978497, 117.30273184185181, 117.76035334967426, 118.23741169485172, 118.73449184689473, 119.25163957656014, 119.78888690722684, 120.34626586227388, 120.92893481628387, 121.60058599781983, 122.39722753546404, 123.33461074561114, 124.41210191483955, 125.62887567712912, 126.98410666645923, 128.47696951680962, 130.10663886215988, 132.1731370542177, 143.60235827941355, 148.3682613453941, 150.26045482090728, 151.38401948635814, 151.73867247781405, 151.36878910961, 150.35883960695114, 148.38830694055366, 145.19246413697326, 140.77043307524542, 136.9639975231613, 133.83263725347297, 130.99550967224496, 128.00190241110943, 124.82414883670127, 121.47511908825662, 118.30087034955757, 115.60341782083975, 113.17454214177593, 110.71468974448719, 108.19336471693909, 105.6004607191576, 102.93585833163549, 100.19943813486546, 97.39108070934032, 94.51066663555237, 91.5580764939951, 88.63897606670402, 85.88965937828833, 83.28431148615584, 80.82312076233431, 78.50627557885139, 76.33396430773463, 74.30637532101227, 72.18211765800883, 67.12105871520362, 64.67501146302371, 62.338520053529265, 60.11172067627343, 57.99474952081009, 55.98774277669242, 54.090836633473806, 52.30416728070762, 50.607111182050126, 48.87496409473856, 47.10274901139227, 45.29046560493083, 43.43811354827326, 41.545692514338704, 39.61320217604636, 37.6406422063154, 35.627998454728264, 33.57525116591087, 31.34256209230536, 28.34215502880441, 25.032626108006667, 21.98394544420839, 20.847267775347017, 20.233629589531148, 20.137582671617963, 20.25138539664169, 20.36612797529841, 20.481811707694693, 20.59843789393712, 20.71600783413228, 20.83452282838672, 20.95398417680703, 21.07439317949978, 21.19575113657158, 21.318059348128983, 21.44131911427857, 21.5655317351269, 21.690698510780575, 21.816820741346156, 21.943899726930223, 22.071936767639347, 22.200933163580135, 22.330890214859153, 22.461809221582936, 22.59369148385811, 22.726538301791216, 22.86035097548886, 22.995130805057613, 23.130879090604054, 23.26759713223474, 23.40528623005625, 23.54394768417518, 23.683574847859354, 23.824121161373974, 23.96557981655063, 24.107951991345374, 24.251238863714224, 24.39544161161325, 24.540561412998525, 24.68659774023613, 24.8333815517891, 24.980801037853436, 25.128857374122955, 25.276918613114578, 25.42434710127237, 25.57121352509362, 25.71751746229126, 25.863258490578193, 26.008436187667343, 26.153050131271613, 26.297099899103912, 26.44058506887717, 26.583505218304307, 26.72585992509821, 26.867648766971843, 27.008976653630505, 27.154118858976585, 27.305321044032773, 27.462603259534387, 27.625985556216737, 27.79189768879082, 27.958567373952967, 28.12681100643162, 28.2966310227782, 28.46802985954409, 28.641009953280694, 28.81557374053939, 28.991723657871624, 29.16946214182873, 29.348791628962125, 29.529714555823226, 29.71223335896337, 29.896350474934007, 30.082068340286543, 30.269389391572297, 30.45814259815013, 30.648050597643888, 30.83911129717277, 31.031326359271965, 31.224697446476522, 31.419226221321683, 31.614914346342474, 31.8117634840741, 32.00977529705169, 32.2089514478104, 32.40929359888535, 32.610754656417825, 32.81314612808118, 33.016450558547135, 33.22112204461562, 33.427304457754275, 33.634985048279646, 33.84416630603344, 34.05485072085736, 34.267040782593014, 34.48073898108213, 34.695947806166394, 34.91266974768749, 35.130907295487084, 35.35066293940688, 35.571939169288584, 35.79473847497382, 36.01906334630431, 36.244916273121724, 36.4731496801763, 36.71144466353511, 36.956289598155344, 37.20614443106054, 37.46103515136873, 37.72097146367488, 37.98596307257396, 38.25601968266096, 38.5311509985308, 38.81136672477853, 39.09667656599904, 39.38709022678729, 39.682617411738306, 39.98326782544703, 40.28905117250843, 40.59997715751752, 40.91359513342666, 41.221071897210756, 41.52960190260634, 41.82798274839919, 42.11376097903901, 42.394704947021474, 42.670810728673494, 42.94207440032183, 43.204878792514556, 43.511997213423484, 43.82091264713329, 44.13162869504428, 44.4440613028322, 44.758137121657825, 45.07385948087049, 45.3912317098195, 45.71025713785423, 46.03093909432396, 46.35328090857814, 46.67728590996597, 47.002957427836805, 47.330298791540024, 47.6593133304249, 47.99000437384081, 48.322375251137125, 48.65642929166311, 48.9921698247681, 49.329600179801425, 49.668723686112436, 50.00954367305047, 50.3521325076892, 50.746087451060674, 51.15674396005848, 51.57232077348481, 51.9928294851981, 52.4182816890568, 52.848688978919334, 53.28406294864412, 53.72441519208967, 54.16975730311432, 54.6201008755765, 55.07565828372126, 55.53729540567503, 56.00510965343395, 56.479115937946986, 56.959331482049535, 57.44580313597352, 57.93900597357924, 58.440136122434744, 58.94778959207978, 59.46190598114938, 59.982499702276925, 60.509585168095505, 61.043135180442434, 61.58308167665348, 62.12943630794022, 62.68226027673231, 63.242625334052285, 63.8102613714633, 64.38098417365312, 64.95412484008442, 65.52969181915205, 66.10769355925086, 66.68813850877575, 67.27103511612171, 67.85639182968339, 68.44421709785576, 69.03451936903372, 69.62730709161214, 70.22258871398586, 70.82037268454985, 71.43131848595367, 72.11740671909256, 72.83286077638944, 73.57994840349201, 74.36438934084816, 75.18934156097546, 76.05488507839294, 76.85266260589829, 77.65314552758419, 78.46538674959632, 79.28941411599487, 80.12525547083997, 80.97293865819204, 81.83269030010392, 82.70383415745411, 83.58633924062805, 84.48023270172573, 85.38554169284727, 86.30229336609256, 87.23051487356142, 88.17023336735406, 89.12147599957027, 90.08426992231044, 91.05899789866048, 92.05000823074646, 93.05862315612328, 94.08489729870212, 95.1288852823954, 96.19087778638252, 97.2834178569238, 98.41226162710319, 99.61916114540134, 100.96131237275438, 102.43963309056561, 104.05471301803087, 105.70396966033464, 107.35525472400384, 109.0135627031036, 110.60654588520589, 112.18018977472201, 113.73849320364842, 115.28140013262907, 116.84626670537979, 118.62283355210229, 120.42576502618786, 122.25513874710778, 124.11103233433465, 125.99352407032602, 127.90274674466711, 129.83881333338928, 131.8018016954873, 133.7917896899579, 135.89520374656772, 138.14415600855733, 140.50584268957638, 142.98136554831225, 145.5710295720215, 148.27513974795875, 151.09400106338083, 154.0542281518612, 157.14947226166615, 160.37977289471877, 163.74555417959198, 167.2796461292762, 171.07659938585283, 175.11917966721575, 179.40293087213786, 183.91470063029558, 188.5211236895147, 193.21461759990655, 198.01109005122828, 202.91592561005177, 207.92726724740714, 212.99365939738098, 220.17289711497244, 227.68497597220912, 235.64645600717955, 244.05846632759147, 252.98460167302565, 262.48686064183624, 272.53273826320094, 283.11988697062935, 294.25028689728265, 306.73880546358487, 323.61133885037674, 350.21090466064294, 373.41433633932394, 398.29451006827315, 424.82737913422494, 453.38483889043783, 484.48563528164493, 530.1386690031159, 592.5714317748958, 605.6025147939581, 585.6203345301261, 562.7212493140145, 529.8800610031365, 487.8301883121798, 458.6827572503655, 434.19418506266885, 441.77823689907177, 375.07152630998957, 349.61390966417645, 328.0012576563662, 309.4509209295198, 298.03571711612886, 286.03351234579037, 275.5422887602917, 263.6019727589015, 250.54396205455407, 237.32994750745803, 226.29030030117363, 216.22070635759633, 206.02932543127315, 195.4187070114613, 187.15655829843726, 177.4966487232991, 170.6138871821838, 163.95255086824693, 157.52544109771145, 151.33306802611665, 145.3759418090076, 139.65457260192358, 134.26184990551036, 129.5971517627184, 129.80841023169927, 124.62634505315333, 118.47341113424727, 111.87549600301176, 104.83378055007454, 97.66993130580043, 90.71361828509595, 85.32341877449657, 79.9711853619395, 73.61484659007093, 67.87574498832018, 61.88323653747358, 56.50427738838556, 51.75286849291971, 47.639767795761806, 44.16663950944368, 41.3345414022977, 38.90871641713099, 36.6480703855051, 34.5529539782454, 32.624224807557276, 30.862430659657235, 29.267512294818854, 27.83941047331459, 26.57806595541837, 30.339737005900613, 16.595254950495125, 8.474764083926837, 6.133494606382989, 4.169187514025278, 2.58229937563627, 1.3732867600002177, 0.5426062359000446, 0.09071437211958157, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6387531014346449, 10.539977859523868, 32.71190008522527, 47.25225050003591, 77.45322346577062, 82.74999567189485, 90.58368257370788, 118.595909357154, 135.46854656498778, 168.74507461838022, 151.56931179405763, 143.9372905640947, 145.35471053531, 143.80480898921112, 136.73257505831373, 131.86999266357267, 127.0703700492722, 122.91340622412935, 120.07712318814434, 118.6402597236268, 117.7329089144176, 117.48963387483826, 117.5483284497565, 117.632372991284, 117.82546909458281, 118.16545822812931, 118.69537229326346, 119.78538417252145, 119.86221963323405, 117.16233515049933, 116.35093436188056, 115.68569728089966, 115.4093091793853, 115.41591430190667, 115.34777675984284, 115.38604160361214, 115.91255598831683, 116.54092974339672, 117.26221429764327, 118.03855044904985, 118.84951623416671, 119.74614281278848, 120.72665801908161, 121.78197196071693, 122.89159265032121, 124.16757674479226, 130.33175557220656, 129.16538502407758, 130.8266896145521, 131.6553275312345, 131.9030863246161, 132.57588287190737, 133.3934541430565, 134.27297490807373, 135.48900689299694, 136.5811606022361, 137.93397078934194, 139.49346547334184, 140.8834382879515, 142.10505682879554, 143.23279068999318, 144.53901310965315, 146.0373823344813, 147.90189725879807, 150.2217999936866, 153.39559242036563, 158.1642127712359, 162.09218202349507, 164.0447699972218, 166.3862190552279, 168.158002045208, 169.07790141935837, 171.26065065907298, 173.35636487886606, 175.36100900816032, 177.2707066814353, 179.0731891217968, 181.08322607710528, 184.30890730639004, 188.03585461914426, 192.11568666812659, 199.41932522436838, 205.8771297677081, 211.5280485595765, 213.67232712270683, 215.63141453070068, 219.05932586135316, 222.3438854220637, 231.74596511412224, 237.5317437713472, 234.56259153034745, 234.6117032886969, 212.69329480626976, 199.5056725944551, 191.153938739727, 184.73088376644722, 178.99029546717134, 173.97598632919306, 168.57640378966522, 162.17996714520365, 155.21488816304472, 149.39718146397144, 144.41620405191898, 139.71885764322604, 135.1624325777976, 130.81879538249248, 126.80971546856381, 122.85535925696134, 118.56497743252515, 115.44204418717972, 108.7099308715743, 104.2987791211153, 100.99834530952796, 97.96835062011642, 95.06023159860503, 92.25625906027449, 89.42072061943261, 86.5951033962949, 84.28228882734233, 81.74149640556767, 80.08671946575726, 77.51983662198862, 72.96705035106163, 70.44164780711058, 68.05366492425831, 65.82380560759509, 63.75243803721398, 61.60632905977307, 59.40712087647871, 58.04301909235728, 57.459130891021175, 55.9524391914436, 53.50616096616081, 49.45030860878936, 46.61310983241726, 44.39538521405985, 42.3363354961257, 40.49129460328567, 38.760220681492356, 37.549612026972184, 37.730580587356144, 35.52063366461397, 30.334054540877908, 26.63802612053326, 23.741784177541188, 21.08602201472741, 18.957376361083327, 17.29189143007273, 13.223119413419424, 5.931865176710025, 1.4689689931994956, 6.931928006613109e-10, 7.3302553993221635e-06, 2.903047384097593e-05, 6.509223045820083e-05, 0.00011550640719142193, 0.00018026388598105063, 0.00025935554876754623, 0.0003527722774912997, 0.00046050495409278414, 0.0005825444605124072, 0.0007188816786905636, 0.0008695074905677466, 0.0010344127780843129, 0.0012135884231807698, 0.0014070253077974608, 0.0016147143138749056, 1.908300980079208, 17.232813303307445, 34.137532035394194, 49.98899580436699, 67.78352674286698, 79.72581875724589, 78.13854713909114, 78.28712349676817, 73.29695493833283, 73.17902062082439, 73.4999224081451, 73.54260359607746, 72.8336463675291, 72.81271821487964, 73.2575707228228, 74.11398199687125, 75.77763197538339, 76.34687754154825, 76.48320149815319, 75.8830640347636, 74.15402644617298, 70.41681978841146, 65.5427909439935, 61.54757176308689, 58.18132914011207, 55.53613432219608, 53.211227336229975, 51.07805987632584, 49.13087515281775, 47.34382522412896, 45.640948378668625, 44.1696235773683, 42.86434822053445, 41.69647719756567, 40.63088288199004, 39.65467535058847, 38.73621926800786, 37.86961223774983, 37.05405429445971, 36.28791390220749, 35.57310511209984, 34.905939943133355, 34.28341427852265, 33.707332879325755, 33.17227158222264, 32.597949849520084, 32.037967887575235, 31.517430277488693, 31.03400030484795, 30.60063430352493, 30.163887986441516, 29.784289216226846, 29.44234722881117, 29.121180271887486, 28.81986733476789, 28.538112675544426, 28.27562055230831, 28.02787588967673, 27.79404513811378, 27.574722929847407, 27.310083516232794, 27.13529186614734, 26.930279136713956, 26.732318149796903, 26.547035367781625, 26.374070658647288, 26.21319126620628, 26.06424088960077, 25.92706322797248, 25.801501980463556, 25.69219184872366, 25.583722307756762, 25.47522009569074, 25.38106913503935, 25.30756979007435, 25.23253397604752, 25.154354205122882, 25.0715434043361, 24.981622390392843, 24.883275290748177, 24.7780048310977, 24.69584679466024, 24.623851444912365, 24.554480048323743, 24.49038833319196, 24.434189167289126, 24.387409250978997, 24.3494320725844, 24.320279501165786, 24.299973405783703, 24.28854852267911, 24.364392722954907, 24.456701939010596, 24.449595951064207, 24.45148046257786, 24.457200167996106, 24.48432177003881, 24.51169477654603, 24.536073110856684, 24.54904533054576, 24.54839097887275, 24.57526520897284, 24.594656885848604, 24.628008431247842, 24.69634637502101, 24.73507274972746, 24.777434750163412, 24.788438941867994, 24.750606866386104, 24.757617672073195, 24.778641104234552, 24.873622027000494, 24.99154811974689, 25.100652122365997, 25.18754315350042, 25.236687832453892, 25.513766613254955, 25.741763461761042, 25.93390347041924, 25.90359000193064, 25.60290482539401, 25.353042935212954, 25.4067012423709, 25.482203771505333, 25.368266578326132, 24.95461442067837, 24.27564231100607, 23.811840855849965, 24.098265823314048, 24.450536555371478, 24.208267462293467, 24.125456446432047, 23.60375567671181, 23.02489460837061, 22.960275306402515, 22.931819476056916, 22.847822687485234, 22.615297717843003, 21.995656881327918, 21.213988776307215, 20.373211445091744, 19.468147968013657, 18.23360745606888, 16.69543005993744, 18.90078597206119, 16.735948280441992, 13.289342126930256, 10.271072338432484, 7.585933503675756, 5.651431238298495, 4.212606059008158, 2.426896882698873, 0.2437177746904111, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "xaxis": "x4", "y": [ -0.0037195256267313916, -0.0036947287892198487, -0.0036699319517083063, -0.0036451351141967635, -0.0036203382766852206, -0.0035955414391736786, -0.0035707446016621357, -0.0035459477641505937, -0.003521150926639051, -0.003496354089127508, -0.0034715572516159656, -0.0034467604141044227, -0.00342196357659288, -0.003397166739081338, -0.003372369901569795, -0.003347573064058252, -0.0033227762265467097, -0.003297979389035167, -0.0032731825515236244, -0.003248385714012082, -0.003223588876500539, -0.0031987920389889967, -0.0031739952014774543, -0.0031491983639659114, -0.0031244015264543686, -0.003099604688942826, -0.0030748078514312837, -0.0030500110139197413, -0.0030252141764081984, -0.003000417338896656, -0.0029756205013851135, -0.0029508236638735707, -0.002926026826362028, -0.0029012299888504854, -0.0028764331513389425, -0.0028516363138274, -0.0028268394763158577, -0.002802042638804315, -0.0027772458012927724, -0.0027524489637812295, -0.002727652126269687, -0.0027028552887581447, -0.002678058451246602, -0.0026532616137350594, -0.002628464776223517, -0.002603667938711974, -0.0025788711012004312, -0.002554074263688889, -0.002529277426177346, -0.0025044805886658035, -0.002479683751154261, -0.002454886913642718, -0.002430090076131176, -0.002405293238619633, -0.0023804964011080905, -0.002355699563596548, -0.002330902726085005, -0.0023061058885734628, -0.0022813090510619203, -0.0022565122135503775, -0.0022317153760388346, -0.002206918538527292, -0.0021821217010157493, -0.0021573248635042073, -0.0021325280259926645, -0.0021077311884811216, -0.0020829343509695796, -0.0020581375134580368, -0.002033340675946494, -0.0020085438384349515, -0.0019837470009234086, -0.001958950163411866, -0.0019341533259003237, -0.0019093564883887809, -0.0018845596508772382, -0.0018597628133656958, -0.0018349659758541532, -0.0018101691383426103, -0.0017853723008310679, -0.0017605754633195254, -0.0017357786258079828, -0.00171098178829644, -0.0016861849507848975, -0.0016613881132733549, -0.001636591275761812, -0.0016117944382502696, -0.0015869976007387271, -0.0015622007632271845, -0.0015374039257156416, -0.0015126070882040992, -0.0014878102506925568, -0.001463013413181014, -0.0014382165756694713, -0.0014134197381579288, -0.0013886229006463862, -0.0013638260631348433, -0.001339029225623301, -0.0013142323881117585, -0.0012894355506002156, -0.001264638713088673, -0.0012398418755771305, -0.001215045038065588, -0.001190248200554045, -0.0011654513630425026, -0.0011406545255309602, -0.0011158576880194173, -0.0010910608505078747, -0.0010662640129963322, -0.0010414671754847898, -0.001016670337973247, -0.0009918735004617043, -0.0009670766629501619, -0.0009422798254386189, -0.0009174829879270765, -0.0008926861504155339, -0.0008678893129039914, -0.0008430924753924485, -0.000818295637880906, -0.0007934988003693636, -0.000768701962857821, -0.0007439051253462782, -0.0007191082878347356, -0.0006943114503231931, -0.0006695146128116502, -0.0006447177753001078, -0.0006199209377885653, -0.0005951241002770227, -0.0005703272627654799, -0.0005455304252539373, -0.0005207335877423949, -0.0004959367502308519, -0.00047113991271930945, -0.00044634307520776697, -0.0004215462376962245, -0.00039674940018468157, -0.00037195256267313946, -0.00034715572516159655, -0.0003223588876500537, -0.0002975620501385116, -0.00027276521262696867, -0.0002479683751154258, -0.00022317153760388367, -0.00019837470009234078, -0.00017357786258079792, -0.0001487810250692558, -0.0001239841875577129, -9.918735004617003e-05, -7.43905125346279e-05, -4.959367502308501e-05, -2.4796837511542876e-05, 0.0, 2.4796837511542876e-05, 4.959367502308501e-05, 7.43905125346279e-05, 9.918735004617077e-05, 0.0001239841875577129, 0.0001487810250692558, 0.00017357786258079865, 0.00019837470009234078, 0.00022317153760388367, 0.0002479683751154258, 0.00027276521262696867, 0.0002975620501385116, 0.0003223588876500537, 0.00034715572516159655, 0.00037195256267313946, 0.00039674940018468157, 0.0004215462376962245, 0.00044634307520776735, 0.00047113991271930945, 0.0004959367502308524, 0.0005207335877423952, 0.0005455304252539373, 0.0005703272627654802, 0.0005951241002770224, 0.0006199209377885653, 0.0006447177753001081, 0.0006695146128116502, 0.0006943114503231931, 0.0007191082878347361, 0.0007439051253462782, 0.000768701962857821, 0.0007934988003693639, 0.000818295637880906, 0.000843092475392449, 0.0008678893129039918, 0.0008926861504155339, 0.0009174829879270768, 0.0009422798254386189, 0.0009670766629501619, 0.0009918735004617047, 0.001016670337973247, 0.0010414671754847898, 0.0010662640129963327, 0.0010910608505078747, 0.0011158576880194175, 0.0011406545255309604, 0.0011654513630425026, 0.0011902482005540455, 0.0012150450380655877, 0.0012398418755771305, 0.0012646387130886734, 0.0012894355506002156, 0.0013142323881117585, 0.0013390292256233013, 0.0013638260631348433, 0.0013886229006463862, 0.001413419738157929, 0.0014382165756694713, 0.0014630134131810141, 0.001487810250692557, 0.0015126070882040992, 0.001537403925715642, 0.0015622007632271843, 0.0015869976007387271, 0.00161179443825027, 0.001636591275761812, 0.0016613881132733549, 0.001686184950784898, 0.00171098178829644, 0.0017357786258079828, 0.0017605754633195257, 0.0017853723008310679, 0.0018101691383426107, 0.0018349659758541536, 0.0018597628133656958, 0.0018845596508772387, 0.0019093564883887809, 0.0019341533259003237, 0.0019589501634118666, 0.0019837470009234086, 0.0020085438384349515, 0.0020333406759464943, 0.0020581375134580368, 0.0020829343509695796, 0.0021077311884811225, 0.0021325280259926645, 0.0021573248635042073, 0.0021821217010157493, 0.002206918538527292, 0.002231715376038835, 0.0022565122135503775, 0.0022813090510619203, 0.002306105888573463, 0.002330902726085005, 0.002355699563596548, 0.002380496401108091, 0.002405293238619633, 0.002430090076131176, 0.002454886913642719, 0.002479683751154261, 0.002504480588665804, 0.002529277426177346, 0.002554074263688889, 0.0025788711012004317, 0.002603667938711974, 0.002628464776223517, 0.00265326161373506, 0.002678058451246602, 0.0027028552887581447, 0.0027276521262696875, 0.0027524489637812295, 0.0027772458012927724, 0.002802042638804315, 0.0028268394763158577, 0.0028516363138274005, 0.0028764331513389425, 0.0029012299888504854, 0.0029260268263620283, 0.0029508236638735707, 0.0029756205013851127, 0.0030004173388966564, 0.0030252141764081984, 0.0030500110139197404, 0.003074807851431284, 0.003099604688942826, 0.0031244015264543686, 0.003149198363965912, 0.0031739952014774543, 0.0031987920389889963, 0.00322358887650054, 0.003248385714012082, 0.003273182551523624, 0.0032979793890351677, 0.0033227762265467097, 0.003347573064058252, 0.003372369901569796, 0.003397166739081338, 0.00342196357659288, 0.0034467604141044236, 0.0034715572516159656, 0.003496354089127508, 0.0035211509266390513, 0.0035459477641505937, 0.0035707446016621357, 0.0035955414391736777, 0.0036203382766852215, 0.0036451351141967635, 0.003669931951708306, 0.003694728789219849, 0.0037195256267313916, 0.0037443224642429336, 0.0037691193017544773, 0.0037939161392660193, 0.0038187129767775618, 0.003843509814289105, 0.0038683066518006475, 0.0038931034893121895, 0.003917900326823733, 0.003942697164335275, 0.003967494001846817, 0.003992290839358361, 0.004017087676869903, 0.004041884514381445, 0.004066681351892989, 0.004091478189404531, 0.0041162750269160735, 0.004141071864427617, 0.004165868701939159, 0.004190665539450701, 0.004215462376962243, 0.0042402592144737865, 0.004265056051985329, 0.004289852889496871, 0.004314649727008415, 0.004339446564519957, 0.004364243402031499, 0.004389040239543043, 0.004413837077054584, 0.004438633914566127, 0.00446343075207767, 0.0044882275895892125, 0.004513024427100755, 0.004537821264612298, 0.004562618102123841, 0.004587414939635382, 0.004612211777146926, 0.004637008614658468, 0.00466180545217001, 0.004686602289681554, 0.004711399127193096, 0.0047361959647046386, 0.004760992802216182, 0.004785789639727724, 0.004810586477239266, 0.00483538331475081, 0.004860180152262352, 0.004884976989773894, 0.004909773827285436, 0.00493457066479698, 0.004959367502308522, 0.004984164339820065, 0.005008961177331608, 0.00503375801484315, 0.005058554852354692, 0.005083351689866236, 0.005108148527377778, 0.00513294536488932, 0.005157742202400863, 0.005182539039912406, 0.005207335877423948, 0.0052321327149354915, 0.005256929552447034, 0.0052817263899585755, 0.00530652322747012, 0.005331320064981661, 0.005356116902493204, 0.005380913740004747, 0.005405710577516289, 0.005430507415027832, 0.005455304252539375, 0.0054801010900509175, 0.005504897927562459, 0.0055296947650740015, 0.005554491602585545, 0.005579288440097087, 0.00560408527760863, 0.005628882115120173, 0.005653678952631715, 0.005678475790143257, 0.005703272627654801, 0.005728069465166343, 0.005752866302677885, 0.005777663140189429, 0.005802459977700971, 0.005827256815212513, 0.0058520536527240565, 0.005876850490235599, 0.005901647327747141, 0.005926444165258685, 0.005951241002770227, 0.005976037840281769, 0.006000834677793313, 0.006025631515304854, 0.006050428352816397, 0.00607522519032794, 0.0061000220278394825, 0.006124818865351025, 0.0061496157028625665, 0.006174412540374111, 0.006199209377885652, 0.006224006215397195, 0.006248803052908738, 0.00627359989042028, 0.006298396727931823, 0.006323193565443366, 0.0063479904029549086, 0.00637278724046645, 0.006397584077977994, 0.006422380915489536, 0.006447177753001078, 0.006471974590512622, 0.006496771428024164, 0.006521568265535706, 0.00654636510304725, 0.006571161940558792, 0.006595958778070334, 0.006620755615581878, 0.0066455524530934194, 0.006670349290604962, 0.006695146128116506, 0.006719942965628048, 0.00674473980313959, 0.0067695366406511324, 0.006794333478162676, 0.006819130315674218, 0.00684392715318576, 0.006868723990697304, 0.0068935208282088455, 0.006918317665720388, 0.006943114503231931, 0.006967911340743474, 0.006992708178255016, 0.007017505015766559, 0.007042301853278102, 0.007067098690789643, 0.0070918955283011875, 0.007116692365812729, 0.0071414892033242715, 0.007166286040835815, 0.007191082878347357, 0.0072158797158589, 0.007240676553370443, 0.007265473390881985, 0.007290270228393527, 0.007315067065905071, 0.007339863903416613, 0.007364660740928155, 0.007389457578439698, 0.007414254415951241, 0.007439051253462783, 0.007463848090974325, 0.007488644928485869, 0.0075134417659974105, 0.007538238603508953, 0.007563035441020497, 0.007587832278532039, 0.007612629116043581, 0.007637425953555124, 0.007662222791066667, 0.007687019628578209, 0.0077118164660897525, 0.007736613303601295, 0.0077614101411128365, 0.007786206978624381, 0.007811003816135922, 0.007835800653647465, 0.007860597491159008, 0.00788539432867055, 0.007910191166182093, 0.007934988003693636, 0.007959784841205178, 0.007984581678716721, 0.008009378516228264, 0.008034175353739806, 0.00805897219125135, 0.00808376902876289, 0.008108565866274434, 0.008133362703785976, 0.008158159541297519, 0.008182956378809062, 0.008207753216320604, 0.008232550053832147, 0.00825734689134369, 0.008282143728855232, 0.008306940566366773, 0.008331737403878318, 0.00835653424138986, 0.008381331078901402, 0.008406127916412945, 0.008430924753924488, 0.00845572159143603, 0.008480518428947573, 0.008505315266459116, 0.008530112103970658, 0.008554908941482201, 0.008579705778993743, 0.008604502616505286, 0.00862929945401683, 0.008654096291528371, 0.008678893129039914, 0.008703689966551456, 0.008728486804062999, 0.00875328364157454, 0.008778080479086084, 0.008802877316597627, 0.008827674154109169, 0.008852470991620712, 0.008877267829132255, 0.008902064666643797, 0.008926861504155338, 0.008951658341666884, 0.008976455179178425, 0.009001252016689967, 0.009026048854201512, 0.009050845691713053, 0.009075642529224595, 0.009100439366736138, 0.009125236204247681, 0.009150033041759223, 0.009174829879270766, 0.00919962671678231, 0.009224423554293851, 0.009249220391805394, 0.009274017229316936, 0.00929881406682848, 0.00932361090434002, 0.009348407741851564, 0.009373204579363107, 0.009398001416874649, 0.009422798254386192, 0.009447595091897734, 0.009472391929409277, 0.00949718876692082, 0.009521985604432362, 0.009546782441943905, 0.009571579279455449, 0.00959637611696699, 0.009621172954478532, 0.009645969791990075, 0.009670766629501617, 0.009695563467013162, 0.009720360304524703, 0.009745157142036246, 0.009769953979547788, 0.00979475081705933, 0.009819547654570873, 0.009844344492082418, 0.00986914132959396, 0.009893938167105503, 0.009918735004617044, 0.009943531842128586, 0.00996832867964013, 0.009993125517151674, 0.010017922354663216, 0.010042719192174757, 0.0100675160296863, 0.010092312867197842, 0.010117109704709384, 0.010141906542220929, 0.010166703379732472, 0.010191500217244014, 0.010216297054755555, 0.010241093892267098, 0.01026589072977864, 0.010290687567290182, 0.010315484404801727, 0.01034028124231327, 0.010365078079824811, 0.010389874917336353, 0.010414671754847896, 0.010439468592359438, 0.010464265429870983, 0.010489062267382524, 0.010513859104894068, 0.01053865594240561, 0.010563452779917151, 0.010588249617428694, 0.01061304645494024, 0.01063784329245178, 0.010662640129963322, 0.010687436967474866, 0.010712233804986407, 0.010737030642497949, 0.010761827480009494, 0.010786624317521037, 0.010811421155032579, 0.01083621799254412, 0.010861014830055664, 0.010885811667567205, 0.010910608505078747, 0.010935405342590292, 0.010960202180101835, 0.010984999017613377, 0.011009795855124918, 0.011034592692636461, 0.011059389530148003, 0.011084186367659548, 0.01110898320517109, 0.011133780042682633, 0.011158576880194174, 0.011183373717705716, 0.01120817055521726, 0.011232967392728804, 0.011257764230240346, 0.011282561067751887, 0.01130735790526343, 0.011332154742774972, 0.011356951580286514, 0.011381748417798059, 0.011406545255309602, 0.011431342092821144, 0.011456138930332685, 0.011480935767844229, 0.01150573260535577, 0.011530529442867312, 0.011555326280378858, 0.0115801231178904, 0.011604919955401942, 0.011629716792913485, 0.011654513630425026, 0.011679310467936568, 0.011704107305448113, 0.011728904142959656, 0.011753700980471198, 0.01177849781798274, 0.011803294655494283, 0.011828091493005824, 0.01185288833051737, 0.011877685168028911, 0.011902482005540454, 0.011927278843051996, 0.011952075680563537, 0.01197687251807508, 0.012001669355586626, 0.012026466193098167, 0.012051263030609709, 0.012076059868121252, 0.012100856705632794, 0.012125653543144335, 0.012150450380655878, 0.012175247218167424, 0.012200044055678965, 0.012224840893190507, 0.01224963773070205, 0.012274434568213591, 0.012299231405725133, 0.012324028243236678, 0.012348825080748221, 0.012373621918259763, 0.012398418755771305, 0.012423215593282848, 0.01244801243079439, 0.012472809268305934, 0.012497606105817476, 0.01252240294332902, 0.01254719978084056, 0.012571996618352102, 0.012596793455863646, 0.01262159029337519, 0.012646387130886732, 0.012671183968398274, 0.012695980805909817, 0.012720777643421359, 0.0127455744809329, 0.012770371318444445, 0.012795168155955989, 0.01281996499346753, 0.012844761830979072, 0.012869558668490615, 0.012894355506002157, 0.012919152343513698, 0.012943949181025243, 0.012968746018536786, 0.012993542856048328, 0.01301833969355987, 0.013043136531071413, 0.013067933368582954, 0.0130927302060945, 0.013117527043606041, 0.013142323881117584, 0.013167120718629126, 0.013191917556140667, 0.01321671439365221, 0.013241511231163756, 0.013266308068675297, 0.013291104906186839, 0.013315901743698382, 0.013340698581209924, 0.013365495418721465, 0.013390292256233012, 0.013415089093744554, 0.013439885931256095, 0.013464682768767638, 0.01348947960627918, 0.013514276443790722, 0.013539073281302265, 0.01356387011881381, 0.013588666956325351, 0.013613463793836893, 0.013638260631348436, 0.013663057468859978, 0.01368785430637152, 0.013712651143883064, 0.013737447981394608, 0.01376224481890615, 0.013787041656417691, 0.013811838493929234, 0.013836635331440776, 0.01386143216895232, 0.013886229006463862, 0.013911025843975406, 0.013935822681486947, 0.013960619518998489, 0.013985416356510032, 0.014010213194021577, 0.014035010031533119, 0.01405980686904466, 0.014084603706556204, 0.014109400544067745, 0.014134197381579287, 0.01415899421909083, 0.014183791056602375, 0.014208587894113917, 0.014233384731625458, 0.014258181569137001, 0.014282978406648543, 0.014307775244160085, 0.01433257208167163, 0.014357368919183173, 0.014382165756694714, 0.014406962594206256, 0.0144317594317178, 0.01445655626922934, 0.014481353106740886, 0.014506149944252427, 0.01453094678176397, 0.014555743619275512, 0.014580540456787054, 0.014605337294298597, 0.014630134131810142, 0.014654930969321684, 0.014679727806833225, 0.014704524644344769, 0.01472932148185631, 0.014754118319367852, 0.014778915156879395, 0.01480371199439094, 0.014828508831902482, 0.014853305669414023, 0.014878102506925566, 0.014902899344437108, 0.01492769618194865, 0.014952493019460195, 0.014977289856971738, 0.01500208669448328, 0.015026883531994821, 0.015051680369506364, 0.015076477207017906, 0.015101274044529451, 0.015126070882040994, 0.015150867719552536, 0.015175664557064077, 0.01520046139457562, 0.015225258232087162, 0.015250055069598707, 0.015274851907110249, 0.015299648744621792, 0.015324445582133334, 0.015349242419644875, 0.015374039257156418, 0.01539883609466796, 0.015423632932179505, 0.015448429769691047, 0.01547322660720259, 0.015498023444714131, 0.015522820282225673, 0.015547617119737216, 0.015572413957248761, 0.015597210794760303, 0.015622007632271845, 0.015646804469783386, 0.01567160130729493, 0.015696398144806473, 0.015721194982318016, 0.01574599181982956, 0.0157707886573411, 0.015795585494852642, 0.015820382332364186, 0.015845179169875726, 0.015869976007387272, 0.015894772844898816, 0.015919569682410355, 0.0159443665199219, 0.015969163357433442, 0.015993960194944982, 0.016018757032456525, 0.016043553869968072, 0.01606835070747961, 0.016093147544991155, 0.0161179443825027, 0.016142741220014238, 0.01616753805752578, 0.016192334895037325, 0.016217131732548868, 0.01624192857006041, 0.01626672540757195, 0.016291522245083494, 0.016316319082595038, 0.01634111592010658, 0.016365912757618124, 0.016390709595129668, 0.016415506432641207, 0.01644030327015275, 0.016465100107664294, 0.016489896945175837, 0.01651469378268738, 0.01653949062019892, 0.016564287457710464, 0.016589084295222007, 0.016613881132733547, 0.01663867797024509, 0.016663474807756637, 0.016688271645268177, 0.01671306848277972, 0.016737865320291263, 0.016762662157802803, 0.016787458995314346, 0.01681225583282589, 0.016837052670337433, 0.016861849507848976, 0.016886646345360516, 0.01691144318287206, 0.016936240020383603, 0.016961036857895146, 0.01698583369540669, 0.017010630532918233, 0.017035427370429772, 0.017060224207941316, 0.01708502104545286, 0.017109817882964402, 0.017134614720475946, 0.017159411557987485, 0.01718420839549903, 0.017209005233010572, 0.017233802070522112, 0.017258598908033655, 0.017283395745545202, 0.017308192583056742, 0.017332989420568285, 0.01735778625807983, 0.017382583095591368, 0.01740737993310291, 0.017432176770614455, 0.017456973608125998, 0.01748177044563754, 0.01750656728314908, 0.017531364120660625, 0.017556160958172168, 0.01758095779568371, 0.017605754633195254, 0.017630551470706798, 0.017655348308218338, 0.01768014514572988, 0.017704941983241424, 0.017729738820752967, 0.01775453565826451, 0.01777933249577605, 0.017804129333287594, 0.017828926170799137, 0.017853723008310677, 0.01787851984582222, 0.017903316683333767, 0.017928113520845307, 0.01795291035835685, 0.017977707195868393, 0.018002504033379933, 0.018027300870891477, 0.018052097708403023, 0.018076894545914563, 0.018101691383426106, 0.01812648822093765, 0.01815128505844919, 0.018176081895960733, 0.018200878733472276, 0.01822567557098382, 0.018250472408495363, 0.018275269246006903, 0.018300066083518446, 0.01832486292102999, 0.018349659758541532, 0.018374456596053076, 0.01839925343356462, 0.01842405027107616, 0.018448847108587702, 0.018473643946099245, 0.01849844078361079, 0.018523237621122332, 0.018548034458633872, 0.018572831296145415, 0.01859762813365696, 0.0186224249711685, 0.01864722180868004, 0.01867201864619159, 0.018696815483703128, 0.01872161232121467, 0.018746409158726215, 0.018771205996237755, 0.018796002833749298, 0.01882079967126084, 0.018845596508772385, 0.018870393346283928, 0.018895190183795468, 0.01891998702130701, 0.018944783858818554, 0.018969580696330098, 0.01899437753384164, 0.019019174371353184, 0.019043971208864724, 0.019068768046376267, 0.01909356488388781, 0.019118361721399354, 0.019143158558910897, 0.019167955396422437, 0.01919275223393398, 0.019217549071445524, 0.019242345908957063, 0.019267142746468607, 0.019291939583980153, 0.019316736421491693, 0.019341533259003237, 0.01936633009651478, 0.01939112693402632, 0.019415923771537863, 0.019440720609049406, 0.01946551744656095, 0.019490314284072493, 0.019515111121584033, 0.019539907959095576, 0.01956470479660712, 0.019589501634118663, 0.019614298471630206, 0.01963909530914175, 0.01966389214665329, 0.019688688984164832, 0.019713485821676376, 0.01973828265918792, 0.019763079496699462, 0.019787876334211005, 0.019812673171722545, 0.01983747000923409, 0.019862266846745632, 0.01988706368425717, 0.01991186052176872, 0.01993665735928026, 0.0199614541967918, 0.019986251034303345, 0.020011047871814885, 0.020035844709326428, 0.020060641546837975, 0.020085438384349515, 0.020110235221861058, 0.0201350320593726, 0.02015982889688414, 0.020184625734395684, 0.020209422571907228, 0.02023421940941877, 0.020259016246930314, 0.020283813084441854, 0.020308609921953397, 0.02033340675946494, 0.020358203596976484, 0.020383000434488027, 0.02040779727199957, 0.02043259410951111, 0.020457390947022654, 0.020482187784534197, 0.020506984622045737, 0.020531781459557284, 0.020556578297068823, 0.020581375134580367, 0.02060617197209191, 0.02063096880960345, 0.020655765647114993, 0.02068056248462654, 0.02070535932213808, 0.020730156159649623, 0.020754952997161166, 0.020779749834672706, 0.02080454667218425, 0.020829343509695793, 0.020854140347207336, 0.02087893718471888, 0.02090373402223042, 0.020928530859741962, 0.020953327697253506, 0.02097812453476505, 0.021002921372276592, 0.021027718209788136, 0.021052515047299675, 0.02107731188481122, 0.021102108722322762, 0.021126905559834302, 0.02115170239734585, 0.02117649923485739, 0.02120129607236893, 0.021226092909880475, 0.021250889747392015, 0.021275686584903558, 0.021300483422415105, 0.021325280259926645, 0.021350077097438188, 0.02137487393494973, 0.02139967077246127, 0.021424467609972814, 0.02144926444748436, 0.0214740612849959, 0.021498858122507444, 0.021523654960018988, 0.021548451797530527, 0.02157324863504207, 0.021598045472553614, 0.021622842310065157, 0.0216476391475767, 0.02167243598508824, 0.021697232822599784, 0.021722029660111327, 0.021746826497622867, 0.021771623335134414, 0.021796420172645957, 0.021821217010157497, 0.02184601384766904, 0.021870810685180583, 0.021895607522692123, 0.02192040436020367, 0.02194520119771521, 0.021969998035226753, 0.021994794872738296, 0.022019591710249836, 0.02204438854776138, 0.022069185385272926, 0.022093982222784466, 0.02211877906029601, 0.022143575897807553, 0.022168372735319092, 0.022193169572830636, 0.02221796641034218, 0.022242763247853722, 0.022267560085365266, 0.022292356922876806, 0.02231715376038835, 0.022341950597899892, 0.022366747435411432, 0.02239154427292298, 0.022416341110434522, 0.022441137947946062, 0.022465934785457605, 0.02249073162296915, 0.022515528460480688, 0.022540325297992235, 0.022565122135503775, 0.022589918973015318, 0.02261471581052686, 0.0226395126480384, 0.022664309485549945, 0.02268910632306149, 0.02271390316057303, 0.022738699998084574, 0.022763496835596118, 0.022788293673107658, 0.0228130905106192, 0.022837887348130744, 0.022862684185642287, 0.022887481023153827, 0.02291227786066537, 0.022937074698176917, 0.022961871535688457, 0.0229866683732, 0.02301146521071154, 0.023036262048223087, 0.023061058885734623, 0.02308585572324617, 0.023110652560757717, 0.023135449398269253, 0.0231602462357808, 0.02318504307329234, 0.023209839910803883, 0.02323463674831543, 0.02325943358582697, 0.023284230423338513, 0.023309027260850053, 0.023333824098361596, 0.023358620935873136, 0.023383417773384683, 0.023408214610896226, 0.023433011448407766, 0.023457808285919313, 0.02348260512343085, 0.023507401960942396, 0.02353219879845394, 0.02355699563596548, 0.023581792473477026, 0.023606589310988565, 0.02363138614850011, 0.02365618298601165, 0.023680979823523192, 0.02370577666103474, 0.02373057349854628, 0.023755370336057822, 0.02378016717356936, 0.02380496401108091, 0.023829760848592445, 0.02385455768610399, 0.023879354523615535, 0.023904151361127075, 0.02392894819863862, 0.02395374503615016, 0.023978541873661705, 0.02400333871117325, 0.024028135548684788, 0.024052932386196334, 0.024077729223707874, 0.024102526061219418, 0.024127322898730957, 0.024152119736242504, 0.024176916573754047, 0.024201713411265587, 0.02422651024877713, 0.02425130708628867, 0.024276103923800217, 0.024300900761311757, 0.0243256975988233, 0.024350494436334847, 0.024375291273846383, 0.02440008811135793, 0.02442488494886947, 0.024449681786381013, 0.02447447862389256, 0.0244992754614041, 0.024524072298915643, 0.024548869136427183, 0.024573665973938726, 0.024598462811450266, 0.024623259648961813, 0.024648056486473356, 0.024672853323984896, 0.024697650161496443, 0.02472244699900798, 0.024747243836519526, 0.02477204067403107, 0.02479683751154261, 0.024821634349054156, 0.024846431186565696, 0.02487122802407724, 0.02489602486158878, 0.024920821699100322, 0.02494561853661187, 0.02497041537412341, 0.024995212211634952, 0.025020009049146492, 0.02504480588665804, 0.025069602724169575, 0.02509439956168112, 0.02511919639919267, 0.025143993236704205, 0.02516879007421575, 0.02519358691172729, 0.025218383749238835, 0.02524318058675038, 0.02526797742426192, 0.025292774261773465, 0.025317571099285004, 0.025342367936796548, 0.025367164774308087, 0.025391961611819634, 0.025416758449331178, 0.025441555286842717, 0.025466352124354264, 0.0254911489618658, 0.025515945799377347, 0.025540742636888887, 0.02556553947440043, 0.025590336311911977, 0.025615133149423517, 0.02563992998693506, 0.0256647268244466, 0.025689523661958143, 0.02571432049946969, 0.02573911733698123, 0.025763914174492773, 0.025788711012004313, 0.02581350784951586, 0.025838304687027396, 0.025863101524538943, 0.025887898362050486, 0.025912695199562026, 0.025937492037073573, 0.025962288874585113, 0.025987085712096656, 0.026011882549608203, 0.02603667938711974, 0.026061476224631286, 0.026086273062142826, 0.02611106989965437, 0.02613586673716591, 0.026160663574677456, 0.026185460412189, 0.02621025724970054, 0.026235054087212082, 0.026259850924723622, 0.02628464776223517, 0.02630944459974671, 0.02633424143725825, 0.0263590382747698, 0.026383835112281335, 0.02640863194979288, 0.02643342878730442, 0.026458225624815965, 0.02648302246232751, 0.02650781929983905, 0.026532616137350595, 0.026557412974862134, 0.026582209812373678, 0.026607006649885218, 0.026631803487396764, 0.026656600324908308, 0.026681397162419847, 0.026706193999931394, 0.02673099083744293, 0.026755787674954477, 0.026780584512466017, 0.02680538134997756, 0.026830178187489107, 0.026854975025000647, 0.02687977186251219, 0.02690456870002373, 0.026929365537535277, 0.02695416237504682, 0.02697895921255836, 0.027003756050069903, 0.027028552887581443, 0.02705334972509299, 0.02707814656260453, 0.027102943400116073, 0.02712774023762762, 0.027152537075139156, 0.027177333912650703, 0.027202130750162243, 0.027226927587673786, 0.027251724425185333, 0.027276521262696873, 0.027301318100208416, 0.027326114937719956, 0.0273509117752315, 0.02737570861274304, 0.027400505450254586, 0.02742530228776613, 0.02745009912527767, 0.027474895962789216, 0.027499692800300752, 0.0275244896378123, 0.02754928647532384, 0.027574083312835382, 0.02759888015034693, 0.02762367698785847, 0.02764847382537001, 0.02767327066288155, 0.027698067500393095, 0.02772286433790464, 0.02774766117541618, 0.027772458012927725, 0.027797254850439265, 0.02782205168795081, 0.027846848525462348, 0.027871645362973894, 0.027896442200485438, 0.027921239037996978, 0.027946035875508524, 0.027970832713020064, 0.027995629550531607, 0.028020426388043147, 0.02804522322555469, 0.028070020063066237, 0.028094816900577777, 0.02811961373808932, 0.02814441057560086, 0.028169207413112407, 0.02819400425062395, 0.02821880108813549, 0.028243597925647033, 0.028268394763158573, 0.02829319160067012, 0.02831798843818166, 0.028342785275693203, 0.02836758211320475, 0.028392378950716286, 0.028417175788227833, 0.028441972625739373, 0.028466769463250916, 0.028491566300762463, 0.028516363138274003, 0.028541159975785546, 0.028565956813297086, 0.028590753650808633, 0.02861555048832017, 0.028640347325831716, 0.02866514416334326, 0.0286899410008548, 0.028714737838366346, 0.028739534675877886, 0.02876433151338943, 0.02878912835090097, 0.028813925188412512, 0.02883872202592406, 0.0288635188634356, 0.028888315700947142, 0.02891311253845868, 0.02893790937597023, 0.02896270621348177, 0.02898750305099331, 0.029012299888504855, 0.029037096726016395, 0.02906189356352794, 0.02908669040103948, 0.029111487238551025, 0.02913628407606257, 0.029161080913574108, 0.029185877751085654, 0.029210674588597194, 0.029235471426108738, 0.029260268263620284, 0.029285065101131824, 0.029309861938643367, 0.029334658776154907, 0.02935945561366645, 0.02938425245117799, 0.029409049288689537, 0.02943384612620108, 0.02945864296371262, 0.029483439801224167, 0.029508236638735703, 0.02953303347624725, 0.02955783031375879, 0.029582627151270333, 0.02960742398878188, 0.02963222082629342, 0.029657017663804963, 0.029681814501316503, 0.029706611338828046, 0.029731408176339593, 0.029756205013851133, 0.029781001851362676, 0.029805798688874216, 0.029830595526385763, 0.0298553923638973, 0.029880189201408846, 0.02990498603892039, 0.02992978287643193, 0.029954579713943476, 0.029979376551455016, 0.03000417338896656, 0.0300289702264781, 0.030053767063989642, 0.03007856390150119, 0.03010336073901273, 0.030128157576524272, 0.030152954414035812, 0.03017775125154736, 0.030202548089058902, 0.03022734492657044, 0.03025214176408199, 0.030276938601593525, 0.03030173543910507, 0.03032653227661661, 0.030351329114128155, 0.0303761259516397, 0.03040092278915124, 0.030425719626662785, 0.030450516464174324, 0.030475313301685868, 0.030500110139197414, 0.030524906976708954, 0.030549703814220498, 0.030574500651732037, 0.030599297489243584, 0.03062409432675512, 0.030648891164266667, 0.03067368800177821, 0.03069848483928975, 0.030723281676801297, 0.030748078514312837, 0.03077287535182438, 0.03079767218933592, 0.030822469026847463, 0.03084726586435901, 0.03087206270187055, 0.030896859539382093, 0.030921656376893633, 0.03094645321440518, 0.030971250051916723, 0.030996046889428263, 0.031020843726939806, 0.031045640564451346, 0.031070437401962893, 0.031095234239474433, 0.031120031076985976, 0.031144827914497523, 0.03116962475200906, 0.031194421589520606, 0.031219218427032146, 0.03124401526454369, 0.03126881210205523, 0.03129360893956677, 0.03131840577707832, 0.03134320261458986, 0.031367999452101405, 0.031392796289612945, 0.031417593127124485, 0.03144238996463603, 0.03146718680214757, 0.03149198363965912, 0.03151678047717066, 0.0315415773146822, 0.03156637415219374, 0.031591170989705285, 0.03161596782721683, 0.03164076466472837, 0.03166556150223992, 0.03169035833975145, 0.031715155177263, 0.031739952014774545, 0.031764748852286084, 0.03178954568979763, 0.03181434252730917, 0.03183913936482071, 0.03186393620233225, 0.0318887330398438, 0.031913529877355344, 0.031938326714866884, 0.031963123552378424, 0.031987920389889964, 0.03201271722740151, 0.03203751406491305, 0.0320623109024246, 0.032087107739936144, 0.03211190457744768, 0.03213670141495922, 0.03216149825247076, 0.03218629508998231, 0.03221109192749386, 0.0322358887650054, 0.032260685602516936, 0.032285482440028476, 0.03231027927754002, 0.03233507611505156, 0.03235987295256311, 0.03238466979007465, 0.03240946662758619, 0.032434263465097736, 0.032459060302609276, 0.03248385714012082, 0.03250865397763236, 0.0325334508151439, 0.03255824765265545, 0.03258304449016699, 0.032607841327678536, 0.032632638165190075, 0.032657435002701615, 0.03268223184021316, 0.0327070286777247, 0.03273182551523625, 0.03275662235274779, 0.032781419190259335, 0.03280621602777087, 0.032831012865282415, 0.03285580970279396, 0.0328806065403055, 0.03290540337781705, 0.03293020021532859, 0.03295499705284013, 0.032979793890351675, 0.033004590727863214, 0.03302938756537476, 0.0330541844028863, 0.03307898124039784, 0.03310377807790938, 0.03312857491542093, 0.033153371752932474, 0.033178168590444014, 0.033202965427955554, 0.033227762265467094, 0.03325255910297864, 0.03327735594049018, 0.03330215277800173, 0.033326949615513274, 0.03335174645302481, 0.033376543290536353, 0.03340134012804789, 0.03342613696555944, 0.03345093380307099, 0.03347573064058253, 0.033500527478094067, 0.033525324315605606, 0.03355012115311715, 0.03357491799062869, 0.03359971482814024, 0.03362451166565178, 0.03364930850316332, 0.033674105340674866, 0.033698902178186406, 0.03372369901569795, 0.03374849585320949, 0.03377329269072103, 0.03379808952823258, 0.03382288636574412, 0.033847683203255666, 0.033872480040767206, 0.03389727687827875, 0.03392207371579029, 0.03394687055330183, 0.03397166739081338, 0.03399646422832492, 0.034021261065836465, 0.034046057903348005, 0.034070854740859545, 0.03409565157837109, 0.03412044841588263, 0.03414524525339418, 0.03417004209090572, 0.03419483892841726, 0.034219635765928805, 0.034244432603440345, 0.03426922944095189, 0.03429402627846343, 0.03431882311597497, 0.03434361995348651, 0.03436841679099806, 0.034393213628509604, 0.034418010466021144, 0.03444280730353269, 0.034467604141044224, 0.03449240097855577, 0.03451719781606731, 0.03454199465357886, 0.034566791491090404, 0.034591588328601944, 0.034616385166113484, 0.03464118200362502, 0.03466597884113657, 0.03469077567864812, 0.03471557251615966, 0.0347403693536712, 0.034765166191182736, 0.03478996302869428, 0.03481475986620582, 0.03483955670371737, 0.03486435354122891, 0.03488915037874045, 0.034913947216251996, 0.034938744053763536, 0.03496354089127508, 0.03498833772878663, 0.03501313456629816, 0.03503793140380971, 0.03506272824132125, 0.035087525078832796, 0.035112321916344336, 0.03513711875385588, 0.03516191559136742, 0.03518671242887896, 0.03521150926639051, 0.03523630610390205, 0.035261102941413595, 0.035285899778925135, 0.035310696616436675, 0.03533549345394822, 0.03536029029145976, 0.03538508712897131, 0.03540988396648285, 0.03543468080399439, 0.035459477641505935, 0.035484274479017475, 0.03550907131652902, 0.03553386815404056, 0.0355586649915521, 0.03558346182906364, 0.03560825866657519, 0.035633055504086734, 0.035657852341598274, 0.03568264917910982, 0.035707446016621354, 0.0357322428541329, 0.03575703969164444, 0.03578183652915599, 0.035806633366667534, 0.035831430204179074, 0.035856227041690614, 0.035881023879202154, 0.0359058207167137, 0.03593061755422525, 0.03595541439173679, 0.03598021122924833, 0.03600500806675987, 0.03602980490427141, 0.03605460174178295, 0.0360793985792945, 0.03610419541680605, 0.03612899225431758, 0.036153789091829126, 0.036178585929340666, 0.03620338276685221, 0.03622817960436376, 0.0362529764418753, 0.03627777327938684, 0.03630257011689838, 0.036327366954409926, 0.036352163791921466, 0.03637696062943301, 0.03640175746694455, 0.03642655430445609, 0.03645135114196764, 0.03647614797947918, 0.036500944816990726, 0.036525741654502265, 0.036550538492013805, 0.03657533532952535, 0.03660013216703689, 0.03662492900454844, 0.03664972584205998, 0.03667452267957152, 0.036699319517083065, 0.036724116354594605, 0.03674891319210615, 0.03677371002961769, 0.03679850686712924, 0.03682330370464077, 0.03684810054215232, 0.036872897379663865, 0.036897694217175404, 0.03692249105468695, 0.03694728789219849, 0.03697208472971003, 0.03699688156722157, 0.03702167840473312, 0.037046475242244664, 0.037071272079756204, 0.037096068917267744, 0.037120865754779284, 0.03714566259229083, 0.03717045942980238, 0.03719525626731392, 0.03722005310482546, 0.037244849942337, 0.03726964677984854, 0.03729444361736008, 0.03731924045487163, 0.03734403729238318, 0.03736883412989471, 0.037393630967406256, 0.037418427804917796, 0.03744322464242934, 0.03746802147994089, 0.03749281831745243, 0.03751761515496397, 0.03754241199247551, 0.037567208829987056, 0.037592005667498596, 0.03761680250501014, 0.03764159934252168, 0.03766639618003322, 0.03769119301754477, 0.03771598985505631, 0.037740786692567856, 0.037765583530079395, 0.037790380367590935, 0.03781517720510248, 0.03783997404261402, 0.03786477088012557, 0.03788956771763711, 0.037914364555148655, 0.037939161392660195, 0.037963958230171735, 0.03798875506768328, 0.03801355190519482, 0.03803834874270637, 0.03806314558021791, 0.03808794241772945, 0.038112739255240995, 0.038137536092752534, 0.03816233293026408, 0.03818712976777562, 0.03821192660528716, 0.0382367234427987, 0.03826152028031025, 0.038286317117821794, 0.038311113955333334, 0.038335910792844874, 0.038360707630356414, 0.03838550446786796, 0.03841030130537951, 0.03843509814289105, 0.038459894980402594, 0.03848469181791413, 0.038509488655425674, 0.03853428549293721, 0.03855908233044876, 0.03858387916796031, 0.03860867600547185, 0.038633472842983387, 0.038658269680494926, 0.03868306651800647, 0.03870786335551802, 0.03873266019302956, 0.0387574570305411, 0.03878225386805264, 0.038807050705564186, 0.038831847543075726, 0.03885664438058727, 0.03888144121809881, 0.03890623805561035, 0.0389310348931219, 0.03895583173063344, 0.038980628568144986, 0.039005425405656526, 0.039030222243168065, 0.03905501908067961, 0.03907981591819115, 0.0391046127557027, 0.03912940959321424, 0.039154206430725785, 0.039179003268237325, 0.039203800105748865, 0.03922859694326041, 0.03925339378077195, 0.0392781906182835, 0.03930298745579504, 0.03932778429330658, 0.039352581130818125, 0.039377377968329665, 0.03940217480584121, 0.03942697164335275, 0.03945176848086429, 0.03947656531837583, 0.03950136215588738, 0.039526158993398924, 0.039550955830910464, 0.03957575266842201, 0.039600549505933544, 0.03962534634344509, 0.03965014318095664, 0.03967494001846818, 0.039699736855979724, 0.039724533693491264, 0.039749330531002804, 0.03977412736851434, 0.03979892420602589, 0.03982372104353744, 0.03984851788104898, 0.03987331471856052, 0.039898111556072056, 0.0399229083935836, 0.03994770523109515, 0.03997250206860669, 0.03999729890611823, 0.04002209574362977, 0.040046892581141316, 0.040071689418652856, 0.0400964862561644, 0.04012128309367595, 0.04014607993118748, 0.04017087676869903, 0.04019567360621057, 0.040220470443722116, 0.040245267281233656, 0.0402700641187452, 0.04029486095625674, 0.04031965779376828, 0.04034445463127983, 0.04036925146879137, 0.040394048306302915, 0.040418845143814455, 0.040443641981325995, 0.04046843881883754, 0.04049323565634908, 0.04051803249386063, 0.04054282933137217, 0.04056762616888371, 0.040592423006395255, 0.040617219843906795, 0.04064201668141834, 0.04066681351892988, 0.04069161035644142, 0.04071640719395297, 0.04074120403146451, 0.040766000868976054, 0.040790797706487594, 0.04081559454399914, 0.040840391381510674, 0.04086518821902222, 0.04088998505653377, 0.04091478189404531, 0.040939578731556854, 0.040964375569068394, 0.040989172406579934, 0.041013969244091474, 0.04103876608160302, 0.04106356291911457, 0.04108835975662611, 0.04111315659413765, 0.04113795343164919, 0.04116275026916073, 0.04118754710667228, 0.04121234394418382, 0.04123714078169537, 0.0412619376192069, 0.041286734456718446, 0.041311531294229986, 0.04133632813174153, 0.04136112496925308, 0.04138592180676462, 0.04141071864427616, 0.0414355154817877, 0.041460312319299246, 0.041485109156810786, 0.04150990599432233, 0.04153470283183387, 0.04155949966934541, 0.04158429650685696, 0.0416090933443685, 0.041633890181880046, 0.041658687019391585, 0.041683483856903125, 0.04170828069441467, 0.04173307753192621, 0.04175787436943776, 0.0417826712069493, 0.04180746804446084, 0.041832264881972385, 0.041857061719483925, 0.04188185855699547, 0.04190665539450701, 0.04193145223201856, 0.0419562490695301, 0.04198104590704164, 0.042005842744553185, 0.042030639582064724, 0.04205543641957627, 0.04208023325708781, 0.04210503009459935, 0.0421298269321109, 0.04215462376962244, 0.042179420607133984, 0.042204217444645524, 0.042229014282157064, 0.042253811119668604, 0.04227860795718015, 0.0423034047946917, 0.04232820163220324, 0.04235299846971478, 0.04237779530722632, 0.04240259214473786, 0.04242738898224941, 0.04245218581976095, 0.0424769826572725, 0.04250177949478403, 0.042526576332295576, 0.042551373169807116, 0.04257617000731866, 0.04260096684483021, 0.04262576368234175, 0.04265056051985329, 0.04267535735736483, 0.042700154194876376, 0.042724951032387916, 0.04274974786989946, 0.042774544707411, 0.04279934154492254, 0.04282413838243409, 0.04284893521994563, 0.042873732057457176, 0.04289852889496872, 0.042923325732480255, 0.0429481225699918, 0.04297291940750334, 0.04299771624501489, 0.04302251308252643, 0.043047309920037975, 0.043072106757549515, 0.043096903595061055, 0.0431217004325726, 0.04314649727008414, 0.04317129410759569, 0.04319609094510723, 0.04322088778261877, 0.043245684620130315, 0.043270481457641854, 0.0432952782951534, 0.04332007513266494, 0.04334487197017648, 0.04336966880768803, 0.04339446564519957, 0.043419262482711114, 0.043444059320222654, 0.043468856157734194, 0.043493652995245734, 0.04351844983275728, 0.04354324667026883, 0.04356804350778037, 0.043592840345291914, 0.04361763718280345, 0.043642434020314994, 0.04366723085782654, 0.04369202769533808, 0.04371682453284963, 0.04374162137036117, 0.04376641820787271, 0.043791215045384246, 0.04381601188289579, 0.04384080872040734, 0.04386560555791888, 0.04389040239543042, 0.04391519923294196, 0.043939996070453506, 0.043964792907965046, 0.04398958974547659, 0.04401438658298813, 0.04403918342049967, 0.04406398025801122, 0.04408877709552276, 0.044113573933034306, 0.04413837077054585, 0.044163167608057385, 0.04418796444556893, 0.04421276128308047, 0.04423755812059202, 0.04426235495810356, 0.044287151795615105, 0.044311948633126645, 0.044336745470638185, 0.04436154230814973, 0.04438633914566127, 0.04441113598317282, 0.04443593282068436, 0.0444607296581959, 0.044485526495707445, 0.044510323333218985, 0.04453512017073053, 0.04455991700824207, 0.04458471384575361, 0.04460951068326516, 0.0446343075207767, 0.044659104358288244, 0.044683901195799784, 0.04470869803331133, 0.044733494870822864, 0.04475829170833441, 0.04478308854584596, 0.0448078853833575, 0.044832682220869044, 0.044857479058380584, 0.044882275895892124, 0.04490707273340367, 0.04493186957091521, 0.04495666640842676, 0.0449814632459383, 0.04500626008344984, 0.045031056920961376, 0.04505585375847292, 0.04508065059598447, 0.04510544743349601, 0.04513024427100755, 0.04515504110851909, 0.045179837946030636, 0.045204634783542176, 0.04522943162105372, 0.04525422845856527, 0.0452790252960768, 0.04530382213358835, 0.04532861897109989, 0.045353415808611436, 0.04537821264612298, 0.04540300948363452, 0.04542780632114606, 0.0454526031586576, 0.04547739999616915, 0.04550219683368069, 0.045526993671192235, 0.045551790508703775, 0.045576587346215315, 0.04560138418372686, 0.0456261810212384, 0.04565097785874995, 0.04567577469626149, 0.04570057153377303, 0.045725368371284575, 0.045750165208796115, 0.04577496204630766, 0.0457997588838192, 0.04582455572133074, 0.04584935255884229, 0.04587414939635383, 0.045898946233865374, 0.045923743071376914, 0.04594853990888846, 0.045973336746399994, 0.04599813358391154, 0.04602293042142309, 0.04604772725893463, 0.046072524096446174, 0.046097320933957714, 0.046122117771469254, 0.0461469146089808, 0.04617171144649234, 0.04619650828400389, 0.04622130512151543, 0.04624610195902697, 0.04627089879653851, 0.04629569563405005, 0.0463204924715616, 0.04634528930907314, 0.04637008614658469, 0.04639488298409622, 0.046419679821607766, 0.046444476659119306, 0.04646927349663085, 0.0464940703341424, 0.04651886717165394, 0.04654366400916548, 0.04656846084667702, 0.046593257684188566, 0.04661805452170011, 0.04664285135921165, 0.04666764819672319, 0.04669244503423473, 0.04671724187174628, 0.04674203870925782, 0.046766835546769366, 0.046791632384280905, 0.046816429221792445, 0.04684122605930399, 0.04686602289681553, 0.04689081973432708, 0.046915616571838625, 0.04694041340935016, 0.046965210246861705, 0.046990007084373245, 0.04701480392188479, 0.04703960075939633, 0.04706439759690788, 0.04708919443441942, 0.04711399127193096, 0.047138788109442505, 0.047163584946954044, 0.04718838178446559, 0.04721317862197713, 0.04723797545948867, 0.04726277229700022, 0.04728756913451176, 0.047312365972023304, 0.047337162809534844, 0.047361959647046384, 0.04738675648455793, 0.04741155332206947, 0.04743635015958102, 0.04746114699709256, 0.0474859438346041, 0.04751074067211564, 0.04753553750962718, 0.04756033434713873, 0.04758513118465027, 0.04760992802216182, 0.04763472485967335, 0.047659521697184896, 0.04768431853469644, 0.04770911537220798, 0.04773391220971953, 0.04775870904723107, 0.04778350588474261, 0.04780830272225415, 0.047833099559765696, 0.04785789639727724, 0.04788269323478878, 0.04790749007230032, 0.04793228690981186, 0.04795708374732341, 0.04798188058483495, 0.048006677422346496, 0.04803147425985804, 0.048056271097369575, 0.04808106793488112, 0.04810586477239266, 0.04813066160990421, 0.048155458447415755, 0.048180255284927295, 0.048205052122438835, 0.048229848959950375, 0.04825464579746192, 0.04827944263497346, 0.04830423947248501, 0.04832903630999655, 0.04835383314750809, 0.048378629985019635, 0.048403426822531175, 0.04842822366004272, 0.04845302049755426, 0.0484778173350658, 0.04850261417257735, 0.04852741101008889, 0.048552207847600434, 0.048577004685111974, 0.048601801522623514, 0.04862659836013506, 0.0486513951976466, 0.04867619203515815, 0.04870098887266969, 0.048725785710181234, 0.04875058254769277, 0.048775379385204314, 0.04880017622271586, 0.0488249730602274, 0.04884976989773895, 0.04887456673525049, 0.04889936357276203, 0.04892416041027357, 0.04894895724778511, 0.04897375408529666, 0.0489985509228082, 0.04902334776031974, 0.04904814459783128, 0.049072941435342826, 0.04909773827285437, 0.04912253511036591, 0.04914733194787745, 0.04917212878538899, 0.04919692562290054, 0.04922172246041208, 0.049246519297923626, 0.04927131613543517, 0.049296112972946705, 0.04932090981045825, 0.04934570664796979, 0.04937050348548134, 0.049395300322992886, 0.049420097160504425, 0.049444893998015965, 0.049469690835527505, 0.049494487673039045, 0.0495192845105506, 0.04954408134806214, 0.04956887818557368, 0.049593675023085225, 0.049618471860596765, 0.049643268698108305, 0.049668065535619844, 0.04969286237313139, 0.04971765921064293, 0.04974245604815447, 0.049767252885666025, 0.049792049723177564, 0.049816846560689104, 0.049841643398200644, 0.04986644023571219, 0.04989123707322373, 0.04991603391073527, 0.049940830748246824, 0.049965627585758364, 0.0499904244232699, 0.05001522126078145, 0.05004001809829299, 0.05006481493580453, 0.05008961177331607, 0.05011440861082762, 0.05013920544833916, 0.050164002285850696, 0.05018879912336225, 0.05021359596087379, 0.05023839279838533, 0.05026318963589687, 0.050287986473408416, 0.050312783310919956, 0.050337580148431496, 0.05036237698594305, 0.05038717382345459, 0.05041197066096612, 0.05043676749847766, 0.050461564335989216, 0.050486361173500756, 0.050511158011012296, 0.05053595484852384, 0.05056075168603538, 0.05058554852354692, 0.05061034536105846, 0.050635142198570016, 0.050659939036081555, 0.050684735873593095, 0.05070953271110464, 0.05073432954861618, 0.05075912638612772, 0.050783923223639275, 0.05080872006115081, 0.05083351689866235, 0.05085831373617389, 0.05088311057368544, 0.05090790741119698, 0.05093270424870852, 0.05095750108622007, 0.05098229792373161, 0.05100709476124315, 0.05103189159875469, 0.05105668843626624, 0.05108148527377778, 0.051106282111289314, 0.05113107894880087, 0.05115587578631241, 0.05118067262382395, 0.05120546946133549, 0.051230266298847034, 0.051255063136358574, 0.051279859973870114, 0.05130465681138167, 0.05132945364889321, 0.05135425048640475, 0.05137904732391629, 0.051403844161427834, 0.05142864099893937, 0.05145343783645091, 0.05147823467396247, 0.051503031511474, 0.05152782834898554, 0.05155262518649708, 0.05157742202400863 ], "yaxis": "y4" } ], "layout": { "hovermode": false, "legend": { "font": { "size": 16 } }, "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 } } }, "title": { "font": { "size": 18 } }, "xaxis": { "anchor": "y", "domain": [ 0.0, 0.6533333333333333 ], "matches": "x3", "range": [ 0, 197 ], "showticklabels": false, "tickfont": { "size": 16 }, "ticktext": [ "Γ", "X", "W", "K", "Γ", "L", "U", "W", "L", "K", "U", "X" ], "tickvals": [ 0, 28, 42, 52, 82, 106, 123, 133, 153, 170, 187, 197 ], "title": { "text": "" } }, "xaxis2": { "anchor": "y2", "domain": [ 0.6733333333333333, 1.0 ], "matches": "x4", "showticklabels": false }, "xaxis3": { "anchor": "y3", "domain": [ 0.0, 0.6533333333333333 ], "range": [ 0, 197 ], "tickfont": { "size": 16 }, "ticktext": [ "Γ", "X", "W", "K", "Γ", "L", "U", "W", "L", "K", "U", "X" ], "tickvals": [ 0, 28, 42, 52, 82, 106, 123, 133, 153, 170, 187, 197 ], "title": { "text": "" } }, "xaxis4": { "anchor": "y4", "domain": [ 0.6733333333333333, 1.0 ] }, "yaxis": { "anchor": "x", "domain": [ 0.525, 1.0 ], "title": { "text": "Energy (eV)" } }, "yaxis2": { "anchor": "x2", "domain": [ 0.525, 1.0 ], "matches": "y", "showticklabels": false }, "yaxis3": { "anchor": "x3", "domain": [ 0.0, 0.475 ], "title": { "text": "Energy (eV)" } }, "yaxis4": { "anchor": "x4", "domain": [ 0.0, 0.475 ], "matches": "y3", "showticklabels": false } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "phbands.plotly_fatbands(phdos_file=phdos_file);" ] }, { "cell_type": "markdown", "id": "758b6775", "metadata": {}, "source": [ "The highest frequency modes have a strong Al-character while the low frequency modes originate from As.\n", "This behaviour is somehow expected. Could you explain it in terms of a simple physical model?" ] }, { "cell_type": "markdown", "id": "f7c48785", "metadata": {}, "source": [ "## Macroscopic dielectric tensor and Born effective charges\n", "\n", "Our calculations includes the response of the system to an external electric field.\n", "The code below extracts the macroscopic dielectric tensor (`emacro`)\n", "and the Born effective charges (`becs`) from the DDB file:" ] }, { "cell_type": "code", "execution_count": 39, "id": "60f24c96", "metadata": {}, "outputs": [], "source": [ "emacro, becs = ddb.anaget_epsinf_and_becs()" ] }, { "cell_type": "code", "execution_count": 40, "id": "7c65503f", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
xyz
x10.3961650.0000000.000000
y0.00000010.3961650.000000
z0.0000000.00000010.396165
\n", "
" ], "text/plain": [ "DielectricTensor([[ 1.03961652e+01 -0.00000000e+00 -0.00000000e+00]\n", " [-0.00000000e+00 1.03961652e+01 1.19611765e-15]\n", " [-0.00000000e+00 1.19611765e-15 1.03961652e+01]])" ] }, "execution_count": 40, "metadata": {}, "output_type": "execute_result" } ], "source": [ "emacro" ] }, { "cell_type": "code", "execution_count": 41, "id": "9f6cbcaf", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/usr/share/miniconda/envs/abipy/lib/python3.12/site-packages/spglib/spglib.py:115: DeprecationWarning:\n", "\n", "dict interface (SpglibDataset['equivalent_atoms']) is deprecated.Use attribute interface ({self.__class__.__name__}.{key}) instead\n", "\n", "/usr/share/miniconda/envs/abipy/lib/python3.12/site-packages/spglib/spglib.py:115: DeprecationWarning:\n", "\n", "dict interface (SpglibDataset['wyckoffs']) is deprecated.Use attribute interface ({self.__class__.__name__}.{key}) instead\n", "\n", "/usr/share/miniconda/envs/abipy/lib/python3.12/site-packages/spglib/spglib.py:115: DeprecationWarning:\n", "\n", "dict interface (SpglibDataset['equivalent_atoms']) is deprecated.Use attribute interface ({self.__class__.__name__}.{key}) instead\n", "\n", "/usr/share/miniconda/envs/abipy/lib/python3.12/site-packages/spglib/spglib.py:115: DeprecationWarning:\n", "\n", "dict interface (SpglibDataset['wyckoffs']) is deprecated.Use attribute interface ({self.__class__.__name__}.{key}) instead\n", "\n" ] }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
elementsite_indexfrac_coordscart_coordswyckoffxxyyzzyzxzxy
0Al0[0.0, 0.0, 0.0][0.0, 0.0, 0.0]1a2.1680532.1680532.1680530.00.00.0
1As1[0.25, 0.25, 0.25][1.40364, 1.40364, 1.40364]1d-2.168053-2.168053-2.1680530.00.00.0
\n", "
" ], "text/plain": [ "Born effective charges in Cartesian coordinates (Voigt notation)\n", " element site_index frac_coords cart_coords wyckoff xx yy zz yz xz xy\n", "0 Al 0 [0.0, 0.0, 0.0] [0.0, 0.0, 0.0] 1a 2.168053 2.168053 2.168053 0.0 0.0 0.0\n", "1 As 1 [0.25, 0.25, 0.25] [1.40364, 1.40364, 1.40364] 1d -2.168053 -2.168053 -2.168053 0.0 0.0 0.0\n", "\n", "Born effective charge neutrality sum-rule with chneut: 1\n", "\n", "[[0.00000000e+00 0.00000000e+00 0.00000000e+00]\n", " [0.00000000e+00 0.00000000e+00 0.00000000e+00]\n", " [2.40741243e-35 2.40741243e-35 0.00000000e+00]]" ] }, "execution_count": 41, "metadata": {}, "output_type": "execute_result" } ], "source": [ "becs" ] }, { "cell_type": "markdown", "id": "d1cb5063", "metadata": {}, "source": [ "As explained in the references, the Born effective charges must fulfill\n", "the charge neutrality sum-rule.\n", "This rule is usually broken due to the discretization introduced by the FFT mesh,\n", "and `anaddb` will enforce it if {{chneut}} is set to 1 (default behaviour).\n", "Let's check it out!" ] }, { "cell_type": "code", "execution_count": 42, "id": "ec6864e8", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Born effective charges in Cartesian coordinates (Voigt notation)\n", " element site_index frac_coords cart_coords wyckoff xx yy zz yz xz xy\n", "0 Al 0 [0.0, 0.0, 0.0] [0.0, 0.0, 0.0] 1a 2.168053 2.168053 2.168053 0.0 0.0 0.0\n", "1 As 1 [0.25, 0.25, 0.25] [1.40364, 1.40364, 1.40364] 1d -2.168053 -2.168053 -2.168053 0.0 0.0 0.0\n", "\n", "Born effective charge neutrality sum-rule with chneut: 1\n", "\n", "[[0.00000000e+00 0.00000000e+00 0.00000000e+00]\n", " [0.00000000e+00 0.00000000e+00 0.00000000e+00]\n", " [2.40741243e-35 2.40741243e-35 0.00000000e+00]]\n" ] } ], "source": [ "print(becs)" ] }, { "cell_type": "markdown", "id": "86adaebc", "metadata": {}, "source": [ "Let's repeat the same calculation but without enforcing the sum-rule:" ] }, { "cell_type": "code", "execution_count": 43, "id": "fb41273e", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Born effective charges in Cartesian coordinates (Voigt notation)\n", " element site_index frac_coords cart_coords wyckoff xx yy zz yz xz xy\n", "0 Al 0 [0.0, 0.0, 0.0] [0.0, 0.0, 0.0] 1a 2.127295 2.127295 2.127295 0.0 0.0 0.0\n", "1 As 1 [0.25, 0.25, 0.25] [1.40364, 1.40364, 1.40364] 1d -2.208811 -2.208811 -2.208811 0.0 0.0 0.0\n", "\n", "Born effective charge neutrality sum-rule with chneut: 0\n", "\n", "[[-8.15163891e-02 0.00000000e+00 0.00000000e+00]\n", " [ 0.00000000e+00 -8.15163891e-02 0.00000000e+00]\n", " [ 5.81483171e-19 5.81483171e-19 -8.15163891e-02]]\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/usr/share/miniconda/envs/abipy/lib/python3.12/site-packages/spglib/spglib.py:115: DeprecationWarning:\n", "\n", "dict interface (SpglibDataset['equivalent_atoms']) is deprecated.Use attribute interface ({self.__class__.__name__}.{key}) instead\n", "\n", "/usr/share/miniconda/envs/abipy/lib/python3.12/site-packages/spglib/spglib.py:115: DeprecationWarning:\n", "\n", "dict interface (SpglibDataset['wyckoffs']) is deprecated.Use attribute interface ({self.__class__.__name__}.{key}) instead\n", "\n" ] } ], "source": [ "emacro, becs_chneut0 = ddb.anaget_epsinf_and_becs(chneut=0)\n", "print(becs_chneut0)" ] }, { "cell_type": "markdown", "id": "5ac1577e", "metadata": {}, "source": [ "## Thermodynamic properties within the harmonic approximation\n", "\n", "The thermodynamic properties of an ensemble of non-interacting phonons can be\n", "expresses in terms of integrals of the DOS.\n", "\n", "\\begin{equation} %\\label{eq:helmholtz}\n", "\\Delta F = 3nNk_BT\\int_{0}^{\\omega_L}\\text{ln}\\left(2\\text{sinh}\\frac{\\hbar\\omega}{2k_BT}\\right)g(\\omega)d\\omega\n", "\\end{equation}\n", "\n", "\\begin{equation} %\\label{eq:free_en}\n", "\\Delta E = 3nN\\frac{\\hbar}{2}\\int_{0}^{\\omega_L}\\omega\\text{coth}\\left(\\frac{\\hbar\\omega}{2k_BT}\\right)g(\\omega)d\\omega\n", "\\end{equation}\n", "\n", "\\begin{equation} %\\label{eq:c_v}\n", "C_v = 3nNk_B\\int_{0}^{\\omega_L}\\left(\\frac{\\hbar\\omega}{2k_BT}\\right)^2\\text{csch}^2\\left(\\frac{\\hbar\\omega}{2k_BT}\\right)g(\\omega)d\\omega\n", "\\end{equation}\n", "\n", "\n", "\\begin{equation} %\\label{eq:entropy}\n", "S = 3nNk_B\\int_{0}^{\\omega_L}\\left(\\frac{\\hbar\\omega}{2k_BT}\\text{coth}\\left(\\frac{\\hbar\\omega}{2k_BT}\\right) - \\text{ln}\\left(2\\text{sinh}\\frac{\\hbar\\omega}{2k_BT}\\right)\\right)g(\\omega)d\\omega,\n", "\\end{equation}\n", "\n", "where $k_B$ is the Boltzmann constant.\n", "\n", "This should represent a reasonable approximation especially in the low temperature\n", "regime in which anharmonic effects can be neglected.\n", "\n", "Let's plot the vibrational contributions thermodynamic properties as function of $T$:" ] }, { "cell_type": "code", "execution_count": 44, "id": "7c0e3209", "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://chart-studio.plotly.com", "responsive": true, "showLink": true }, "data": [ { "mode": "lines", "name": "internal_energy", "type": "scatter", "x": [ 5.0, 11.020408163265305, 17.04081632653061, 23.06122448979592, 29.081632653061224, 35.10204081632653, 41.12244897959184, 47.14285714285714, 53.16326530612245, 59.183673469387756, 65.20408163265306, 71.22448979591836, 77.24489795918367, 83.26530612244898, 89.28571428571428, 95.3061224489796, 101.3265306122449, 107.3469387755102, 113.36734693877551, 119.38775510204081, 125.40816326530611, 131.42857142857144, 137.44897959183672, 143.46938775510205, 149.48979591836735, 155.51020408163265, 161.53061224489795, 167.55102040816325, 173.57142857142856, 179.59183673469389, 185.6122448979592, 191.6326530612245, 197.6530612244898, 203.6734693877551, 209.6938775510204, 215.7142857142857, 221.73469387755102, 227.75510204081633, 233.77551020408163, 239.79591836734693, 245.81632653061223, 251.83673469387753, 257.8571428571429, 263.87755102040813, 269.89795918367344, 275.9183673469388, 281.9387755102041, 287.9591836734694, 293.9795918367347, 300.0 ], "xaxis": "x", "y": [ 0.08756303895518303, 0.08757096877460628, 0.08761938147496764, 0.08775727647686685, 0.08801511223424895, 0.08840011051631332, 0.08890757681083096, 0.08952907750830964, 0.09025632747451823, 0.09108269721060952, 0.09200348185839202, 0.09301556006062207, 0.09411683851993474, 0.09530571585707412, 0.09658067244014429, 0.09794000944774708, 0.09938171746416008, 0.10090343995788001, 0.10250249736564762, 0.10417594423086775, 0.10592063987943097, 0.1077333201664249, 0.10961066317961855, 0.11154934547873366, 0.11354608780219062, 0.11559769055042249, 0.11770106007296648, 0.11985322708611315, 0.12205135859857576, 0.12429276463733567, 0.1265749009159584, 0.12889536841616983, 0.13125191068450182, 0.13364240949168885, 0.13606487936839956, 0.13851746141787596, 0.14099841671298963, 0.14350611950993386, 0.14603905045072596, 0.1485957898793889, 0.1511750113598247, 0.15377547545497372, 0.15639602380518036, 0.15903557352734604, 0.16169311194429448, 0.16436769164487974, 0.16705842586899056, 0.1697644842071604, 0.17248508860152048, 0.17521950963297073 ], "yaxis": "y" }, { "mode": "lines", "name": "free_energy", "type": "scatter", "x": [ 5.0, 11.020408163265305, 17.04081632653061, 23.06122448979592, 29.081632653061224, 35.10204081632653, 41.12244897959184, 47.14285714285714, 53.16326530612245, 59.183673469387756, 65.20408163265306, 71.22448979591836, 77.24489795918367, 83.26530612244898, 89.28571428571428, 95.3061224489796, 101.3265306122449, 107.3469387755102, 113.36734693877551, 119.38775510204081, 125.40816326530611, 131.42857142857144, 137.44897959183672, 143.46938775510205, 149.48979591836735, 155.51020408163265, 161.53061224489795, 167.55102040816325, 173.57142857142856, 179.59183673469389, 185.6122448979592, 191.6326530612245, 197.6530612244898, 203.6734693877551, 209.6938775510204, 215.7142857142857, 221.73469387755102, 227.75510204081633, 233.77551020408163, 239.79591836734693, 245.81632653061223, 251.83673469387753, 257.8571428571429, 263.87755102040813, 269.89795918367344, 275.9183673469388, 281.9387755102041, 287.9591836734694, 293.9795918367347, 300.0 ], "xaxis": "x2", "y": [ 0.0875627454362987, 0.08756048583615922, 0.08754634765276055, 0.08750183072117573, 0.0874068279209323, 0.08724571549284346, 0.08700818898328244, 0.08668802691624587, 0.08628171625750829, 0.08578740741612048, 0.0852042119019177, 0.08453176774601373, 0.0837699929766141, 0.08291896030657898, 0.08197884311526982, 0.0809498988994628, 0.07983246929891974, 0.07862698500610646, 0.07733396981002899, 0.07595404152996962, 0.07448790947049128, 0.07293636890282015, 0.07130029338372854, 0.06958062573645798, 0.06777836840130795, 0.06589457370520196, 0.06393033444428442, 0.06188677504044919, 0.059765043427151686, 0.057566303740812744, 0.0552917298377467, 0.05294249961829227, 0.050519790115400906, 0.04802477329067517, 0.04545861247382128, 0.04282245937941773, 0.040117451636121265, 0.03734471076670494, 0.03450534056177468, 0.03160042579504131, 0.028631031233224122, 0.02559820089876469, 0.022502957548378055, 0.019346302334962373, 0.016129214624488547, 0.012852651943187271, 0.009517550033644379, 0.006124823001331464, 0.002675363535667996, -0.000829956808043264 ], "yaxis": "y2" }, { "mode": "lines", "name": "entropy", "type": "scatter", "x": [ 5.0, 11.020408163265305, 17.04081632653061, 23.06122448979592, 29.081632653061224, 35.10204081632653, 41.12244897959184, 47.14285714285714, 53.16326530612245, 59.183673469387756, 65.20408163265306, 71.22448979591836, 77.24489795918367, 83.26530612244898, 89.28571428571428, 95.3061224489796, 101.3265306122449, 107.3469387755102, 113.36734693877551, 119.38775510204081, 125.40816326530611, 131.42857142857144, 137.44897959183672, 143.46938775510205, 149.48979591836735, 155.51020408163265, 161.53061224489795, 167.55102040816325, 173.57142857142856, 179.59183673469389, 185.6122448979592, 191.6326530612245, 197.6530612244898, 203.6734693877551, 209.6938775510204, 215.7142857142857, 221.73469387755102, 227.75510204081633, 233.77551020408163, 239.79591836734693, 245.81632653061223, 251.83673469387753, 257.8571428571429, 263.87755102040813, 269.89795918367344, 275.9183673469388, 281.9387755102041, 287.9591836734694, 293.9795918367347, 300.0 ], "xaxis": "x3", "y": [ 5.870377686440589e-08, 9.512295998259921e-07, 4.285817111553651e-06, 1.1076851352977387e-05, 2.0916443054397262e-05, 3.288683497094345e-05, 4.618858736966626e-05, 6.026470952862534e-05, 7.476236070383388e-05, 8.947213790688368e-05, 0.00010427675363606951, 0.00011911341645152127, 0.0001339485948805051, 0.00014876250538584847, 0.00016354048843859404, 0.00017826882588135536, 0.0001929331641685351, 0.00020751830658496267, 0.00022200861390194655, 0.0002363885867254715, 0.0002506434157913824, 0.0002647594117882969, 0.0002787242939864308, 0.0002925273495549798, 0.0003061594881424233, 0.0003196132185585047, 0.00033288257180106386, 0.00034596299028471795, 0.00035885119851849264, 0.000371545066355639, 0.0003840434725489141, 0.0003963461737056444, 0.00040845368176416566, 0.00042036715168834374, 0.0004320882800812006, 0.0004436192147478197, 0.00045496247480594104, 0.00046612088068263596, 0.0004770974931958632, 0.0004878955608623857, 0.0004985184745706458, 0.0005089697287888365, 0.0005192528885305352, 0.0005293715613632483, 0.0005393293738125136, 0.0005491299515815777, 0.0005587769030714414, 0.0005682738057466774, 0.0005776241949480577, 0.00058683155480338 ], "yaxis": "y3" }, { "mode": "lines", "name": "cv", "type": "scatter", "x": [ 5.0, 11.020408163265305, 17.04081632653061, 23.06122448979592, 29.081632653061224, 35.10204081632653, 41.12244897959184, 47.14285714285714, 53.16326530612245, 59.183673469387756, 65.20408163265306, 71.22448979591836, 77.24489795918367, 83.26530612244898, 89.28571428571428, 95.3061224489796, 101.3265306122449, 107.3469387755102, 113.36734693877551, 119.38775510204081, 125.40816326530611, 131.42857142857144, 137.44897959183672, 143.46938775510205, 149.48979591836735, 155.51020408163265, 161.53061224489795, 167.55102040816325, 173.57142857142856, 179.59183673469389, 185.6122448979592, 191.6326530612245, 197.6530612244898, 203.6734693877551, 209.6938775510204, 215.7142857142857, 221.73469387755102, 227.75510204081633, 233.77551020408163, 239.79591836734693, 245.81632653061223, 251.83673469387753, 257.8571428571429, 263.87755102040813, 269.89795918367344, 275.9183673469388, 281.9387755102041, 287.9591836734694, 293.9795918367347, 300.0 ], "xaxis": "x4", "y": [ 2.0978385579237362e-07, 3.3372140213818737e-06, 1.4243747123540039e-05, 3.2402759284097075e-05, 5.3413363453610366e-05, 7.433244085270028e-05, 9.400619133365891e-05, 0.00011222531890645272, 0.00012918554497011125, 0.00014520813378727252, 0.00016059486495328097, 0.00017556451787451661, 0.0001902407294131412, 0.00020466699591340358, 0.00021883122246728798, 0.0002326895986662024, 0.000246185376596539, 0.00025926164838307417, 0.0002718689016557472, 0.0002839686731340147, 0.0002955345890521658, 0.0003065518283745815, 0.00031701575327104783, 0.0003269301986839649, 0.00033630572106956513, 0.0003451579726142741, 0.00035350627983192365, 0.0003613724518077947, 0.0003687798127426943, 0.00037575243774612394, 0.00038231456430592705, 0.0003884901506829643, 0.00039430255417475255, 0.00039977430523766873, 0.00040492695695440537, 0.00040978099278275737, 0.0004143557786716076, 0.00041866954837550797, 0.0004227394131195424, 0.00042658138868444936, 0.00043021043454208205, 0.0004336405009239389, 0.0004368845807008496, 0.0004399547637358475, 0.000442862291984845, 0.0004456176140949039, 0.00044823043861580116, 0.00045070978522024466, 0.00045306403354004757, 0.00045530096938471205 ], "yaxis": "y4" } ], "layout": { "annotations": [ { "font": { "size": 12 }, "showarrow": false, "text": "internal_energy", "x": 0.225, "xanchor": "center", "xref": "paper", "y": 1.0, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 12 }, "showarrow": false, "text": "free_energy", "x": 0.775, "xanchor": "center", "xref": "paper", "y": 1.0, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 12 }, "showarrow": false, "text": "entropy", "x": 0.225, "xanchor": "center", "xref": "paper", "y": 0.375, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 12 }, "showarrow": false, "text": "cv", "x": 0.775, "xanchor": "center", "xref": "paper", "y": 0.375, "yanchor": "bottom", "yref": "paper" } ], "hovermode": false, "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.45 ], "matches": "x3", "showticklabels": false }, "xaxis2": { "anchor": "y2", "domain": [ 0.55, 1.0 ], "matches": "x4", "showticklabels": false }, "xaxis3": { "anchor": "y3", "domain": [ 0.0, 0.45 ], "title": { "font": { "size": 12 }, "text": "T (K)" } }, "xaxis4": { "anchor": "y4", "domain": [ 0.55, 1.0 ], "title": { "font": { "size": 12 }, "text": "T (K)" } }, "yaxis": { "anchor": "x", "domain": [ 0.625, 1.0 ], "title": { "font": { "size": 12 }, "text": "U(T) (eV/cell)" } }, "yaxis2": { "anchor": "x2", "domain": [ 0.625, 1.0 ], "title": { "font": { "size": 12 }, "text": "F(T) + ZPE (eV/cell)" } }, "yaxis3": { "anchor": "x3", "domain": [ 0.0, 0.375 ], "title": { "font": { "size": 12 }, "text": "S(T) (eV/cell)" } }, "yaxis4": { "anchor": "x4", "domain": [ 0.0, 0.375 ], "title": { "font": { "size": 12 }, "text": "C_V(T) (eV/cell)" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "phdos.plotly_harmonic_thermo();" ] }, { "cell_type": "markdown", "id": "d81831d3", "metadata": {}, "source": [ "## Exercises\n", "\n", "* Our first phonon band structure has been computed with a (4, 4, 4) $k$-mesh\n", " for the electrons and a (2, 2, 2) $q$-mesh for phonons.\n", " You may try to increase the density of $k$-points/$q$-points\n", " to see if this change affects the final results.\n", "\n", "* Why do you get an error from AbiPy if you try `ngkpt` = (4, 4, 4,) and `ngqpt` = (3, 3, 3)?" ] } ], "metadata": { "jupytext": { "text_representation": { "extension": ".md", "format_name": "myst", "format_version": 0.13, "jupytext_version": "1.10.3" } }, "kernelspec": { "display_name": "Python [default]", "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.12.2" }, "source_map": [ 12, 45, 61, 65, 68, 75, 80, 84, 86, 93, 96, 126, 129, 133, 137, 141, 145, 148, 152, 158, 160, 175, 177, 182, 184, 212, 218, 220, 233, 236, 243, 245, 249, 251, 257, 260, 264, 266, 272, 274, 278, 280, 287, 294, 316, 319, 323, 325, 329, 332, 350, 352, 364, 371, 374, 384, 388, 390, 394, 399, 405, 409, 411, 415, 417, 423, 429, 437, 439, 443, 445, 452, 456, 458, 465, 467, 471, 473, 478, 486, 490, 494, 496, 504, 506, 510, 513, 544, 546 ] }, "nbformat": 4, "nbformat_minor": 5 }